@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Manrope:wght@400;500;600&display=swap');

:root {
	--wine-950: #21070e;
	--wine-900: #2f0914;
	--wine-800: #4b0d1d;
	--wine-700: #68162b;
	--champagne: #e6c58c;
	--champagne-light: #f2dfbb;
	--ivory: #f7f1e8;
	--paper: #fffaf2;
	--ink: #251c1e;
	--muted: #756a6b;
	--border: rgba(70, 32, 41, .18);
	--serif: "Cormorant Garamond", Georgia, serif;
	--sans: "Manrope", Arial, sans-serif;
	--max: 1280px;
}

.gallery-open { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }.gallery-open img { display: block; }.gallery-lightbox-open { overflow: hidden; }.gallery-lightbox { position: fixed; z-index: 1000; inset: 0; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: clamp(.5rem, 3vw, 2rem); padding: clamp(1rem, 4vw, 4rem); background: rgba(18, 2, 8, .94); }.gallery-lightbox[hidden] { display: none; }.gallery-lightbox img { grid-column: 2; width: 100%; max-width: min(1100px, 82vw); max-height: 82vh; margin: 0 auto; object-fit: contain; }.gallery-lightbox button { border: 1px solid rgba(230,197,140,.65); background: rgba(55,7,20,.72); color: #fff; cursor: pointer; }.gallery-lightbox-prev, .gallery-lightbox-next { width: 52px; height: 52px; border-radius: 50%; font-size: 1.5rem; }.gallery-lightbox-close { position: absolute; top: 1.3rem; right: 1.3rem; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; font-size: 1.8rem; line-height: 1; }.gallery-lightbox-count { position: absolute; bottom: 1.35rem; left: 50%; margin: 0; transform: translateX(-50%); color: var(--champagne); font-size: .7rem; font-weight: 700; letter-spacing: .15em; }

@media (max-width: 640px) { .gallery-lightbox { grid-template-columns: 44px minmax(0, 1fr) 44px; gap: .4rem; padding: 1rem .35rem; }.gallery-lightbox img { max-width: 100%; max-height: 72vh; }.gallery-lightbox-prev, .gallery-lightbox-next { width: 40px; height: 40px; }.gallery-lightbox-close { top: .8rem; right: .8rem; } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--ivory);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3 {
	margin: 0;
	font-family: var(--serif);
	font-weight: 500;
	line-height: .96;
	letter-spacing: -.025em;
}
h1 { font-size: clamp(3.5rem, 8vw, 7.8rem); }
h2 { font-size: clamp(2.7rem, 5.6vw, 5.4rem); }
p { margin: 0 0 1.3rem; }

.screen-reader-text,
.skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.skip-link:focus {
	position: fixed;
	z-index: 10000;
	top: 1rem;
	left: 1rem;
	background: var(--paper);
	padding: .75rem 1rem;
	color: var(--wine-900);
}
.section {
	width: min(100% - 2.5rem, var(--max));
	margin-inline: auto;
	padding-block: clamp(5.5rem, 10vw, 10rem);
}
.eyebrow {
	margin: 0 0 1.3rem;
	color: var(--champagne);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .23em;
	line-height: 1.4;
	text-transform: uppercase;
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: .85rem 1.5rem;
	border: 1px solid transparent;
	font-size: .76rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	transition: background-color .25s, color .25s, border-color .25s, transform .25s;
}
.button:hover { transform: translateY(-2px); }
.button-gold, .button-gold:visited { background: var(--champagne); color: var(--wine-950) !important; }
.button-gold:hover, .button-gold:focus-visible { background: var(--champagne-light); color: var(--wine-950) !important; }
.button-ghost, .button-ghost:visited { border-color: rgba(255,255,255,.5); color: #fff !important; }
.button-ghost:hover, .button-ghost:focus-visible { background: rgba(255,255,255,.1); border-color: #fff; color: #fff !important; }
.button-light, .button-light:visited { background: var(--paper); color: var(--wine-900) !important; }
.button-light:hover, .button-light:focus-visible { background: #fff; color: var(--wine-900) !important; }
.arrow-link {
	display: inline-block;
	padding-bottom: .25rem;
	border-bottom: 1px solid currentColor;
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.site-header {
	position: absolute;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid rgba(255,255,255,.18);
	color: #fff;
	transition: background .3s, transform .3s;
}
.site-header.is-scrolled {
	position: fixed;
	background: rgba(33,7,14,.96);
	backdrop-filter: blur(12px);
}
.header-inner {
	display: flex;
	align-items: center;
	width: min(100% - 2.5rem, 1380px);
	min-height: 92px;
	margin-inline: auto;
}
.brand { display: flex; flex: 0 0 auto; align-items: center; gap: 1rem; }
.brand img, .custom-logo {
	width: auto;
	max-width: 62px;
	max-height: 62px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}
.custom-logo-link { display: block; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.65rem; font-weight: 600; letter-spacing: .03em; }
.brand-copy small { margin-top: .45rem; color: var(--champagne); font-size: .55rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; }
.primary-navigation { margin-left: auto; }
.menu {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 2rem);
	margin: 0;
	padding: 0;
	list-style: none;
}
.menu a {
	font-size: .73rem;
	font-weight: 600;
	letter-spacing: .09em;
	text-transform: uppercase;
}
.menu a:hover, .text-link:hover { color: var(--champagne); }
.header-actions {
	display: flex;
	align-items: center;
	gap: 1.4rem;
	margin-left: 2rem;
}
.text-link {
	font-size: .73rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.header-actions .button { min-height: 42px; padding: .65rem 1rem; }
.menu-toggle { display: none; }

.hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: min(790px, 100svh);
	overflow: hidden;
	background: var(--wine-950);
	color: #fff;
}
.hero-media-stack { position: absolute; z-index: 0; inset: 0; overflow: hidden; }.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; opacity: 0; transform: scale(1.03); transition: opacity 1.25s ease; }.hero-media.is-active { z-index: 1; opacity: 1; animation: hero-push 7s ease-out both; }
.hero-shade {
	position: absolute;
	z-index: 1;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(19,3,9,.97) 0%, rgba(34,4,13,.83) 30%, rgba(38,5,14,.42) 57%, rgba(18,2,8,.28) 100%),
		linear-gradient(0deg, rgba(22,4,10,.9), transparent 48%),
		linear-gradient(180deg, rgba(14,2,7,.66), transparent 23%);
}
.hero-shade::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .12;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
	pointer-events: none;
}
@keyframes hero-push { from { transform: scale(1.03); } to { transform: scale(1.09); } }
.hero-content {
	position: relative;
	z-index: 2;
	width: min(710px, calc(100% - 9rem));
	margin: 0;
	padding: 0 0 9.2rem 4.5rem;
}
.hero-content .eyebrow { display: flex; align-items: center; gap: .9rem; }
.hero-content .eyebrow::before { content: ""; width: 48px; height: 1px; background: var(--champagne); }
.hero-content h1 { max-width: 680px; font-size: clamp(4.5rem, 5.85vw, 6.6rem); line-height: .88; }
.hero-content h1 em { color: var(--champagne); font-weight: 500; }
.hero-copy { max-width: 530px; margin: 1.7rem 0 0; color: rgba(255,255,255,.8); font-size: .88rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-actions .button { gap: .8rem; }
.play-icon { display: grid; place-items: center; width: 23px; height: 23px; padding-left: 2px; border: 1px solid currentColor; border-radius: 50%; font-size: .48rem; }
.hero-index {
	position: absolute;
	z-index: 3;
	right: 2.2rem;
	top: 42%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .8rem;
	color: #fff;
}
.hero-index b { color: var(--champagne); font-size: .7rem; }
.hero-index i { width: 1px; height: 86px; background: linear-gradient(var(--champagne) 30%, rgba(255,255,255,.25) 30%); }
.hero-index span { font-size: .58rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; writing-mode: vertical-rl; }
.film-tag {
	position: absolute;
	z-index: 3;
	right: 4.5rem;
	bottom: 2.7rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.film-ring { display: grid; place-items: center; width: 55px; height: 55px; padding-left: 2px; border: 1px solid rgba(230,197,140,.65); border-radius: 50%; color: var(--wine-950); background: radial-gradient(circle, rgba(230,197,140,.9) 0 28%, transparent 30%); font-size: .55rem; }
.film-tag small { color: #eadbd4; font-size: .56rem; font-weight: 600; letter-spacing: .15em; line-height: 1.6; text-transform: uppercase; }

.service-strip {
	display: grid;
	grid-template-columns: 1.15fr repeat(3, 1fr);
	min-height: 210px;
	padding: 0 4.5rem;
	border-top: 1px solid rgba(230,197,140,.26);
	background: linear-gradient(90deg, #25070f, #3b0a18 52%, #27070f);
	color: #fff;
}
.service-intro, .service-item { display: flex; flex-direction: column; justify-content: center; min-width: 0; border-right: 1px solid rgba(230,197,140,.18); }
.service-intro { padding-right: 3rem; }
.service-intro strong { color: var(--champagne); font-family: var(--serif); font-size: clamp(2.2rem, 3vw, 3.3rem); font-weight: 500; line-height: .92; }
.service-intro p { max-width: 320px; margin: 1rem 0 0; color: #cbbab4; font-size: .68rem; line-height: 1.7; }
.service-item { position: relative; padding: 1.5rem 2.1rem; transition: background .25s; }
.service-item:last-child { border-right: 0; }
.service-item:hover { background: rgba(255,255,255,.045); }
.service-item > span { margin-bottom: .8rem; color: var(--champagne); font-size: .58rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.service-item h2 { margin-bottom: .45rem; font-size: clamp(1.6rem, 2.1vw, 2.25rem); line-height: 1; }
.service-item p { max-width: 260px; margin: 0; color: #bfafaa; font-size: .63rem; line-height: 1.6; }
.service-item i { position: absolute; right: 1.5rem; bottom: 1.2rem; color: var(--champagne); font-style: normal; font-size: 1.2rem; }

.story-showcase {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
	min-height: 760px;
	overflow: hidden;
	background:
		radial-gradient(circle at 85% 15%, rgba(230,197,140,.09), transparent 30%),
		linear-gradient(135deg, var(--wine-800), var(--wine-950));
	color: #fff;
}
.story-showcase::before {
	content: "M";
	position: absolute;
	z-index: 0;
	right: -2vw;
	bottom: -13vw;
	color: rgba(230,197,140,.035);
	font-family: var(--serif);
	font-size: clamp(20rem, 38vw, 45rem);
	font-weight: 600;
	line-height: .7;
	pointer-events: none;
}
.story-visual { position: relative; min-height: 760px; overflow: hidden; }
.story-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.story-showcase:hover .story-visual img { transform: scale(1.025); }
.story-image-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(31,5,13,.15), rgba(31,5,13,.08) 60%, rgba(31,5,13,.7)),
		linear-gradient(0deg, rgba(24,3,9,.8), transparent 50%);
}
.story-year {
	position: absolute;
	right: -1px;
	bottom: 0;
	display: grid;
	min-width: 290px;
	padding: 2rem 2.4rem;
	border-top: 1px solid rgba(230,197,140,.45);
	border-left: 1px solid rgba(230,197,140,.45);
	background: rgba(38,7,15,.87);
	backdrop-filter: blur(12px);
}
.story-year strong {
	color: var(--champagne);
	font-family: var(--serif);
	font-size: clamp(4rem, 6vw, 6.5rem);
	font-weight: 500;
	line-height: .75;
	letter-spacing: -.04em;
}
.story-year span {
	margin-top: 1rem;
	color: rgba(255,255,255,.72);
	font-size: .62rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
}
.story-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(4rem, 7vw, 8rem);
}
.story-content .eyebrow {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}
.story-content .eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--champagne); }
.story-content h2 {
	max-width: 720px;
	font-size: clamp(3.4rem, 5.2vw, 6.1rem);
	line-height: .9;
}
.story-text {
	max-width: 590px;
	margin: 2.3rem 0 2rem;
	color: rgba(255,255,255,.68);
	font-size: .93rem;
}
.story-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100%, 360px);
	padding: 1rem 0;
	border-top: 1px solid rgba(230,197,140,.42);
	border-bottom: 1px solid rgba(230,197,140,.42);
	color: var(--champagne);
	font-size: .69rem;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
	transition: padding .25s, color .25s;
}
.story-link:hover { padding-inline: .7rem; color: #fff; }
.story-link i { font-style: normal; font-size: 1.2rem; }
.story-ornament {
	position: absolute;
	top: clamp(2rem, 5vw, 4.5rem);
	right: clamp(2rem, 5vw, 4.5rem);
	display: grid;
	place-items: center;
	width: 74px;
	height: 74px;
	border: 1px solid rgba(230,197,140,.28);
	border-radius: 50%;
	color: var(--champagne);
}
.story-ornament::before, .story-ornament::after {
	content: "";
	position: absolute;
	inset: 8px;
	border: 1px solid rgba(230,197,140,.15);
	border-radius: inherit;
}
.story-ornament::after { inset: 16px; }
.story-ornament span { font-size: .65rem; }
.story-signature {
	display: grid;
	align-self: flex-end;
	margin-top: clamp(2.5rem, 6vw, 5rem);
	text-align: right;
	line-height: 1;
}
.story-signature strong { color: var(--champagne); font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.story-signature span { margin-top: .4rem; color: rgba(255,255,255,.48); font-size: .5rem; letter-spacing: .28em; text-transform: uppercase; }

.programs { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--wine-950); }
.program-card { position: relative; min-height: 680px; overflow: hidden; color: #fff; }
.program-card + .program-card { border-left: 1px solid rgba(255,255,255,.2); }
.program-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s ease;
}
.program-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(25,3,10,.9), rgba(25,3,10,.05) 70%);
}
.program-card:hover img { transform: scale(1.045); }
.program-overlay { position: absolute; z-index: 2; inset: auto 2.2rem 2.5rem; }
.program-overlay > span { display: block; margin-bottom: 8rem; font-family: var(--serif); font-size: 1.3rem; color: var(--champagne); }
.program-overlay h2 { margin-bottom: 1.5rem; font-size: clamp(3rem, 4.2vw, 5rem); }
.program-overlay a { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.venue { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.venue-photo { position: relative; }
.venue-photo img { width: 100%; min-height: 680px; object-fit: cover; }
.venue-badge {
	position: absolute;
	right: -60px;
	bottom: 55px;
	display: grid;
	place-content: center;
	width: 130px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--wine-800);
	color: var(--champagne);
	text-align: center;
}
.venue-badge strong { font-family: var(--serif); font-size: 2.4rem; line-height: 1; }
.venue-badge span { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.venue-copy .eyebrow { color: var(--wine-700); }
.venue-copy h2 { margin-bottom: 2rem; color: var(--wine-900); }
.venue-copy > p { color: var(--muted); }
.feature-list { margin: 2rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.feature-list li { padding: .9rem 0; border-bottom: 1px solid var(--border); font-size: .86rem; }
.feature-list li::before { content: "◆"; margin-right: .8rem; color: var(--wine-700); font-size: .55rem; }

.gallery-section { border-top: 1px solid var(--border); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.section-heading .eyebrow { color: var(--wine-700); }
.section-heading h2 { color: var(--wine-900); }
.gallery-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	grid-template-rows: repeat(2, 310px);
	gap: 1rem;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid img:first-child { grid-row: 1 / 3; }

.quote-section {
	display: grid;
	grid-template-columns: 1.7fr .7fr;
	align-items: center;
	gap: 3rem;
	padding: clamp(5rem, 9vw, 8rem) max(1.25rem, calc((100% - var(--max)) / 2));
	background: var(--wine-800);
	color: #fff;
}
.quote-section h2 { max-width: 900px; }
.quote-actions { display: grid; justify-items: start; gap: 1.3rem; }
.phone-link { border-bottom: 1px solid rgba(255,255,255,.5); font-family: var(--serif); font-size: 1.7rem; }

.site-footer { padding: 5rem max(1.25rem, calc((100% - var(--max)) / 2)) 1.5rem; background: var(--wine-950); color: rgba(255,255,255,.74); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: clamp(2rem, 7vw, 7rem); }
.footer-grid > div:first-child p { max-width: 460px; }
.footer-logo { width: 190px; max-height: 85px; margin-bottom: 1.5rem; object-fit: contain; filter: brightness(0) invert(1); }
.footer-grid a { display: block; margin-bottom: .65rem; color: #fff; }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	margin-top: 4rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255,255,255,.14);
	font-size: .72rem;
}
.footer-bottom .menu { gap: 1rem; }
.mobile-whatsapp { display: none; }

.content-shell { min-height: 65vh; padding-top: 11rem; }
.archive-header, .entry-content { max-width: 920px; margin-inline: auto; }
.archive-header .eyebrow, .entry-content .eyebrow { color: var(--wine-700); }
.entry-content h1, .archive-header h1 { margin-bottom: 3rem; color: var(--wine-900); }
.entry-content h2, .entry-content h3 { margin: 2.5rem 0 1rem; color: var(--wine-900); }
.entry-content a:not(.button) { color: var(--wine-700); text-decoration: underline; }
.featured-image { margin: 0 0 3rem; }
.featured-image img { width: 100%; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.post-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.post-card h2 { margin: 1.2rem 0 .7rem; color: var(--wine-900); font-size: 2.2rem; }
.not-found { min-height: 70vh; padding-top: 13rem; text-align: center; }
.not-found .eyebrow { color: var(--wine-700); }
.not-found h1 { margin-bottom: 2rem; color: var(--wine-900); }

.subpage-hero {
	padding: 13rem max(1.25rem, calc((100% - var(--max)) / 2)) 6rem;
	background:
		linear-gradient(90deg, rgba(23,4,10,.97), rgba(48,7,20,.82)),
		url("../images/salon-kina.webp") center 46% / cover;
	color: #fff;
}
.subpage-hero h1 { max-width: 900px; }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); }
.contact-copy .eyebrow { color: var(--wine-700); }
.contact-copy h2 { margin-bottom: 2rem; color: var(--wine-900); }
.contact-copy > p { color: var(--muted); }
.contact-list { margin: 2.5rem 0; border-top: 1px solid var(--border); }
.contact-list div { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.contact-list dt { color: var(--wine-700); font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.contact-list dd { margin: 0; }
.button-whatsapp { background: #25d366; color: #092c15; }
.form-panel { padding: clamp(1.5rem, 4vw, 3rem); background: var(--paper); box-shadow: 0 24px 70px rgba(68, 23, 34, .12); }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.quote-form label > span { display: block; margin-bottom: .45rem; color: var(--wine-800); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea {
	width: 100%;
	min-height: 50px;
	padding: .7rem .85rem;
	border: 1px solid var(--border);
	border-radius: 0;
	background: #fff;
	color: var(--ink);
}
.quote-form textarea { min-height: 120px; resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: 2px solid var(--champagne); outline-offset: 1px; }
.quote-form .field-wide { grid-column: 1 / 3; }
.quote-form .consent { display: flex; align-items: flex-start; gap: .7rem; }
.quote-form .consent input { flex: 0 0 auto; width: 18px; min-height: 18px; margin-top: .2rem; }
.quote-form .consent span { margin: 0; color: var(--muted); font-size: .72rem; font-weight: 400; letter-spacing: 0; line-height: 1.55; text-transform: none; }
.honeypot { position: absolute !important; left: -10000px !important; }
.form-notice { margin-bottom: 1.2rem; padding: 1rem; border-left: 3px solid; font-size: .85rem; }
.form-notice.success { border-color: #2f7d46; background: #eaf6ee; color: #225e34; }
.form-notice.error { border-color: #a23043; background: #f9e9ec; color: #7d2434; }
.gallery-page .wp-block-gallery { gap: 1rem !important; }
.gallery-page .wp-block-image img { width: 100%; min-height: 320px; object-fit: cover; }
.gallery-placeholder { padding: 3rem; border: 1px dashed var(--border); color: var(--muted); text-align: center; }
.faq-list { max-width: 920px; }
.faq-list details { border-top: 1px solid var(--border); }
.faq-list details:last-child { border-bottom: 1px solid var(--border); }
.faq-list summary { position: relative; padding: 1.5rem 3rem 1.5rem 0; color: var(--wine-900); font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem); cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 50%; color: var(--wine-700); transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 730px; padding: 0 0 1.5rem; color: var(--muted); }
.archive-cards { display: grid; gap: 1px; padding-inline: 0; background: var(--border); }
.archive-card { background: var(--paper); }
.archive-card > a { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 430px; }
.archive-card:nth-child(even) > a { grid-template-columns: 1.15fr .85fr; }
.archive-card:nth-child(even) img { order: 2; }
.archive-card img { width: 100%; height: 100%; object-fit: cover; }
.archive-card > a > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(2rem, 6vw, 6rem); }
.archive-card .eyebrow, .package-card .eyebrow { color: var(--wine-700); }
.archive-card h2, .package-card h2 { margin-bottom: 1.2rem; color: var(--wine-900); font-size: clamp(2.8rem, 5vw, 4.8rem); }
.archive-card p, .package-card p { color: var(--muted); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.package-card { background: var(--paper); }
.package-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.package-card-body { padding: 2rem; }
.package-card h2 { font-size: 2.8rem; }

.collection-hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: 590px;
	overflow: hidden;
	padding: 9rem max(1.25rem, calc((100% - var(--max)) / 2)) 5.5rem;
	background:
		linear-gradient(90deg, rgba(31,5,13,.96), rgba(59,9,23,.78) 46%, rgba(31,5,13,.2)),
		url("../images/program-dugun.webp") center 48% / cover;
	color: #fff;
}
.collection-hero::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(90deg, rgba(230,197,140,.25) 1px, transparent 1px), linear-gradient(0deg, rgba(230,197,140,.18) 1px, transparent 1px); background-size: 120px 120px; mask-image: linear-gradient(90deg, #000, transparent 70%); }
.collection-hero-packages { background-image: linear-gradient(90deg, rgba(31,5,13,.96), rgba(59,9,23,.76) 46%, rgba(31,5,13,.22)), url("../images/salon-dugun.webp"); }
.gallery-hero { background-image: linear-gradient(90deg, rgba(31,5,13,.96), rgba(59,9,23,.76) 46%, rgba(31,5,13,.22)), url("../images/program-kina.webp"); }
.collection-hero-inner { position: relative; z-index: 1; max-width: 850px; }
.collection-hero .eyebrow { display: flex; align-items: center; gap: 1rem; }
.collection-hero .eyebrow::before { content: ""; width: 46px; height: 1px; background: var(--champagne); }
.collection-hero h1 { max-width: 750px; font-size: clamp(4rem, 7vw, 7.4rem); }
.collection-hero h1 em { display: block; color: var(--champagne); font-weight: 500; }
.collection-hero-inner > p:last-child { max-width: 530px; margin-top: 2rem; color: rgba(255,255,255,.75); }
.collection-hero-index { position: absolute; z-index: 2; right: max(2rem, calc((100% - var(--max)) / 2)); bottom: 4rem; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.collection-hero-index span { color: var(--champagne); font-size: .7rem; }.collection-hero-index i { height: 84px; width: 1px; background: linear-gradient(var(--champagne) 35%, rgba(255,255,255,.25) 35%); }.collection-hero-index small { font-size: .54rem; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }
.collection-intro { display: grid; grid-template-columns: .8fr 1.4fr; gap: 4rem; }.collection-intro .eyebrow, .package-intro .eyebrow, .gallery-intro .eyebrow { color: var(--wine-700); }.collection-intro h2, .package-intro h2, .gallery-intro h2 { color: var(--wine-900); }.collection-intro > div { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; }.collection-intro > div p, .package-intro > p, .gallery-intro > p { color: var(--muted); }
.organization-collection { background: var(--wine-950); }.organization-feature { border-bottom: 1px solid rgba(230,197,140,.23); color: #fff; }.organization-feature-link { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 600px; }.organization-feature:nth-child(even) .organization-feature-image { order: 2; }.organization-feature-image { position: relative; overflow: hidden; }.organization-feature-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(29,4,11,.48), transparent 55%); }.organization-feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }.organization-feature:hover img { transform: scale(1.04); }.organization-number { position: absolute; z-index: 1; top: 2rem; left: 2rem; display: grid; place-items: center; width: 55px; height: 55px; border: 1px solid rgba(230,197,140,.65); border-radius: 50%; background: rgba(38,7,15,.5); color: var(--champagne); font-family: var(--serif); font-size: 1.3rem; }
.organization-feature-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(3rem, 9vw, 9rem); background: radial-gradient(circle at 80% 15%, rgba(230,197,140,.08), transparent 35%); }.organization-feature-copy h2 { margin-bottom: 1.5rem; font-size: clamp(3.3rem, 5.3vw, 6rem); }.organization-feature-copy .eyebrow { margin-bottom: 1.5rem; }.organization-excerpt { max-width: 430px; color: rgba(255,255,255,.67); }.organization-excerpt p { margin-bottom: 0; }.feature-link { display: flex; align-items: center; gap: 1.3rem; margin-top: 2.2rem; padding-bottom: .6rem; border-bottom: 1px solid var(--champagne); color: var(--champagne); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }.feature-link i { font-style: normal; font-size: 1.2rem; }
.collection-empty { padding: 6rem 1.5rem; color: rgba(255,255,255,.75); text-align: center; }.collection-empty p { margin-inline: auto; max-width: 480px; }
.collection-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 3.2rem max(1.25rem, calc((100% - var(--max)) / 2)); background: var(--wine-800); color: #fff; }.collection-cta p { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.1rem); line-height: 1; }
.package-intro { display: grid; grid-template-columns: .9fr 1.1fr 1fr; gap: 3rem; align-items: start; }.package-intro h2 { font-size: clamp(3rem, 5vw, 5.2rem); }.package-collection { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }.package-feature { display: grid; min-height: 600px; overflow: hidden; background: var(--paper); }.package-feature:first-child { grid-column: span 2; grid-template-columns: 1.05fr .95fr; }.package-feature-image { min-height: 280px; overflow: hidden; }.package-feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }.package-feature:hover .package-feature-image img { transform: scale(1.035); }.package-feature-copy { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(2.4rem, 5vw, 5rem); }.package-number { position: absolute; top: 1.8rem; right: 2rem; color: rgba(75,13,29,.18); font-family: var(--serif); font-size: 4rem; line-height: 1; }.package-feature-copy .eyebrow { color: var(--wine-700); }.package-feature-copy h2 { margin-bottom: 1.2rem; color: var(--wine-900); font-size: clamp(3rem, 4.5vw, 5.4rem); }.package-feature-copy > div { max-width: 430px; color: var(--muted); }.package-feature-copy .button { margin-top: 2rem; }
.gallery-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 4rem; align-items: end; }.gallery-intro h2 { max-width: 800px; }.gallery-intro > p { max-width: 380px; margin-bottom: .7rem; }.gallery-page-premium { padding-top: 1rem; }.gallery-page-premium .wp-block-gallery, .managed-gallery { display: grid !important; grid-template-columns: repeat(12, 1fr); gap: 1rem !important; }.gallery-page-premium .wp-block-image, .managed-gallery figure { grid-column: span 4; margin: 0 !important; overflow: hidden; position: relative; background: var(--wine-950); }.gallery-page-premium .wp-block-image:nth-child(5n + 1), .managed-gallery figure:nth-child(5n + 1) { grid-column: span 8; }.gallery-page-premium .wp-block-image img, .managed-gallery img { width: 100%; min-height: 350px; height: 100%; object-fit: cover; transition: transform .6s ease; }.gallery-page-premium .wp-block-image:hover img, .managed-gallery figure:hover img { transform: scale(1.035); }.gallery-page-premium .wp-element-caption { margin: 0 !important; padding: .8rem; background: var(--wine-950); color: #fff; font-size: .7rem; }.managed-gallery figcaption { position: absolute; inset: auto 0 0; padding: 2.6rem 1.15rem 1rem; background: linear-gradient(transparent, rgba(26,3,9,.88)); color: #fff; font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }.gallery-placeholder { padding: 8rem 2rem; border: 1px solid var(--border); background: linear-gradient(135deg, var(--paper), var(--ivory)); }.gallery-placeholder > span { display: block; margin-bottom: 1rem; color: var(--champagne); font-size: 2rem; }.gallery-placeholder h2 { margin-bottom: 1rem; color: var(--wine-900); }
.detail-hero { position: relative; display: grid; align-items: end; min-height: min(820px, 100svh); overflow: hidden; background: var(--wine-950); color: #fff; }.detail-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }.detail-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,3,10,.94), rgba(36,5,13,.62) 49%, rgba(25,3,10,.15)), linear-gradient(0deg, rgba(25,3,10,.85), transparent 58%); }.detail-hero-content { position: relative; z-index: 1; width: min(100% - 2.5rem, var(--max)); margin-inline: auto; padding-bottom: 7rem; }.detail-hero-content .eyebrow { display: flex; align-items: center; gap: 1rem; }.detail-hero-content .eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--champagne); }.detail-hero-content h1 { max-width: 800px; font-size: clamp(4.5rem, 8vw, 8rem); }.detail-hero-content > p { max-width: 550px; margin-top: 2rem; color: rgba(255,255,255,.76); }.detail-hero-content .button { margin-top: 1rem; }
.detail-overview { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 10vw, 11rem); }.detail-overview-title .eyebrow { color: var(--wine-700); }.detail-overview-title h2 { color: var(--wine-900); }.detail-content { max-width: 680px; color: var(--muted); }.detail-content h2, .detail-content h3 { color: var(--wine-900); }.detail-content ul { padding-left: 1.1rem; }.detail-content li { margin-bottom: .7rem; }.detail-benefits { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(230,197,140,.25); border-bottom: 1px solid rgba(230,197,140,.25); background: var(--wine-950); color: #fff; }.detail-benefits > div { min-height: 230px; padding: 2.5rem max(1.5rem, calc((100% - var(--max)) / 6)); border-right: 1px solid rgba(230,197,140,.2); }.detail-benefits > div:last-child { border-right: 0; }.detail-benefits span { color: var(--champagne); font-size: .65rem; letter-spacing: .14em; }.detail-benefits h3 { margin-top: 3rem; font-size: clamp(1.8rem, 3vw, 3rem); }.detail-quote { display: flex; align-items: center; justify-content: space-between; gap: 3rem; padding: clamp(5rem, 9vw, 8rem) max(1.25rem, calc((100% - var(--max)) / 2)); background: var(--wine-800); color: #fff; }.detail-quote h2 { max-width: 840px; }.package-assurance { display: flex; align-items: center; justify-content: space-between; gap: 3rem; width: min(100% - 2.5rem, var(--max)); margin: 0 auto; padding: 5rem 0; }.package-assurance > div { display: flex; align-items: center; gap: 2rem; max-width: 700px; }.package-assurance span { color: var(--champagne); font-size: 2rem; }.package-assurance p { margin: 0; color: var(--muted); font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.05; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 960px) {
	.header-inner { min-height: 76px; }
	.menu-toggle {
		display: grid;
		gap: 6px;
		margin-left: auto;
		padding: 12px;
		border: 0;
		background: transparent;
		color: #fff;
	}
	.menu-toggle span:not(.screen-reader-text) { display: block; width: 24px; height: 1px; background: currentColor; }
	.primary-navigation {
		position: fixed;
		inset: 76px 0 0;
		display: none;
		padding: 3rem 1.25rem;
		background: var(--wine-950);
	}
	.primary-navigation.is-open { display: block; }
	.primary-navigation .menu { display: grid; gap: 0; }
	.primary-navigation .menu a { display: block; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.15); font-family: var(--serif); font-size: 2rem; text-transform: none; }
	.header-actions { margin-left: 1rem; }
	.header-actions .text-link { display: none; }
	.header-actions .button { display: none; }
	.hero { min-height: 760px; }
	.hero-content { width: min(680px, calc(100% - 4rem)); padding: 0 0 6rem 2rem; }
	.film-tag { right: 2rem; bottom: 2rem; }
	.hero-index { display: none; }
	.service-strip { grid-template-columns: repeat(3, 1fr); padding: 0 2rem; }
	.service-intro { grid-column: 1 / 4; padding: 2.5rem 0; border-right: 0; border-bottom: 1px solid rgba(230,197,140,.18); }
	.service-item { min-height: 180px; padding-inline: 1.25rem; }
	.story-showcase { grid-template-columns: 1fr; }
	.story-visual { min-height: 560px; }
	.story-content { min-height: 660px; }
	.programs { grid-template-columns: 1fr; }
	.program-card { min-height: 560px; }
	.program-card + .program-card { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
	.program-overlay > span { margin-bottom: 5rem; }
	.venue { grid-template-columns: 1fr; }
	.venue-photo img { min-height: 520px; }
	.venue-badge { right: 25px; bottom: -35px; }
	.venue-copy { padding-top: 2rem; }
	.quote-section { grid-template-columns: 1fr; }
	.contact-layout { grid-template-columns: 1fr; }
	.package-grid { grid-template-columns: repeat(2, 1fr); }
	.collection-hero { min-height: 530px; padding-inline: 2rem; }
	.collection-intro, .package-intro, .gallery-intro { grid-template-columns: 1fr; gap: 2rem; }
	.collection-intro > div { grid-template-columns: 1fr; gap: 1.5rem; }
	.organization-feature-link, .organization-feature:nth-child(even) .organization-feature-link { grid-template-columns: 1fr; }
	.organization-feature:nth-child(even) .organization-feature-image { order: initial; }
	.organization-feature-image { min-height: 440px; }
	.organization-feature-copy { min-height: 430px; }
	.package-feature:first-child { grid-column: auto; grid-template-columns: 1fr; }
	.package-feature { min-height: 520px; }
	.detail-overview { grid-template-columns: 1fr; gap: 3rem; }
	.detail-benefits { grid-template-columns: 1fr; }.detail-benefits > div { min-height: 170px; border-right: 0; border-bottom: 1px solid rgba(230,197,140,.2); }.detail-benefits h3 { margin-top: 1.3rem; }
	.detail-quote, .collection-cta, .package-assurance { align-items: flex-start; flex-direction: column; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid > div:first-child { grid-column: 1 / 3; }
	.post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	h1 { font-size: clamp(3.25rem, 16vw, 5.2rem); }
	h2 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
	.section { width: min(100% - 2rem, var(--max)); padding-block: 5rem; }
	.header-inner { width: calc(100% - 2rem); }
	.brand img, .custom-logo { max-width: 48px; max-height: 48px; }
	.brand-copy strong { font-size: 1.35rem; }
	.brand-copy small { font-size: .45rem; }
	.hero { min-height: 820px; }
	.hero-media { object-position: 55% center; }
	.hero-shade { background: linear-gradient(0deg, rgba(23,4,10,.94) 0%, rgba(23,4,10,.58) 75%, rgba(23,4,10,.25)); }
	.hero-content { width: calc(100% - 2rem); padding: 8rem 1rem 5rem; }
	.hero-content .eyebrow::before { width: 28px; }
	.hero-content h1 { font-size: clamp(3.7rem, 17vw, 5.2rem); }
	.hero-copy { font-size: .95rem; }
	.hero-actions { display: grid; grid-template-columns: 1fr; }
	.film-tag { display: none; }
	.story-visual { min-height: 450px; }
	.story-year { min-width: 210px; padding: 1.4rem 1.5rem; }
	.story-year strong { font-size: 4.3rem; }
	.story-content { min-height: auto; padding: 5rem 1rem; }
	.story-content h2 { font-size: clamp(3.2rem, 15vw, 4.6rem); }
	.story-ornament { top: 1.5rem; right: 1rem; width: 55px; height: 55px; }
	.story-signature { margin-top: 3rem; }
	.service-strip { grid-template-columns: 1fr; padding: 0 1rem; }
	.service-intro { grid-column: auto; }
	.service-item { min-height: 170px; border-right: 0; border-bottom: 1px solid rgba(230,197,140,.18); }
	.program-card { min-height: 520px; }
	.program-overlay { inset: auto 1.25rem 1.6rem; }
	.program-overlay > span { margin-bottom: 4rem; }
	.venue-photo img { min-height: 430px; }
	.venue-badge { width: 105px; }
	.gallery-grid { grid-template-columns: 1fr; grid-template-rows: 420px 280px 280px; }
	.gallery-grid img:first-child { grid-row: auto; }
	.section-heading { display: block; }
	.section-heading .arrow-link { margin-top: 1.5rem; }
	.quote-section { padding: 5rem 1rem; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-grid > div:first-child { grid-column: auto; }
	.footer-bottom { display: grid; }
	.footer-bottom .menu { display: grid; }
	.mobile-whatsapp {
		position: fixed;
		z-index: 90;
		right: 1rem;
		bottom: 1rem;
		display: inline-flex;
		align-items: center;
		min-height: 48px;
		padding: .7rem 1rem;
		border-radius: 999px;
		background: #25d366;
		color: #092c15;
		font-size: .74rem;
		font-weight: 700;
		letter-spacing: .04em;
		box-shadow: 0 10px 30px rgba(0,0,0,.25);
	}
	.post-grid { grid-template-columns: 1fr; }
	.content-shell { padding-top: 9rem; }
	.subpage-hero { padding-top: 10rem; }
	.quote-form { grid-template-columns: 1fr; }
	.quote-form .field-wide { grid-column: auto; }
	.form-panel { padding: 1.25rem; }
	.archive-card > a, .archive-card:nth-child(even) > a { grid-template-columns: 1fr; }
	.archive-card:nth-child(even) img { order: initial; }
	.archive-card img { min-height: 330px; }
	.package-grid { grid-template-columns: 1fr; }
	.collection-hero { min-height: 590px; padding: 8rem 1rem 4rem; }.collection-hero h1 { font-size: clamp(3.8rem, 16vw, 5.7rem); }.collection-hero-index { display: none; }
	.organization-feature-image { min-height: 340px; }.organization-feature-copy { min-height: 390px; padding: 3rem 1rem; }.organization-feature-copy h2 { font-size: clamp(3.1rem, 15vw, 4.8rem); }
	.collection-cta { padding: 3rem 1rem; }.collection-cta p { font-size: 2.3rem; }
	.package-collection { grid-template-columns: 1fr; }.package-feature, .package-feature:first-child { min-height: auto; }.package-feature-image { min-height: 300px; }.package-feature-copy { min-height: 380px; padding: 2.5rem 1.3rem; }
	.gallery-page-premium .wp-block-gallery, .managed-gallery { grid-template-columns: 1fr 1fr; gap: .7rem !important; }.gallery-page-premium .wp-block-image, .gallery-page-premium .wp-block-image:nth-child(5n + 1), .managed-gallery figure, .managed-gallery figure:nth-child(5n + 1) { grid-column: auto; }.gallery-page-premium .wp-block-image:nth-child(3n + 1), .managed-gallery figure:nth-child(3n + 1) { grid-column: span 2; }.gallery-page-premium .wp-block-image img, .managed-gallery img { min-height: 220px; }
	.detail-hero { min-height: 760px; }.detail-hero-content { width: calc(100% - 2rem); padding-bottom: 4rem; }.detail-hero-content h1 { font-size: clamp(3.8rem, 16vw, 5.8rem); }.detail-overview { padding-block: 5rem; }.detail-benefits > div { padding: 2rem 1rem; }.detail-quote { padding: 5rem 1rem; }.detail-quote h2 { font-size: clamp(3rem, 14vw, 4.5rem); }.package-assurance { width: calc(100% - 2rem); padding: 4rem 0; }.package-assurance > div { align-items: flex-start; gap: 1rem; }
}
