@charset "UTF-8";
/* ==========================================================================
   Odooly Design System
   Hand-built, framework-free. Replaces Bootstrap 4 (159KB) + FontAwesome (72KB).
   Palette derived from the Odooly wordmark's terracotta -> warm-grey gradient.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand — clay/terracotta from the logo */
  --clay-50:  #FBF6F4;
  --clay-100: #F5EAE6;
  --clay-200: #E9D5CD;
  --clay-300: #D5B3A8;
  --clay-400: #B98A7D;
  --clay-500: #A0736A;
  --clay-600: #8A5C53;   /* primary brand */
  --clay-700: #734941;
  --clay-800: #5A3831;
  --clay-900: #3D2621;

  /* Warm neutral ink */
  --ink-900: #1E1815;
  --ink-800: #2C2420;
  --ink-700: #3D3532;
  --ink-600: #554B46;
  --ink-500: #6B615C;
  --ink-400: #8C827C;
  --ink-300: #A79E99;
  --ink-200: #CFC6C1;

  /* Surfaces */
  --surface:    #FFFFFF;
  --surface-2:  #FBF7F5;
  --surface-3:  #F4ECE8;
  --surface-ink:#1A1310;
  --line:       #EAE0DB;
  --line-strong:#DCCFC8;

  /* Support accents (used sparingly) */
  --jade:   #2E7D6B;
  --jade-50:#E9F4F1;
  --amber:  #B4802A;
  --rose:   #B04437;

  /* Signature gradient — mirrors the wordmark */
  --grad-brand: linear-gradient(105deg, #8A5C53 0%, #A0736A 46%, #7E7B78 100%);
  --grad-brand-soft: linear-gradient(105deg, #F5EAE6 0%, #FBF6F4 50%, #F2F0EF 100%);
  --grad-ink: linear-gradient(160deg, #241C18 0%, #3A2A24 55%, #4A3A34 100%);

  /* Typography */
  --font: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  --fs-display: clamp(2.2rem, 1.35rem + 2.6vw, 3.4rem);
  --fs-h1:      clamp(2.1rem, 1.2rem + 3.4vw, 3.5rem);
  --fs-h2:      clamp(1.75rem, 1.15rem + 2.1vw, 2.6rem);
  --fs-h3:      clamp(1.25rem, 1.05rem + 0.75vw, 1.6rem);
  --fs-h4:      clamp(1.06rem, 1rem + 0.35vw, 1.22rem);
  --fs-lead:    clamp(1.03rem, 0.98rem + 0.4vw, 1.2rem);
  --fs-body:    1rem;
  --fs-sm:      0.9375rem;
  --fs-xs:      0.8125rem;
  --fs-stat:    clamp(2.1rem, 1.4rem + 2.2vw, 3.1rem);

  /* Spacing */
  --gutter:  clamp(1.15rem, 0.6rem + 2.4vw, 2.5rem);
  --section: clamp(4.25rem, 2rem + 7.5vw, 8rem);
  --maxw:    1220px;
  --maxw-narrow: 760px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  /* Elevation — warm-tinted, never pure black */
  --sh-xs: 0 1px 2px rgba(61, 38, 33, .06);
  --sh-sm: 0 2px 8px rgba(61, 38, 33, .06), 0 1px 2px rgba(61, 38, 33, .04);
  --sh-md: 0 8px 24px rgba(61, 38, 33, .08), 0 2px 6px rgba(61, 38, 33, .04);
  --sh-lg: 0 18px 44px rgba(61, 38, 33, .12), 0 4px 12px rgba(61, 38, 33, .06);
  --sh-xl: 0 32px 72px rgba(61, 38, 33, .16), 0 8px 20px rgba(61, 38, 33, .07);
  --sh-brand: 0 14px 32px rgba(138, 92, 83, .28);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --header-h: 76px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-600);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
svg { flex: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.015em; }
h4 { font-size: var(--fs-h4); letter-spacing: -0.01em; }

p { text-wrap: pretty; }
p + p { margin-top: 0.9em; }

a { color: var(--clay-700); text-decoration: none; }
a:hover { color: var(--clay-800); }

ul, ol { padding: 0; list-style: none; }
strong, b { font-weight: 600; color: var(--ink-800); }
small { font-size: var(--fs-xs); }

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--clay-500);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

::selection { background: var(--clay-200); color: var(--ink-900); }

hr { border: 0; border-top: 1px solid var(--line); }

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(3rem, 1.5rem + 5vw, 5rem); }
.section--alt { background: var(--surface-2); }
.section--warm { background: var(--clay-50); }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--ink-900);
  color: #fff;
  padding: .8rem 1.4rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

