/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  --bg:         #f0ece2;
  --bg-2:       #e6e0d4;
  --bg-3:       #ddd5c6;
  --ink:        #1a1714;
  --ink-soft:   #3a3530;
  --ink-mute:   #8a8278;
  --gold:       #c49a3c;
  --gold-2:     #a07830;
  --gold-glow:  rgba(196, 154, 60, 0.14);
  --line:       rgba(26, 23, 20, 0.1);
  --line-gold:  rgba(196, 154, 60, 0.3);

  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 72px;
  --container: 1200px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; padding: 0; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =============================================================
   3. UTILITIES
   ============================================================= */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  padding: .6rem 1.2rem;
  background: var(--ink);
  color: var(--bg);
  z-index: 9999;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =============================================================
   4. TYPOGRAPHY
   ============================================================= */
.kicker {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.25rem;
}
.kicker-light { color: rgba(240, 236, 226, 0.55); }

.section-title {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 3.5rem;
  letter-spacing: -0.035em;
}

/* =============================================================
   5. COMPONENTS — Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.8rem 1.8rem;
  border-radius: 2px;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out), transform 0.25s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
  cursor: pointer;
  will-change: transform;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border: 1.5px solid var(--ink);
}
.btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(160,120,48,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-gold);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  margin-top: 1.5rem;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
  background: var(--ink);
  color: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 2px;
}
.btn-sm:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
}
.btn-large {
  padding: 1rem 2.4rem;
  font-size: 0.85rem;
}

/* Tags */
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  color: var(--ink-soft);
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.tag:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* Logo SVG inline */
.logo-svg {
  height: 36px;
  width: auto;
  display: block;
  color: var(--ink);        /* text fill via currentColor */
  flex-shrink: 0;
  overflow: visible;
}
.logo-svg-footer {
  color: #f0ece2;           /* cream text on dark footer */
}

/* =============================================================
   6. REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Defensive: data-split elements must never be invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }

/* =============================================================
   7. SPLASH
   ============================================================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
  /* Safety: CSS hides splash at 4.5s even if JS fails */
  animation: splashHide 0.01s 4.5s forwards;
}
.splash.is-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes splashHide {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.splash-wing {
  width: 100px;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s var(--ease-out) forwards;
}

/* Splash wing lines draw in */
.sl1, .sl2, .sl3 {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawLine 0.6s var(--ease-out) forwards;
}
.sl1 { animation-delay: 0.3s; }
.sl2 { animation-delay: 0.45s; }
.sl3 { animation-delay: 0.55s; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.splash-name {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--bg-3);
  opacity: 0;
  animation: fadeUp 0.5s 0.8s var(--ease-out) forwards;
}

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

/* =============================================================
   8. CUSTOM CURSOR
   ============================================================= */
.cursor {
  pointer-events: none;
  position: fixed;
  z-index: 9000;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.cursor.is-ready { opacity: 1; }

.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  position: fixed;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.6;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
}
.cursor.is-hovering .cursor-ring {
  width: 48px;
  height: 48px;
  opacity: 0.4;
  border-color: var(--gold-2);
}

@media (hover: none) { .cursor { display: none; } }

/* =============================================================
   9. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(240, 236, 226, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 24px rgba(26,23,20,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: var(--gutter);
  max-width: var(--container);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-wing {
  width: 52px;
  color: var(--gold);
  transition: opacity 0.3s;
}
.nav-logo:hover .logo-wing { opacity: 0.75; }
.logo-text {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.logo-lab {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.lang-toggle {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: color 0.25s, border-color 0.25s;
  cursor: pointer;
}
.lang-toggle:hover { color: var(--gold); border-color: var(--line-gold); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-burger.is-open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================================
   10. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: var(--nav-h);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 700px at var(--mx, 65%) var(--my, 40%),
      rgba(196,154,60,0.13) 0%, transparent 60%),
    radial-gradient(circle 450px at calc(var(--mx, 65%) - 15%) calc(var(--my, 40%) + 20%),
      rgba(196,154,60,0.07) 0%, transparent 50%);
  pointer-events: none;
  transition: background 0.05s;
}

.hero-flow {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 62%;
  height: 85%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s 1s var(--ease-out);
}
.is-ready .hero-flow { opacity: 1; }

/* Flow line draw-in animation */
.flow-line {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: traceLine 2.2s var(--ease-soft) forwards;
  animation-delay: var(--d, 1s);
}
@keyframes traceLine {
  to { stroke-dashoffset: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 4rem;
}

.hero-content {
  max-width: 680px;
}

.hero-kicker {
  opacity: 0;
  animation: fadeUp 0.7s 0.9s var(--ease-out) forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s var(--ease-out) forwards;
}
.hero-t1 { display: block; }
.hero-t2 {
  display: block;
  font-style: italic;
  color: var(--gold-2);
}

.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 1.3s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 1.5s var(--ease-out) forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeUp 0.6s 2s var(--ease-out) forwards;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(0.5); opacity: 0.3; }
}

/* =============================================================
   11. MARQUEE
   ============================================================= */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 0.85rem;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marqueScroll 30s linear infinite;
}
.marquee-track span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}
.marquee-track .mdot {
  color: var(--gold);
  opacity: 0.7;
}
@keyframes marqueScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   12. ABOUT
   ============================================================= */
.about {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 960px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
  }
}

.about-media {
  position: relative;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}
