/* ============================================================
   Zuri Visuals — Cinematic Minimalist Luxury
   Single-page experience · borderless imagery
   ============================================================ */

:root {
  --obsidian: #0B0B0B;
  --ink: #111010;
  --gold: #C3A56B;
  --gold-soft: #D4BC8B;
  --ivory: #F6F1E8;
  --cream: #EFE9DD;
  --charcoal: #1C1A18;
  --stone: #B7AE9F;
  --mute: #8B8478;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --e: cubic-bezier(0.22, 1, 0.36, 1);
  --e-io: cubic-bezier(0.65, 0, 0.35, 1);

  --wrap: 1280px;
  --pad: clamp(22px, 5.5vw, 92px);
  --sec: clamp(88px, 12vw, 180px);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.menu-open { overflow: hidden; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ivory);
  background: var(--obsidian);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--obsidian); }

/* ---------------- Typography ---------------- */

.d1, .d2, h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }

.d1 {
  font-size: clamp(48px, 7.4vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.d2 {
  font-size: clamp(38px, 5.6vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.01em;
}
h2.section-title {
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
h3 { font-size: clamp(23px, 2.3vw, 31px); line-height: 1.18; }

.serif-em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.center { text-align: center; }

.lede { font-size: clamp(17px, 1.35vw, 20px); line-height: 1.7; color: rgba(246,241,232,0.78); max-width: 54ch; }
p { max-width: 66ch; color: rgba(246,241,232,0.72); }
.small { font-size: 13.5px; letter-spacing: 0.01em; }

/* ---------------- Layout ---------------- */

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
section { position: relative; }
.section { padding: var(--sec) 0; }
.hair { height: 1px; background: rgba(195,165,107,0.28); border: 0; }
.hair.short { width: 64px; }

.light { background: var(--cream); color: var(--charcoal); }
.light p { color: rgba(28,26,24,0.72); }
.light .lede { color: rgba(28,26,24,0.78); }
.light .eyebrow { color: #9A7C43; }
.light .hair { background: rgba(154,124,67,0.35); }

.grain::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.4; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.5'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.section > .wrap { position: relative; z-index: 2; }

/* ---------------- Navigation ---------------- */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  transition: background 0.5s var(--e), backdrop-filter 0.5s var(--e), border-color 0.5s var(--e);
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(11,11,11,0.72);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: rgba(195,165,107,0.18);
}
.nav-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 var(--pad);
  height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: height 0.5s var(--e);
}
.nav.solid .nav-inner { height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 26px; width: auto; }
.nav-links { display: flex; gap: clamp(14px, 1.8vw, 30px); list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(246,241,232,0.82); padding: 8px 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 2px; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--e);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ivory); }

.btn-inquiry {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--obsidian); background: var(--gold); padding: 12px 24px;
  transition: background 0.4s var(--e), letter-spacing 0.4s var(--e); white-space: nowrap;
}
.btn-inquiry:hover { background: var(--gold-soft); letter-spacing: 0.16em; }

.burger { display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; position: relative; z-index: 120; }
.burger span { display: block; width: 24px; height: 1.4px; background: var(--ivory); margin: 6px auto; transition: transform 0.5s var(--e), opacity 0.3s; }
.menu-open .burger span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 110; background: var(--obsidian);
  display: flex; flex-direction: column; justify-content: center; padding: 96px var(--pad) 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--e), visibility 0.5s;
}
.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(30px, 8vw, 46px); line-height: 1.5; color: var(--ivory); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mm-foot { margin-top: auto; font-size: 13px; color: var(--stone); letter-spacing: 0.02em; }
.mobile-menu .mm-foot a { font-family: var(--font-body); font-size: 13px; color: var(--gold); }

@media (max-width: 1080px) {
  .nav-links, .nav .btn-inquiry { display: none; }
  .burger { display: block; }
  .nav.solid { background: rgba(11,11,11,0.9); }
}

/* ---------------- Hero ---------------- */

