/* =========================================================================
   THE DECOR CONCEPT — landing page stylesheet
   Editorial black & white + warm accent. Desktop only.
   Three palettes driven by [data-palette] on <html>.
   ========================================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { min-height: 100vh; overflow-x: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--bg); }

/* =========================================================================
   PALETTE SYSTEM
   Each palette defines: bg, bg-alt, ink, ink-soft, ink-faint, accent,
   accent-hover, line, line-strong, overlay.
   Switch via [data-palette="..."] on <html>. JS persists to localStorage.
   ========================================================================= */

:root,
[data-palette="noir"] {
  --bg:           #0B0B0B;
  --bg-alt:       #121212;
  --bg-soft:      #181818;
  --ink:          #F4EFE6;
  --ink-soft:     rgba(244, 239, 230, 0.72);
  --ink-faint:    rgba(244, 239, 230, 0.42);
  --accent:       #B89B5E;
  --accent-hover: #D4B672;
  --line:         rgba(184, 155, 94, 0.28);
  --line-soft:    rgba(244, 239, 230, 0.12);
  --line-strong:  rgba(184, 155, 94, 0.55);
  --overlay:      rgba(11, 11, 11, 0.55);
  --shadow:       0 30px 80px rgba(0, 0, 0, 0.6);
  --swatch-a: #0B0B0B; --swatch-b: #F4EFE6; --swatch-c: #B89B5E;
}

[data-palette="ivoire"] {
  --bg:           #F4EFE6;
  --bg-alt:       #ECE6DA;
  --bg-soft:      #E4DDD0;
  --ink:          #161616;
  --ink-soft:     rgba(22, 22, 22, 0.72);
  --ink-faint:    rgba(22, 22, 22, 0.42);
  --accent:       #9C6B3F;
  --accent-hover: #7E5430;
  --line:         rgba(22, 22, 22, 0.16);
  --line-soft:    rgba(22, 22, 22, 0.08);
  --line-strong:  rgba(156, 107, 63, 0.55);
  --overlay:      rgba(244, 239, 230, 0.50);
  --shadow:       0 30px 80px rgba(60, 50, 30, 0.18);
  --swatch-a: #F4EFE6; --swatch-b: #161616; --swatch-c: #9C6B3F;
}

[data-palette="sangria"] {
  --bg:           #140F16;
  --bg-alt:       #1C151F;
  --bg-soft:      #241A28;
  --ink:          #ECE4DA;
  --ink-soft:     rgba(236, 228, 218, 0.72);
  --ink-faint:    rgba(236, 228, 218, 0.42);
  --accent:       #8C2E3C;
  --accent-hover: #B23D4E;
  --line:         rgba(236, 228, 218, 0.16);
  --line-soft:    rgba(236, 228, 218, 0.08);
  --line-strong:  rgba(140, 46, 60, 0.60);
  --overlay:      rgba(20, 15, 22, 0.55);
  --shadow:       0 30px 80px rgba(0, 0, 0, 0.55);
  --swatch-a: #140F16; --swatch-b: #ECE4DA; --swatch-c: #8C2E3C;
}

/* ---------- Tokens ---------- */
:root {
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", -apple-system, "Segoe UI", sans-serif;
  --max: 1320px;
  --gutter: clamp(28px, 4vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --trans: 0.5s var(--ease);
  color-scheme: dark;
}

/* ---------- Base ---------- */
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  transition: background var(--trans), color var(--trans);
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; }

/* grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: 140px 0; position: relative; }
.section--tight { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--accent); display: inline-block; }
.eyebrow--bare::before { display: none; }
.eyebrow .num { color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.rule { height: 1px; background: var(--line); border: 0; width: 100%; }
.rule--strong { background: var(--line-strong); }

.section-head { display: flex; flex-direction: column; gap: 22px; margin-bottom: 72px; }
.section-head h2 {
  font-size: clamp(40px, 5.4vw, 78px); max-width: 16ch;
}
.section-head .lede { color: var(--ink-soft); max-width: 58ch; font-size: 17px; }
.split-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.split-head h2 { font-size: clamp(40px, 5.2vw, 76px); }
.split-head .lede { color: var(--ink-soft); max-width: 52ch; font-size: 17px; }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background var(--trans), padding var(--trans), border-color var(--trans);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  padding-top: 16px; padding-bottom: 16px;
  border-bottom-color: var(--line-soft);
}
.brand { font-family: var(--serif); font-size: 22px; letter-spacing: 0.04em; line-height: 1; }
.brand small { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: 0.4em; color: var(--ink-faint); margin-top: 4px; text-transform: uppercase; }
.nav-links { display: flex; gap: 38px; align-items: center; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft);
  position: relative; padding: 6px 0; transition: color var(--trans);
}
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.4s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--accent); color: var(--ink); padding: 11px 24px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  transition: background var(--trans), color var(--trans);
}
.nav-cta:hover { background: var(--accent); color: var(--bg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; height: 100vh; min-height: 720px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero video, .hero .hero-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--overlay); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 30%, transparent 60%, var(--bg) 100%);
}
[data-palette="ivoire"] .hero::before { background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, transparent 30%, transparent 60%, var(--bg) 100%); }
.hero-inner { position: relative; z-index: 2; text-align: center; padding: 0 var(--gutter); max-width: 1100px; }
.hero .eyebrow { justify-content: center; color: var(--ink); }
.hero .eyebrow::before, .hero .eyebrow .dot { background: var(--accent); }
.hero h1 {
  font-size: clamp(56px, 9vw, 138px); margin: 26px 0 28px;
  font-weight: 500; letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero .promise { font-size: 18px; color: var(--ink-soft); max-width: 46ch; margin: 0 auto 44px; }
.hero-ctas { display: flex; gap: 18px; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 34px; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid var(--accent); transition: all var(--trans);
}
.btn--solid { background: var(--accent); color: var(--bg); }
.btn--ghost { color: var(--ink); }
.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--bg); }
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-soft);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .line { width: 1px; height: 40px; background: var(--accent); animation: pulldown 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes pulldown { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =========================================================================
   MARQUEE (trust strip)
   ========================================================================= */
.marquee { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 26px 0; overflow: hidden; background: var(--bg-alt); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif); font-size: 26px; color: var(--ink-soft); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee-track span::after { content: "✦"; color: var(--accent); font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-stats { display: flex; gap: 0; justify-content: center; padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.marquee-stats div { flex: 0 0 auto; padding: 0 48px; border-right: 1px solid var(--line-soft); text-align: center; }
.marquee-stats div:last-child { border-right: 0; }
.marquee-stats b { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--accent); display: block; }
.marquee-stats span { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); }

/* =========================================================================
   MANIFESTO
   ========================================================================= */
.manifesto { display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: center; }
.manifesto .body p { color: var(--ink-soft); font-size: 17px; margin-bottom: 22px; max-width: 50ch; }
.manifesto .body p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 64px; float: left; line-height: 0.85; padding: 6px 14px 0 0; color: var(--accent); font-weight: 500;
}
.pullquote { border-left: 1px solid var(--line-strong); padding-left: 40px; }
.pullquote q { font-family: var(--serif); font-size: clamp(34px, 3.6vw, 52px); line-height: 1.12; quotes: none; font-style: italic; }
.pullquote q::before { content: "“"; color: var(--accent); font-size: 1.4em; line-height: 0; vertical-align: -0.1em; margin-right: 4px; }
.pullquote .cite { display: block; margin-top: 28px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); }

/* =========================================================================
   WAREHOUSE (USP)
   ========================================================================= */
.warehouse { position: relative; }
.warehouse-feature {
  position: relative; height: 560px; overflow: hidden; margin-bottom: 80px;
}
.warehouse-feature img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.35) contrast(1.05); }
.warehouse-feature .stamp {
  position: absolute; bottom: 40px; left: 40px; right: 40px; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
}
.warehouse-feature .stamp .big {
  font-family: var(--serif); font-size: clamp(80px, 11vw, 168px); line-height: 0.85; font-weight: 500; color: var(--ink);
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
[data-palette="ivoire"] .warehouse-feature .stamp .big { text-shadow: none; color: #fff; }
.warehouse-feature .stamp .big sup { font-size: 0.28em; vertical-align: super; color: var(--accent); letter-spacing: 0.1em; }
.warehouse-feature .stamp .tag { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink); max-width: 26ch; text-align: right; }
.warehouse-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.65) 100%); }
[data-palette="ivoire"] .warehouse-feature::after { background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%); }

