/* ==========================================================================
   FREEDOM VISUALS — DESIGN SYSTEM
   Tokens:
   --ink        #1C1712  deep warm black, primary text
   --cream      #F7F1E6  warm ivory, base background
   --paper      #FFFCF6  lighter panel background
   --coral      #E35C2B  primary accent (buttons, marquee, links)
   --gold       #CE9A3A  secondary accent (badges, dividers)
   --sage       #4E6B57  tertiary accent (alt sections)
   --dusty      #93A9C7  quaternary accent (soft fills, focus)
   --plum       #7B2C52  rare accent (script word highlight)
   Type:
   Display  — 'Bricolage Grotesque' 800/900, tight tracking, the loud voice
   Accent   — 'Instrument Serif' italic, the quiet voice, used on single words
   Body/UI  — 'Inter', workhorse
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Instrument+Serif:ital@1&family=Inter:wght@400;500;600&display=swap');

:root{
  --ink: #1C1712;
  --ink-soft: #4A423A;
  --cream: #F7F1E6;
  --paper: #FFFCF6;
  --coral: #E35C2B;
  --coral-dark: #C24C21;
  --gold: #CE9A3A;
  --sage: #4E6B57;
  --dusty: #93A9C7;
  --plum: #7B2C52;
  --line: rgba(28,23,18,0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a{ color: inherit; }

h1,h2,h3,h4{
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0 0 0.4em;
}

em, .accent-word{
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
  letter-spacing: 0;
}

h1{ font-size: clamp(2.6rem, 6.5vw, 5.4rem); }
h2{ font-size: clamp(1.9rem, 4.2vw, 3.1rem); }
h3{ font-size: clamp(1.3rem, 2.2vw, 1.7rem); }

.hero h1{ line-height: 1.18; margin-bottom: 0.55em; }
.hero .eyebrow{ margin-bottom: 26px; }

p{ margin: 0 0 1em; color: var(--ink-soft); }

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

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  border-radius:50%;
  background: var(--coral);
  display:inline-block;
}

/* Skip link for accessibility */
.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--ink); color:var(--paper);
  padding:12px 18px; border-radius:8px; z-index:999;
}
.skip-link:focus{ left:16px; top:16px; }

