/* ============================================================
   ACLT DESIGN — styles.css
   ============================================================ */

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

:root {
  --cream:             #F6EFE0;
  --cream-2:           #EDE4CC;
  --charcoal:          #1A1917;
  --charcoal-2:        #252420;
  --brass:             #B8923A;
  --brass-light:       #D4AB5A;
  --text:              #1A1917;
  --text-muted:        #7A7060;
  --text-light:        #F6EFE0;
  --text-light-muted:  #9A8F80;
  --border:            rgba(26,25,23,0.12);
  --border-light:      rgba(246,239,224,0.10);
  --radius:            10px;
  --radius-lg:         16px;
  --font-display:      'Cooper Black', serif;
  --font-body:         'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subtle grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 9999;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--brass); border-radius: 2px; }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

#nav.scrolled {
  background: rgba(246,239,224,0.93);
  backdrop-filter: blur(16px);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  line-height: 1;
}

.logo-wordmark {
  font-family: 'Helvetica Now', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.logo-sub {
  font-family: 'Helvetica Now', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--brass);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--charcoal); }

.nav-cta {
  background: var(--charcoal) !important;
  color: var(--cream) !important;
  padding: 10px 22px !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.8; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--brass); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--cream);
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.hero-title .italic {
  font-style: italic;
  color: var(--brass);
}

.hero-title .logo-sans {
  font-family: 'Helvetica Now', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--charcoal);
}

.hero-gold {
  color: var(--brass);
}

.hero-bullets {
  list-style: none;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
}

.hero-bullet {
  border-top: 1px solid var(--border);
}

.hero-bullet:last-child {
  border-bottom: 1px solid var(--border);
}

.bullet-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 0;
  text-align: left;
}

.bullet-toggle strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  font-family: var(--font-body);
}

.bullet-chevron {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--brass);
  line-height: 1;
  transition: transform 0.25s ease;
  display: block;
  width: 16px;
  text-align: center;
}

.hero-bullet.open .bullet-chevron {
  transform: rotate(45deg);
}

.bullet-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.hero-bullet.open .bullet-body {
  grid-template-rows: 1fr;
}

.bullet-body-inner {
  overflow: hidden;
}

.bullet-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-bottom: 14px;
}

.hero-cta-group {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}

/* ── BROWSER MOCKUP ── */
.hero-visual {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
}

.browser-mockup {
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(26,25,23,0.04),
    0 8px 24px rgba(26,25,23,0.10),
    0 32px 64px rgba(26,25,23,0.14);
  border: 1px solid rgba(26,25,23,0.10);
}

.browser-bar {
  background: #EDE8DE;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.browser-dots { display: flex; gap: 5px; }

.browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #D8D0C4;
}

.browser-dots span:nth-child(1) { background: #FF5F56; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #27C93F; }

.browser-url {
  flex: 1;
  background: rgba(0,0,0,0.06);
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: #888;
  text-align: center;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
}

.browser-content {
  background: #0C1B2A;
  padding: 0;
}

/* Mock site internals */
.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-logo {
  width: 72px; height: 7px;
  background: rgba(255,255,255,0.45);
  border-radius: 4px;
}

.mock-nav-links { display: flex; gap: 10px; }

.mock-nav-links div {
  width: 24px; height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

.mock-hero-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px 18px;
  align-items: center;
}

.mock-text-block {}

.mock-headline {
  height: 11px;
  background: rgba(255,255,255,0.65);
  border-radius: 3px;
  margin-bottom: 7px;
  width: 90%;
}

.mock-headline.short { width: 55%; }

.mock-sub {
  height: 5px;
  background: rgba(255,255,255,0.18);
  border-radius: 3px;
  width: 75%;
  margin: 10px 0 4px;
}

.mock-btn-row { display: flex; gap: 7px; margin-top: 12px; }

.mock-btn {
  height: 16px;
  border-radius: 8px;
}

.mock-btn.green { width: 60px; background: #4ade80; }
.mock-btn.ghost { width: 50px; background: transparent; border: 1px solid rgba(255,255,255,0.25); }

.mock-image-block {}

.mock-img-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  opacity: 0.5;
}

.mock-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 18px 18px;
}

.mock-feat {
  height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
}

.hero-visual-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 0 2px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.label-arrow { color: var(--brass); font-weight: 600; }

/* ── SCROLL HINT ── */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--brass), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--charcoal);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.82; transform: translateY(-1px); }