.hero { height: 100svh; min-height: 640px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 116%; object-fit: cover; object-position: 62% 18%;
  transform: scale(1.06); will-change: transform;
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.05) translate(0,0); } to { transform: scale(1.15) translate(-1.4%, -2%); } }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(9,9,9,0.94) 0%, rgba(9,9,9,0.6) 40%, rgba(9,9,9,0.15) 78%, rgba(9,9,9,0.35) 100%),
    linear-gradient(0deg, rgba(9,9,9,0.92) 2%, rgba(9,9,9,0.15) 42%, rgba(9,9,9,0.2) 100%);
}
.hero-inner { position: relative; z-index: 3; width: 100%; padding-bottom: clamp(56px, 9vh, 112px); }
.hero .d1 { max-width: 15ch; margin: 28px 0 0; }
.hero .d1 .l1 { display: block; color: var(--gold); }
.hero .d1 .l2 { display: block; color: var(--ivory); }
.hero .lede { margin-top: 34px; }
.hero-ctas { display: flex; align-items: center; gap: 18px; margin-top: 46px; flex-wrap: wrap; }

.cta-gold {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--obsidian);
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 30px; transition: background 0.4s var(--e), gap 0.4s var(--e);
}
.cta-gold:hover { background: var(--gold-soft); gap: 18px; }
.cta-gold .ar { transition: transform 0.4s var(--e); }
.cta-gold:hover .ar { transform: translateX(4px); }

.cta-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(246,241,232,0.42); color: var(--ivory);
  font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 30px; transition: background 0.4s var(--e), border-color 0.4s var(--e), color 0.4s var(--e);
}
.cta-ghost:hover { background: var(--ivory); color: var(--obsidian); border-color: var(--ivory); }

/* trust strip */
.trust {
  position: relative; z-index: 3; border-top: 1px solid rgba(246,241,232,0.12);
  background: rgba(9,9,9,0.55); backdrop-filter: blur(6px);
}
.trust-inner {
  max-width: 1440px; margin: 0 auto; padding: 20px var(--pad);
  display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: space-between;
}
.trust-item { display: flex; align-items: center; gap: 11px; }
.trust-item svg { width: 19px; height: 19px; stroke: var(--gold); flex: none; }
.trust-item span { font-size: 11.5px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(246,241,232,0.82); }
@media (max-width: 900px) { .trust-inner { justify-content: flex-start; } }

/* ---------------- Intro / ethos ---------------- */

.intro-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 90px); align-items: start; }
.intro-grid .headcol .d2 { margin-top: 18px; }
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------------- Pillars ---------------- */

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 30px); }
.pillar {
  position: relative; overflow: hidden; aspect-ratio: 3 / 4; display: flex; align-items: flex-end;
  color: var(--ivory); isolation: isolate;
}
.pillar img {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--e); will-change: transform;
}
.pillar::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(9,9,9,0.92) 6%, rgba(9,9,9,0.35) 46%, rgba(9,9,9,0.12) 100%);
  transition: background 0.6s var(--e);
}
.pillar:hover img { transform: scale(1.07); }
.pillar:hover::after { background: linear-gradient(0deg, rgba(9,9,9,0.95) 10%, rgba(9,9,9,0.4) 60%, rgba(9,9,9,0.18) 100%); }
.pillar-body { padding: clamp(24px, 2.4vw, 38px); width: 100%; }
.pillar-num { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.2em; color: var(--gold); }
.pillar h3 { margin: 12px 0 10px; }
.pillar p { color: rgba(246,241,232,0.78); font-size: 15px; max-width: 34ch;
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.7s var(--e), opacity 0.6s var(--e), margin 0.6s var(--e); }
.pillar:hover p, .pillar:focus-within p { max-height: 200px; opacity: 1; }
.pillar .more {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 18px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}
.pillar .more .ar { transition: transform 0.4s var(--e); }
.pillar:hover .more .ar { transform: translateX(5px); }
@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { aspect-ratio: 16 / 11; }
  .pillar p { max-height: 200px; opacity: 1; }
}

