	*,
	*::before,
	*::after{
		box-sizing: border-box;
	}

	:root{
		--t1-bg: #eae2de;
		--t1-white: #ffffff;
		--t1-midnight: #2c414e;
		--t1-earth: #eae2de;
		--t1-sunset: #c2a797;
		--t1-border: #2c414e;
		--t1-shadow: 0 0 0 1px rgba(44, 65, 78, 0.08);
		--t1-radius: 22px;
		--t1-gap: 34px;
	}

	.t1-roller-section{
		background: linear-gradient(to bottom, var(--t1-bg) 0 66%, #ffffff 66% 100%);
		padding: 70px 68px 80px;
		overflow: hidden;
	}

	.t1-roller-wrap{
		max-width: 1584px;
		margin: 0 auto;
	}

	.t1-roller-top{
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 40px;
		align-items: start;
		margin-bottom: 46px;
		padding-left: 84px;
		padding-right: 84px;
	}

	.t1-roller-copy h1{
		margin-bottom: 18px;
		font-size: 40pt;
		font-weight: 500;
		color: var(--t1-midnight);
	}

	.t1-roller-copy p{
		max-width: 690px;
		margin: 0;
		font-size: 17px;
		line-height: 1.5;
		font-weight: 300;
		color: var(--t1-midnight);
	}
	
	.t1-roller-order{
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
		align-items: end;
		height: 100%;
	}

	.t1-roller-order a{	
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: auto;
		height: 45px;
		padding: 0 24px;
		border: 2px solid var(--t1-midnight);
		border-radius: 12px;
		color: var(--t1-midnight);
		text-decoration: none;
		font-size: 17px;
		transition: 0.25s ease;
	}
	
	.t1-roller-order a:hover{
		background: var(--t1-midnight);
		color: var(--t1-white);
	}

	.t1-roller-gallery-row{
		display: grid;
		grid-template-columns: auto 1fr auto;
		gap: 26px;
		align-items: center;
		min-width: 0;
	}

	@media (min-width: 1301px){
		.t1-roller-gallery-row:has(.t1-roller-track > .t1-roller-card:nth-child(1):last-child),
		.t1-roller-gallery-row:has(.t1-roller-track > .t1-roller-card:nth-child(2):last-child),
		.t1-roller-gallery-row:has(.t1-roller-track > .t1-roller-card:nth-child(3):last-child),
		.t1-roller-gallery-row:has(.t1-roller-track > .t1-roller-card:nth-child(4):last-child){
			grid-template-columns: 52px minmax(0, 1fr) 52px;
		}
	}

	.t1-roller-gallery{
		position: relative;
		min-width: 0;
		grid-column: 2;
	}

	.t1-roller-viewport{
		width: 100%;
		max-width: 100%;
		overflow: hidden;
	}

	.t1-roller-track{
		display: flex;
		gap: var(--t1-gap);
		will-change: transform;
		transition: transform 0.55s ease;
	}

	.t1-roller-card{
		flex: 0 0 calc((100% - (var(--t1-gap) * 3)) / 4);
		min-width: 0;
		text-align: center;
		padding-bottom: 3px;
	}

	.t1-roller-track:has(> .t1-roller-card:nth-child(1):last-child) .t1-roller-card{
		flex: 0 0 100%;
	}

	.t1-roller-track:has(> .t1-roller-card:nth-child(2):last-child) .t1-roller-card{
		flex: 0 0 calc((100% - var(--t1-gap)) / 2);
	}

	.t1-roller-track:has(> .t1-roller-card:nth-child(3):last-child) .t1-roller-card{
		flex: 0 0 calc((100% - (var(--t1-gap) * 2)) / 3);
	}

	.t1-roller-card-image{
		height: 500px;
		border-radius: var(--t1-radius);
		overflow: hidden;
		background: #d9d1cb;
		box-shadow: var(--t1-shadow);
		margin-bottom: 14px;
	}

	.t1-roller-card-image img{
		width: 100%;
		height: 100%;
		display: block;
		object-fit: cover;
	}

	.t1-roller-card h3{
		margin: 0 0 16px;
		padding-top: 5px;
		padding-bottom: 5px;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		font-size: 17px;
		line-height: 1.1;
		font-weight: 700;
		color: var(--t1-midnight);
		text-transform: uppercase;
	}

	.t1-roller-explore{
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: auto;
		height: 45px;
		padding: 0 24px;
		border: 2px solid var(--t1-border);
		border-radius: 12px;
		background: transparent;
		color: var(--t1-midnight);
		font-size: 16px;
		text-decoration: none;
		transition: all 0.25s ease;
	}

	.t1-roller-explore:hover{
		background: var(--t1-midnight);
		color: var(--t1-white);
	}

	.t1-roller-nav{
		display: contents;
	}

	.t1-roller-next,
	.t1-roller-prev{
		width: 52px;
		height: 52px;
		border: none;
		background: transparent;
		color: var(--t1-midnight);
		cursor: pointer;
		padding: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		transition: opacity 0.2s ease, transform 0.2s ease;
	}

	.t1-roller-prev{
		grid-column: 1;
	}

	.t1-roller-next{
		grid-column: 3;
	}

	.t1-roller-next:hover,
	.t1-roller-prev:hover{
		transform: scale(1.12);
	}

	.t1-roller-next:disabled,
	.t1-roller-prev:disabled{
		opacity: 0.28;
		cursor: default;
		pointer-events: none;
	}

	.t1-roller-next svg,
	.t1-roller-prev svg{
		width: 30px;
		height: 30px;
		display: block;
	}

	@media (max-width: 1300px){
		.t1-roller-section{
			background: linear-gradient(to bottom, var(--t1-bg) 0 58%, #ffffff 58% 100%);
			padding: 40px 34px 70px;
		}

		.t1-roller-top{
			grid-template-columns: 1fr;
			gap: 26px;
			padding-left: 0px;
			padding-right: 0px;
		}
	
		.t1-roller-order{
			justify-self: start;
		}

		.t1-roller-gallery-row{
			grid-template-columns: 1fr;
			gap: 18px;
			width: 100%;
			max-width: 100%;
			min-width: 0;
		}

		.t1-roller-nav{
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 10px;
			width: 100%;
			max-width: 100%;
			min-width: 0;
		}

		.t1-roller-gallery{
			flex: 1 1 100%;
			width: 100%;
			max-width: 100%;
			min-width: 0;
			order: 1;
			grid-column: auto;
		}

		.t1-roller-viewport{
			width: 100%;
			max-width: 100%;
			min-width: 0;
			overflow: hidden;
		}

		.t1-roller-prev{
			order: 2;
			grid-column: auto;
		}

		.t1-roller-next{
			order: 3;
			grid-column: auto;
		}

		.t1-roller-card{
			flex: 0 0 calc((100% - var(--t1-gap)) / 2);
			min-width: 0;
		}

		.t1-roller-track:has(> .t1-roller-card:nth-child(1):last-child) .t1-roller-card{
			flex: 0 0 100%;
		}

		.t1-roller-track:has(> .t1-roller-card:nth-child(2):last-child) .t1-roller-card,
		.t1-roller-track:has(> .t1-roller-card:nth-child(3):last-child) .t1-roller-card{
			flex: 0 0 calc((100% - var(--t1-gap)) / 2);
		}

		.t1-roller-card-image{
			height: 420px;
		}
	}

	@media (max-width: 768px){
		:root{
			--t1-gap: 20px;
		}

		.t1-roller-section{
			padding: 20px 20px 60px;
			background: linear-gradient(to bottom, var(--t1-bg) 0 60%, #ffffff 60% 100%);
		}
	
		.t1-roller-top{
			padding-left: 0px;
			padding-right: 0px;
			text-align: center;
			justify-items: center;
		}

		.t1-roller-copy{
			text-align: center;
			width: 100%;
		}

		.t1-roller-order{
			justify-self: center;
			justify-content: center;
			width: 100%;
		}
		
		.t1-roller-copy h1{
			font-size: 44px;
		}

		.t1-roller-copy p{
			font-size: 17px;
			line-height: 1.3;
			margin-left: auto;
			margin-right: auto;
		}

		.t1-roller-card,
		.t1-roller-track:has(> .t1-roller-card:nth-child(1):last-child) .t1-roller-card,
		.t1-roller-track:has(> .t1-roller-card:nth-child(2):last-child) .t1-roller-card,
		.t1-roller-track:has(> .t1-roller-card:nth-child(3):last-child) .t1-roller-card{
			flex: 0 0 100%;
			max-width: 100%;
			min-width: 0;
		}

		.t1-roller-card-image{
			height: 360px;
		}

		.t1-roller-explore{
			width: 85%;
			min-width: 0;
		}
	}
	
	
	.t1-intro-section{
		background: var(--t1-white);
		padding: 30px 0 70px;
	}

	.t1-intro-container{
		max-width: 1440px;
		margin: 0 auto;
		padding: 0 20px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 40px;
		align-items: center;
		min-width: 0;
	}

	.t1-intro-content{
		max-width: 650px;
		min-width: 0;
	}

	.t1-intro-content .t1-eyebrow{
		font-size: 12.5px;
		letter-spacing: 1.5px;
		text-transform: uppercase;
		color: var(--t1-midnight);
		margin-bottom: 26px;
	}

	.t1-intro-content .t1-eyebrow span + span::before{
		content: "\00a0\2022\00a0\00a0";
	}

	.t1-intro-content .t1-eyebrow::before{
		content: "";
		display: inline-block;
		width: 50px;
		height: 1px;
		background: var(--t1-midnight);
		vertical-align: middle;
	}

	.t1-intro-content h1{
		font-size: 40px;
		line-height: 1.05;
		font-weight: 500;
		color: var(--t1-midnight);
		margin: 0 0 6px;
	}

	.t1-intro-content h2{
		font-size: 34px;
		line-height: 1.05;
		font-style: normal;
		font-weight: 300;
		color: var(--t1-sunset);
		margin: 0 0 42px;
	}

	.t1-intro-content p{
		font-size: 17px;
		line-height: 1.45;
		font-weight: 300;
		color: var(--t1-midnight);
		margin: 0 0 28px;
		max-width: 700px;
	}

	.t1-intro-button{
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: auto;
		height: 45px;
		padding: 0 24px;
		margin-top: 18px;
		border: 3px solid var(--t1-midnight);
		border-radius: 12px;
		color: var(--t1-midnight);
		text-decoration: none;
		font-size: 17px;
		transition: 0.25s ease;
	}

	.t1-intro-button:hover{
		background: var(--t1-midnight);
		color: var(--t1-white);
		text-decoration: none;
	}

	.t1-intro-images{
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
		align-items: center;
		min-width: 0;
	}

	.t1-intro-image-card{
		border-radius: 12px;
		overflow: hidden;
		background: #ddd;
	}

	.t1-intro-image-card img{
		display: block;
		width: 100%;
		height: 460px;
		object-fit: cover;
	}

	@media (max-width: 1300px){
		.t1-intro-container{
			/* grid-template-columns: 1fr; */
			gap: 50px;
		}

		.t1-intro-content{
			max-width: none;
		}

		.t1-intro-content h1{
			font-size: 38px;
		}

		.t1-intro-content h2{
			font-size: 26px;
		}
		
		.t1-intro-content p{
			font-size: 16px;
		}
		
		.t1-intro-image-card img{
			height: 420px;
		}
		
		.t1-intro-button a{
			height: 40px;
			font-size: 15px;
		}
	}

	@media (max-width: 768px){
		.t1-intro-section{
			padding: 0 0 50px;
		}

		.t1-intro-container{
			grid-template-columns: 1fr;
			padding: 0 24px;
			gap: 35px;
		}
		
		.t1-intro-content h1{
			font-size: 38px;
		}

		.t1-intro-content h2{
			font-size: 20px;
			margin-bottom: 24px;
		}

		.t1-intro-content p{
			font-size: 16px;
			margin-bottom: 20px;
		}

		.t1-intro-content .t1-eyebrow{
			display: block;
			width: 100%;
			text-align: center;
			font-size: 12.5px;
			line-height: 1.6;
		}
		
		.t1-intro-content .t1-eyebrow::before,
		.t1-intro-content .t1-eyebrow::after{
			content: "";
			display: inline-block;
			width: 25px;
			height: 1px;
			background: var(--t1-midnight);
			vertical-align: middle;
		}
		
		.t1-intro-content .t1-eyebrow span{
			display: block;
		}

		.t1-intro-content .t1-eyebrow span + span::before{
			content: none;
		}
	
		.t1-intro-button{
			min-width: 100%;
			height: 40px;
			font-size: 14px;
		}
		
		.t1-intro-images{
			grid-template-columns: 1fr;
			gap: 18px;
		}

		.t1-intro-image-card img{
			height: 320px;
		}
		
		.t1-intro-content{
			text-align: center;
		}

		.t1-intro-content h1,
		.t1-intro-content h2,
		.t1-intro-content p{
			text-align: center;
			margin-left: auto;
			margin-right: auto;
		}
	}