.warehouse-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.warehouse-grid figure { position: relative; overflow: hidden; aspect-ratio: 4 / 5; }
.warehouse-grid img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4); transition: filter 0.6s var(--ease), transform 0.8s var(--ease); }
.warehouse-grid figure:hover img { filter: grayscale(0); transform: scale(1.05); }
.warehouse-grid figcaption {
  position: absolute; left: 16px; bottom: 16px; z-index: 2; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.warehouse-grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55)); }

.inv-list { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.inv-list li { padding: 26px 28px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.inv-list li:nth-child(3n) { border-right: 0; }
.inv-list li b { font-family: var(--serif); font-size: 22px; color: var(--ink); display: block; }
.inv-list li span { font-size: 12px; color: var(--ink-faint); letter-spacing: 0.04em; }

/* =========================================================================
   ATELIER (services)
   ========================================================================= */
.atelier-list { border-top: 1px solid var(--line-strong); }
.atelier-item {
  display: grid; grid-template-columns: 60px 1fr 2fr 1fr; gap: 40px; align-items: center;
  padding: 38px 0; border-bottom: 1px solid var(--line); position: relative; cursor: default;
  transition: padding 0.5s var(--ease);
}
.atelier-item:hover { padding-left: 18px; }
.atelier-item .n { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; color: var(--ink-faint); }
.atelier-item h3 { font-size: clamp(28px, 2.6vw, 38px); transition: color var(--trans); }
.atelier-item:hover h3 { color: var(--accent); }
.atelier-item p { color: var(--ink-soft); font-size: 15px; max-width: 42ch; }
.atelier-item .thumb {
  width: 100%; aspect-ratio: 4 / 3; overflow: hidden; position: relative;
}
.atelier-item .thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5); transition: filter 0.6s var(--ease), transform 0.8s var(--ease); }
.atelier-item:hover .thumb img { filter: grayscale(0); transform: scale(1.06); }

/* =========================================================================
   PORTFOLIO (the work)
   ========================================================================= */
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.work-grid figure { position: relative; overflow: hidden; }
.work-grid figure.tall { aspect-ratio: 4 / 5; }
.work-grid figure.wide { aspect-ratio: 16 / 10; }
.work-grid figure.sq { aspect-ratio: 1 / 1; }
.work-grid img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.45); transition: filter 0.7s var(--ease), transform 1s var(--ease); }
.work-grid figure:hover img { filter: grayscale(0); transform: scale(1.04); }
.work-grid figcaption {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px; opacity: 0; transition: opacity 0.5s var(--ease);
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8));
}
.work-grid figure:hover figcaption { opacity: 1; }
.work-grid figcaption b { font-family: var(--serif); font-size: 24px; color: #fff; }
.work-grid figcaption span { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
/* span placement */
.span-7 { grid-column: span 7; } .span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; } .span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; } .span-3 { grid-column: span 3; }

/* =========================================================================
   FEATURED WEDDING
   ========================================================================= */
.featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; background: var(--bg-alt); }
.featured-media { position: relative; min-height: 640px; overflow: hidden; }
.featured-media video, .featured-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.featured-media .badge {
  position: absolute; top: 32px; left: 32px; z-index: 2; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: #fff; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(6px);
}
.featured-copy { padding: 80px 80px 80px 64px; display: flex; flex-direction: column; justify-content: center; gap: 28px; }
.featured-copy h3 { font-size: clamp(38px, 4vw, 60px); }
.featured-copy p { color: var(--ink-soft); font-size: 16px; max-width: 48ch; }
.featured-stats { display: flex; gap: 40px; margin-top: 8px; padding-top: 28px; border-top: 1px solid var(--line); }
.featured-stats div b { font-family: var(--serif); font-size: 30px; color: var(--accent); display: block; }
.featured-stats div span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); }
.featured-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px; }
.featured-thumbs img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; filter: grayscale(0.3); transition: filter 0.5s var(--ease); }
.featured-thumbs img:hover { filter: grayscale(0); }