:focus-visible{
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

/* ---------------------------------- NAV ---------------------------------- */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(247,241,230,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px var(--gutter);
  max-width: var(--container);
  margin:0 auto;
}
.wordmark{
  font-family:'Bricolage Grotesque', sans-serif;
  font-weight:800;
  font-size:1.25rem;
  letter-spacing: -0.01em;
  text-decoration:none;
  color: var(--ink);
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.wordmark-flower{ width:22px; height:22px; flex:none; display:inline-block; }
.wordmark span{ color:var(--coral); }

.nav-links{
  display:flex;
  align-items:center;
  gap: clamp(18px, 2.4vw, 34px);
  list-style:none;
  margin:0; padding:0;
}
.nav-links a{
  text-decoration:none;
  font-size:0.94rem;
  font-weight:500;
  color: var(--ink);
  position:relative;
  padding: 4px 0;
}
.nav-links a[aria-current="page"]{ color: var(--coral-dark); }
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:-3px;
  width:0; height:2px; background:var(--coral);
  transition: width .25s ease;
}
.nav-links a:hover::after{ width:100%; }
/* A button-styled link keeps its button colors even inside .nav-links */
.nav-links a.btn{ color: var(--paper) !important; }
.nav-links a.btn::after{ display:none; }
/* This link only exists for the mobile menu (nav-cta's button is hidden there) */
.nav-links .mobile-only-cta{ display:none; }

.nav-cta{ display:flex; align-items:center; gap:18px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  font-weight:600;
  font-size:0.94rem;
  text-decoration:none;
  cursor:pointer;
  background:transparent;
  color: var(--ink);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-solid{
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-solid:hover{ background: var(--coral); border-color: var(--coral); }
.btn-coral{
  border-color: var(--coral);
  color: var(--coral-dark);
}
.btn-coral:hover{ background:var(--coral); color:var(--paper); }
/* Solid button for use on dark backgrounds (cta-banner, section-ink) where
   the default btn-solid (ink-on-ink) would disappear */
.btn-on-dark{
  background: var(--coral);
  color: var(--paper);
  border-color: var(--coral);
}
.btn-on-dark:hover{ background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-sm{ padding: 10px 20px; font-size:0.86rem; }

.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width:40px; height:40px;
  align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block;
  width:22px; height:2px; background:var(--ink);
  position:relative; transition: all .25s ease;
}
.nav-toggle span::before{ position:absolute; top:-7px; }
.nav-toggle span::after{ position:absolute; top:7px; }
.nav-toggle[aria-expanded="true"] span{ background:transparent; }
.nav-toggle[aria-expanded="true"] span::before{ transform: rotate(45deg); top:0; }
.nav-toggle[aria-expanded="true"] span::after{ transform: rotate(-45deg); top:0; }

/* ------------------------------- MARQUEE ---------------------------------
   Signature element: a tilted, continuously scrolling ribbon of phrases —
   the "running line" + "wave" references, combined into one motif that
   repeats between sections instead of a static divider rule. */
.marquee-strip{
  overflow:hidden;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 0;
  transform: rotate(-1.4deg);
  margin: 0 -40px;
}
.marquee-strip.alt{ background: var(--coral); color: var(--paper); transform: rotate(1.2deg); }
.marquee-track{
  display:flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span{
  font-family:'Bricolage Grotesque', sans-serif;
  font-weight:700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0 2.2rem;
  display:flex; align-items:center; gap: 2.2rem;
}
.marquee-track span::after{ content:"✦"; opacity:.7; font-size:0.8rem; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; }
}

/* ------------------------------ MARQUEE -------------------------------
   Signature element: a continuous running strip of text, slightly tilted
   for a "wave" character. Rebuilt as a plain CSS transform loop (not SVG
   textPath + SMIL) so it is always fully visible and text-filled on the
   very first frame — after a hard refresh, back-navigation, or a slow
   network — with no edge-entry, no empty strip, and no jump on loop. */
:root{
  --marquee-duration: 40s;
}
.marquee-wrap{
  width: 100%;
  overflow: hidden;
}
.marquee{
  display:flex;
  align-items:center;
  width: 104%;
  margin: 0 -2%;
  height: 128px;
  overflow: hidden;
  background: var(--cream);
  transform: rotate(-1deg);
}
.marquee-track{
  display:flex;
  align-items:center;
  width: max-content;
  animation: marquee-scroll var(--marquee-duration) linear infinite;
  will-change: transform;
}
.marquee-track span{
  display:flex;
  align-items:center;
  gap: 2rem;
  padding: 0 1rem;
  font-family:'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.marquee-track .dot{ color: var(--coral); font-size: 0.55em; }
@keyframes marquee-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-16.6667%); }
}
.marquee.on-dark{ background: var(--ink); }
.marquee.on-dark .marquee-track span{ color: var(--cream); }
.marquee.on-sage{ background: var(--sage); }
.marquee.on-sage .marquee-track span{ color: var(--paper); }
.marquee.on-sage .marquee-track .dot{ color: var(--gold); }

@media (max-width: 760px){
  .marquee{ height: 96px; }
  .marquee-track span{ font-size: 24px; gap: 1.2rem; }
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; transform: translateX(0); }
}

/* --------------------------- FLOWER / BLOOM ACCENTS ------------------------
   Small organic bloom shapes scattered as color accents instead of empty
   image placeholders — a redrawn nod to the soft blob badges referenced. */