.btn-text {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-text:hover { color: var(--charcoal); }

.btn-brass {
  display: inline-flex;
  align-items: center;
  background: var(--brass);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-brass:hover { background: var(--brass-light); transform: translateY(-1px); }

.btn-brass.large { font-size: 1rem; padding: 17px 40px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  background: var(--charcoal);
  padding: 15px 0;
}

.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  letter-spacing: 0.5px;
}

.marquee-track .dot { color: var(--brass); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 64px;
  max-width: 600px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.1;
  color: var(--charcoal);
}

.section-header.light h2 { color: var(--text-light); }
.section-header.light .section-label { color: var(--brass-light); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* 5-card layout: 3 top, 2 centred bottom */
.services-grid--5 {
  grid-template-columns: repeat(6, 1fr);
}

.services-grid--5 .service-card:nth-child(1) { grid-column: span 2; }
.services-grid--5 .service-card:nth-child(2) { grid-column: span 2; }
.services-grid--5 .service-card:nth-child(3) { grid-column: span 2; }
.services-grid--5 .service-card:nth-child(4) { grid-column: 2 / span 2; border-top: 1px solid var(--border); }
.services-grid--5 .service-card:nth-child(5) { grid-column: span 2; border-top: 1px solid var(--border); }

.service-card {
  background: var(--cream);
  padding: 44px 32px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
  cursor: default;
}

.service-card:nth-child(3) { border-right: none; }
.service-card:nth-child(5) { border-right: none; }

.service-card:hover { background: var(--cream-2); }

.service-number {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--brass);
  margin-bottom: 32px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.75;
}

.service-hook {
  color: var(--charcoal) !important;
  font-weight: 500;
  font-size: 0.9rem !important;
  margin-bottom: 0;
  line-height: 1.6 !important;
}

.service-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  padding: 12px 0 0;
  margin-top: 20px;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  font-family: var(--font-body);
}

.service-chevron {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
  display: block;
}

.service-card.open .service-chevron { transform: rotate(45deg); }

.service-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.service-card.open .service-body { grid-template-rows: 1fr; }

.service-body-inner { overflow: hidden; }

.service-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 14px;
  padding-bottom: 4px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: 100px 0;
  background: var(--charcoal);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 900;
  color: var(--brass);
  line-height: 1;
  letter-spacing: -3px;
}

.stat-unit {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--brass-light);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  margin-top: 10px;
  max-width: 150px;
  line-height: 1.5;
}

/* ============================================================
   WORK
   ============================================================ */
.work {
  padding: 120px 0;
  background: var(--cream-2);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(26,25,23,0.10);
}

.work-card.large { grid-column: 1 / -1; }

/* ---- Immersive horizontal showcase ---- */
.work-h {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 64px;
}
.work-h-track {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 max(32px, 6vw);
  will-change: transform;
}
.work-h-intro {
  flex: 0 0 auto;
  width: min(38vw, 460px);
  padding-right: 2vw;
}
.work-h-intro h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -1px;
  color: var(--charcoal);
  margin: 14px 0 18px;
}
.work-h-intro p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 38ch;
}
.work-h-cue {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.work-h-cue .arrow { display: inline-block; animation: nudge 1.4s ease-in-out infinite; }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }

.wpanel {
  flex: 0 0 auto;
  width: min(64vw, 760px);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  text-decoration: none;
  display: block;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -40px rgba(26,25,23,0.5);
}
.wpanel-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.wpanel-media img {
  position: absolute; top: 0; left: -8%;
  width: 116%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
  will-change: transform;
}
.wpanel-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 48%);
}
.wpanel-info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: var(--cream);
}
.wpanel-index {
  font-family: var(--font-display); font-weight: 900; font-size: 0.85rem;
  color: var(--brass); display: block; margin-bottom: 6px;
}
.wpanel-info h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 2rem); line-height: 1; color: var(--cream);
}
.wpanel-info .tag {
  font-size: 0.8rem; color: var(--text-light-muted); margin-top: 7px; display: block;
}
.wpanel-view {
  flex: 0 0 auto;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  background: var(--cream); color: var(--charcoal);
  padding: 10px 16px; border-radius: 100px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.wpanel:hover .wpanel-view { background: var(--brass); transform: translateY(-2px); }
.wpanel:hover .wpanel-media img { transform: scale(1.04); transition: transform 0.6s ease; }

.wpanel-cta {
  width: min(46vw, 480px);
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.wpanel-cta .wpanel-cta-inner { padding: 48px; }
.wpanel-cta h3 {
  font-family: var(--font-display); font-weight: 900; color: var(--cream);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem); line-height: 1.05; margin: 10px 0 14px;
}
.wpanel-cta-sub { color: var(--brass); font-size: 0.95rem; font-weight: 600; }

/* Mobile / reduced-motion fallback: native horizontal swipe, no pinning */
.work-h.is-static {
  height: auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 28px;
  -webkit-overflow-scrolling: touch;
}
.work-h.is-static .wpanel { scroll-snap-align: center; width: min(86vw, 620px); }
.work-h.is-static .work-h-intro { width: min(80vw, 460px); scroll-snap-align: start; }

.work-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  position: relative;
}