/* ---------------- Editorial split ---------------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 96px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; }
.split-media.wide { aspect-ratio: 4 / 3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--e); }
.split-media:hover img { transform: scale(1.05); }
.split h2.section-title { margin-bottom: 22px; }
.split .rowlist { margin-top: 26px; }
@media (max-width: 860px) {
  .split, .split.rev { grid-template-columns: 1fr; gap: 28px; }
  .split.rev .split-media { order: 0; }
}

/* row list (offerings) */
.rowlist { border-top: 1px solid rgba(246,241,232,0.14); }
.light .rowlist { border-top-color: rgba(28,26,24,0.14); }
.rowlist .row { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(246,241,232,0.14); align-items: baseline; }
.light .rowlist .row { border-bottom-color: rgba(28,26,24,0.12); }
.rowlist .row .rn { font-family: var(--font-display); color: var(--gold); font-size: 15px; min-width: 34px; }
.rowlist .row .rt { font-size: 15.5px; color: rgba(246,241,232,0.82); }
.light .rowlist .row .rt { color: rgba(28,26,24,0.82); }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; margin-top: 22px; }
.chips li { font-size: 12.5px; letter-spacing: 0.03em; padding: 8px 15px; border: 1px solid rgba(246,241,232,0.24); color: rgba(246,241,232,0.82); }
.light .chips li { border-color: rgba(28,26,24,0.2); color: rgba(28,26,24,0.78); }

/* ---------------- Guest experiences tiles ---------------- */

.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.tile {
  border: 1px solid rgba(28,26,24,0.16); padding: clamp(28px, 3vw, 40px) clamp(22px, 2.2vw, 30px);
  display: flex; flex-direction: column; gap: 16px; min-height: 260px;
  transition: border-color 0.5s var(--e), background 0.5s var(--e), transform 0.5s var(--e);
}
.tile:hover { border-color: rgba(195,165,107,0.5); background: rgba(195,165,107,0.05); transform: translateY(-4px); }
.tile .ticon { width: 34px; height: 34px; stroke: var(--gold); }
.tile h3 { font-size: 25px; }
.tile p { font-size: 14px; color: rgba(28,26,24,0.72); }
.tile .more { margin-top: auto; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 940px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tiles { grid-template-columns: 1fr; } }

/* ---------------- Why / values ---------------- */

.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid rgba(246,241,232,0.14); }
.value { padding: clamp(26px, 2.6vw, 40px) clamp(16px, 1.6vw, 26px); border-bottom: 1px solid rgba(246,241,232,0.14); }
.value:not(:last-child) { border-right: 1px solid rgba(246,241,232,0.14); }
.value .ticon { width: 26px; height: 26px; stroke: var(--gold); margin-bottom: 18px; }
.value h3 { font-size: 21px; margin-bottom: 9px; }
.value p { font-size: 13.5px; }
@media (max-width: 1000px) {
  .values { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(odd) { border-right: 1px solid rgba(246,241,232,0.14); }
  .value:nth-child(even) { border-right: 0; }
}
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } .value { border-right: 0 !important; } }

.light .values { border-top-color: rgba(28,26,24,0.14); }
.light .value { border-bottom-color: rgba(28,26,24,0.14); }
.light .value:not(:last-child) { border-right-color: rgba(28,26,24,0.14); }
@media (max-width: 1000px) {
  .light .value:nth-child(odd) { border-right-color: rgba(28,26,24,0.14); }
}