.bloom-field{ position:relative; }
.bloom{
  position:absolute;
  z-index: 0;
  opacity: 0.9;
  pointer-events:none;
  animation: bloomFloat 9s ease-in-out infinite alternate;
}
.bloom svg{ width:100%; height:100%; display:block; }
@keyframes bloomFloat{
  from{ transform: translateY(0) rotate(0deg); }
  to{ transform: translateY(-14px) rotate(6deg); }
}
@media (prefers-reduced-motion: reduce){
  .bloom{ animation:none; }
}

/* ------------------------------ WAVE DIVIDER ------------------------------ */
.wave-divider{
  display:block; width:100%; height: 46px;
  color: var(--cream);
}
.wave-divider path{ fill: currentColor; }
.section-sage .wave-divider{ color: var(--sage); }

/* Small decorative wavy line accent — same curve family as the wave marquee,
   used where a heading needs a bit of graphic weight without more text */
.squiggle-line{
  display:block;
  width: 180px;
  height: 22px;
  margin-top: 18px;
  color: var(--coral);
}
.squiggle-line path{
  fill:none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
}

/* --------------------------------- BLOB BADGE ------------------------------
   Organic, flower-like accent shape used for small callouts — a nod to the
   soft blob badges in the reference set, redrawn for this brand. */
.blob-badge{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 108px; height:108px;
  color:var(--paper);
  font-family:'Bricolage Grotesque', sans-serif;
  font-weight:700;
  font-size:0.78rem;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:0.04em;
}
.blob-badge svg{ position:absolute; inset:0; width:100%; height:100%; z-index:0; }
.blob-badge span{ position:relative; z-index:1; padding: 0 10px; }

/* -------------------------------- HERO ------------------------------------ */
.hero{
  position:relative;
  padding: clamp(64px,10vw,120px) 0 clamp(48px,7vw,80px);
  overflow:hidden;
}
.gradient-veil{
  position:absolute; inset:-10% -10% auto -10%;
  height: 130%;
  z-index:-1;
  background:
    radial-gradient(38% 42% at 18% 22%, rgba(227,92,43,0.55), transparent 70%),
    radial-gradient(34% 38% at 78% 14%, rgba(206,154,58,0.45), transparent 70%),
    radial-gradient(40% 46% at 66% 68%, rgba(78,107,87,0.40), transparent 70%),
    radial-gradient(34% 40% at 12% 78%, rgba(147,169,199,0.45), transparent 70%);
  filter: blur(60px) saturate(1.15);
  animation: driftVeil 22s ease-in-out infinite alternate;
  opacity: 0.9;
}
@keyframes driftVeil{
  0%{ transform: translate3d(0,0,0) scale(1); }
  100%{ transform: translate3d(2%, -3%, 0) scale(1.08); }
}
@media (prefers-reduced-motion: reduce){
  .gradient-veil{ animation:none; }
}
.hero-inner{
  display:grid;
  gap: 40px;
  align-items:end;
}
.hero-copy{ max-width: 760px; }
.hero-copy p{ font-size:1.12rem; max-width: 52ch; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top: 10px; }

.hero-frame{
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  overflow:hidden;
  aspect-ratio: 16/8;
  position:relative;
}

/* ---------------------------- IMAGE PLACEHOLDERS --------------------------- */
.ph{
  position:relative;
  border-radius: var(--radius-md);
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  min-height: 220px;
  background: linear-gradient(155deg, #EFE6D3 0%, #E7DAC0 55%, #E8CFB0 100%);
  border: 1px solid var(--line);
}
.ph::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(60% 60% at 20% 15%, rgba(227,92,43,0.30), transparent 70%),
    radial-gradient(55% 55% at 85% 85%, rgba(78,107,87,0.28), transparent 70%);
}
.ph-label{
  position:relative;
  z-index:1;
  margin: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(28,23,18,0.82);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight:600;
  letter-spacing:0.06em;
  text-transform: uppercase;
}
.ph.tone-sage::before{ background: radial-gradient(60% 60% at 25% 20%, rgba(78,107,87,0.35), transparent 70%), radial-gradient(55% 55% at 80% 80%, rgba(147,169,199,0.32), transparent 70%); }
.ph.tone-plum::before{ background: radial-gradient(60% 60% at 25% 20%, rgba(123,44,82,0.30), transparent 70%), radial-gradient(55% 55% at 80% 80%, rgba(227,92,43,0.28), transparent 70%); }
.ph.tall{ aspect-ratio: 3/4; }
.ph.wide{ aspect-ratio: 16/10; }
.ph.square{ aspect-ratio: 1/1; }