.work-card:not(.large) .work-img { aspect-ratio: 16 / 9; }

/* ── ROTOR CAROUSEL ── */
.rotor-wrap {
  height: 500px;
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
}

.rotor-wrap:active { cursor: grabbing; }

.rotor-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.rotor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.rotor-dot:hover { background: var(--brass-light); }

.rotor-dot.active {
  background: var(--brass);
  transform: scale(1.35);
  border-color: var(--brass);
}

.rotor-track {
  position: relative;
  height: 100%;
}

.rotor-slide {
  position: absolute;
  left: 0;
  width: 100%;
  height: 300px;
  top: 50%;
  margin-top: -150px;
  transform-origin: center center;
  will-change: transform, opacity;
}

.rs-browser {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,25,23,0.18), 0 2px 8px rgba(26,25,23,0.08);
  border: 1px solid rgba(26,25,23,0.10);
  display: flex;
  flex-direction: column;
}

.rs-bar {
  background: #EDE8DE;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.rs-dots { display: flex; gap: 4px; flex-shrink: 0; }
.rs-dots span { width: 8px; height: 8px; border-radius: 50%; background: #ccc; }
.rs-dots span:nth-child(1) { background: #FF5F56; }
.rs-dots span:nth-child(2) { background: #FFBD2E; }
.rs-dots span:nth-child(3) { background: #27C93F; }

.rs-brand-tag {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.rs-brand-main {
  font-family: 'Helvetica Now', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.rs-brand-sub {
  font-family: 'Helvetica Now', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.45rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
}

.rs-content {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rs-screenshot {
  padding: 0;
  position: relative;
}

.rs-screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.rs-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid;
  flex-shrink: 0;
}

.rs-logo {
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
}

.rs-nav-r { display: flex; gap: 6px; align-items: center; }

.rs-nl {
  width: 20px; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.rs-ncta {
  width: 36px; height: 12px;
  border-radius: 6px;
}

.rs-hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px 16px;
  align-items: center;
}

.rs-tag { width: 48px; height: 5px; border-radius: 3px; margin-bottom: 10px; }

.rs-h1 {
  height: 9px;
  background: rgba(255,255,255,0.65);
  border-radius: 3px;
  margin-bottom: 6px;
  width: 90%;
}

.rs-h1.w60 { width: 60%; margin-bottom: 10px; }
.rs-h1.w65 { width: 65%; margin-bottom: 10px; }
.rs-h1.w70 { width: 70%; margin-bottom: 10px; }
.rs-h1.w75 { width: 75%; margin-bottom: 10px; }

.rs-p {
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 3px;
  margin-bottom: 5px;
  width: 85%;
}

.rs-p.w55 { width: 55%; }
.rs-p.w60 { width: 60%; }
.rs-p.w65 { width: 65%; }

.rs-btns { display: flex; gap: 6px; margin-top: 10px; }

.rs-btn { height: 14px; width: 50px; border-radius: 7px; }
.rs-btn.ghost { background: transparent !important; border: 1px solid rgba(255,255,255,0.2); }

/* GardenGlow screenshot layout */
.gardenglow-img { background: #0C1B2A; }

.gg-screenshots {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 3fr 2fr;
  overflow: hidden;
  position: relative;
}

.gg-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}

.gg-shot-secondary {
  border-left: 1px solid rgba(255,255,255,0.08);
  object-position: center center;
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* Split pane (GardenGlow) */
.rs-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; height: 100%; }
.rs-pane {
  border-radius: 6px;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 6px;
}
.rs-pane span { font-size: 0.48rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.3); }

/* Badge stack (Trades) */
.rs-card-stack { display: flex; flex-direction: column; gap: 5px; }
.rs-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px; border-radius: 6px; border: 1px solid;
}
.rs-badge-icon { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.rs-badge-lines { display: flex; flex-direction: column; gap: 3px; }
.rs-badge-lines div { height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; width: 40px; }
.rs-badge-lines div:last-child { width: 28px; }

/* Stat grid (Fitness) */
.rs-stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; }
.rs-stat { border-radius: 6px; border: 1px solid; padding: 8px 4px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.rs-stat-n { width: 28px; height: 8px; border-radius: 3px; }
.rs-stat-l { width: 22px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; }

/* Image box (Bloom) */
.rs-img-box {
  height: 100%; border-radius: 8px; border: 1px solid;
  display: flex; align-items: center; justify-content: center;
}

/* Placeholder cards */
.placeholder-dark, .placeholder-dark-green {
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-dark { background: linear-gradient(135deg, #1A0F00, #2a1800); }
.placeholder-dark-green { background: linear-gradient(135deg, #001810, #002a18); }

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.placeholder-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.18);
}

.placeholder-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.10);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.work-info {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.work-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
}

.work-year {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.work-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.work-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ============================================================
   TRUTH SECTION
   ============================================================ */
.truth-section {
  background: var(--charcoal);
  padding: 120px 0;
}

/* Live "money lost to missed calls" counter */
.loss-counter {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 32px;
  text-align: center;
}

.loss-counter-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light-muted);
  margin-bottom: 20px;
}

.loss-counter-value {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--brass);
  line-height: 1;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.loss-counter-value #lossMain {
  font-size: clamp(2.8rem, 9vw, 7rem);
}

.loss-frac {
  font-family: var(--font-body);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.1rem, 3vw, 2.2rem);
  color: var(--brass-light);
  opacity: 0.45;
  margin-left: 3px;
  min-width: 2.6em;
  text-align: left;
}

.loss-counter-sub {
  display: block;
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--text-light-muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.truth-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

.truth-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.truth-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.truth-stat { border-bottom-color: var(--border-light); }
.truth-stat:last-child { border-bottom: none; padding-bottom: 0; }

.truth-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--brass);
  letter-spacing: 0.5px;
  line-height: 1;
}

.truth-def {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  line-height: 1.5;
  max-width: 220px;
}

.truth-text {
  padding-top: 8px;
  border-left: 2px solid var(--brass);
  padding-left: 40px;
}

.truth-lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.truth-text p:not(.truth-lead) {
  font-size: 1rem;
  color: var(--text-light-muted);
  line-height: 1.8;
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section {
  background: var(--charcoal);
  padding: 120px 0;
}

.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: end;
}

.founder-quote {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.founder-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.founder-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
}

.founder-text p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.founder-text p:last-child { margin-bottom: 0; }

.founder-sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.founder-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brass-light);
}

.founder-title {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light-muted);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 120px 0;
  background: var(--charcoal);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-light);
}

