* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Grid spacing calculations */
:root {
	--grid-max-width: 1280px;
	--grid-padding: 38px;
	/* Space between left browser margin and grid left edge (on desktop) */
	--grid-left-offset: max(0px, calc((100vw - var(--grid-max-width)) / 2));
	/* Space between left browser margin and grid content start (including padding) */
	--grid-content-left-offset: calc(var(--grid-left-offset) + var(--grid-padding));
	/* Width of 2-column grid section (2/3 of content area) */
	--grid-two-col-width: calc((var(--grid-max-width) - (var(--grid-padding) * 2)) * 2 / 3);
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: 'Baskerville', Georgia, serif;
	line-height: 1.6;
	color: #7A7A7A;
	background: #fff;
	font-weight: 400;
	padding-top: 88px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-variant-ligatures: common-ligatures contextual;
	font-feature-settings: "liga" on, "calt" on;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Gilda Display', serif;
	letter-spacing: -0.02em;
	font-weight: 400;
}

h1, h2, h3 {
	font-feature-settings: "liga" on, "calt" on, "dlig" on;
}

h3 {
	font-size: 32px;
	line-height: 1.3;
}

h4 {
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

@media (max-width: 767px) {
	h1, h2, h3, h4, h5, h6 {
		letter-spacing: -0.015em;
	}

	h3 {
		font-size: 24px;
	}

	h4 {
		font-size: 16px;
	}
}

a {
	text-decoration: none;
}

p {
	font-size: clamp(18px, 1vw + 16px, 20px);
	line-height: 1.6;
	max-width: 65ch;
}

/* ===== HEADER ===== */
.doho-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 88px;
	background-color: #ffffff;
	z-index: 9999;
	transition: box-shadow 0.3s ease;
}

.doho-header.is-scrolled {
	box-shadow: 0 1px 16px rgba(0, 0, 0, 0.07);
}

body.doho-menu-open .doho-header.is-scrolled {
	box-shadow: none;
}

.doho-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	padding: 0 38px;
	max-width: 1280px;
	margin: 0 auto;
}

.doho-header__logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.doho-header__logo img {
	display: block;
	height: 24px;
	width: auto;
}

.doho-header__hamburger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	position: relative;
	z-index: 9992;
	outline: none;
}

.doho-header__hamburger:focus-visible {
	outline: 2px solid #1a1a1a;
	outline-offset: 2px;
	border-radius: 2px;
}

.doho-header__hamburger-icon {
	width: 49px;
	height: 11px;
	transition: opacity 0.3s ease;
	transform-origin: center;
}

.doho-header__hamburger-icon.rotating-out {
	animation: rotateOut 0.15s ease-in forwards;
}