/* ------------------------------ SECTIONS ----------------------------------- */
section{ padding: clamp(56px,8vw,100px) 0; }
.section-sage{ background: var(--sage); color: var(--paper); padding-bottom: clamp(28px, 4vw, 48px); }
.section-sage h2, .section-sage p{ color: var(--paper); }
.section-sage em{ color: var(--gold); }
.section-ink{ background: var(--ink); color: var(--cream); }
.section-ink h2, .section-ink p{ color: var(--cream); }
.section-ink em{ color: var(--coral); }

.section-head{ max-width: 680px; margin-bottom: 44px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* Service rows (replaces two-column text + placeholder-image layout) */
.service-row{
  display:flex;
  gap: 26px;
  align-items:flex-start;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.service-flower{
  flex: none;
  width: 56px; height:56px;
  margin-top: 6px;
}
.service-copy .num{
  font-family:'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--coral);
  letter-spacing: 0.08em;
  display:block;
  margin-bottom: 6px;
}
@media (max-width: 600px){
  .service-row{ flex-direction:column; }
  .service-flower{ width:44px; height:44px; }
}

/* Cards grid */
.grid{ display:grid; gap: 24px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.project-types-grid{ gap: 56px; }
@media (max-width: 980px){
  .project-types-grid{ gap: 22px; }
}

.card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  color: var(--ink);
}
.card h3{ color: var(--ink); }
.card p{ color: var(--ink-soft); }
.card .num{
  font-family:'Bricolage Grotesque', sans-serif;
  font-weight:800;
  font-size:0.8rem;
  color: var(--coral);
  letter-spacing:0.08em;
  display:block;
  margin-bottom:14px;
}
.card h3{ margin-bottom:10px; }
.card p{ margin-bottom:0; font-size:0.96rem; }

/* Deliverables list */
.chip-list{ list-style:none; margin:16px 0 0; padding:0; display:flex; flex-wrap:wrap; gap:8px; }
.chip-list li{
  font-size:0.85rem;
  font-weight:500;
  padding:7px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background: var(--paper);
}
.section-sage .chip-list li, .section-ink .chip-list li{
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: inherit;
}

/* Process steps */
.steps{ display:grid; gap:20px; grid-template-columns: repeat(4,1fr); }
.step{
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}
.step .num{ font-family:'Bricolage Grotesque',sans-serif; font-weight:800; color:var(--coral); display:block; margin-bottom:10px;}

/* Values */
.value-row{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.value-row:last-child{ border-bottom:1px solid var(--line); }
.value-row h3{ margin-bottom:0; }

/* CTA banner */
.cta-banner{
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--cream);
  padding: clamp(40px,6vw,72px);
  text-align:center;
}
.cta-banner h2{ color:var(--paper); }
.cta-banner em{ color: var(--coral); }
.cta-banner p{ color: rgba(247,241,230,0.8); max-width:52ch; margin:0 auto 26px; }

/* ---------------------------------- FORM ----------------------------------- */
.form-grid{ display:grid; gap:20px; grid-template-columns: 1fr 1fr; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size:0.86rem; font-weight:600; }
.field .req{ color:var(--coral); }
.field input, .field select, .field textarea{
  font-family:'Inter', sans-serif;
  font-size:0.98rem;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
.field input:invalid[data-touched="true"],
.field select:invalid[data-touched="true"],
.field textarea:invalid[data-touched="true"]{
  border-color: #B23A2A;
}
.field textarea{ resize: vertical; min-height:120px; }
.checkbox-row{ display:flex; align-items:flex-start; gap:12px; grid-column:1/-1; }
.checkbox-row input{ margin-top:4px; width:18px; height:18px; flex-shrink:0; }
.checkbox-row label{ font-size:0.88rem; color: var(--ink-soft); font-weight:400; }
.form-msg{ padding:16px 20px; border-radius:12px; font-weight:500; font-size:0.94rem; display:none; }
.form-msg.success{ background: rgba(78,107,87,0.15); color:#2E4234; }
.form-msg.error{ background: rgba(178,58,42,0.12); color:#8B2C1E; }
.form-msg.visible{ display:block; }
.field-error{ font-size:0.8rem; color:#B23A2A; display:none; }
.field-error.visible{ display:block; }

/* Contact info */
.contact-info{
  display:flex; flex-wrap:wrap; gap: 32px;
  margin-bottom: 40px;
}
.contact-info .item .label{ font-size:0.78rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--ink-soft); margin-bottom:4px; }
.contact-info .item a{ font-family:'Bricolage Grotesque', sans-serif; font-weight:700; font-size:1.2rem; text-decoration:none; color:var(--ink); }

/* --------------------------------- FOOTER ---------------------------------- */
.site-footer{
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 28px;
}
.footer-top{
  display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(247,241,230,0.16);
}
.footer-brand .wordmark{ color:var(--cream); }
.footer-brand p{ color: rgba(247,241,230,0.65); max-width: 34ch; margin-top:12px; }
.footer-nav{ display:flex; gap:56px; flex-wrap:wrap; }
.footer-col h4{
  font-family:'Inter',sans-serif; font-weight:600; font-size:0.78rem;
  text-transform:uppercase; letter-spacing:0.08em;
  color: rgba(247,241,230,0.55); margin-bottom:14px;
}
.footer-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.footer-col a{ text-decoration:none; color: var(--cream); font-size:0.94rem; }
.footer-col a:hover{ color: var(--coral); }
.footer-bottom{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  padding-top: 22px;
  font-size:0.82rem;
  color: rgba(247,241,230,0.55);
}

/* --------------------------------- LEGAL ----------------------------------- */
.legal h2{ font-size:1.5rem; margin-top:2em; }
.legal p, .legal li{ color: var(--ink-soft); }
.legal-updated{ font-size:0.86rem; color:var(--ink-soft); margin-bottom:40px; }

/* --------------------------------- 404 ------------------------------------- */
.error-page{
  min-height: 60vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding: 80px var(--gutter);
}

/* -------------------------------- RESPONSIVE -------------------------------- */
@media (max-width: 980px){
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .steps{ grid-template-columns: repeat(2,1fr); }
  .form-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav-toggle{ display:flex; }
  .bloom-hero-a{ width:64px !important; height:64px !important; top:1% !important; right:2% !important; }
  .bloom-hero-b{ width:48px !important; height:48px !important; bottom:2% !important; left:3% !important; }
  .bloom-hero-c{ display:none; }
  .bloom-sage-top{ width:44px !important; height:44px !important; top:-1% !important; right:2% !important; opacity:0.35 !important; }
  .bloom-sage-a{ display:none; }  .nav-cta .btn-sm{ display:none; }
  .nav-links .mobile-only-cta{ display:inline-flex; margin-top:8px; }
  .nav-links{
    position:fixed; inset: 68px 0 0 0;
    background: var(--cream);
    flex-direction:column;
    align-items:flex-start;
    padding: 28px var(--gutter);
    gap: 22px;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ font-size:1.2rem; }
  .grid-4, .grid-3, .grid-2, .steps{ grid-template-columns: 1fr; }
  .value-row{ grid-template-columns: 1fr; gap:8px; }
  .footer-top{ flex-direction:column; }
  .marquee-strip{ margin: 0 -20px; }
}
