/* ============================================================
   HOBBYLAND GROUP — half-dark elegant homepage (attempt 3).
   Direction: private-equity calm. Cormorant Garamond + Noto Serif TC
   display, Noto Sans TC body. Charcoal #161412 / ivory #f4efe6,
   champagne accent #c2a05f (from the old site's warm maroon family).
   Signature: stacked glass-plane 3D motif travelling between
   sections, sticky side labels, oversized section numerals.
   ============================================================ */

:root {
  --ink: #1c1916;
  --ink-soft: #4c463f;
  --ivory: #f4efe6;
  --ivory-deep: #ece5d8;
  --char: #161412;
  --char-2: #1d1a17;
  --paper-dark: #eae3d5;
  --gold: #c2a05f;
  --gold-soft: rgba(194, 160, 95, 0.45);
  --gold-faint: rgba(194, 160, 95, 0.16);
  --serif-en: "Cormorant Garamond", Georgia, serif;
  --serif-tc: "Noto Serif TC", "Cormorant Garamond", serif;
  --sans: "Noto Sans TC", "Helvetica Neue", Arial, sans-serif;
  --container: min(1160px, 92vw);
  --header-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--char);
  padding: 10px 18px; z-index: 200;
}
.skip:focus { left: 12px; top: 12px; }

a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(22, 20, 18, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
  transition: background 0.4s ease;
}
.header-inner {
  width: var(--container); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: flex; align-items: center;
  text-decoration: none; color: var(--ivory);
}
.wm-logo {
  width: clamp(140px, 18vw, 172px); height: auto;
  display: block;
  transition: opacity 0.25s ease;
}
.wordmark:hover .wm-logo { opacity: 0.82; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  text-decoration: none; font-size: 14px; letter-spacing: 0.08em;
  color: rgba(244, 239, 230, 0.78);
  transition: color 0.25s ease;
}
.site-nav a:hover { color: var(--gold); }
.site-nav .nav-cta {
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  padding: 8px 18px;
}
.site-nav .nav-cta:hover { background: var(--gold); color: var(--char); }