/* Section heading block */
.sec-head { max-width: 720px; margin-bottom: clamp(2.25rem, 1rem + 3vw, 3.5rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p {
  font-size: var(--fs-lead);
  color: var(--ink-500);
  margin-top: 1rem;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay-700);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}
.sec-head--center .eyebrow::before { display: none; }
.sec-head--center .eyebrow {
  background: var(--clay-100);
  padding: .45rem .9rem;
  border-radius: var(--r-pill);
}
.eyebrow--light { color: var(--clay-200); }
.eyebrow--light::before { background: var(--clay-300); }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-py: .875rem;
  --btn-px: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.005em;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), border-color .25s var(--ease),
              color .25s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-brand);
  background-size: 150% 100%;
  color: #fff;
  box-shadow: var(--sh-brand);
}
.btn--primary:hover { color: #fff; background-position: 100% 0; box-shadow: 0 18px 40px rgba(138,92,83,.36); }

.btn--ink { background: var(--ink-900); color: #fff; box-shadow: var(--sh-md); }
.btn--ink:hover { background: var(--ink-800); color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--ink-800);
  border-color: var(--line-strong);
}
.btn--outline:hover { border-color: var(--clay-600); color: var(--clay-700); background: var(--clay-50); }

.btn--light { background: #fff; color: var(--clay-700); box-shadow: var(--sh-md); }
.btn--light:hover { color: var(--clay-800); }

.btn--ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.32); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: rgba(255,255,255,.2); color: #fff; }

.btn--lg { --btn-py: 1.05rem; --btn-px: 2rem; font-size: 1rem; }
.btn--sm { --btn-py: .6rem; --btn-px: 1.15rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }
.btn:hover svg.i-arrow { transform: translateX(4px); }

/* Inline text link with arrow */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--clay-700);
}
.tlink svg { width: 1.05em; height: 1.05em; transition: transform .25s var(--ease); }
.tlink:hover svg { transform: translateX(4px); }
.tlink::after {
  content: "";
  position: absolute;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   5. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: .85rem;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease),
              padding .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.92), rgba(255,255,255,0));
  opacity: 1;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(61,38,33,.07);
  padding-block: .5rem;
}
.site-header.is-stuck::before { opacity: 0; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 30px; width: auto; transition: height .3s var(--ease); }
.is-stuck .brand img { height: 27px; }

/* On desktop the menu is a flex row: links, then the CTA. */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: .1rem;
}
.nav-list a {
  display: block;
  padding: .55rem .7rem;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-list a:hover { color: var(--clay-700); background: var(--clay-50); }
.nav-list a[aria-current="true"] { color: var(--clay-700); font-weight: 600; }
.nav-list a[aria-current="true"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .18rem;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}
.nav-cta { flex: none; margin-left: .25rem; }

/* Between 992px and 1140px the six links + CTA get tight — shed the padding. */
@media (min-width: 992px) and (max-width: 1140px) {
  .nav-list a { padding-inline: .5rem; font-size: .875rem; }
  .nav-menu { gap: .4rem; }
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
  color: var(--ink-800);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .i-close { display: none; }
.nav-toggle[aria-expanded="true"] .i-close { display: block; }
.nav-toggle[aria-expanded="true"] .i-menu { display: none; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30, 24, 21, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
  z-index: 98;
}
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

@media (max-width: 991px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 86vw);
    height: 100dvh;
    background: #fff;
    box-shadow: -20px 0 60px rgba(61,38,33,.18);
    padding: 5.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    margin-left: 0;
    overflow-y: auto;
    transform: translateX(102%);
    transition: transform .4s var(--ease-out);
    z-index: 99;
  }
  body.nav-open .nav-menu { transform: translateX(0); }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
    margin-left: 0;
  }
  .nav-list a {
    padding: .85rem 1rem;
    border-radius: var(--r-md);
    font-size: 1.02rem;
    font-weight: 500;
  }
  .nav-list a[aria-current="true"] { background: var(--clay-50); }
  .nav-list a[aria-current="true"]::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: auto; }
  .nav-cta .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 1rem + 5vw, 5rem));
  padding-bottom: clamp(3rem, 1.5rem + 5vw, 6rem);
  background: var(--grad-brand-soft);
  overflow: hidden;
  isolation: isolate;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.hero::before {
  width: 46rem; height: 46rem;
  top: -18rem; right: -14rem;
  background: radial-gradient(circle, rgba(160,115,106,.22), transparent 68%);
}
.hero::after {
  width: 34rem; height: 34rem;
  bottom: -16rem; left: -12rem;
  background: radial-gradient(circle, rgba(126,123,120,.18), transparent 70%);
}