/* =========================================================================
   VENUES
   ========================================================================= */
.venues-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.venue-card { position: relative; overflow: hidden; aspect-ratio: 3 / 4; }
.venue-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5) brightness(0.85); transition: filter 0.7s var(--ease), transform 1s var(--ease); }
.venue-card:hover img { filter: grayscale(0) brightness(1); transform: scale(1.05); }
.venue-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.75)); }
.venue-card .meta { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; }
.venue-card .meta b { font-family: var(--serif); font-size: 24px; color: #fff; display: block; line-height: 1.1; }
.venue-card .meta span { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.venue-card .meta p { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* =========================================================================
   JOURNEY (process)
   ========================================================================= */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.journey::before { content: ""; position: absolute; top: 14px; left: 0; right: 0; height: 1px; background: var(--line); }
.journey-step { padding: 0 32px 0 0; position: relative; }
.journey-step:not(:last-child) { border-right: 1px solid var(--line-soft); padding-right: 32px; }
.journey-step + .journey-step { padding-left: 32px; }
.journey-step .node { width: 14px; height: 14px; border-radius: 50%; background: var(--bg); border: 1px solid var(--accent); position: relative; margin-bottom: 36px; }
.journey-step .node::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--accent); }
.journey-step .n { font-size: 11px; letter-spacing: 0.24em; color: var(--accent); text-transform: uppercase; }
.journey-step h3 { font-size: 32px; margin: 14px 0 16px; }
.journey-step p { color: var(--ink-soft); font-size: 14px; max-width: 30ch; }

/* =========================================================================
   DIFFERENCE
   ========================================================================= */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.diff-stanza .num { font-family: var(--serif); font-size: 14px; color: var(--accent); letter-spacing: 0.1em; }
.diff-stanza h3 { font-size: clamp(28px, 2.6vw, 38px); margin: 18px 0 18px; }
.diff-stanza p { color: var(--ink-soft); font-size: 15px; max-width: 34ch; }
.diff-stanza figure { margin-top: 24px; aspect-ratio: 4 / 5; overflow: hidden; }
.diff-stanza figure img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4); transition: filter 0.6s var(--ease); }
.diff-stanza:hover figure img { filter: grayscale(0); }

/* =========================================================================
   DESTINATION GOA
   ========================================================================= */
.destination { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.destination-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.destination-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3); }
.destination-media .pin {
  position: absolute; top: 28px; left: 28px; z-index: 2; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: #fff; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.5); backdrop-filter: blur(6px);
}
.destination-copy h2 { font-size: clamp(40px, 4.6vw, 68px); margin-bottom: 24px; }
.destination-copy p { color: var(--ink-soft); font-size: 16px; margin-bottom: 18px; max-width: 50ch; }
.cities { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.cities span {
  border: 1px solid var(--line); padding: 10px 18px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft);
  transition: all var(--trans);
}
.cities span:hover { border-color: var(--accent); color: var(--ink); }
.destination-points { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.destination-points div { border-left: 1px solid var(--line-strong); padding-left: 18px; }
.destination-points b { font-family: var(--serif); font-size: 18px; display: block; margin-bottom: 4px; }
.destination-points span { font-size: 13px; color: var(--ink-soft); }

/* =========================================================================
   NUMBERS
   ========================================================================= */
.numbers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.numbers > div { padding: 48px 32px; border-right: 1px solid var(--line); }
.numbers > div:last-child { border-right: 0; }
.numbers b { font-family: var(--serif); font-size: clamp(40px, 4.4vw, 64px); font-weight: 500; color: var(--accent); display: block; line-height: 1; }
.numbers span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-top: 14px; display: block; }

/* =========================================================================
   VOICES (testimonials)
   ========================================================================= */