/* ---------------- Process ---------------- */

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(16px, 2vw, 30px); }
.step { position: relative; padding-top: 34px; }
.step::before { content: ""; position: absolute; top: 8px; left: 0; width: 100%; height: 1px; background: rgba(195,165,107,0.32); }
.step .sn { position: absolute; top: -2px; left: 0; font-family: var(--font-display); font-size: 15px; color: var(--gold); background: var(--obsidian); padding-right: 12px; }
.light .step .sn { background: var(--cream); }
.step h3 { font-size: 23px; margin-bottom: 8px; }
.step p { font-size: 13.5px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------------- Highlights gallery ---------------- */

.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 1.8vw, 26px);
  grid-template-areas:
    "big  big  big  big  big  big  big  big  tall tall tall tall"
    "halfA halfA halfA halfA halfB halfB halfB halfB tall tall tall tall"
    "halfC halfC halfC halfC halfC halfC halfD halfD halfD halfD halfD halfD";
}
.shot { position: relative; overflow: hidden; cursor: pointer; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--e); }
.shot:hover img { transform: scale(1.06); }
.shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,9,9,0.72) 0%, transparent 46%); opacity: 0.9; transition: opacity 0.5s var(--e); }
.shot .cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 22px clamp(18px,2vw,26px); width: 100%; }
.shot .cap .ct { font-family: var(--font-display); font-size: clamp(20px, 1.8vw, 26px); color: var(--ivory); display: block; line-height: 1.1; }
.shot .cap .cs { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.shot.big { grid-area: big; aspect-ratio: 16 / 10.4; }
.shot.tall { grid-area: tall; }
.shot.halfA { grid-area: halfA; aspect-ratio: 4 / 3; }
.shot.halfB { grid-area: halfB; aspect-ratio: 4 / 3; }
.shot.halfC { grid-area: halfC; aspect-ratio: 16 / 9.5; }
.shot.halfD { grid-area: halfD; aspect-ratio: 16 / 9.5; }
@media (max-width: 780px) {
  .gallery {
    grid-template-columns: 1fr;
    grid-template-areas: "big" "tall" "halfA" "halfB" "halfC" "halfD";
  }
  .shot.big, .shot.tall, .shot.halfA, .shot.halfB, .shot.halfC, .shot.halfD { aspect-ratio: 3 / 2; }
}

/* ---------------- Collections ---------------- */

.collections { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 30px); }
.collection { border: 1px solid rgba(28,26,24,0.16); padding: clamp(28px, 3vw, 44px); transition: border-color 0.5s var(--e), background 0.5s var(--e); }
.collection:hover { border-color: rgba(195,165,107,0.5); background: rgba(195,165,107,0.06); }
.collection .cnum { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.2em; color: var(--gold); }
.collection h3 { margin: 10px 0 16px; }
.collection ul { list-style: none; }
.collection ul li { font-size: 14px; color: rgba(28,26,24,0.72); padding: 7px 0; border-bottom: 1px solid rgba(28,26,24,0.12); }
@media (max-width: 780px) { .collections { grid-template-columns: 1fr; } }

/* ---------------- Quote ---------------- */

.quote { text-align: center; }
.quote blockquote { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(30px, 4.6vw, 62px); line-height: 1.22; max-width: 20ch; margin: 0 auto; color: var(--ivory); }
.quote cite { display: block; margin-top: 26px; font-style: normal; font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }

/* ---------------- FAQ ---------------- */

.faq { max-width: 900px; }
.faq details { border-bottom: 1px solid rgba(246,241,232,0.14); padding: 22px 0; }
.light .faq details { border-bottom-color: rgba(28,26,24,0.14); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: baseline; gap: 20px; font-family: var(--font-display); font-size: clamp(21px, 2vw, 27px); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-family: var(--font-body); font-weight: 300; font-size: 24px; transition: transform 0.4s var(--e); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 14px; font-size: 15px; }

/* ---------------- Inquiry ---------------- */