.process-step {
  padding: 44px 32px 0 0;
  border-right: 1px solid var(--border-light);
  padding-right: 32px;
}

.process-step:last-child { border-right: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--brass);
  margin-bottom: 20px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  line-height: 1.75;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: 120px 0;
  background: var(--cream-2);
}

.cta-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: center;
}

.cta-left .section-label { display: block; margin-bottom: 20px; }

.cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.1;
  color: var(--charcoal);
}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.cta-right p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.cta-email {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  font-style: italic;
  color: var(--brass);
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: opacity 0.2s;
}

.cta-email:hover { opacity: 0.7; }

.cta-note {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cta-note a { color: var(--brass); text-decoration: none; }
.cta-note a:hover { text-decoration: underline; }

/* ---- Contact form ---- */
.cta-form { width: 100%; display: flex; flex-direction: column; gap: 12px; }
.form-row { display: flex; }
.form-row-2 { gap: 12px; }
.form-row-2 > * { flex: 1; min-width: 0; }
.cta-form input,
.cta-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: var(--text-muted); }
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(184,146,58,0.15);
}
.cta-form textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.cta-submit {
  margin-top: 4px;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--charcoal);
  border: none;
  border-radius: 100px;
  padding: 14px 28px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cta-submit:hover { transform: translateY(-2px); background: var(--brass); color: var(--charcoal); }
.cta-submit:disabled { opacity: 0.6; cursor: default; transform: none; }