.about-accent-line {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.about-title {
  font-family: var(--sans);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
}
.about-p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-metrics {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.metric { display: flex; flex-direction: column; gap: 0.3rem; }
.metric-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--gold-2);
  line-height: 1;
  letter-spacing: -0.03em;
}
.metric-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* =============================================================
   13. SERVICES
   ============================================================= */
.services {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-2);
}

.section-header {
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  gap: 1px;
  background: var(--line);
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

.service-card {
  background: var(--bg-2);
  padding: clamp(2rem, 4vw, 2.8rem);
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  border-top: 2px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover { background: var(--bg); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(26,23,20,0.07); }
.service-card:hover::before { transform: scaleX(1); }

.service-top {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.service-num {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink-mute);
  transition: color 0.3s;
  flex-shrink: 0;
}
.service-card:hover .service-num { color: var(--gold); }

.service-title {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-desc {
  font-size: 0.87rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  max-width: 44ch;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.service-list li {
  font-size: 0.8rem;
  color: var(--ink-mute);
  padding-left: 1rem;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--mono);
}

/* =============================================================
   14. HUMAN INSIGHT
   ============================================================= */
.insight {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-3);
}

.insight-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 960px) {
  .insight-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
  }
}

.insight-title {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
}
.insight-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 50ch;
  margin-bottom: 1.75rem;
}
.insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.insight-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

/* =============================================================
   15. PHILOSOPHY
   ============================================================= */
.philosophy {
  position: relative;
  padding-block: clamp(6rem, 12vw, 11rem);
  overflow: hidden;
}
.philosophy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.philosophy-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.3) saturate(0.7);
}
.philosophy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(240, 236, 226, 0.88);
}

.philosophy-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.philosophy-quote {
  margin: 0;
}
.philosophy-quote p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.philosophy-attr {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--gold-2);
  text-transform: uppercase;
}
.philosophy-wing {
  margin-top: 2rem;
  opacity: 0.8;
}
.philosophy-wing svg { width: 120px; }

/* =============================================================
   16. CTA SECTION
   ============================================================= */
.cta-section {
  padding-block: clamp(6rem, 12vw, 10rem);
  background: var(--bg);
}
.cta-inner {
  max-width: 640px;
}
.cta-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.cta-title {
  font-family: var(--sans);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}
.cta-sub {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 2.5rem;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-note {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}

/* =============================================================
   17. FOOTER
   ============================================================= */
.footer {
  background: var(--ink);
  color: var(--bg-3);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.footer .logo-wing { color: var(--gold); }
.footer .logo-text { color: var(--bg-2); }
.footer .logo-lab  { color: var(--gold); }

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(240,236,226,0.1);
}
@media (min-width: 720px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo  { display: flex; align-items: center; gap: 0.7rem; }
.footer-tagline {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(240,236,226,0.5);
  max-width: 32ch;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav a {
  font-size: 0.8rem;
  color: rgba(240,236,226,0.55);
  transition: color 0.25s;
  letter-spacing: 0.03em;
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media (min-width: 720px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-bottom p {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(240,236,226,0.3);
}

/* =============================================================
   18. CONSULT PAGE
   ============================================================= */
.consult-page {
  min-height: 100vh;
  background: var(--bg);
  padding-top: var(--nav-h);
}
.consult-hero {
  padding-block: 4rem 3rem;
  border-bottom: 1px solid var(--line);
}
.consult-hero-inner {
  max-width: 640px;
}
.consult-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.consult-sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 48ch;
  line-height: 1.7;
}

.consult-form-wrap {
  padding-block: 4rem;
}
.consult-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media (min-width: 540px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-bottom: 2px solid var(--line);
  border-radius: 2px;
  padding: 0.75rem 0.9rem;
  width: 100%;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-mute); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 2px 0 var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8278' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 14px; height: 14px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-check span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.form-privacy {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-privacy::before {
  content: '🔒';
  font-size: 0.7rem;
}

.form-success {
  display: none;
  padding: 2.5rem;
  background: var(--bg-2);
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  text-align: center;
}
.form-success.is-visible { display: block; }
.form-success h3 {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-2);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.form-success p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* =============================================================
   19. RESPONSIVE — Mobile
   ============================================================= */
@media (max-width: 719px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(240,236,226,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--gutter);
    gap: 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.45s var(--ease-out), opacity 0.35s;
    pointer-events: none;
    border-bottom: 1px solid var(--line);
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-burger { display: flex; }
  .nav-link { font-size: 1rem; }
  .btn-sm { width: 100%; justify-content: center; }
  .lang-toggle { align-self: flex-start; }

  .hero-content { max-width: 100%; }
  .hero-flow { display: none; }
  .hero-gradient { opacity: 0.5; }

  .about-media img { aspect-ratio: 16 / 9; }

  .services-grid { grid-template-columns: 1fr; }

  .insight-inner { grid-template-columns: 1fr; }
  .insight-media { order: -1; }
  .insight-media img { aspect-ratio: 16 / 9; }

  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; }
}

@media (min-width: 720px) {
  .nav-menu { display: flex !important; }
  .nav-burger { display: none !important; }
}

/* =============================================================
   20. REDUCED MOTION — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  /* Splash: hide immediately (the CSS animation below replaces the trace-in) */
  .splash { animation: splashHide 0.01s 0.5s forwards; }
  .sl1, .sl2, .sl3, .flow-line { animation: none; stroke-dashoffset: 0; }
  .scroll-line { animation: none; }
  .marquee-track { animation: none; }

  /* Do NOT disable: reveals, tilts, hover effects, nav transitions */
}