.inquire-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 92px); align-items: start; }
@media (max-width: 900px) { .inquire-grid { grid-template-columns: 1fr; gap: 40px; } }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 26px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--ivory);
  background: transparent; border: 0; border-bottom: 1px solid rgba(246,241,232,0.28);
  padding: 11px 2px; transition: border-color 0.4s var(--e);
}
.field textarea { min-height: 110px; resize: vertical; }
.field select { color: var(--stone); }
.field select option { background: var(--obsidian); color: var(--ivory); }
.field input::placeholder, .field textarea::placeholder { color: var(--mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.submit {
  margin-top: 8px; display: inline-flex; align-items: center; gap: 12px; cursor: pointer;
  background: var(--gold); color: var(--obsidian); border: 0;
  font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 34px; transition: background 0.4s var(--e), gap 0.4s var(--e);
}
.submit:hover { background: var(--gold-soft); gap: 18px; }
.submit:disabled { opacity: 0.55; cursor: not-allowed; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* multi-select services dropdown */
.msdrop { position: relative; }
.msdrop-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-family: var(--font-body); font-size: 15.5px; color: var(--ivory); text-align: left;
  background: transparent; border: 0; border-bottom: 1px solid rgba(246,241,232,0.28);
  padding: 11px 2px; cursor: pointer; transition: border-color 0.4s var(--e);
}
.msdrop-toggle:focus-visible { outline: none; border-bottom-color: var(--gold); }
.msdrop.open .msdrop-toggle { border-bottom-color: var(--gold); }
.msdrop-label.placeholder { color: var(--mute); }
.msdrop-arrow { color: var(--gold); font-size: 12px; transition: transform 0.35s var(--e); flex: none; }
.msdrop.open .msdrop-arrow { transform: rotate(180deg); }
.msdrop-panel {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 20;
  background: var(--charcoal); border: 1px solid rgba(246,241,232,0.16);
  padding: 8px; display: none; max-height: 280px; overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.msdrop.open .msdrop-panel { display: block; }
.msdrop-option {
  display: flex; align-items: center; gap: 11px; padding: 10px 8px; font-size: 14.5px;
  color: rgba(246,241,232,0.88); cursor: pointer; transition: background 0.25s var(--e);
}
.msdrop-option:hover { background: rgba(195,165,107,0.08); }
.msdrop-option input { accent-color: var(--gold); width: 16px; height: 16px; flex: none; }
.msdrop-option.msdrop-unsure { margin-top: 6px; border-top: 1px solid rgba(246,241,232,0.12); padding-top: 12px; font-style: italic; color: var(--stone); }
.light .msdrop-panel { background: var(--ivory); border-color: rgba(28,26,24,0.16); }
.light .msdrop-option { color: rgba(28,26,24,0.82); }
.light .msdrop-option.msdrop-unsure { border-top-color: rgba(28,26,24,0.12); }

.form-success {
  margin-top: 26px; padding: 26px clamp(20px,2.4vw,32px); border: 1px solid rgba(195,165,107,0.4);
  background: rgba(195,165,107,0.06);
}
.form-success h3 { font-size: clamp(20px, 2vw, 25px); color: var(--gold); margin-bottom: 10px; }
.form-success p { font-size: 14.5px; }
.form-error { color: #E3B7A6; font-size: 13.5px; margin-top: 10px; }

.contact-list { list-style: none; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid rgba(246,241,232,0.12); }
.contact-list .k { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 5px; }
.contact-list .v { font-size: 16px; color: var(--ivory); }
.contact-list .v a:hover { color: var(--gold); }

/* ---------------- Footer ---------------- */

.footer { background: #070707; padding: clamp(60px, 8vw, 104px) 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(30px, 4vw, 70px); padding-bottom: 46px; border-bottom: 1px solid rgba(195,165,107,0.16); }
.footer-top img { width: 148px; margin-bottom: 18px; }
.footer-top .tag { font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--gold); margin-bottom: 12px; }
.footer h4 { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 9px; }
.footer ul a { font-size: 14px; color: rgba(246,241,232,0.7); }
.footer ul a:hover { color: var(--gold); }
.footer-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: 12px; color: rgba(183,174,159,0.6); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-top .brandcol { grid-column: 1 / -1; } }

/* ---------------- Reveal motion ---------------- */

.js [data-reveal] { opacity: 0.001; transform: translateY(30px); transition: opacity 0.9s var(--e), transform 0.9s var(--e); }
.js [data-reveal].in { opacity: 1; transform: none; }
.js [data-reveal][data-delay="1"] { transition-delay: 0.09s; }
.js [data-reveal][data-delay="2"] { transition-delay: 0.18s; }
.js [data-reveal][data-delay="3"] { transition-delay: 0.27s; }
.js [data-reveal][data-delay="4"] { transition-delay: 0.36s; }

/* ---------------- Lightbox ---------------- */

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,6,6,0.94); display: none; align-items: center; justify-content: center; padding: 5vh 5vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox .lb-close { position: absolute; top: 24px; right: 30px; background: none; border: 0; color: var(--ivory); font-size: 34px; line-height: 1; cursor: pointer; font-family: var(--font-body); font-weight: 200; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 0; color: var(--ivory); font-size: 42px; cursor: pointer; padding: 20px; opacity: 0.7; transition: opacity 0.3s; }
.lightbox .lb-nav:hover { opacity: 1; }
.lightbox .lb-prev { left: 8px; } .lightbox .lb-next { right: 8px; }

/* ---------------- Reduced motion ---------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img { animation: none; transform: scale(1.04); }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .pillar p { max-height: 200px; opacity: 1; }
}