.form-status { font-size: 0.85rem; line-height: 1.5; margin: 0; }
.form-status.is-success { color: #2E7D46; font-weight: 500; }
.form-status.is-error { color: #C0392B; font-weight: 500; }

/* ---- Cookie consent banner ---- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 300;
  max-width: 720px;
  margin: 0 auto;
  background: var(--charcoal);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.55);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner p { font-size: 0.88rem; line-height: 1.55; color: var(--text-light-muted); margin: 0; flex: 1; min-width: 220px; }
.cookie-banner a { color: var(--brass-light); text-decoration: underline; }
.cookie-banner a:hover { color: var(--cream); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  border-radius: 100px; padding: 10px 20px; cursor: pointer; border: none;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-decline { background: transparent; color: var(--text-light-muted); border: 1px solid var(--border-light); }
.cookie-decline:hover { color: var(--cream); }
.cookie-accept { background: var(--brass); color: var(--charcoal); }
.cookie-accept:hover { background: var(--brass-light); }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal-2);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.footer-logo .logo-wordmark { color: var(--text-light); }

.footer-brand p {
  color: var(--text-light-muted);
  font-size: 0.85rem;
  margin-top: 12px;
  max-width: 220px;
  line-height: 1.6;
}

.footer-links { display: flex; gap: 60px; }

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text-light-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  font-size: 0.78rem;
  color: var(--text-light-muted);
}

.footer-legal-info {
  padding-top: 14px;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--text-light-muted);
  opacity: 0.7;
  max-width: 720px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid--5 .service-card { grid-column: span 1 !important; border-right: 1px solid var(--border); border-top: none !important; }
  .services-grid--5 .service-card:nth-child(even) { border-right: none; }
  .services-grid--5 .service-card:nth-child(n+3) { border-top: 1px solid var(--border) !important; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 20px;
  }

  .hero-visual { order: -1; }
  .hero-scroll { display: none; }

  .truth-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .truth-text {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .hero-inner { gap: 36px; }

  .hero-title { letter-spacing: -1.5px; }

  .work-grid { grid-template-columns: 1fr; }
  .work-card.large { grid-column: 1; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero-cta-group { flex-direction: column; align-items: flex-start; }

  .cta-inner h2 { letter-spacing: -1.5px; }
}

/* ============================================================
   LEGAL PAGES (privacy / terms / cookies)
   ============================================================ */
.legal-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,239,224,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.legal-nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.legal-nav .logo-wordmark { font-family: var(--font-display); font-weight: 900; font-size: 1.05rem; color: var(--charcoal); }
.legal-nav a.back { font-size: 0.85rem; font-weight: 600; color: var(--brass); text-decoration: none; }
.legal-nav a.back:hover { color: var(--charcoal); }

.legal-page { background: var(--cream); color: var(--text); }
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 80px 32px 100px; }
.legal-eyebrow {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--brass); margin-bottom: 14px;
}
.legal-wrap h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.02;
  letter-spacing: -1px; color: var(--charcoal); margin-bottom: 12px;
}
.legal-updated { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 40px; }
.legal-wrap h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem); color: var(--charcoal);
  margin: 44px 0 14px; letter-spacing: -0.3px;
}
.legal-wrap h3 { font-size: 1.02rem; font-weight: 600; color: var(--charcoal); margin: 24px 0 8px; }
.legal-wrap p, .legal-wrap li { font-size: 1rem; line-height: 1.75; color: var(--text); }
.legal-wrap p { margin-bottom: 16px; }
.legal-wrap ul { margin: 0 0 18px 22px; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap a { color: var(--brass); text-decoration: underline; }
.legal-wrap a:hover { color: var(--charcoal); }
.legal-wrap strong { color: var(--charcoal); }
.legal-note {
  background: var(--cream-2); border-left: 3px solid var(--brass);
  padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 28px 0;
  font-size: 0.95rem; color: var(--text-muted);
}
.legal-wrap table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; }
.legal-wrap th, .legal-wrap td {
  text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border);
  font-size: 0.92rem; vertical-align: top;
}
.legal-wrap th { font-weight: 600; color: var(--charcoal); }
.legal-foot {
  border-top: 1px solid var(--border); margin-top: 56px; padding-top: 24px;
  display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.88rem;
}
.legal-foot a { color: var(--text-muted); text-decoration: none; }
.legal-foot a:hover { color: var(--brass); }