.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 1rem + 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 992px) {
  .hero-grid { grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); }
}

.hero h1 {
  font-size: var(--fs-display);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}
.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--clay-600);
}
.hero-lead {
  font-size: var(--fs-lead);
  color: var(--ink-500);
  max-width: 34rem;
  margin-bottom: 1.9rem;
}

/* trust row under hero CTA */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  justify-content: start;
  gap: 1.25rem clamp(1.25rem, .5rem + 2vw, 2.5rem);
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--clay-200);
}
/* Three columns get too narrow for the labels on phones — go to two. */
@media (max-width: 520px) {
  .hero-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); justify-content: stretch; }
  .hero-trust dd { font-size: .78rem; }
}
.hero-trust dt {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.hero-trust dd {
  margin: .2rem 0 0;
  font-size: var(--fs-xs);
  color: var(--ink-400);
  letter-spacing: .01em;
}

/* Hero visual stack */
.hero-visual { position: relative; }
.hero-visual .shot {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  position: relative;
  background: var(--ink-900);
}
.hero-visual .shot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  pointer-events: none;
}
.hero-visual .shot img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.float-card {
  position: absolute;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: .9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.float-card--tl { top: -1.1rem; left: -1rem; }
.float-card--br { bottom: -1.4rem; right: -1rem; }
.float-card .fc-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  flex: none;
  background: var(--clay-100);
  color: var(--clay-700);
}
.float-card .fc-icon svg { width: 19px; height: 19px; }
.float-card .fc-icon--jade { background: var(--jade-50); color: var(--jade); }
.float-card b { display: block; font-size: var(--fs-sm); color: var(--ink-900); line-height: 1.3; }
.float-card span { font-size: var(--fs-xs); color: var(--ink-400); }
@media (max-width: 575px) {
  .float-card--tl { top: -.8rem; left: -.4rem; padding: .7rem .85rem; }
  .float-card--br { bottom: -1rem; right: -.4rem; padding: .7rem .85rem; }
  .float-card .fc-icon { width: 32px; height: 32px; }
}

/* --------------------------------------------------------------------------
   7. CLIENT LOGO STRIP
   -------------------------------------------------------------------------- */
.logos { padding-block: clamp(2.25rem, 1.5rem + 2vw, 3.25rem); border-bottom: 1px solid var(--line); }
.logos-label {
  text-align: center;
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
  margin-bottom: 1.6rem;
}
.logos-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.75rem, 1rem + 3vw, 3.75rem);
}
.logos-track img {
  height: clamp(34px, 28px + 1.4vw, 46px);
  width: auto;
  opacity: .58;
  filter: grayscale(1);
  transition: opacity .3s var(--ease), filter .3s var(--ease);
}
.logos-track a:hover img,
.logos-track img:hover { opacity: 1; filter: grayscale(0); }

/* --------------------------------------------------------------------------
   8. CARD GRIDS
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1.1rem, .6rem + 1.4vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr)); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 1.1rem + 1vw, 2rem);
  box-shadow: var(--sh-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--clay-200); }
.card h3 { margin-bottom: .6rem; font-size: var(--fs-h4); }
.card p { font-size: var(--fs-sm); color: var(--ink-500); }
.card .tlink { margin-top: auto; padding-top: 1.1rem; }

/* Icon tile */
.icon-tile {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  background: var(--clay-100);
  color: var(--clay-700);
  margin-bottom: 1.15rem;
  transition: background-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.icon-tile svg { width: 26px; height: 26px; }
.card:hover .icon-tile { background: var(--grad-brand); color: #fff; transform: scale(1.06) rotate(-3deg); }

/* Numbered step card */
.step { counter-increment: step; }
.step-num {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--clay-500);
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.step-num::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* --------------------------------------------------------------------------
   9. MEDIA CARDS (apps, industries)
   -------------------------------------------------------------------------- */
.mcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  height: 100%;
}
.mcard:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--clay-200); }
.mcard-media { position: relative; overflow: hidden; background: var(--surface-3); }
.mcard-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.mcard:hover .mcard-media img { transform: scale(1.05); }
.mcard-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.mcard-body h3 { font-size: 1.06rem; margin-bottom: .45rem; }
.mcard-body p { font-size: var(--fs-sm); color: var(--ink-500); }
.mcard-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: auto;
  padding-top: 1.1rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: var(--r-pill);
  background: var(--clay-100);
  color: var(--clay-700);
}
.tag--jade { background: var(--jade-50); color: var(--jade); }
.tag--ghost { background: transparent; border: 1px solid var(--line-strong); color: var(--ink-500); }