/* ---------- mobile hamburger (gold on charcoal) ---------- */
.nav-burger {
  display: none; appearance: none; border: 0; background: transparent; cursor: pointer;
  width: 42px; height: 42px; padding: 9px; margin-left: auto;
}
.nav-burger__box { display: block; position: relative; width: 24px; height: 16px; }
.nav-burger__box i {
  position: absolute; left: 0; width: 100%; height: 1.5px; border-radius: 2px;
  background: var(--gold); transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-burger__box i:nth-child(1) { top: 0; }
.nav-burger__box i:nth-child(2) { top: 7px; }
.nav-burger__box i:nth-child(3) { top: 14px; }
.site-header.is-open .nav-burger__box i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .nav-burger__box i:nth-child(2) { opacity: 0; }
.site-header.is-open .nav-burger__box i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- shared section scaffolding ---------- */
.sec { position: relative; padding: clamp(88px, 11vw, 150px) 0; overflow: clip; }
.sec-dark { background: var(--char); color: var(--ivory); }
.sec-dark.cta,
.sec-dark#brands { background: linear-gradient(var(--char-2), var(--char)); }
.sec-light { background: var(--ivory); color: var(--ink); }
.sec-tint { background: var(--ivory-deep); }

.eyebrow {
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
}

.sec-title {
  font-family: var(--serif-tc);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
  position: relative;
}
.sec-title::after {
  content: ""; display: block; width: 64px; height: 1px;
  background: var(--gold); margin-top: 22px;
}

.body-lg { font-size: clamp(17px, 1.6vw, 19px); max-width: 62ch; margin-bottom: 18px; }
.split-body > p { max-width: 62ch; }
.dim { opacity: 0.78; }

/* disciplined asymmetric split: sticky side label + content */
.split {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.side-label {
  position: sticky; top: calc(var(--header-h) + 40px);
  display: flex; flex-direction: column; gap: 10px;
}
.sec-num {
  font-family: var(--serif-en);
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 500; line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-soft);
}
.sec-dark .sec-num { -webkit-text-stroke: 1px rgba(194, 160, 95, 0.55); }
.sec-name {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--gold-faint);
  padding-top: 12px; width: fit-content; padding-right: 28px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none;
  font-size: 15px; letter-spacing: 0.1em;
  padding: 14px 32px;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.btn-gold { background: var(--gold); color: var(--char); }
.btn-gold:hover { background: #d4b478; transform: translateY(-2px); }
.btn-ghost { border-color: rgba(244, 239, 230, 0.3); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 18px 44px; font-size: 16px; }

/* ---------- hero ---------- */
.hero { padding-top: calc(var(--header-h) + clamp(72px, 9vw, 130px)); min-height: min(92vh, 880px); display: flex; flex-direction: column; justify-content: space-between; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.hero-copy { max-width: 640px; }
.hero h1 {
  font-family: var(--serif-tc);
  font-weight: 700;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 1.16;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hd-sep { color: var(--gold); }
.lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(244, 239, 230, 0.8);
  max-width: 54ch;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- hero visual: gold brand-constellation ---------- */
.hero-visual {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  align-self: center;
}
.hero-art {
  width: min(420px, 38vw); height: auto; display: block;
  filter: drop-shadow(0 0 40px rgba(194, 160, 95, 0.1));
}
.hero-art circle, .hero-art line, .hero-art rect { vector-effect: non-scaling-stroke; }
.hero-art .hn {
  fill: rgba(212, 180, 120, 0.95);
  animation: hnPulse 4.8s ease-in-out infinite;
}
.hero-art .hn:nth-child(4)  { animation-delay: 0.5s; }
.hero-art .hn:nth-child(6)  { animation-delay: 1s; }
.hero-art .hn:nth-child(8)  { animation-delay: 1.5s; }
.hero-art .hn:nth-child(10) { animation-delay: 2s; }
.hero-art .hn:nth-child(12) { animation-delay: 2.5s; }
.hero-art .hn:nth-child(14) { animation-delay: 3s; }
.hero-net { transform-origin: 230px 220px; animation: heroSpin 64s linear infinite; }
.hero-core { transform-origin: 230px 220px; animation: heroCorePulse 6s ease-in-out infinite; }
@keyframes hnPulse {
  0%, 100% { opacity: 0.4; r: 4; }
  50%      { opacity: 1;   r: 5.5; }
}
@keyframes heroSpin { to { transform: rotate(360deg); } }
@keyframes heroCorePulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}
.hero-art-cap {
  margin-top: 18px;
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(194, 160, 95, 0.7);
}
@media (prefers-reduced-motion: reduce) {
  .hero-art .hn, .hero-net, .hero-core { animation: none !important; }
}

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(244, 239, 230, 0.14);
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: 34px;
  gap: 24px;
}
.hero-stats dt {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.hero-stats dd {
  font-family: var(--serif-en);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 500; line-height: 1;
}
.stat-note {
  display: block;
  font-family: var(--sans);
  font-size: 13px; color: rgba(244, 239, 230, 0.6);
  margin-top: 8px;
}

/* ---------- motto ---------- */
.motto {
  margin-top: clamp(48px, 5vw, 72px);
  border: 0; border-left: 1px solid var(--gold);
  padding-left: clamp(24px, 3vw, 44px);
}
.motto span {
  display: block;
  font-family: var(--serif-en);
  font-style: italic; font-weight: 500;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.22;
  color: var(--ink);
}
.motto span:nth-child(2) { margin-left: clamp(20px, 3vw, 56px); }
.motto span:nth-child(3) { margin-left: clamp(40px, 6vw, 112px); color: var(--gold); }

/* ---------- pillars ---------- */
.pillars {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(28, 25, 22, 0.14);
  border: 1px solid rgba(28, 25, 22, 0.14);
  margin-top: 14px;
}
.pillar {
  background: var(--ivory-deep);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  transition: background 0.3s ease;
}
.sec-tint .pillar { background: var(--ivory); }
.pillar:hover { background: #fbf8f1; }
.pillar:nth-child(even) { transform: translateY(18px); }
.pillar-icon {
  display: block; width: 48px; height: 48px; color: var(--gold);
  margin-bottom: 18px;
}
.pillar-icon svg { width: 100%; height: 100%; display: block; }
.pillar:hover .pillar-icon { color: #d4b478; }
.pillar-num {
  font-family: var(--serif-en);
  font-size: 24px; color: var(--gold-soft);
  position: absolute; top: clamp(28px, 3vw, 44px); right: clamp(28px, 3vw, 44px);
  line-height: 1;
}
.pillar h3 {
  font-family: var(--serif-tc); font-weight: 600;
  font-size: 21px; margin-bottom: 12px; letter-spacing: 0.02em;
}
.pillar p { font-size: 15px; color: var(--ink-soft); }

/* ---------- brand gallery: type-grouped tiles, each leading with the brand's
   real website screenshot (the brand IS the visual); name + link overlaid. ---- */
.brand-groups {
  margin-top: clamp(36px, 4vw, 52px);
  display: flex; flex-direction: column;
  gap: clamp(34px, 4vw, 52px);
}
.bg-head {
  display: flex; align-items: baseline; gap: 14px;
  margin: 0 0 22px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.14);
  font-family: var(--serif-tc); font-weight: 600;
  font-size: clamp(18px, 2vw, 22px); letter-spacing: 0.03em;
  color: var(--ivory);
}
.bg-num {
  font-family: var(--serif-en); font-size: 17px;
  color: var(--gold-soft); letter-spacing: 0.04em;
}
.brand-gallery {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
}
.brand-card {
  position: relative; display: block;
  aspect-ratio: 16 / 10;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, 0.12);
  background: #14110d;
  transition: border-color 0.35s ease, transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.35s ease;
}
.brand-card:hover, .brand-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  outline: none;
}
.brand-card:focus-visible { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold-soft), 0 20px 48px rgba(0, 0, 0, 0.45); }

/* website screenshot — the brand's real visual, shown by default */
.bc-shot {
  position: absolute; inset: 0;
  transform: scale(1.001);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.bc-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.bc-shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16, 14, 12, 0.94) 0%, rgba(16, 14, 12, 0.55) 32%, rgba(16, 14, 12, 0.05) 68%);
}
.brand-card:hover .bc-shot, .brand-card:focus-visible .bc-shot { transform: scale(1.06); }
.bc-shot--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(135deg, rgba(194,160,95,0.05) 0 12px, rgba(194,160,95,0) 12px 24px),
              linear-gradient(160deg, rgba(194,160,95,0.1), rgba(244,239,230,0.01));
}
.bc-shot--placeholder::after { background: none; }
.bc-ph-mark {
  font-family: var(--serif-en); font-style: italic; font-weight: 600;
  font-size: 38px; color: rgba(194, 160, 95, 0.42);
  letter-spacing: 0.04em;
}

