/* ==========================================================================
   Creator Source Hub — "Night Freight" design system
   ========================================================================== */

:root{
  --bg:            #15171A;
  --bg-alt:        #101214;
  --surface:       #1B1E19;
  --surface-2:     #20241C;
  --paper:         #ECE7DA;
  --paper-ink:     #1C1A12;
  --border:        #2A2E27;
  --border-soft:   #23261F;
  --ink:           #ECEEEA;
  --muted:         #9AA0A0;
  --muted-2:       #6B7169;
  --accent:        #C6FF3D;
  --accent-ink:    #141A05;
  --accent-dim:    rgba(198,255,61,.10);
  --accent-border: rgba(198,255,61,.35);
  --steel:         #7FA0B3;

  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;

  --container: 1180px;
  --gap: 24px;
}

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

html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p{ margin: 0; }

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

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

/* Overflow safety for any wide content */
.scroll-x{ overflow-x: auto; }

/* ---------- Typographic helpers ---------- */

.eyebrow{
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before{
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
}

.h-display{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .98;
  text-wrap: balance;
}

.lede{
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 54ch;
}

.section-head{
  margin-bottom: 48px;
}
.section-head .eyebrow{ margin-bottom: 18px; }
.section-head h2{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: .005em;
  max-width: 18ch;
  text-wrap: balance;
}

/* ---------- Buttons ---------- */

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary{
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover{ background: #d7ff6b; }

.btn-outline{
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover{ border-color: var(--muted); }

.btn-block{ width: 100%; justify-content: center; }

/* ---------- Nav ---------- */

.site-nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21,23,26,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo{
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -.03em;
  flex-shrink: 0;
  color: var(--ink);
  line-height: 1;
}
.logo .dot{ color: var(--accent); }

.logo-footer{ display: inline-block; font-size: 34px; margin-bottom: 10px; }
.footer-full-name{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 18px 2px;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links a{ transition: color .15s; }
.nav-links a:hover{ color: var(--ink); }
.nav-links a.is-active{ color: var(--accent); }

.nav-actions{ display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--border);
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

@media (max-width: 900px){
  .nav-links{ display: none; }
  .nav-toggle{ display: flex; }
  /* Logo + CTA pill + hamburger don't all fit on most phone widths
     (e.g. iPhone 12/13/14 at 390px) — drop the inline CTA here and
     rely on the CTA inside the mobile drawer instead. */
  .nav-actions > .btn-primary{ display: none; }
}

.mobile-menu .mobile-cta{
  display: block;
  margin: 16px 20px;
  text-align: center;
}

.mobile-menu{
  display: none;
  border-top: 1px solid var(--border-soft);
  background: var(--bg);
}
.mobile-menu.is-open{ display: block; }
.mobile-menu ul{ display: flex; flex-direction: column; }
.mobile-menu ul a{
  display: block;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}

/* ---------- Hero ---------- */

.hero{
  position: relative;
  padding: 88px 0 0;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 140px);
  pointer-events: none;
}
.hero-inner{ position: relative; max-width: 820px; }

.hero .eyebrow{ margin-bottom: 28px; }

.hero h1{
  font-size: clamp(38px, 6.2vw, 76px);
  margin-bottom: 26px;
}
.hero h1 .accent{ color: var(--accent); }

.hero .lede{ margin-bottom: 40px; font-size: 18px; }
.hero .lede strong{ color: var(--ink); font-weight: 600; }

.hero .ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.stat-row{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 48px;
  border-top: 1px solid var(--border);
  padding: 28px 0 56px;
}
@media (max-width: 720px){
  .stat-row{ grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
.stat b{
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  font-variant-numeric: tabular-nums;
}
.stat span{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* Partners marquee */
.partners{
  border-top: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
}
.partners .label{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.marquee{
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-left 32s linear infinite;
}
@media (prefers-reduced-motion: reduce){ .marquee{ animation: none; flex-wrap: wrap; } }

/* Fixed-size slot for every brand, regardless of that logo's native aspect
   ratio (Apple's mark is nearly square; Alienware's wordmark is ~10:1) — each
   logo scales to fit inside via object-fit:contain instead of claiming its
   own natural width. Without this, wide logos got shrunk vertically to fit a
   width cap while narrow ones stayed full-height, so the marquee's rhythm
   looked uneven — like "dead space" around certain logos as they scrolled by. */
/* margin-right (not the parent's flex `gap`) is what makes the infinite-scroll
   loop math exact: `gap` only inserts space *between* items, so 22 items get
   21 gaps — the animation's -50% translate then travels 21/22 of a period,
   landing short and creating a visible seam/jump every cycle. Giving every
   item (including the very last, harmlessly) identical margin-right means
   each item's true footprint is (width + margin), so exactly half the items
   is exactly half the total width — a mathematically exact loop point. */
.marquee .brand{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 28px;
  margin-right: 56px;
  flex-shrink: 0;
}

/* Logo files (logos/<name>.svg) are expected to be transparent-background
   marks; this filter normalizes any source color into a flat white silhouette
   so mixed brand logos read as one consistent "as seen with" strip. Drop a
   file in and it replaces the text fallback automatically — see logos/README.md. */
.marquee .brand img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .55;
  transition: opacity .15s;
}
.marquee .brand:hover img{ opacity: 1; }

.marquee .brand-fallback{
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: .02em;
  white-space: nowrap;
}
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------- Generic section rhythm ---------- */

section{ padding: 96px 0; }
.section-alt{ background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- Verticals ---------- */

.verticals-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
@media (max-width: 860px){ .verticals-grid{ grid-template-columns: 1fr; } }

.vertical-card{
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s;
}
.vertical-card:hover{ border-color: var(--muted); }
.vertical-card:hover .explore span{ transform: translateX(3px); }
.vertical-visual{
  height: 200px;
  position: relative;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.vertical-visual::before{
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.035) 0 2px, transparent 2px 14px);
}
.vertical-visual img{
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.vertical-card:hover .vertical-visual img{ transform: scale(1.04); }
.vertical-visual .glyph{
  position: relative;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: .06em;
}
.vertical-visual .tag{
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 4px 8px;
}
.v-icon{ position: relative; width: 46px; height: 46px; color: var(--muted); }
.v-icon svg{ width: 100%; height: 100%; }

.vertical-body{ padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.vertical-body .kicker{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}
.vertical-body h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
}
.vertical-body p{
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}
.vertical-body .explore span{ display: inline-block; transition: transform .15s; }
.vertical-body .explore{
  font-family: var(--mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink);
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Two column layout ---------- */

.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px){ .two-col{ grid-template-columns: 1fr; gap: 40px; } }

.feature-list{ display: flex; flex-direction: column; gap: 26px; }
.feature-item{ display: flex; gap: 16px; }
.feature-item .num{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  padding-top: 3px;
  flex-shrink: 0;
  width: 24px;
}
.feature-item h4{
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}
.feature-item p{ color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- Comparison table ---------- */

.compare-wrap{
  border: 1px solid var(--border);
  background: var(--surface);
}
.compare-head{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare-head div{
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 20px;
  color: var(--muted-2);
}
.compare-head .col-you{ color: var(--accent); }
.compare-row{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--border-soft);
}
.compare-row:last-child{ border-bottom: none; }
.compare-row > div{ padding: 18px 20px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.compare-row .label{ color: var(--ink); }
.compare-row .no{ color: var(--muted-2); }
.compare-row .yes{ color: var(--accent); font-weight: 600; }
.compare-foot{
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.compare-foot .badge{
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  text-transform: uppercase;
}
.compare-foot .badge small{
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--muted-2);
  text-transform: uppercase;
}

/* ---------- Data features grid ---------- */

.data-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 860px){ .data-grid{ grid-template-columns: 1fr; } }
.data-cell{
  background: var(--surface);
  padding: 28px 26px;
}
.data-cell h4{
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.data-cell h4::before{
  content: "";
  width: 5px; height: 5px;
  background: var(--accent);
  flex-shrink: 0;
}
.data-cell p{ color: var(--muted); font-size: 14px; line-height: 1.6; }

.compliance-note a{ color: var(--muted-2); text-decoration: underline; text-underline-offset: 2px; }
.compliance-note a:hover{ color: var(--ink); }
.compliance-note{
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ---------- Founder ---------- */

.founder{
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px){ .founder{ grid-template-columns: 1fr; gap: 32px; } }
.founder-portrait{
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.founder-portrait::before{
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 2px, transparent 2px 16px);
}
.founder-portrait .initials{
  position: relative;
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  color: var(--muted-2);
}
.founder-portrait img{
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-quote{
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  text-transform: none;
  line-height: 1.25;
  margin: 0 0 24px;
  text-wrap: balance;
}
.founder-quote::before{ content: "\201C"; color: var(--accent); }
.founder-quote::after{ content: "\201D"; color: var(--accent); }
.founder-body p{ color: var(--muted); line-height: 1.7; font-size: 15px; margin-bottom: 20px; }
.founder-sig{
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted-2);
}

/* ---------- Quality categories ---------- */

.quality-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
@media (max-width: 860px){ .quality-grid{ grid-template-columns: 1fr; } }
.quality-card{
  border: 1px solid var(--border);
  padding: 32px;
}
.quality-card .eyebrow{ margin-bottom: 16px; }
.quality-card h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.quality-card p{ color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* ---------- Why us grid ---------- */

.why-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 860px){ .why-grid{ grid-template-columns: 1fr; } }
@media (min-width: 861px) and (max-width: 1100px){ .why-grid{ grid-template-columns: repeat(2,1fr); } }
.why-cell{
  background: var(--bg-alt);
  padding: 30px 26px;
}
.why-cell .fig{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 14px;
}
.why-cell h4{
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}
.why-cell p{ color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ---------- Testimonials ---------- */

.testi-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
@media (max-width: 860px){ .testi-grid{ grid-template-columns: 1fr; } }
.testi-card{
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}
.testi-card .quote{
  font-size: 15px; line-height: 1.65; color: var(--ink);
  margin: 0; font-style: normal;
}
.testi-card .quote::before{ content: "\201C"; }
.testi-card .quote::after{ content: "\201D"; }
.testi-card .who{
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
  margin: 0;
}
.testi-card .who b{ font-size: 13.5px; font-weight: 600; font-style: normal; }
.testi-card .who cite{
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-style: normal;
}

/* ---------- Contact / booking ---------- */

.contact-section{ position: relative; }
.contact-layout{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  border: 1px solid var(--border);
}
@media (max-width: 900px){ .contact-layout{ grid-template-columns: 1fr; } }

.contact-info{
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info h2{
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1.05;
}
.contact-info .lede{ font-size: 15px; }
.expect-list{ display: flex; flex-direction: column; gap: 12px; }
.expect-list li{
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.expect-list li::before{ content: "→"; color: var(--accent); flex-shrink: 0; }

.contact-meta{
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
}
.contact-meta strong{ color: var(--ink); }

/* Form on paper card */
.contact-form-wrap{
  background: var(--paper);
  color: var(--paper-ink);
  padding: 48px 40px;
}
.contact-form-wrap .form-label{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6B6152;
  margin-bottom: 24px;
}
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px){ .form-grid{ grid-template-columns: 1fr; } }
.form-grid.full{ grid-template-columns: 1fr; }

.field{ display: flex; flex-direction: column; gap: 6px; }
.field label{
  font-size: 12px;
  font-weight: 600;
  color: #4A4536;
}
.field label .opt{ font-weight: 400; color: #8A8067; text-transform: lowercase; }
.field input, .field select{
  font-family: var(--sans);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid #CDBFA4;
  background: #fff;
  color: var(--paper-ink);
}
.field input:focus, .field select:focus{
  outline: 2px solid #1C1A12;
  outline-offset: -1px;
}

.form-note{
  font-size: 12px;
  color: #8A8067;
  margin-top: 14px;
  line-height: 1.5;
}
.form-note a{ color: #4A4536; text-decoration: underline; text-underline-offset: 2px; }
.form-note a:hover{ color: var(--paper-ink); }
.form-success{
  display: none;
  border: 1px solid #2C6A5E;
  background: rgba(44,106,94,.08);
  color: #1f4a41;
  padding: 20px;
  font-size: 13.5px;
  line-height: 1.6;
}
.form-success.is-visible{ display: block; }
.form-success strong{ display: block; font-size: 16px; margin-bottom: 8px; }
.form-success p{ margin-bottom: 16px; }
.form-success .btn-outline{
  color: var(--paper-ink);
  border-color: #CDBFA4;
}
.form-success .btn-outline:hover{ border-color: #4A4536; }

/* ---------- Footer ---------- */

.site-footer{
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-top{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 24px;
}
.footer-cols{ display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 10px; }
.footer-col a{ font-size: 14px; color: var(--muted); }
.footer-col a:hover{ color: var(--ink); }
.footer-blurb{ max-width: 320px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.footer-office{
  max-width: 320px;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .02em;
  line-height: 1.6;
  margin-top: 16px;
}

.footer-bottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* ---------- Floating WhatsApp ---------- */

.whatsapp-float{
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--accent-ink);
  padding: 18px 26px;
  font-size: 15.5px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0,0,0,.4);
  transition: transform .15s, box-shadow .15s;
}
.whatsapp-float:hover{ background: #d7ff6b; border-color: #d7ff6b; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.45); }
.whatsapp-float svg{ width: 24px; height: 24px; color: var(--accent-ink); flex-shrink: 0; }

@media (max-width: 560px){
  .whatsapp-float span{ display: none; }
  .whatsapp-float{ padding: 16px; }
}

/* ---------- Scroll reveal ---------- */

.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Legal pages (privacy / terms) ---------- */

.legal-hero{
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--border);
}
.legal-hero h1{
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: .005em;
  margin-bottom: 14px;
}
.legal-hero .updated{
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.legal-content{
  max-width: 74ch;
  padding: 56px 0 96px;
}
.legal-content > * + *{ margin-top: 20px; }
.legal-content h2{
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: .005em;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.legal-content h2:first-child{ margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3{
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  margin-top: 28px;
}
.legal-content p{ color: var(--muted); font-size: 15px; line-height: 1.7; }
.legal-content ul, .legal-content ol{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content li::marker{ color: var(--accent); }
.legal-content a{ color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--border); }
.legal-content a:hover{ text-decoration-color: var(--accent); }
.legal-content strong{ color: var(--ink); }

/* ---------- Category pages ---------- */

.cat-hero{
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
}
.cat-hero::before{
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 140px);
  pointer-events: none;
}
.cat-hero-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
}
@media (max-width: 900px){ .cat-hero-grid{ grid-template-columns: 1fr; gap: 32px; } }
.cat-hero h1{
  font-size: clamp(32px, 5vw, 56px);
  margin: 22px 0 22px;
}
.cat-hero-image{
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.cat-hero-image img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-hero-image .placeholder{
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted-2); text-align: center; padding: 24px;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 2px, transparent 2px 14px);
}

.tag-cloud{ display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud span{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 7px 13px;
  white-space: nowrap;
}

.cat-block{ margin-top: 20px; }
.cat-block p.lede-sm{ color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 68ch; margin-bottom: 24px; }

.subcat-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 900px){ .subcat-grid{ grid-template-columns: 1fr; } }
.subcat-card{ border: 1px solid var(--border); padding: 26px; }
.subcat-card h4{ font-family: var(--sans); font-weight: 600; font-size: 15.5px; margin-bottom: 10px; }
.subcat-card p{ color: var(--muted); font-size: 13.5px; line-height: 1.6; }

.cross-link{
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cross-link p{ color: var(--muted); font-size: 15px; max-width: 56ch; }
.cross-link p strong{ color: var(--ink); }