/* Industry tile — photo with gradient scrim */
.itile {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.itile:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.itile img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.itile:hover img { transform: scale(1.07); }
.itile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,19,16,.88) 0%, rgba(26,19,16,.45) 42%, rgba(26,19,16,.05) 100%);
  transition: opacity .35s var(--ease);
}
.itile-label {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1.15rem 1.25rem;
  color: #fff;
}
.itile-label h3 { color: #fff; font-size: 1.02rem; letter-spacing: -0.01em; margin: 0; }
.itile-label p { font-size: var(--fs-xs); color: rgba(255,255,255,.76); margin-top: .25rem; }

/* --------------------------------------------------------------------------
   10. SPLIT / FEATURE ROWS
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(2.25rem, 1rem + 4.5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--reverse .split-media { order: 2; }
}
.split-media { position: relative; }
.split-media img {
  width: 100%;
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-lg);
  object-fit: cover;
}
.split-media--framed::before {
  content: "";
  position: absolute;
  inset: auto -1.25rem -1.25rem auto;
  width: 62%;
  height: 62%;
  border-radius: var(--r-2xl);
  background: var(--grad-brand);
  opacity: .12;
  z-index: -1;
}
.split-body h2 { margin-bottom: 1.1rem; }
.split-body > p { color: var(--ink-500); font-size: var(--fs-sm); }

/* Checklist */
.checks { display: grid; gap: .85rem; margin: 1.6rem 0; }
.checks li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--ink-600);
}
.checks svg {
  width: 20px; height: 20px;
  flex: none;
  margin-top: .18rem;
  color: var(--jade);
}
.checks b { display: block; color: var(--ink-900); font-weight: 600; }

/* --------------------------------------------------------------------------
   11. STATS BAND
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-900);
  color: #fff;
}
.band > .band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.band > .band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep the photograph as atmosphere, never as competition for the type. */
  filter: grayscale(28%) brightness(.62) blur(2px);
  transform: scale(1.03);   /* hides the blur's soft edge */
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(20,14,12,.93) 0%, rgba(36,26,22,.90) 46%, rgba(52,38,33,.88) 100%);
}
.band h2, .band h3 { color: #fff; }
.band p { color: rgba(255,255,255,.84); }

.stats { display: grid; gap: clamp(1rem, .5rem + 1.5vw, 1.75rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr)); }
.stat {
  text-align: center;
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.25rem) 1rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.13);
  transition: background-color .35s var(--ease), transform .35s var(--ease);
}
.stat:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.stat-icon { color: var(--clay-300); margin: 0 auto .85rem; width: 30px; height: 30px; }
.stat-num {
  font-size: var(--fs-stat);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  margin-top: .55rem;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.68);
  letter-spacing: .03em;
}

/* --------------------------------------------------------------------------
   12. LEADERSHIP / CTO
   -------------------------------------------------------------------------- */
.cto-grid {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .cto-grid { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); }
}
@media (min-width: 1100px) {
  .cto-grid { grid-template-columns: minmax(0, 360px) minmax(0, 1fr); }
}

.cto-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-2xl);
  padding: clamp(1.5rem, 1rem + 1.5vw, 2rem);
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
@media (max-width: 899px) { .cto-card { position: static; } }