/* brand name — pinned bottom-left, always visible over the screenshot */
.bc-face {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  gap: 2px; padding: 16px 20px; text-align: left;
}
.bc-cat { display: none; }
.bc-name {
  font-family: var(--serif-en);
  font-size: clamp(17px, 1.9vw, 21px); font-weight: 600; letter-spacing: 0.03em;
  line-height: 1.15; color: var(--ivory);
}

/* description + link — surface just above the name on hover/focus */
.bc-reveal {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; gap: 7px;
  padding: 0 20px 52px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.bc-reveal .bc-desc {
  font-size: 13px; line-height: 1.5; color: rgba(244, 239, 230, 0.9);
}
.bc-reveal .bc-go {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.brand-card:hover .bc-reveal, .brand-card:focus-visible .bc-reveal {
  opacity: 1; transform: none;
}
/* touch/no-hover devices: reveal the description by default (tap = open link) */
@media (hover: none) {
  .bc-reveal { opacity: 1; transform: none; }
}

/* ---------- engagement ---------- */
.engage {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  margin-top: 26px;
}
.engage-item { border-top: 1px solid var(--gold); padding-top: 24px; }
.engage-item h3 {
  font-family: var(--serif-tc); font-weight: 600;
  font-size: 21px; margin-bottom: 12px;
}
.engage-item p { font-size: 15px; color: var(--ink-soft); }

/* ---------- team ---------- */
.team-list { list-style: none; margin-top: 30px; }
.team-list li {
  display: grid;
  grid-template-columns: 200px 180px minmax(0, 1fr);
  gap: 20px; align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid rgba(28, 25, 22, 0.14);
}
.team-list li:first-child { border-top: 1px solid rgba(28, 25, 22, 0.14); }
.tm-name {
  font-family: var(--serif-en);
  font-size: 26px; font-weight: 600; letter-spacing: 0.02em;
}
.tm-role {
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.tm-bio { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-title {
  font-family: var(--serif-tc); font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.3; letter-spacing: 0.02em;
  margin-bottom: 44px;
}

/* ---------- footer ---------- */
.site-footer {
  background: #100e0c; color: rgba(244, 239, 230, 0.7);
  padding: 64px 0 40px;
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-logo { width: 180px; height: auto; display: block; opacity: 0.92; }
.footer-brand p { font-size: 14px; letter-spacing: 0.04em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 26px; max-width: 560px; }
.footer-links a {
  font-size: 13px; letter-spacing: 0.06em; text-decoration: none;
  color: rgba(244, 239, 230, 0.62);
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-legal { padding-top: 28px; font-size: 12.5px; color: rgba(244, 239, 230, 0.42); }

/* ---------- 3D motif: stacked glass planes ---------- */
.motif {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  perspective: 1100px;
}
.motif-stage {
  position: absolute;
  width: 300px; height: 300px;
  top: 0; left: 0;
  transform-style: preserve-3d;
  will-change: transform;
  opacity: 0.9;
  transition: opacity 0.6s ease;
}
/* hidden on banner sections (hero/cta) so the square never overlaps headings */
.motif-stage.is-hidden { opacity: 0; }
/* the spinning glass frame — rotates behind the (flat, readable) word */
.motif-planes {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
.plane {
  position: absolute; inset: 0;
  border: 1px solid var(--gold-soft);
  background: linear-gradient(135deg, rgba(194, 160, 95, 0.05), rgba(194, 160, 95, 0) 55%);
  transform-style: preserve-3d;
}
.plane.p1 { transform: translateZ(-90px); border-color: rgba(194, 160, 95, 0.16); background: none; }
.plane.p2 { transform: translateZ(-45px); border-color: rgba(194, 160, 95, 0.24); background: none; }
.plane.p3 { transform: translateZ(0);     border-color: rgba(194, 160, 95, 0.4); }
.plane.p4 { transform: translateZ(45px);  border-color: rgba(194, 160, 95, 0.28); background: none; }
.plane.p5 { transform: translateZ(90px);  border-color: rgba(194, 160, 95, 0.18);
  background: linear-gradient(135deg, rgba(194, 160, 95, 0.07), transparent 60%); }

/* ---------- section slogan, riding on the travelling square (set by JS) ------
   Stays flat & centred on the glass so it reads while the planes spin behind it;
   the word changes per active section to explain what you're looking at. */
.motif-word {
  position: absolute; inset: 0; margin: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 11%;
  font-family: var(--serif-tc); font-weight: 600;
  font-size: clamp(18px, 1.7vw, 23px); line-height: 1.5; letter-spacing: 0.04em;
  color: var(--gold);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6), 0 0 3px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.motif-word.is-on { opacity: 0.97; }
/* On ivory sections deepen the gold so it holds contrast over cream. */
.motif-word.on-light {
  color: #8a6c2b;
  text-shadow: 0 1px 12px rgba(244, 239, 230, 0.8);
}

/* reveal animation hooks (JS adds .in) */
/* Content is never fully hidden (min opacity 0.35) so any first paint or
   interrupted scroll still reads; the reveal is a subtle settle, not a fade-in. */
.reveal { opacity: 0.35; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  /* Drop the spinning glass, but keep the slogan: anchor the word bottom-left
     as a static caption so the per-section statement still reads. */
  .motif-planes { display: none; }
  .motif-stage {
    width: auto; height: auto;
    inset: auto auto clamp(28px, 6vh, 64px) clamp(20px, 4vw, 56px);
    transform: none !important;
  }
  .motif-word {
    position: static; opacity: 1 !important;
    padding: 0; text-align: left;
    max-width: min(420px, 60vw);
    transition: none;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .side-label { position: static; flex-direction: row; align-items: baseline; gap: 18px; }
  .sec-num { font-size: 56px; }
  .brand-gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: clamp(40px, 6vw, 64px); }
  .hero-art { width: min(340px, 64vw); }
  .motif-stage { opacity: 0.45; width: 200px; height: 200px; }
}
@media (max-width: 720px) {
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
  /* nav links collapse into a charcoal dropdown under the fixed header */
  .site-nav {
    position: fixed; top: var(--header-h); right: 16px; left: 16px;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 14px; border: 1px solid rgba(244, 239, 230, 0.1); border-radius: 14px;
    background: rgba(22, 20, 18, 0.97);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }
  .site-header.is-open .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 12px 10px; min-height: 44px; display: flex; align-items: center; font-size: 15px; }
  .site-nav .nav-cta { justify-content: center; margin-top: 6px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar:nth-child(even) { transform: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .brand-gallery { grid-template-columns: 1fr; }
  .hero-art { width: min(300px, 72vw); }
  .team-list li { grid-template-columns: 1fr; gap: 6px; }
  .engage { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  /* Slogan is a desktop flourish; keep phones uncluttered. */
  .motif-word { display: none; }
}