.doho-header__hamburger-icon.rotating-in {
	animation: rotateIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes rotateOut {
	from {
		opacity: 1;
		transform: rotate(0deg);
	}
	to {
		opacity: 0;
		transform: rotate(-90deg);
	}
}

@keyframes rotateIn {
	from {
		opacity: 0;
		transform: rotate(90deg);
	}
	to {
		opacity: 1;
		transform: rotate(0deg);
	}
}

body.doho-menu-open {
	overflow: auto;
}

/* ===== LANGUAGE SWITCHER (NAVIGATION OVERLAY) ===== */
.doho-nav-col__language-switcher {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.lang-text-btn {
	background: none;
	border: none;
	cursor: pointer;
	font-family: 'Baskerville', Georgia, serif;
	font-size: 14px;
	color: #7a7a7a;
	padding: 0;
	text-decoration: none;
	letter-spacing: 0em;
	transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-bottom-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border-bottom: 2px solid transparent;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.lang-text-btn:hover {
	letter-spacing: 0.08em;
	color: #1a1a1a;
}

.lang-text-btn--active {
	color: #7a7a7a;
	border-bottom-color: #7a7a7a;
}

.lang-separator {
	color: #7a7a7a;
	font-size: 14px;
}

/* ===== NAVIGATION OVERLAY ===== */
.doho-nav-overlay {
	position: fixed;
	top: 88px;
	left: 0;
	right: 0;
	height: auto;
	max-height: 80vh;
	z-index: 9991;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #ffffff;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.45s ease, visibility 0.45s ease;
	padding: 40px 0 80px;
	overflow-y: auto;
}

.doho-nav-overlay.is-open {
	opacity: 1;
	pointer-events: all;
	visibility: visible;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.doho-nav-overlay__content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 38px;
	width: 100%;
}

.doho-nav-overlay__bg {
	display: none;
}

.doho-nav-overlay__bg-img {
	display: none;
}

.doho-nav-overlay__bg-tint {
	display: none;
}

.doho-nav-overlay__heading {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 40px;
	align-items: center;
	margin-bottom: 80px;
	width: 100%;
	padding: 60px 0;
}

.doho-nav-overlay__heading h2 {
	grid-column: 1 / 3;
	font-family: 'Gilda Display', serif;
	font-size: 72px;
	font-weight: 400;
	color: #7a7a7a;
	margin: 0;
	line-height: 1.2;
	letter-spacing: -2px;
}

.doho-nav-overlay__icon {
	grid-column: 4;
	justify-self: start;
	display: flex;
	align-items: center;
	justify-content: center;
}

.doho-nav-overlay__columns {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 40px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}

.doho-nav-col {
	flex: 1;
	padding-right: 0;
}

.doho-nav-col__label {
	font-family: 'Baskerville', Georgia, serif;
	font-size: 14px;
	font-weight: 400;
	color: #7a7a7a;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 20px;
	line-height: 1;
	transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.doho-nav-col__label:hover {
	color: #1a1a1a;
	opacity: 0.8;
	letter-spacing: 0.14em;
}

.doho-nav-col__label--link {
	text-decoration: none;
	display: block;
}

.doho-nav-col__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.doho-nav-col__links li {
	margin: 0 0 0;
}

.doho-nav-col__links a {
	font-family: 'Baskerville', Georgia, serif;
	font-size: 24px;
	font-weight: 400;
	font-style: normal;
	color: #7a7a7a;
	text-decoration: none;
	letter-spacing: -0.02em;
	line-height: 1.5;
	display: inline-block;
	transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.doho-nav-col__links a:hover {
	letter-spacing: 0.02em;
	color: #1a1a1a;
	opacity: 0.8;
}

.doho-nav-col__address {
	font-family: 'Baskerville', Georgia, serif;
	font-size: 16px;
	font-weight: 400;
	color: #7a7a7a;
	line-height: 1.6;
	letter-spacing: -0.01em;
	font-style: normal;
}

.doho-nav-col__address p {
	margin: 0 0 12px;
}

.doho-nav-col__address a {
	color: #7a7a7a;
	text-decoration: none;
	transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.doho-nav-col__address a:hover {
	opacity: 0.6;
}

.doho-nav-col__phone-label {
	font-family: 'Baskerville', Georgia, serif;
	font-size: 12px;
	color: #7a7a7a;
	display: block;
	margin-top: 2px;
}

.doho-nav-col__language {
	margin-top: 40px;
	margin-bottom: 40px;
}

.doho-nav-col__social {
	margin-top: 0;
}

.doho-nav-col__social-label {
	font-family: 'Baskerville', Georgia, serif;
	font-size: 12px;
	color: #7a7a7a;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 12px;
	display: block;
	transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.doho-nav-col__social-label:hover {
	color: #1a1a1a;
	opacity: 0.8;
}

.doho-nav-col__social-icons {
	display: flex;
	gap: 16px;
}

.doho-nav-col__social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: transparent;
	transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.doho-nav-col__social-icons a:hover {
	opacity: 0.6;
}

.doho-nav-col__social-icons svg {
	width: 24px;
	height: 24px;
}

/* ===== HERO SECTION ===== */
.hero {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: baseline;
	padding: 160px 38px 60px 38px;
	gap: 2rem;
	max-width: 1280px;
	margin: 0 auto;
}

.hero-left {
	flex: 0 0 60%;
}

.hero-right {
	flex: 0 0 40%;
	overflow: hidden;
}

.hero h1 {
	font-size: clamp(2.5rem, 5.2vw, 4.5rem);
	color: #7A7A7A;
	line-height: 1.1;
	margin-bottom: 2rem;
	text-align: left;
}

.hero p {
	font-size: clamp(18px, 1vw + 16px, 20px);
	color: #555;
	line-height: 1.6;
	word-wrap: break-word;
	overflow-wrap: break-word;
	margin: 0;
}

/* ===== HOME PAGE VIDEO ===== */
.home-page-video-container {
	width: 100vw;
	aspect-ratio: 4.5 / 3;
	overflow: hidden;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin: 3rem 0;
}

.home-page-video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ===== PROJECT VIDEO CONTAINER ===== */
.project-video-container {
	width: 100vw;
	aspect-ratio: 4.5 / 3;
	overflow: hidden;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin: 3rem 0 200px 0;
}

.project-video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ===== VIDEO SECTION - FULL WIDTH ===== */
.video-full-width {
	width: 100vw;
	position: relative;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	aspect-ratio: 16 / 9;
	overflow: hidden;
	margin: 3rem 0;
}

.video-full-width video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
	padding: 0;
}

.video-full-width svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	display: none;
}

/* ===== MASKED VIDEO SHORTCODE (CSS-BASED) ===== */
/* Native CSS mask using radial-gradient for wavy/circular effects */
.css-masked-video-container {
	display: block;
	width: 100%;
	height: auto;
}

.css-masked-video-container video {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

/* Square video container for mobile/tablet - 90% width, 1:1 aspect ratio */
.css-masked-video-container.circle-video-svg {
	width: 90%;
	aspect-ratio: 1 / 1;
	margin: 0 auto;
}

/* ===== FEATURED PROJECT SECTION ===== */
.featured-section {
	padding: 200px 38px;
	max-width: 1280px;
	margin: 0 auto;
}

.featured-label {
	font-size: 0.9rem;
	letter-spacing: 0.12em;
	color: #888;
	margin-bottom: 2rem;
	font-weight: 400;
	transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.featured-label:hover {
	letter-spacing: 0.18em;
}

.featured-section h2 {
	font-size: clamp(2.5rem, 5.2vw, 4.5rem);
	color: #7A7A7A;
	line-height: 1.1;
	margin-bottom: 1rem;
	font-weight: 400;
	font-family: 'Gilda Display', serif;
}

.featured-text {
	font-size: 0.9rem;
	letter-spacing: 0.12em;
	color: #888;
	margin-bottom: 2rem;
	transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.featured-text:hover {
	letter-spacing: 0.18em;
}

/* ===== CAROUSEL SECTION ===== */
.carousel-section {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 38px;
}

.carousel-section + div {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding: 1rem 38px;
}

.carousel-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.carousel-section .featured-label {
	padding: 0;
	margin: 0;
}

.carousel-nav-dots {
	display: flex;
	gap: 12px;
	align-items: center;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: background 0.3s ease;
}

.dot.active {
	background: #7A7A7A;
}

.carousel-wrapper {
	position: relative;
	overflow: hidden;
	min-height: 600px;
}

.carousel-slides-container {
	display: flex;
	width: 300%;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
	flex: 0 0 100%;
	min-width: 100%;
}

.carousel-images {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%;
	margin-bottom: 2rem;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-image-link {
	display: block;
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
}

.carousel-images img {
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.carousel-image-link:hover img {
	transform: scale(1.05);
}

/* Prevent carousel.js transforms on desktop 3-column grid */
@media (min-width: 1025px) {
	.carousel-images {
		transform: none !important;
	}
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-block;
	padding: 15px 36px;
	background: #7A7A7A;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	border-radius: 60px;
	letter-spacing: 0em;
	transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
	border: none;
	cursor: pointer;
	font-family: 'Baskerville', Georgia, serif;
	margin: 0;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.btn:hover {
	letter-spacing: 0.02em;
	background: #0F0F0F;
	color: #fff;
}

/* ===== CONNECTION & BELONGING ===== */
.connection-heading-section {
	padding: 160px 38px 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 3rem;
	row-gap: 0;
	max-width: 1280px;
	margin: 0 auto;
	align-items: end;
	min-height: auto;
}

.connection-heading-section h2 {
	grid-column: 1 / 3;
	font-size: clamp(2.5rem, 5.2vw, 4.5rem);
	color: #7A7A7A;
	line-height: 1.1;
	margin-bottom: 0;
}

.connection-description-section {
	padding: 3rem 38px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
	max-width: 1280px;
	margin: 0 auto;
	align-items: start;
}

.connection-description-left {
	grid-column: 1 / 3;
	grid-row: 1;
	align-self: start;
}

.connection-description-left p {
	font-size: 32px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 0;
}

.connection-description-right {
	display: flex;
	flex-direction: column;
	gap: 16px;
	grid-column: 3;
	grid-row: 1;
	align-self: start;
}

.fullwidth-svg {
	display: block;
	height: auto;
	margin-top: 2rem;
	margin-bottom: 2rem;
	/* Extend from browser left edge to right edge of 2-column grid */
	margin-left: calc(-1 * var(--grid-content-left-offset));
	width: calc(var(--grid-content-left-offset) + var(--grid-two-col-width));
	/* Prevent overflow - constrain to viewport or actual available width */
	max-width: min(100vw, calc(100% + var(--grid-content-left-offset)));
	overflow: hidden;
}

/* Legacy circular mask rules - no longer used, replaced with native square video */
.circle-video-svg {
	display: none;
}

.connection-section {
	padding: 3rem 38px 0;
	display: grid;
	grid-template-columns: 280px 1fr 1fr;
	gap: 3rem;
	max-width: 1280px;
	margin: 0 auto;
	align-items: start;
}

.connection-videos {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	width: 100%;
	grid-row: 1;
	align-self: start;
}

.connection-video-item {
	aspect-ratio: 1;
	flex: 1 1 calc(25% - 0.375rem);
	min-width: 0;
}

.connection-content {
	display: contents;
}

.connection-center {
	grid-column: 2;
	grid-row: 1;
}

.connection-center p {
	font-size: 32px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 0;
}

.connection-right {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	grid-column: 3;
	grid-row: 1;
}

.connection-feature {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.connection-feature h4 {
	font-family: 'Baskerville', Georgia, serif;
	font-size: 32px;
	font-weight: 400;
	margin: 0;
}

.connection-feature p {
	font-size: clamp(18px, 1vw + 16px, 20px);
	color: #555;
	margin: 0;
	line-height: 1.6;
}

.connection-tagline {
	font-style: italic;
	margin-top: 0.5rem !important;
}

.video-responsive {
	width: 100%;
	margin-top: 3rem;
	position: relative;
	display: block;
}

.video-responsive video {
	width: 100%;
	height: auto;
	display: block;
}

/* ===== SVG MASKS ===== */
.video-full-width {
	width: 100vw;
	position: relative;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	aspect-ratio: 16 / 9;
	overflow: visible;
	margin: 3rem 0;
}

.video-full-width svg {
	width: 100%;
	height: 100%;
	display: block;
}

.video-responsive {
	position: relative;
	width: calc(50vw + 114px);
	margin-left: calc(-1 * (50vw - (100% - 114px)));
	max-width: none;
}

.video-responsive svg {
	width: 100%;
	height: auto;
	display: block;
}

/* ===== EXPERIENCE FEATURES ===== */
.experience-section {
	padding: 48px 106px;
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.features-grid {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin-left: 60px;
}

.feature-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.feature-item h4 {
	font-family: 'Baskerville', Georgia, serif;
	font-size: 32px;
	font-weight: 400;
	margin: 0;
}

.feature-item p {
	font-size: 16px;
	color: #555;
	margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
	padding: 200px 106px;
	max-width: 1280px;
	margin: 0 auto;
}

.cta-section h2 {
	font-size: clamp(2.5rem, 5.2vw, 4.5rem);
	color: #7A7A7A;
	margin-bottom: 2rem;
}

/* ===== PAGE SECTIONS (POLICIES) ===== */
.page-section {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 38px 4rem 38px;
	box-sizing: border-box;
}

/* ===== FOOTER ===== */
footer {
	background: #D9D9D9;
	padding: 140px 0 40px;
	width: 100%;
}

.footer-content {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
}

.footer-left,
.footer-right {
	padding: 0 106px 40px 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.footer-left {
	display: flex;
	flex-direction: column;
	padding-left: 38px;
}

.footer-right {
	display: flex;
	flex-direction: column;
	padding-left: 38px;
}

.copyright {
	order: 10;
}

.policies {
	grid-column: 2;
	order: 11;
	margin-top: auto;
	padding: 0 106px 40px 38px;
}

.policies a {
	color: #7a7a7a;
	text-decoration: none;
	letter-spacing: 0em;
	transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.policies a:hover {
	letter-spacing: 0.02em;
	color: #1a1a1a;
}

.footer-prr-logo {
	grid-column: 2;
	order: 12;
	padding: 16px 106px 38px 38px;
	margin: 0;
}

.footer-section {
	margin-bottom: 0;
}

.footer-section h3 {
	font-size: clamp(2.5rem, 5.2vw, 4.5rem);
	color: #7A7A7A;
	font-family: 'Gilda Display', serif;
	margin: 0;
	line-height: 1;
	letter-spacing: 0em;
	transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.footer-section h3:hover {
	letter-spacing: 0.02em;
	color: #FFFFFF;
}

.footer-section.social h3 {
	color: #FFFFFF;
}

.footer-section.social h3:hover {
	color: #7A7A7A;
}

.copyright,
.policies {
	font-size: 16px;
	margin: 0;
}

.copyright {
	order: 3;
	padding-left: 38px;
}

.policies {
	order: 4;
	padding-left: 38px;
}

.footer-left {
	order: 1;
}

.footer-right {
	order: 2;
}

@media (max-width: 767px) {
	footer {
		padding: 40px 20px;
	}

	.footer-content {
		display: grid;
		grid-template-columns: 1fr;
		row-gap: 1rem;
	}

	.copyright {
		padding-top: 40px;
		order: 3;
		grid-column: 1 / -1;
	}

	.policies {
		order: 4;
		grid-column: 1 / -1;
		margin-top: 0;
	}

	.footer-section {
		margin-bottom: 0.5rem;
	}

	.footer-section h3 {
		font-size: 32px;
	}

	.footer-left {
		padding: 0;
		width: 100%;
		display: flex;
		flex-direction: column;
		order: 1;
	}

	.footer-right {
		padding: 0;
		width: 100%;
		display: flex;
		flex-direction: column;
		order: 2;
	}
}

/* ===== PROJECT PAGE ===== */
.project-page {
	width: 100%;
}

.project-page .hero {
	padding: 160px 38px 60px;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	align-items: flex-start;
}

.project-page .hero-left {
	flex: 1;
	width: 100%;
}

.project-page .hero-left h1 {
	font-size: clamp(2.5rem, 5.2vw, 4.5rem);
	color: #7A7A7A;
	line-height: 1.1;
	margin-bottom: 0;
	font-family: 'Gilda Display', serif;
}

.project-page .hero-right {
	columns: 2;
	column-gap: 3rem;
}

.project-page .hero-right p {
	font-size: clamp(18px, 1vw + 16px, 20px);
	color: #555;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.gallery-section {
	padding: 200px 38px 0 38px;
	width: 100%;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	max-width: 100vw;
}

.gallery-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	width: 100%;
}

.gallery-row img {
	transition: transform 0.5s ease;
	cursor: pointer;
}

.gallery-row img:hover {
	transform: scale(1.02);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
	margin: 0 auto;
	margin-bottom: 3rem;
	auto-rows: auto;
}

.gallery-grid img {
	width: 100%;
	aspect-ratio: 2/3;
	object-fit: cover;
	transition: transform 0.5s ease;
	cursor: pointer;
}

.gallery-grid img:nth-child(1) {
	grid-column: span 6;
	aspect-ratio: 3/2;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3) {
	grid-column: span 3;
	aspect-ratio: 2/3;
}

.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(5) {
	grid-column: span 3;
	aspect-ratio: 1/1;
}

.gallery-grid img:nth-child(6) {
	grid-column: span 6;
	aspect-ratio: 3/2;
}

.gallery-grid img:nth-child(7),
.gallery-grid img:nth-child(8),
.gallery-grid img:nth-child(9) {
	grid-column: span 2;
	aspect-ratio: 2/3;
}

.gallery-grid img:nth-child(10),
.gallery-grid img:nth-child(11) {
	grid-column: span 3;
	aspect-ratio: 2/3;
}

.gallery-grid img:nth-child(12) {
	grid-column: span 3;
	aspect-ratio: 2/3;
	order: 5;
}

.gallery-grid img:nth-child(13) {
	grid-column: span 6;
	aspect-ratio: 1/1;
	order: 1;
}

.gallery-grid img:nth-child(16) {
	grid-column: span 3;
	aspect-ratio: 1/1;
	order: 2;
}

.gallery-grid img:nth-child(14) {
	grid-column: span 3;
	aspect-ratio: 1/1;
	order: 3;
}

.gallery-grid img:nth-child(15) {
	grid-column: span 3;
	aspect-ratio: 2/3;
	order: 4;
}

.gallery-grid img:hover {
	transform: scale(1.05);
}

/* Gallery with 5 images (Almedina pattern) */
.gallery-grid img:nth-child(1):nth-last-child(5),
.gallery-grid img:nth-child(2):nth-last-child(4),
.gallery-grid img:nth-child(3):nth-last-child(3),
.gallery-grid img:nth-child(4):nth-last-child(2),
.gallery-grid img:nth-child(5):nth-last-child(1) {
	grid-column: 1 / -1;
}

.gallery-grid img:nth-child(1):nth-last-child(5) {
	aspect-ratio: 1/1;
}

.gallery-grid img:nth-child(2):nth-last-child(4),
.gallery-grid img:nth-child(3):nth-last-child(3),
.gallery-grid img:nth-child(4):nth-last-child(2),
.gallery-grid img:nth-child(5):nth-last-child(1) {
	aspect-ratio: 3/2;
}

.highlights-section {
	padding: 0 38px;
	max-width: 1280px;
	margin: 0 auto;
}

.highlights-section h2 {
	font-size: clamp(2.5rem, 5.2vw, 4.5rem);
	color: #7A7A7A;
	line-height: 1.1;
	margin-bottom: 3rem;
}

/* ===== DISCLAIMER SECTION ===== */
.disclaimer {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: baseline;
	padding: 0 38px 60px 38px;
	gap: 2rem;
	max-width: 1280px;
	margin: 0 auto;
}

.disclaimer-left {
	flex: 0 0 calc(50% - 1rem);
	min-width: 0;
}

.disclaimer-right {
	flex: 0 0 calc(50% - 1rem);
	overflow: hidden;
}

.disclaimer p {
	font-size: 16px;
	color: #7A7A7A;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.disclaimer strong {
	color: #7a7a7a;
	font-weight: 600;
}

.disclaimer a {
	color: #1a1a1a;
	text-decoration: underline;
}

@media (max-width: 1024px) {
	.disclaimer {
		flex-direction: column;
		padding: 60px 38px;
	}

	.disclaimer-left,
	.disclaimer-right {
		flex: 1 1 auto;
	}
}

/* ===== INSPIRATION PAGE SPECIFIC STYLES ===== */
.inspiration-page .gallery-section {
	padding: 0 38px 0 38px;
}

@media (max-width: 767px) {
	.inspiration-page .gallery-section {
		padding: 60px 20px 0 20px;
	}
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1366px) {
	/* Heading sizes now handled by clamp() for smooth scaling */
}

@media (max-width: 1200px) {
	.featured-section {
		padding: 100px 76px;
	}

	.connection-section {
		padding: 100px 38px 0;
	}

	.experience-section {
		padding: 38px;
	}

	.cta-section {
		padding: 100px 76px;
	}

	.footer-left,
	.footer-right {
		padding: 0 38px;
	}

	.project-page .hero {
		padding: 100px 38px 40px;
	}

	.project-page .hero-left h1 {
		font-size: 60px;
	}

	.gallery-section {
		padding: 100px 38px 0 38px;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1024px) {
	body {
		padding-top: 88px;
	}

	.hero {
		flex-direction: column;
		padding: 80px 20px 40px;
	}

	.hero-left,
	.hero-right {
		flex: 1 1 auto;
	}

	.doho-nav-overlay__columns {
		grid-template-columns: 1fr 1fr;
		gap: 48px 24px;
		padding-bottom: 48px;
	}

	.featured-section {
		padding: 60px 38px;
	}

	.connection-heading-section {
		padding: 96px 38px 0;
		grid-template-columns: 1fr;
		row-gap: 0;
	}

	.connection-heading-section h2 {
		grid-column: 1;
		font-size: 60px;
	}

	.connection-description-section {
		padding: 3rem 38px;
		grid-template-columns: 1fr;
		gap: 0;
	}

	.connection-description-left {
		grid-column: 1;
		margin-bottom: 2rem;
	}

	.connection-description-left p {
		font-size: 18px;
	}

	.connection-description-right {
		grid-column: 1;
		grid-row: auto;
	}

	/* Show circle video and hide fullwidth on tablet */
	.fullwidth-svg {
		display: none;
	}

	.circle-video-svg {
		display: block;
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 1rem;
	}

	.css-masked-video-container.circle-video-svg {
		padding-top: 38px;
	}

	.connection-section {
		display: flex;
		flex-direction: column;
		padding: 0 38px 0;
		grid-template-columns: unset;
		gap: 0;
	}

	.connection-videos {
		position: static;
		left: auto;
		width: auto;
		padding-left: 0;
		max-width: none;
		flex-wrap: wrap;
		gap: 1rem;
		margin-bottom: 2rem;
		order: 2;
	}

	.connection-video-item {
		flex: 0 0 calc(50% - 0.5rem);
		aspect-ratio: 1;
	}

	.connection-center {
		padding: 0 38px;
		margin-bottom: 1.5rem;
		order: 1;
	}

	.connection-right {
		padding: 0 38px;
		padding-right: 38px;
		order: 3;
	}

	.experience-section {
		grid-template-columns: 1fr;
		padding: 48px 38px;
	}

	.features-grid {
		margin-left: 0;
	}

	.carousel-images {
		display: flex;
		flex-direction: row;
		overflow: hidden;
		width: 100%;
		gap: 0;
	}

	.carousel-images img {
		flex: 0 0 100%;
		width: 100%;
		height: auto;
		aspect-ratio: 2 / 3;
	}

	.cta-section {
		padding: 60px 38px;
	}

	footer {
		padding: 80px 0 40px;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}

	.footer-left,
	.footer-right {
		padding: 0 38px 40px 38px;
	}

	.policies {
		grid-column: 1;
		padding: 0 38px 40px 38px;
	}

	.footer-prr-logo {
		grid-column: 1;
		padding: 38px 38px;
	}
}

@media (max-width: 767px) {
	body {
		padding-top: 88px;
	}

	.page-section {
		padding: 0 20px 4rem 20px;
	}

	.doho-header__inner {
		padding: 0 20px;
	}


	.doho-nav-overlay {
		padding: 40px 20px 80px;
	}

	.doho-nav-overlay__content {
		padding: 0 20px;
	}

	.doho-nav-overlay__close {
		right: 20px;
	}

	.doho-nav-overlay__heading {
		margin-bottom: 0;
	}

	.doho-nav-overlay__heading h2 {
		font-size: 48px;
	}

	.doho-nav-overlay__icon {
		display: none;
	}

	.doho-nav-overlay__columns {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.doho-nav-col__links a {
		font-size: 18px;
	}

	.hero {
		padding: 60px 20px 40px;
	}

	.hero h1 {
		font-size: 48px;
		line-height: 1.3;
		margin-bottom: 1.5rem;
	}

	.hero p {
		font-size: 16px;
	}

	.featured-section {
		padding: 60px 20px;
	}

	.featured-section h2 {
		font-size: 32px;
		margin-bottom: 1rem;
	}

	.featured-label {
		margin-bottom: 1rem;
	}

	.carousel-wrapper {
		min-height: auto;
		height: auto;
		width: 100vw;
		margin-left: -38px;
		margin-right: -38px;
	}

	.carousel-section + div {
		padding: 1rem 20px !important;
	}

	.carousel-slides-container {
		width: 100vw;
		margin-left: -38px;
		margin-right: -38px;
	}

	.carousel-images {
		padding: 0;
		display: flex;
		flex-direction: row;
		overflow: visible;
		width: 300vw;
		gap: 0;
		grid-template-columns: unset;
		margin-bottom: 0;
	}

	.carousel-images img {
		width: 100vw;
		height: 150vw;
		aspect-ratio: auto;
		object-fit: cover;
		flex-shrink: 0;
	}

	.connection-heading-section {
		padding: 60px 20px 1.5rem;
		grid-template-columns: 1fr;
	}

	.connection-heading-section h2 {
		grid-column: 1;
		font-size: 40px;
		line-height: 1.2;
		margin-bottom: 0;
	}

	.connection-description-section {
		padding: 60px 20px;
		grid-template-columns: 1fr;
		gap: 0;
	}

	.connection-description-left {
		grid-column: 1;
		margin-bottom: 1.5rem;
	}

	.connection-description-left p {
		font-size: 16px;
	}

	.connection-description-right {
		grid-column: 1;
		grid-row: auto;
		gap: 16px;
	}

	/* Show circle video and hide fullwidth on mobile */
	.fullwidth-svg {
		display: none;
	}

	.circle-video-svg {
		display: block;
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 1rem;
	}

	.css-masked-video-container.circle-video-svg {
		padding-top: 38px;
	}

	.connection-section {
		display: flex;
		flex-direction: column;
		padding: 0 20px 0;
		grid-template-columns: unset;
		gap: 0;
	}

	.connection-center {
		padding: 0 20px;
		margin-bottom: 1.5rem;
		order: 1;
	}

	.connection-center p {
		font-size: 16px;
		margin-bottom: 0;
		line-height: 1.6;
	}

	.connection-videos {
		position: static;
		left: auto;
		width: 100%;
		padding-left: 0;
		max-width: none;
		margin-bottom: 1.5rem;
		gap: 1rem;
		order: 2;
		display: flex;
		flex-direction: row;
	}

	.connection-video-item {
		flex: 0 0 calc(50% - 0.5rem);
		aspect-ratio: 1;
	}

	.connection-right {
		padding: 0 20px;
		padding-right: 20px;
		gap: 1rem;
		order: 3;
	}

	.connection-feature p {
		font-size: 16px;
	}

	.experience-section {
		padding: 60px 20px;
	}

	.feature-item {
		display: flex;
		flex-direction: column;
		gap: 0.25rem;
		margin-bottom: 1.5rem;
	}

	.feature-item h4 {
		font-size: 18px;
		margin-bottom: 0.5rem;
	}

	.feature-item p {
		font-size: 14px;
		line-height: 1.5;
	}

	.cta-section {
		padding: 60px 20px;
	}

	.cta-section h2 {
		font-size: 40px;
		margin-bottom: 1.5rem;
	}

	footer {
		padding: 60px 0 30px;
	}

	.footer-left,
	.footer-right {
		padding: 0 20px;
	}

	.footer-section h3 {
		font-size: 56px;
	}

	.copyright,
	.policies {
		padding-left: 20px;
	}

	.footer-prr-logo {
		padding-left: 20px;
	}

	/* PRR page logo bar responsive */
	img[src*="barra_logos_prr"] {
		width: 135px !important;
	}

	.project-page .hero {
		padding: 60px 20px 40px;
	}

	.project-page .hero-left h1 {
		font-size: 48px;
	}

	.project-page .hero-right {
		columns: 1;
	}

	.project-page .hero-right p {
		font-size: 16px;
	}

	.disclaimer {
		flex-direction: column;
		padding: 60px 20px;
	}

	.disclaimer-left,
	.disclaimer-right {
		flex: 1 1 auto;
	}

	.gallery-section {
		padding: 60px 20px 0 20px;
	}

	.gallery-row {
		flex-direction: column;
		gap: 15px;
	}

	.gallery-row img {
		width: 100% !important;
		height: 300px;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.gallery-grid img {
		height: 300px;
	}

	.highlights-section {
		padding: 60px 20px;
	}

	.highlights-section h2 {
		font-size: 42px;
	}

	/* Mobile: 5-image gallery */
	.gallery-grid img:nth-child(1):nth-last-child(5),
	.gallery-grid img:nth-child(2):nth-last-child(4),
	.gallery-grid img:nth-child(3):nth-last-child(3),
	.gallery-grid img:nth-child(4):nth-last-child(2),
	.gallery-grid img:nth-child(5):nth-last-child(1) {
		grid-column: 1 / -1;
	}

	.gallery-grid img:nth-child(1):nth-last-child(5) {
		height: 300px;
	}

	.gallery-grid img:nth-child(2):nth-last-child(4),
	.gallery-grid img:nth-child(3):nth-last-child(3),
	.gallery-grid img:nth-child(4):nth-last-child(2),
	.gallery-grid img:nth-child(5):nth-last-child(1) {
		height: 200px;
	}
}

/* Desktop carousel override */
@media (min-width: 1025px) {
	.carousel-slides-container {
		width: 100%;
	}

	.carousel-images {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		overflow: visible;
		width: 100%;
	}

	.carousel-images img {
		width: 100%;
		height: auto;
		aspect-ratio: 2 / 3;
		object-fit: cover;
	}
}

/* ===== PROJECTS FILTER ===== */

	.projects-filter-section {
		padding: 2rem 38px 0 38px;
		max-width: 1280px;
		margin: 0 auto;
	}

	.filter-container {
		display: flex;
		gap: 1rem;
		flex-wrap: wrap;
	}

	.filter-btn {
		padding: 15px 36px;
		background: #7A7A7A;
		color: #fff;
		border: none;
		font-family: 'Baskerville', Georgia, serif;
		font-size: 16px;
		font-weight: 500;
		cursor: pointer;
		transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
		border-radius: 60px;
		letter-spacing: 0em;
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	.filter-btn:hover {
		background: #0F0F0F;
		color: #fff;
		letter-spacing: 0.02em;
	}

	.filter-btn--active {
		background: #1d1d1b;
		color: #fff;
	}

	.project-card.hidden {
		display: none;
	}

	/* ===== PROJECTS SECTION ===== */

	.projects-section {
		padding: 3rem 38px;
	}

	.projects-grid {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 20px !important;
	}

	.project-card {
		text-decoration: none;
		color: inherit;
		display: block;
		cursor: pointer;
	}

	.project-card__image-wrapper {
		position: relative;
		overflow: hidden;
		aspect-ratio: 1 / 1;
		width: 100%;
	}

	.project-card__image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform 0.3s ease;
	}

	.project-card:hover .project-card__image {
		transform: scale(1.05);
	}

	.project-card__overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0);
		transition: background 0.3s ease;
	}

	.project-card:hover .project-card__overlay {
		background: rgba(0, 0, 0, 0.5);
	}

	.project-card__content {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.project-card__title {
		font-family: 'Gilda Display', serif;
		font-size: 36px;
		line-height: 1.4;
		letter-spacing: -0.5px;
		color: #fff;
		transition: opacity 0.3s ease, letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		opacity: 0;
		margin: 0;
		margin-right: 12px;
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
		pointer-events: none;
	}

	.project-card__link {
		font-size: 16px;
		color: #fff;
		font-family: 'Gilda Display', serif;
		letter-spacing: -1px;
		transition: opacity 0.3s ease, letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		opacity: 0;
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
		pointer-events: none;
	}

	.project-card:hover .project-card__title {
		opacity: 1;
		letter-spacing: -0.3px;
	}

	.project-card:hover .project-card__link {
		opacity: 1;
		letter-spacing: -0.8px;
	}

	/* Tablet */
	@media (max-width: 1024px) {
		.projects-filter-section {
			padding: 2rem 38px 0 38px;
		}

		.filter-btn {
			padding: 12px 28px;
			font-size: 14px;
		}

		.projects-section {
			padding: 3rem 38px;
		}

		.projects-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 20px;
		}

		.project-card__image-wrapper {
			aspect-ratio: 2 / 3;
		}

		.project-card__title {
			font-size: 28px;
		}

		.project-card__link {
			font-size: 14px;
		}
	}

	/* Mobile */
	@media (max-width: 767px) {
		.projects-filter-section {
			padding: 1.5rem 20px 0 20px;
		}

		.filter-container {
			gap: 0.5rem;
		}

		.filter-btn {
			padding: 12px 24px;
			font-size: 13px;
		}

		.projects-section {
			padding: 1.5rem 20px;
		}

		.projects-grid {
			grid-template-columns: 1fr !important;
			gap: 1rem;
		}

		.project-card__image-wrapper {
			aspect-ratio: 2 / 3;
		}

		.project-card__title {
			font-size: 20px;
			margin-right: 8px;
		}

		.project-card__link {
			font-size: 13px;
		}
	}

/* ===== CONTACT VIDEO SECTION ===== */
.contact-video-section {
	width: 100vw;
	position: relative;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	height: calc(100vw * 0.66);
	overflow: hidden;
	margin: 3rem 0;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
	padding: 4rem 38px 200px 38px;
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
}

.contact-form-wrapper {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 38px;
}

.contact-form-wrapper h2 {
	font-family: 'Gilda Display', serif;
	font-size: 48px;
	line-height: 1.2;
	letter-spacing: -0.5px;
	text-align: left;
	margin-bottom: 1rem;
}

.contact-subtitle {
	font-family: 'Baskerville', Georgia, serif;
	font-size: 16px;
	line-height: 1.6;
	text-align: left;
	color: #5a5a5a;
	margin-bottom: 2rem;
}

/* Form Styling */
.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group.full-width {
	grid-column: 2;
	grid-row: 1 / 4;
}

.form-group.checkbox-group {
	grid-column: 1 / -1;
}

.contact-form .btn {
	grid-column: 1 / -1;
}

.form-group label {
	font-family: 'Gilda Display', serif;
	font-size: 14px;
	letter-spacing: 0.5px;
	color: #1a1a1a;
	text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
	font-family: 'Baskerville', Georgia, serif;
	font-size: 16px;
	padding: 12px 16px;
	border: 1px solid #d0d0d0;
	border-radius: 0;
	background-color: #fff;
	color: #1a1a1a;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #1a1a1a;
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
	font-family: 'Baskerville', Georgia, serif;
	line-height: 1.5;
}

.form-group select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'%3e%3c/path%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 20px;
	padding-right: 40px;
}

/* Checkbox Styling */
.checkbox-group {
	flex-direction: row;
	align-items: flex-start;
	gap: 1rem;
	margin: 1rem 0;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-family: 'Baskerville', Georgia, serif;
	font-size: 14px;
	line-height: 1.5;
	color: #5a5a5a;
	text-transform: none !important;
}

.checkbox-label span {
	text-transform: none !important;
}

.checkbox-label input[type="checkbox"] {
	width: 20px !important;
	height: 20px !important;
	min-width: 20px;
	min-height: 20px;
	margin-top: 2px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	flex-shrink: 0;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid #7a7a7a;
	background-color: #fff;
	outline: none;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.checkbox-label input[type="checkbox"]:checked {
	background-color: #1a1a1a;
	border-color: #1a1a1a;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}

.checkbox-label input[type="checkbox"]:focus {
	border-color: #0F0F0F;
}

/* Submit Button */
.contact-btn {
	margin-top: 1.5rem;
	width: 100%;
	padding: 16px 36px;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Form Message */
.form-message {
	padding: 1rem;
	border-radius: 4px;
	font-family: 'Baskerville', Georgia, serif;
	font-size: 14px;
	text-align: center;
	margin-top: 1rem;
}

.form-message.success {
	background-color: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #c8e6c9;
}

.form-message.error {
	background-color: #ffebee;
	color: #c62828;
	border: 1px solid #ffcdd2;
}

/* ===== RESPONSIVE CONTACT ===== */

/* Tablet */
@media (max-width: 1024px) {
	.contact-video-section {
		padding: 3rem 38px;
	}

	.contact-form-section {
		padding: 3rem 38px;
	}

	.contact-form-wrapper {
		padding: 0;
	}

	.contact-form {
		grid-template-columns: 1fr;
	}

	.form-group.full-width {
		grid-column: 1;
		grid-row: auto;
	}

	.contact-form-wrapper h2 {
		font-size: 40px;
	}

	.contact-subtitle {
		font-size: 15px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.contact-video-section {
		padding: 2rem 20px;
	}

	.contact-form-section {
		padding: 2rem 20px;
	}

	.contact-form-wrapper {
		padding: 0;
	}

	.contact-form {
		grid-template-columns: 1fr;
	}

	.form-group.full-width {
		grid-column: 1;
		grid-row: auto;
	}

	.contact-form-wrapper h2 {
		font-size: 32px;
	}

	.contact-subtitle {
		font-size: 14px;
		margin-bottom: 1.5rem;
	}

	.form-group label {
		font-size: 13px;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		font-size: 16px;
		padding: 12px 14px;
	}

	.form-group textarea {
		min-height: 120px;
	}

	.checkbox-label {
		font-size: 13px;
	}
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	max-width: 420px;
	background: white;
	border: 1px solid #d9d9d9;
	padding: 2.5rem;
	z-index: 9999;
	animation: slideUp 0.3s ease-out;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-banner-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.cookie-banner-text h3 {
	font-family: 'Gilda Display', serif;
	font-size: 20px;
	margin: 0 0 1rem 0;
	color: #1a1a1a;
	line-height: 1.4;
}

.cookie-banner-text p {
	font-family: 'Baskerville', Georgia, serif;
	font-size: 15px;
	line-height: 1.7;
	color: #5a5a5a;
	margin: 0;
}

.cookie-banner-text a {
	color: #1a1a1a;
	text-decoration: none;
	border-bottom: 1px solid #1a1a1a;
	transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.cookie-banner-text a:hover {
	color: #7a7a7a;
}

.cookie-banner-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.cookie-btn {
	padding: 15px 36px;
	border: none;
	cursor: pointer;
	font-family: 'Baskerville', Georgia, serif;
	font-size: 16px;
	transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	font-weight: 500;
	border-radius: 60px;
	text-decoration: none;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0em;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.cookie-btn--primary {
	background: #7a7a7a;
	color: white;
}

.cookie-btn--primary:hover {
	background: #0f0f0f;
	color: white;
	letter-spacing: 0.02em;
}

.cookie-btn--secondary {
	background: white;
	color: #1a1a1a;
	border: 1px solid #1a1a1a;
}

.cookie-btn--secondary:hover {
	background: #1a1a1a;
	color: white;
	border-color: #1a1a1a;
	letter-spacing: 0.02em;
}

.cookie-btn--tertiary {
	background: white;
	color: #1a1a1a;
	border: 1px solid #d9d9d9;
	padding: 15px 36px;
	font-size: 16px;
}

.cookie-btn--tertiary:hover {
	background: #f5f5f5;
	border-color: #1a1a1a;
	letter-spacing: 0.02em;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s ease-out;
}

.cookie-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
}

.cookie-modal-content {
	position: relative;
	background: white;
	border: 1px solid #d9d9d9;
	max-width: 500px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	animation: modalSlideUp 0.3s ease-out;
}

.cookie-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
	border-bottom: 1px solid #d9d9d9;
}

.cookie-modal-header h2 {
	font-family: 'Gilda Display', serif;
	font-size: 24px;
	margin: 0;
	color: #1a1a1a;
}

.cookie-modal-close {
	background: none;
	border: none;
	font-size: 28px;
	color: #7a7a7a;
	cursor: pointer;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease;
}

.cookie-modal-close:hover {
	color: #1a1a1a;
}

.cookie-modal-body {
	padding: 2rem;
}

.cookie-category {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #d9d9d9;
}

.cookie-category:last-child {
	border-bottom: none;
}

.cookie-category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.cookie-checkbox {
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 0.75rem;
}

.cookie-checkbox input {
	width: 20px;
	height: 20px;
	cursor: pointer;
	accent-color: #1a1a1a;
}

.cookie-checkbox input:disabled {
	cursor: not-allowed;
	opacity: 0.6;
}

.cookie-checkbox-label {
	font-family: 'Baskerville', Georgia, serif;
	font-size: 16px;
	color: #1a1a1a;
	font-weight: 500;
}

.cookie-required {
	font-family: 'Baskerville', Georgia, serif;
	font-size: 12px;
	color: #7a7a7a;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cookie-category-description {
	font-family: 'Baskerville', Georgia, serif;
	font-size: 14px;
	color: #5a5a5a;
	line-height: 1.6;
	margin: 0;
	margin-left: 2.75rem;
}

.cookie-modal-footer {
	padding: 2rem;
	border-top: 1px solid #d9d9d9;
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes modalSlideUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 767px) {
	.cookie-banner {
		bottom: 1rem;
		left: 1rem;
		right: 1rem;
		max-width: none;
	}

	.cookie-banner-buttons {
		flex-direction: column;
	}

	.cookie-btn {
		width: 100%;
	}

	.cookie-modal-content {
		width: 95%;
	}

	.cookie-modal-header,
	.cookie-modal-body,
	.cookie-modal-footer {
		padding: 1.5rem;
	}
}