.cto-portrait {
  width: clamp(132px, 30vw, 172px);
  aspect-ratio: 1;
  margin: 0 auto 1.35rem;
  border-radius: 50%;
  position: relative;
  padding: 5px;
  background: var(--grad-brand);
  box-shadow: 0 18px 44px rgba(0,0,0,.34);
}
.cto-portrait > * {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: grid;
  place-items: center;
  background: var(--ink-800);
}
.cto-monogram {
  font-size: clamp(2.6rem, 8vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  background: linear-gradient(150deg, #3A2A24, #241C18) !important;
  line-height: 1;
}
.cto-card h3 { font-size: 1.35rem; color: #fff; margin-bottom: .3rem; }
.cto-role {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clay-300);
}
.cto-since {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid;
  gap: .75rem;
}
.cto-since div { display: flex; justify-content: space-between; gap: 1rem; font-size: var(--fs-xs); }
.cto-since dt { color: rgba(255,255,255,.6); }
.cto-since dd { margin: 0; color: #fff; font-weight: 600; text-align: right; }

.cto-social { display: flex; justify-content: center; gap: .5rem; margin-top: 1.35rem; }
.cto-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.cto-social a:hover { background: var(--clay-600); color: #fff; transform: translateY(-2px); }
.cto-social svg { width: 17px; height: 17px; }

/* The speech */
.speech { max-width: 62ch; }
.speech-quote {
  position: relative;
  font-size: clamp(1.15rem, 1rem + .9vw, 1.55rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  padding-left: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  margin-bottom: 1.75rem;
}
.speech-quote::before {
  content: "\201C";
  position: absolute;
  left: -.1rem;
  top: -.35em;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--clay-400);
  opacity: .55;
  font-family: Georgia, "Times New Roman", serif;
}
.speech-body { display: grid; gap: 1.1rem; }
.speech-body p { font-size: var(--fs-sm); color: rgba(255,255,255,.87); line-height: 1.85; }
.speech-body p strong { color: #fff; font-weight: 600; }
.speech-sign {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.14);
}
.speech-sign b { display: block; color: #fff; font-size: 1.02rem; }
.speech-sign span { font-size: var(--fs-xs); color: rgba(255,255,255,.6); }

/* Focus-area pills inside CTO block */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }
.pills li {
  font-size: var(--fs-xs);
  font-weight: 500;
  padding: .42rem .85rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
}

/* --------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */
.tgrid { display: grid; gap: clamp(1.1rem, .6rem + 1.4vw, 1.6rem); }
@media (min-width: 700px) { .tgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1050px) { .tgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.quote {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 1.1rem + 1vw, 2rem);
  box-shadow: var(--sh-xs);
  height: 100%;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.stars { display: flex; gap: .15rem; color: var(--amber); margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; }
.quote blockquote {
  font-size: var(--fs-sm);
  color: var(--ink-600);
  line-height: 1.8;
  margin: 0 0 1.4rem;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}
/* Client marks are landscape lock-ups — give them a landscape box so they
   are not shrunk to nothing inside a square. */
.quote figcaption img {
  width: 74px;
  height: 44px;
  border-radius: var(--r-sm);
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  padding: 5px;
  flex: none;
}
.quote figcaption b { display: block; font-size: var(--fs-sm); color: var(--ink-900); }
.quote figcaption span { font-size: var(--fs-xs); color: var(--ink-400); }

/* --------------------------------------------------------------------------
   14. PRICING
   -------------------------------------------------------------------------- */
.plans { display: grid; gap: clamp(1.1rem, .6rem + 1.4vw, 1.75rem); align-items: stretch; }
@media (min-width: 820px) { .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: clamp(1.6rem, 1.2rem + 1.2vw, 2.25rem);
  box-shadow: var(--sh-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.plan--featured {
  border-color: var(--clay-400);
  box-shadow: var(--sh-lg);
  background: linear-gradient(180deg, var(--clay-50), #fff 32%);
}
@media (min-width: 820px) { .plan--featured { transform: scale(1.025); } .plan--featured:hover { transform: scale(1.025) translateY(-4px); } }
.plan-badge {
  position: absolute;
  top: -.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .38rem .95rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-brand);
  white-space: nowrap;
}
.plan-name { font-size: var(--fs-h4); margin-bottom: .35rem; }
.plan-desc { font-size: var(--fs-xs); color: var(--ink-400); min-height: 2.6em; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin: 1.15rem 0 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}
.plan-price .amount {
  font-size: clamp(2.1rem, 1.6rem + 1.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan-price .per { font-size: var(--fs-sm); color: var(--ink-400); }
.plan-features { display: grid; gap: .7rem; margin-bottom: 1.75rem; }
.plan-features li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--ink-600);
}
.plan-features svg { width: 18px; height: 18px; flex: none; margin-top: .22rem; color: var(--jade); }
.plan .btn { margin-top: auto; }
.plan-note {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--ink-400);
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   15. FAQ (native details — zero JS, fully accessible)
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .8rem; max-width: 860px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq details[open] { border-color: var(--clay-300); box-shadow: var(--sh-sm); }
.faq summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  transition: background-color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--clay-50); }
.faq summary .chev {
  margin-left: auto;
  flex: none;
  width: 20px; height: 20px;
  color: var(--clay-600);
  transition: transform .3s var(--ease);
}
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .faq-a { padding: 0 1.35rem 1.35rem; }
.faq .faq-a p { font-size: var(--fs-sm); color: var(--ink-500); line-height: 1.8; }

/* --------------------------------------------------------------------------
   16. FORMS
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(1.5rem, 1rem + 2.5vw, 2.75rem); align-items: start; }
@media (min-width: 950px) { .contact-grid { grid-template-columns: minmax(0, 340px) minmax(0, 1fr); } }

.info-panel {
  background: var(--grad-ink);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: clamp(1.75rem, 1.2rem + 1.6vw, 2.35rem);
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}
.info-panel::after {
  content: "";
  position: absolute;
  width: 18rem; height: 18rem;
  right: -8rem; top: -8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160,115,106,.4), transparent 68%);
}
.info-panel h3 { color: #fff; margin-bottom: .6rem; }
.info-panel > p { font-size: var(--fs-sm); color: rgba(255,255,255,.72); }
.info-list { display: grid; gap: 1.25rem; margin-top: 1.85rem; position: relative; }
.info-list > div { display: flex; gap: .9rem; align-items: flex-start; }
.info-list .ii {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--clay-200);
  flex: none;
}
.info-list .ii svg { width: 18px; height: 18px; }
.info-list dt {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  margin-bottom: .2rem;
}
.info-list dd { margin: 0; font-size: var(--fs-sm); color: #fff; line-height: 1.55; }
.info-list dd a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 3px; }
.info-list dd a:hover { color: var(--clay-200); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem);
  box-shadow: var(--sh-md);
}
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.field--full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: .45rem;
  letter-spacing: .01em;
}
.field .req { color: var(--rose); }
.field .hint { font-weight: 400; color: var(--ink-400); }

.input, .select, .textarea {
  width: 100%;
  padding: .8rem 1rem;
  font-size: var(--fs-sm);
  color: var(--ink-800);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.textarea { min-height: 8.5rem; resize: vertical; line-height: 1.7; }
.input::placeholder, .textarea::placeholder { color: var(--ink-300); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--clay-300); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--clay-600);
  box-shadow: 0 0 0 4px rgba(138, 92, 83, .14);
}
.input:disabled, .select:disabled, .textarea:disabled { opacity: .6; cursor: not-allowed; }
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B615C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 17px;
  padding-right: 2.6rem;
  cursor: pointer;
}
.input:user-invalid, .select:user-invalid, .textarea:user-invalid { border-color: var(--rose); }

/* Captcha row */
.captcha-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: .55rem .75rem;
}
.captcha-row .sum {
  font-weight: 700;
  color: var(--ink-800);
  font-size: 1.05rem;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.captcha-row input {
  flex: 1;
  min-width: 0;
  padding: .5rem .7rem;
  font-size: var(--fs-sm);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: #fff;
}
.captcha-row input:focus { outline: none; border-color: var(--clay-600); box-shadow: 0 0 0 3px rgba(138,92,83,.14); }

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.form-foot .privacy { font-size: var(--fs-xs); color: var(--ink-400); max-width: 30rem; }

.btn.is-loading { pointer-events: none; opacity: .78; }
.btn.is-loading .spin { display: block; }
.btn .spin {
  display: none;
  width: 1.05em; height: 1.05em;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Alerts */
.alert {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  font-size: var(--fs-sm);
  margin-bottom: 1.5rem;
}
.alert svg { width: 20px; height: 20px; flex: none; margin-top: .15rem; }
.alert h4 { font-size: var(--fs-sm); margin-bottom: .3rem; }
.alert--ok { background: var(--jade-50); border-color: #BFE0D7; color: #1F5A4C; }
.alert--ok h4, .alert--ok strong { color: #17493D; }
.alert--ok svg { color: var(--jade); }
.alert--err { background: #FDEEEC; border-color: #F3CFCA; color: #8C332A; }
.alert--err h4 { color: #7A2C24; }
.alert--err svg { color: var(--rose); }
.alert--info { background: var(--clay-50); border-color: var(--clay-200); color: var(--clay-800); }
.alert--info svg { color: var(--clay-600); }

.ticket-recap {
  margin-top: .9rem;
  display: grid;
  gap: .4rem;
  font-size: var(--fs-xs);
}
.ticket-recap div { display: flex; gap: .5rem; }
.ticket-recap dt { color: var(--ink-500); min-width: 6.5rem; }
.ticket-recap dd { margin: 0; font-weight: 600; color: var(--ink-800); word-break: break-word; }
.ticket-id {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: #fff;
  border: 1px dashed var(--jade);
  color: #17493D;
  padding: .2rem .5rem;
  border-radius: var(--r-sm);
  font-weight: 700;
  letter-spacing: .04em;
}

/* --------------------------------------------------------------------------
   17. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.cta-band p { max-width: 46rem; margin-inline: auto; font-size: var(--fs-lead); }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,.68); padding-top: clamp(3rem, 2rem + 3vw, 4.5rem); }
.footer-grid {
  display: grid;
  gap: clamp(2rem, 1rem + 3vw, 3rem);
  grid-template-columns: 1fr;
  padding-bottom: clamp(2.25rem, 1.5rem + 2vw, 3rem);
}
@media (min-width: 620px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  /* brand block gets the extra room; the three link columns stay equal */
  .footer-grid { grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr)); }
}
.footer-brand { max-width: 24rem; }
@media (min-width: 620px) and (max-width: 899px) { .footer-brand { grid-column: span 2; } }
.footer-brand img { height: 30px; width: auto; margin-bottom: 1.15rem; }
.footer-brand p { font-size: var(--fs-sm); color: rgba(255,255,255,.62); }
.footer-address {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: var(--fs-xs);
  line-height: 1.7;
  color: rgba(255,255,255,.62);
}
.footer-address svg { width: 16px; height: 16px; flex: none; margin-top: .22rem; color: var(--clay-300); }
.footer-col h4 {
  color: #fff;
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { font-size: var(--fs-sm); color: rgba(255,255,255,.66); transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }
.social { display: flex; gap: .55rem; margin-top: 1.5rem; }
.social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.social a:hover { background: var(--clay-600); transform: translateY(-2px); }
.social svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  font-size: var(--fs-xs);
}
.footer-bottom p { color: rgba(255,255,255,.52); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: #fff; }

/* Back to top */
.to-top {
  position: fixed;
  right: clamp(1rem, 2vw, 1.75rem);
  bottom: clamp(1rem, 2vw, 1.75rem);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink-900);
  color: #fff;
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background-color .25s var(--ease);
  z-index: 90;
}
.to-top svg { width: 20px; height: 20px; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--clay-700); color: #fff; }
@media (max-width: 575px) { .to-top { right: 1rem; bottom: 5rem; } }

/* --------------------------------------------------------------------------
   19. UTILITIES
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.75rem; }
.lead { font-size: var(--fs-lead); color: var(--ink-500); }
.muted { color: var(--ink-400); }
.nowrap { white-space: nowrap; }

/* --------------------------------------------------------------------------
   20. SCROLL REVEAL
   -------------------------------------------------------------------------- */
/* Content is only ever hidden while `reveal-ready` is present on <html>.
   The inline head script adds it and removes it again if odooly.js fails to
   boot, so a JS error can never leave sections permanently invisible. */
html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
html.reveal-ready [data-reveal].is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   21. ACCESSIBILITY / PREFERENCES / PRINT
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  html.reveal-ready [data-reveal] { opacity: 1 !important; transform: none !important; }
  .mcard:hover .mcard-media img, .itile:hover img { transform: none; }
}

@media (prefers-contrast: more) {
  :root { --ink-500: #3D3532; --ink-400: #554B46; --line: #C9BDB7; }
  .card, .mcard, .quote, .plan { border-width: 2px; }
}

@media (forced-colors: active) {
  .btn, .card, .mcard, .plan, .quote, .faq details { border: 1px solid CanvasText; }
  .icon-tile, .stat { border: 1px solid CanvasText; }
}

@media print {
  .site-header, .to-top, .nav-backdrop, .hero::before, .hero::after,
  .form-card, .site-footer .social { display: none !important; }
  body { color: #000; }
  .band, .info-panel, .site-footer { background: #fff !important; color: #000 !important; }
  .band h2, .band h3, .band p, .info-panel *, .site-footer * { color: #000 !important; }
  .section { padding-block: 1.5rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