.voices { text-align: center; }
.voices .qmark { font-family: var(--serif); font-size: 96px; color: var(--accent); line-height: 0.5; display: block; margin-bottom: 20px; }
.voices .track { position: relative; min-height: 220px; max-width: 900px; margin: 0 auto; }
.voices .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s var(--ease); pointer-events: none; }
.voices .slide.active { opacity: 1; position: relative; pointer-events: auto; }
.voices blockquote { font-family: var(--serif); font-size: clamp(26px, 2.8vw, 40px); line-height: 1.22; font-style: italic; color: var(--ink); max-width: 30ch; margin: 0 auto; }
.voices .cite { margin-top: 30px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); }
.voices .cite b { color: var(--accent); font-weight: 400; }
.voices-dots { display: flex; gap: 10px; justify-content: center; margin-top: 44px; }
.voices-dots button { width: 28px; height: 2px; background: var(--line-strong); transition: background var(--trans); }
.voices-dots button.active { background: var(--accent); }

/* =========================================================================
   RECOGNITION
   ========================================================================= */
.recognition { display: flex; flex-wrap: wrap; justify-content: center; gap: 56px; align-items: center; }
.recognition .logo {
  font-family: var(--serif); font-size: 22px; color: var(--ink-faint); letter-spacing: 0.06em;
  border: 1px dashed var(--line); padding: 18px 28px; transition: color var(--trans);
}
.recognition .logo:hover { color: var(--ink-soft); }

/* =========================================================================
   BEGIN (contact)
   ========================================================================= */
.begin-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; }
.form { display: flex; flex-direction: column; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); }
.field input, .field textarea, .field select {
  background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 12px 0;
  font-size: 15px; color: var(--ink); transition: border-color var(--trans);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--accent); }
.field textarea { resize: vertical; min-height: 90px; }
.form .btn { margin-top: 12px; align-self: flex-start; }
.contact-info { border-left: 1px solid var(--line); padding-left: 56px; }
.contact-info h3 { font-size: 32px; margin-bottom: 28px; }
.contact-info dl { display: grid; gap: 22px; }
.contact-info dt { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
.contact-info dd { font-size: 16px; color: var(--ink); }
.contact-info dd a { border-bottom: 1px solid var(--line-strong); transition: color var(--trans); }
.contact-info dd a:hover { color: var(--accent); }
.contact-social { display: flex; gap: 22px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-social a { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.form-note { font-size: 12px; color: var(--ink-faint); margin-top: 4px; }
.form-success { color: var(--accent); font-size: 14px; display: none; }
.form-success.show { display: block; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 30px 0; text-align: left; font-family: var(--serif); font-size: 24px; color: var(--ink);
}
.faq-q .plus { font-size: 22px; color: var(--accent); transition: transform 0.4s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding-bottom: 30px; color: var(--ink-soft); font-size: 15px; max-width: 70ch; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--line-soft); background: var(--bg-alt); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--line-soft); }
.footer .brand { font-size: 32px; }
.footer h4 { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); font-family: var(--sans); font-weight: 400; margin-bottom: 20px; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a { font-size: 14px; color: var(--ink-soft); transition: color var(--trans); }
.footer ul li a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; }
.footer-bottom p { font-size: 12px; color: var(--ink-faint); }
.footer-credit { font-size: 11px; color: var(--ink-faint); letter-spacing: 0.04em; }
.footer-credit a { color: var(--accent); }

/* =========================================================================
   PALETTE SWITCHER
   ========================================================================= */
.switcher {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  display: flex; align-items: center; gap: 14px;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid var(--line);
  padding: 10px 14px 10px 16px;
  box-shadow: var(--shadow);
  transition: all var(--trans);
}
.switcher .label { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); padding-right: 12px; border-right: 1px solid var(--line-soft); }
.switcher .swatches { display: flex; gap: 8px; }
.swatch {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line);
  position: relative; cursor: pointer; overflow: hidden;
  display: flex; align-items: center;
}
.swatch::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--swatch-a) 0% 50%, var(--swatch-b) 50% 100%); }
.swatch::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 10px; height: 10px; border-radius: 50%; background: var(--swatch-c); z-index: 2; box-shadow: 0 0 0 2px var(--bg); }
.swatch:hover { transform: scale(1.1); }
.swatch.active { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.swatch .name { display: none; }
.switcher .toggle { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; color: var(--ink-soft); border-left: 1px solid var(--line-soft); margin-left: 4px; padding-left: 10px; }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
