/* ==========================================================================
   BUSINESS SUPPORT — Design System
   Quiet-luxury B2B · light Pantone palette · desktop-first
   Type: Fraunces (display serif) + Inter (grotesque)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Palette — light Pantone family */
  --paper:      #FAF7F1;   /* ivory / snow white  */
  --paper-2:    #F2EEE4;   /* angora              */
  --paper-3:    #E9E4D6;   /* warm sand           */
  --ink:        #1E2B26;   /* deep green-charcoal */
  --ink-soft:   #4C5B53;   /* muted slate-green   */
  --ink-40:     rgba(30, 43, 38, .4);
  --sage:       #C9D6C0;   /* fog green           */
  --sage-2:     #AFC2A8;   /* smoke green         */
  --sage-deep:  #5E7A6B;   /* eucalyptus          */
  --sage-tint:  #EDF1E6;   /* sage wash           */
  --clay:       #C4794E;   /* terracotta CTA      */
  --clay-deep:  #A5623C;
  --clay-tint:  #F6E9DF;
  --line:       rgba(30, 43, 38, .12);
  --line-soft:  rgba(30, 43, 38, .07);
  --white:      #FFFFFF;

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --fs-hero:    clamp(2.75rem, 5.4vw + 1rem, 5.75rem);
  --fs-display: clamp(2.25rem, 3.6vw + .75rem, 4rem);
  --fs-title:   clamp(1.65rem, 2vw + .6rem, 2.5rem);
  --fs-sub:     clamp(1.25rem, 1vw + .75rem, 1.6rem);
  --fs-lead:    clamp(1.075rem, .45vw + .9rem, 1.3rem);
  --fs-body:    clamp(1rem, .2vw + .93rem, 1.075rem);
  --fs-small:   .875rem;
  --fs-tiny:    .75rem;

  /* Rhythm */
  --space-section: clamp(5rem, 9vw, 9.5rem);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 20px;
  --radius-lg: 28px;

  /* Motion */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --dur: .7s;

  --header-h: 84px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--sage-2); color: var(--ink); }

[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Grain overlay (expensive-feel texture) ---------- */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 2%); }
  40% { transform: translate(2%, -1%); }
  60% { transform: translate(-1%, -2%); }
  80% { transform: translate(1%, 2%); }
}

/* ---------- Cursor glow (desktop only) ---------- */
.cursor-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(175, 194, 168, .16) 0%, transparent 65%);
  transition: opacity .5s;
  opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--sage-deep), var(--clay));
  z-index: 1200;
  transition: width .12s linear;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(1240px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}
.container--wide { width: min(1400px, 100% - 2 * var(--gutter)); }
.container--narrow { width: min(860px, 100% - 2 * var(--gutter)); }

.section { padding-block: var(--space-section); position: relative; }
.section--tint { background: var(--paper-2); }
.section--sage { background: var(--sage-tint); }
.section--dark {
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(94, 122, 107, .35), transparent 60%),
    var(--ink);
  color: var(--paper);
}
.section--dark .eyebrow { color: var(--sage-2); }
.section--dark .eyebrow::before { background: var(--sage-2); }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1.5px;
  background: var(--sage-deep);
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.015em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-display); }
h3 { font-size: var(--fs-sub); line-height: 1.25; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
}
.section--dark .lead { color: rgba(250, 247, 241, .78); }

.serif-i { font-style: italic; font-weight: 400; }
.accent { color: var(--sage-deep); }
.section--dark .accent { color: var(--sage-2); }

/* Masked line reveal (headline animation) */
.mask-lines .line {
  display: block;
  overflow: hidden;
  padding-block: .06em;
  margin-block: -.06em;
}
.mask-lines .line > span {
  display: block;
  transform: translateY(115%) rotate(1.5deg);
  transform-origin: left top;
  transition: transform 1s var(--ease-out);
}
.mask-lines.is-visible .line > span { transform: translateY(0) rotate(0); }
.mask-lines .line:nth-child(2) > span { transition-delay: .1s; }
.mask-lines .line:nth-child(3) > span { transition-delay: .2s; }
.mask-lines .line:nth-child(4) > span { transition-delay: .3s; }

/* Generic reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease-out);
}
.reveal-img.is-visible { clip-path: inset(0 0 0 0); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: 1.02rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .35s var(--ease-spring), background .3s, color .3s, border-color .3s, box-shadow .3s;
  will-change: transform;
}
.btn .btn__arrow {
  display: inline-flex;
  transition: transform .35s var(--ease-spring);
}
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 10px 24px -12px rgba(196, 121, 78, .65);
}
.btn--primary:hover {
  background: var(--clay-deep);
  box-shadow: 0 16px 30px -12px rgba(165, 98, 60, .7);
}

.btn--ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.btn--light {
  background: var(--paper);
  color: var(--ink);
}
.btn--light:hover { background: var(--sage); }

.btn--sm { padding: .7rem 1.3rem; font-size: .875rem; }

/* Text link with animated underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--sage-deep);
  position: relative;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.link-arrow:hover::after { transform: scaleX(1); transform-origin: left; }
.link-arrow svg { transition: transform .35s var(--ease-spring); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: transform .5s var(--ease-out), background .35s, box-shadow .35s, height .35s;
  background: transparent;
}
.header.is-scrolled {
  height: 68px;
  background: rgba(250, 247, 241, .88);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line-soft), 0 12px 32px -22px rgba(30, 43, 38, .35);
}
.header.is-hidden { transform: translateY(-110%); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.01em;
  z-index: 1201;
}
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--ink);
  display: grid;
  place-items: center;
  flex: none;
  transition: transform .4s var(--ease-spring), border-radius .4s;
}
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.05); border-radius: 50%; }
.brand__mark svg { width: 22px; height: 22px; }

.nav { display: flex; align-items: center; gap: .4rem; }
.nav__link {
  position: relative;
  padding: .55rem .95rem;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color .25s, background .25s;
}
.nav__link:hover { color: var(--ink); background: rgba(30, 43, 38, .05); }
.nav__link.is-active { color: var(--ink); font-weight: 600; }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 1px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--clay);
  transform: translateX(-50%);
}

.header__cta { display: inline-flex; }

/* Burger */
.burger {
  display: none;
  z-index: 1201;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper);
  position: relative;
}
.burger span {
  position: absolute;
  left: 13px; right: 13px;
  height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .4s var(--ease-spring), opacity .25s, top .3s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; }
.burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1090; /* below .header so brand + burger stay clickable */
  background: var(--paper);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
  flex-direction: column;
  gap: .25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease-out);
  overflow-y: auto;
}
.nav-drawer.is-open { opacity: 1; pointer-events: auto; }
.nav-drawer__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.9rem);
  padding: .55rem 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(24px);
  opacity: 0;
  transition: transform .55s var(--ease-out), opacity .55s var(--ease-out);
}
.nav-drawer.is-open .nav-drawer__link {
  transform: none;
  opacity: 1;
}
.nav-drawer.is-open .nav-drawer__link:nth-child(1) { transition-delay: .06s; }
.nav-drawer.is-open .nav-drawer__link:nth-child(2) { transition-delay: .12s; }
.nav-drawer.is-open .nav-drawer__link:nth-child(3) { transition-delay: .18s; }
.nav-drawer.is-open .nav-drawer__link:nth-child(4) { transition-delay: .24s; }
.nav-drawer.is-open .nav-drawer__link:nth-child(5) { transition-delay: .3s; }
.nav-drawer__link svg { width: 22px; height: 22px; opacity: .35; }
.nav-drawer__cta { margin-top: 2rem; align-self: flex-start; }
.nav-drawer__meta {
  margin-top: auto;
  padding-top: 3rem;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  line-height: 2;
}

body.nav-open { overflow: hidden; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 4rem) 0 6.5rem;
  overflow: clip;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(250, 247, 241, .97) 0%, rgba(250, 247, 241, .92) 34%, rgba(250, 247, 241, .55) 62%, rgba(237, 241, 230, .25) 100%),
    linear-gradient(to top, var(--paper) 0%, transparent 30%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: 3rem;
  align-items: end;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1.1rem .5rem .6rem;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 2.2rem;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero__kicker .dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sage);
  display: grid;
  place-items: center;
}
.hero__kicker .dot::after {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage-deep);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .5; }
}

.hero h1 { margin-bottom: 2rem; max-width: 15ch; }
.hero__lead { margin-bottom: 1.35rem; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
}

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: .5rem;
}
.hero-chip {
  background: rgba(255, 255, 255, .78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.15rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 18px 44px -30px rgba(30, 43, 38, .4);
  transition: transform .45s var(--ease-spring), box-shadow .45s;
}
.hero-chip:hover { transform: translateY(-4px); box-shadow: 0 26px 52px -30px rgba(30, 43, 38, .5); }
.hero-chip__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--sage-tint);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
}
.hero-chip__icon svg { width: 22px; height: 22px; }
.hero-chip strong { display: block; font-size: .95rem; font-weight: 600; }
.hero-chip small { font-size: .82rem; color: var(--ink-soft); }

.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-tiny);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__scroll::after {
  content: "";
  width: 1.5px;
  height: 42px;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
  animation: scrollHint 2s var(--ease-out) infinite;
}
@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 1.1rem;
  overflow: hidden;
  background: var(--paper);
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee__item::after {
  content: "✦";
  font-style: normal;
  color: var(--sage-2);
  font-size: .8rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   SPLIT SECTIONS (Welcome / About)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }

.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  box-shadow: 0 40px 80px -48px rgba(30, 43, 38, .45);
}
.split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.split__media:hover img { transform: scale(1.05); }
.split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 43, 38, .18), transparent 45%);
  mix-blend-mode: multiply;
}

.split__badge {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 2;
  background: rgba(250, 247, 241, .92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: .9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  box-shadow: 0 14px 34px -20px rgba(30, 43, 38, .5);
}
.split__badge .n {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--sage-deep);
}
.split__badge small {
  font-size: .8rem;
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: 15ch;
}

.split__body h2 { margin-bottom: 1.6rem; }
.split__body p { color: var(--ink-soft); margin-bottom: 1.15rem; max-width: 56ch; }
.split__body p:last-of-type { margin-bottom: 0; }
.split__actions { margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* Ornamental big index number */
.split__body .big-index {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

/* ==========================================================================
   WHAT WE DO — dark band
   ========================================================================== */
.wwd__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.wwd__body h2 { margin-bottom: 1.6rem; }
.wwd__body p { color: rgba(250, 247, 241, .78); margin-bottom: 1.15rem; max-width: 58ch; }
.wwd__list {
  display: grid;
  gap: .65rem;
  margin-top: 2rem;
}
.wwd__list li {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .95rem 1.2rem;
  background: rgba(250, 247, 241, .06);
  border: 1px solid rgba(250, 247, 241, .1);
  border-radius: 14px;
  font-size: .95rem;
  transition: background .3s, transform .3s var(--ease-out);
}
.wwd__list li:hover { background: rgba(250, 247, 241, .12); transform: translateX(6px); }
.wwd__list li svg { flex: none; width: 18px; height: 18px; color: var(--sage-2); }

.wwd__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .6);
}
.wwd__media img { width: 100%; height: 100%; object-fit: cover; }
.wwd__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(94, 122, 107, .18), rgba(30, 43, 38, .3));
  mix-blend-mode: multiply;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.services-head h2 { max-width: 22ch; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--sage-tint), transparent 55%);
  opacity: 0;
  transition: opacity .5s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 60px -34px rgba(30, 43, 38, .35);
  border-color: var(--sage);
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; }

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--sage-tint);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
  transition: transform .45s var(--ease-spring), background .3s, color .3s;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card:hover .service-card__icon {
  transform: rotate(-6deg) scale(1.08);
  background: var(--ink);
  color: var(--sage);
}
.service-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-40);
}
.service-card h3 { font-size: 1.3rem; }
.service-card p { font-size: .95rem; color: var(--ink-soft); flex: 1; }
.service-card .link-arrow { margin-top: .35rem; font-size: .9rem; }

/* Services page — detail rows */
.service-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(2.6rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  align-items: start;
}
.service-row:last-of-type { border-bottom: 1px solid var(--line); }
.service-row__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--sage-2);
  line-height: 1;
  padding-top: .35rem;
}
.service-row__head h3 { font-size: var(--fs-sub); max-width: 14ch; }
.service-row__head .tag {
  display: inline-flex;
  margin-top: 1.1rem;
  padding: .4rem .95rem;
  border-radius: 999px;
  background: var(--sage-tint);
  color: var(--sage-deep);
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-row__body p { color: var(--ink-soft); margin-bottom: 1rem; }
.service-row__body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   WHO WE WORK WITH
   ========================================================================== */
.who__intro { max-width: 68ch; margin-bottom: 3rem; }
.who__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.who__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  position: relative;
  box-shadow: 0 40px 80px -48px rgba(30, 43, 38, .45);
}
.who__media img { width: 100%; height: 100%; object-fit: cover; }

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem 1.4rem;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  font-size: .94rem;
  font-weight: 500;
  transition: transform .35s var(--ease-out), border-color .3s, box-shadow .35s;
}
.checklist li:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
  box-shadow: 0 18px 30px -22px rgba(30, 43, 38, .35);
}
.checklist li .tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
}
.checklist li .tick svg { width: 13px; height: 13px; }

/* ==========================================================================
   HOW WE WORK — steps
   ========================================================================== */
.steps {
  display: grid;
  gap: 1.1rem;
  counter-reset: step;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.step {
  display: grid;
  grid-template-columns: 110px minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.4rem, 3.5vw, 3.5rem);
  align-items: start;
  padding: clamp(1.8rem, 3.5vw, 2.75rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .45s;
}
.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 56px -36px rgba(30, 43, 38, .38);
  border-color: var(--sage);
}
.step::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--sage-2), var(--sage-deep));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .55s var(--ease-out);
}
.step:hover::after { transform: scaleY(1); }
.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--sage-2);
}
.step h3 { font-size: 1.35rem; max-width: 14ch; }
.step__body p { color: var(--ink-soft); font-size: .97rem; margin-bottom: .9rem; }
.step__body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   WHY CHOOSE US / VALUES
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.feature {
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line-soft);
  transition: transform .45s var(--ease-out), box-shadow .45s, background .45s;
  position: relative;
  overflow: hidden;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 54px -36px rgba(30, 43, 38, .4);
}
.feature__icon {
  width: 50px; height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--sage-tint);
  color: var(--sage-deep);
  margin-bottom: 1.3rem;
  transition: transform .45s var(--ease-spring);
}
.feature__icon svg { width: 23px; height: 23px; }
.feature:hover .feature__icon { transform: scale(1.1) rotate(-6deg); }
.feature h3 { font-size: 1.22rem; margin-bottom: .6rem; }
.feature p { font-size: .95rem; color: var(--ink-soft); }

/* Values — editorial index list */
.values { counter-reset: value; }
.value-row {
  display: grid;
  grid-template-columns: 80px minmax(0, .55fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.2rem) .5rem;
  border-top: 1px solid rgba(250, 247, 241, .14);
  transition: background .35s, padding-left .35s var(--ease-out);
}
.value-row:last-child { border-bottom: 1px solid rgba(250, 247, 241, .14); }
.value-row:hover { background: rgba(250, 247, 241, .05); padding-left: 1.4rem; }
.value-row__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage-2);
  font-size: 1.1rem;
}
.value-row h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 500;
}
.value-row p { color: rgba(250, 247, 241, .72); max-width: 52ch; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.1rem 2.2rem;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .4s;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 70px -40px rgba(30, 43, 38, .4);
  border-color: var(--sage);
}
.price-card--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 0 44px 80px -42px rgba(30, 43, 38, .6);
}
.price-card--featured:hover { border-color: var(--sage-deep); }
.price-card--featured .price-card__desc,
.price-card--featured .price-card__list li { color: rgba(250, 247, 241, .75); }
.price-card--featured .price-card__amount small { color: rgba(250, 247, 241, .6); }

.price-card__flag {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  background: var(--clay);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .42rem .85rem;
  border-radius: 999px;
}
.price-card__label {
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.1rem;
}
.price-card--featured .price-card__label { color: var(--sage-2); }
.price-card h3 { font-size: 1.42rem; margin-bottom: 1.2rem; }
.price-card__amount {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3vw, 2.9rem);
  font-weight: 550;
  line-height: 1;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: baseline;
  gap: .5rem;
  flex-wrap: wrap;
}
.price-card__amount .from {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price-card--featured .price-card__amount .from { color: rgba(250, 247, 241, .6); }
.price-card__amount small {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.price-card__desc {
  font-size: .95rem;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}
.price-card__includes {
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: .9rem;
}
.price-card--featured .price-card__includes { color: rgba(250, 247, 241, .5); }
.price-card__list {
  display: grid;
  gap: .55rem;
  margin-bottom: 2rem;
  flex: 1;
}
.price-card__list li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .93rem;
  color: var(--ink-soft);
}
.price-card__list li svg {
  flex: none;
  width: 17px; height: 17px;
  color: var(--sage-deep);
  margin-top: .22rem;
}
.price-card--featured .price-card__list li svg { color: var(--sage-2); }
.price-card .btn { justify-content: center; width: 100%; }

.pricing-note {
  margin-top: 2.6rem;
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius);
  background: var(--clay-tint);
  border: 1px solid rgba(196, 121, 78, .25);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--ink-soft);
}
.pricing-note svg { flex: none; width: 20px; height: 20px; color: var(--clay); margin-top: .15rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: grid; gap: .9rem; margin-top: clamp(2rem, 4vw, 3rem); }
.faq {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .4s;
}
.faq.is-open {
  border-color: var(--sage);
  box-shadow: 0 24px 44px -32px rgba(30, 43, 38, .35);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.45rem 1.7rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
}
.faq__toggle {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  transition: background .35s, border-color .35s, transform .5s var(--ease-spring);
}
.faq__toggle::before, .faq__toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .4s var(--ease-out), background .3s;
}
.faq__toggle::before { width: 14px; height: 1.8px; }
.faq__toggle::after { width: 1.8px; height: 14px; }
.faq.is-open .faq__toggle {
  background: var(--ink);
  border-color: var(--ink);
  transform: rotate(135deg);
}
.faq.is-open .faq__toggle::before, .faq.is-open .faq__toggle::after { background: var(--paper); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease-out);
}
.faq.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner {
  overflow: hidden;
  padding: 0 1.7rem;
  color: var(--ink-soft);
  transition: padding .4s var(--ease-out);
}
.faq.is-open .faq__a-inner { padding: 0 1.7rem 1.6rem; }
.faq__a-inner p { max-width: 65ch; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(2rem, 6vw, 6rem);
  text-align: center;
  background:
    radial-gradient(900px 420px at 12% 115%, rgba(196, 121, 78, .35), transparent 60%),
    radial-gradient(900px 480px at 88% -20%, rgba(94, 122, 107, .5), transparent 60%),
    var(--ink);
  color: var(--paper);
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cpath d='M0 70h140M70 0v140' stroke='%23FAF7F1' stroke-opacity='.05'/%3E%3C/svg%3E");
  z-index: -1;
}
.cta-banner .eyebrow { color: var(--sage-2); justify-content: center; }
.cta-banner .eyebrow::before { background: var(--sage-2); }
.cta-banner h2 { max-width: 24ch; margin-inline: auto; margin-bottom: 1.5rem; }
.cta-banner p {
  color: rgba(250, 247, 241, .78);
  max-width: 52ch;
  margin-inline: auto;
  font-size: var(--fs-lead);
}
.cta-banner__actions {
  margin-top: 2.6rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.contact-info { display: grid; gap: 1rem; margin-top: 2.4rem; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .3s;
}
.contact-line:hover {
  transform: translateX(6px);
  border-color: var(--sage);
  box-shadow: 0 20px 36px -26px rgba(30, 43, 38, .35);
}
.contact-line__icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--sage-tint);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
}
.contact-line__icon svg { width: 21px; height: 21px; }
.contact-line small {
  display: block;
  font-size: var(--fs-tiny);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-40);
  margin-bottom: .15rem;
}
.contact-line strong { font-size: 1.02rem; font-weight: 600; }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 44px 80px -52px rgba(30, 43, 38, .45);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sage-2), var(--sage-deep), var(--clay));
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.form-grid .field--full { grid-column: 1 / -1; }

.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 1.55rem 1.15rem .6rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  font-size: .98rem;
  transition: border-color .3s, box-shadow .3s, background .3s;
  appearance: none;
}
.field textarea { min-height: 150px; resize: vertical; }
.field label {
  position: absolute;
  left: 1.15rem;
  top: 1.05rem;
  font-size: .95rem;
  color: var(--ink-soft);
  pointer-events: none;
  transition: transform .3s var(--ease-out), font-size .3s, color .3s, top .3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--sage-deep);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(94, 122, 107, .12);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select.has-value + label {
  top: .5rem;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-deep);
}
.field input::placeholder, .field textarea::placeholder { color: transparent; }
.field .field-error {
  display: none;
  font-size: .8rem;
  color: #B0432F;
  margin-top: .4rem;
  padding-left: .3rem;
}
.field.has-error input, .field.has-error textarea { border-color: #C65D46; }
.field.has-error .field-error { display: block; }

.form-consent {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--ink-soft);
  margin-top: 1.2rem;
}
.form-consent input {
  flex: none;
  width: 19px; height: 19px;
  margin-top: .2rem;
  accent-color: var(--sage-deep);
}
.form-consent a { text-decoration: underline; text-underline-offset: 3px; }

.form-submit {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.form-submit .btn[disabled] { opacity: .55; pointer-events: none; }

/* honeypot — visually hidden */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
}

.form-status {
  display: none;
  align-items: center;
  gap: .8rem;
  padding: 1.05rem 1.3rem;
  border-radius: 14px;
  font-size: .93rem;
  font-weight: 500;
  margin-top: 1.4rem;
}
.form-status.is-success { display: flex; background: var(--sage-tint); color: var(--sage-deep); border: 1px solid var(--sage); }
.form-status.is-error { display: flex; background: #F9E8E3; color: #A5462F; border: 1px solid #E4B3A3; }
.form-status svg { flex: none; width: 20px; height: 20px; }

/* Spinner in button */
.btn .spinner {
  display: none;
  width: 17px; height: 17px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn__arrow { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  padding: calc(var(--header-h) + clamp(3.5rem, 7vw, 6rem)) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: clip;
  background:
    radial-gradient(1000px 500px at 90% -20%, rgba(201, 214, 192, .5), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(246, 233, 223, .8), transparent 55%),
    var(--paper);
}
.page-hero .breadcrumbs {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.page-hero .breadcrumbs a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.page-hero .breadcrumbs .sep { opacity: .4; }
.page-hero h1 { font-size: clamp(2.6rem, 4.6vw + .5rem, 4.6rem); max-width: 18ch; margin-bottom: 1.6rem; }
.page-hero .lead { max-width: 64ch; }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.legal__toc {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  display: grid;
  gap: .15rem;
  font-size: .88rem;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.legal__toc a {
  padding: .45rem .7rem;
  border-radius: 9px;
  color: var(--ink-soft);
  transition: background .25s, color .25s;
}
.legal__toc a:hover, .legal__toc a.is-current { background: var(--sage-tint); color: var(--ink); }
.legal__body h2 {
  font-size: 1.6rem;
  margin: 2.8rem 0 1rem;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.legal__body h2:first-of-type { margin-top: 0; }
.legal__body p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 70ch; }
.legal__body ul { display: grid; gap: .45rem; margin: 0 0 1.2rem; }
.legal__body ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-soft);
}
.legal__body ul li::before {
  content: "";
  position: absolute;
  left: .2rem; top: .68em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage-2);
}
.legal__updated {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: .55rem 1.05rem;
  border-radius: 999px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -240px; right: -160px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 122, 107, .4), transparent 65%);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, .8fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(250, 247, 241, .12);
  position: relative;
}
.footer__brand p {
  color: rgba(250, 247, 241, .65);
  font-size: .95rem;
  max-width: 34ch;
  margin-top: 1.2rem;
}
.footer__legal {
  color: rgba(250, 247, 241, .5);
  font-size: .82rem;
  line-height: 1.6;
  max-width: 34ch;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(250, 247, 241, .12);
}
.footer .brand__mark { background: var(--paper); }
.footer h4 {
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-2);
  margin-bottom: 1.3rem;
}
.footer__col ul { display: grid; gap: .85rem; }
.footer__col li { display: flex; flex-direction: column; gap: .2rem; }
.footer__label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, .42);
}
.footer__value {
  color: rgba(250, 247, 241, .72);
  font-size: .95rem;
  line-height: 1.45;
}
.footer__col a {
  color: rgba(250, 247, 241, .72);
  font-size: .95rem;
  transition: color .25s, padding-left .3s var(--ease-out);
}
.footer__col a:hover { color: var(--paper); padding-left: 6px; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  font-size: .85rem;
  color: rgba(250, 247, 241, .55);
  position: relative;
}
.footer__bottom a { color: rgba(250, 247, 241, .7); }
.footer__bottom a:hover { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }
.footer__legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.to-top {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(250, 247, 241, .7);
  font-weight: 600;
  transition: color .25s;
}
.to-top:hover { color: var(--paper); }
.to-top svg { transition: transform .35s var(--ease-spring); }
.to-top:hover svg { transform: translateY(-4px); }

/* ==========================================================================
   COOKIE CONSENT
   ========================================================================== */
.cookie-card {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 1300;
  width: min(430px, calc(100vw - 2.8rem));
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: 0 40px 90px -30px rgba(30, 43, 38, .5);
  padding: 1.7rem 1.7rem 1.5rem;
  transform: translateY(calc(100% + 2.5rem)) rotate(1.5deg);
  opacity: 0;
  transition: transform .8s var(--ease-spring), opacity .5s;
  overflow: hidden;
}
.cookie-card.is-visible { transform: none; opacity: 1; }
.cookie-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-2), var(--clay));
}

.cookie-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .9rem;
}
.cookie-card__biscuit {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--clay-tint);
  display: grid;
  place-items: center;
  animation: biscuitWobble 5s ease-in-out infinite;
}
.cookie-card__biscuit svg { width: 30px; height: 30px; }
@keyframes biscuitWobble {
  0%, 100% { transform: rotate(0deg); }
  8% { transform: rotate(-14deg) scale(1.06); }
  16% { transform: rotate(10deg); }
  24% { transform: rotate(0deg); }
}
.cookie-card__head h3 { font-size: 1.25rem; }
.cookie-card__head small {
  display: block;
  font-size: .78rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-display);
}
.cookie-card > p {
  font-size: .88rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.cookie-card > p a { text-decoration: underline; text-underline-offset: 3px; color: var(--sage-deep); font-weight: 500; }

.cookie-card__actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.cookie-card__actions .btn { padding: .72rem 1.25rem; font-size: .87rem; }
.cookie-btn-link {
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: .72rem .4rem;
}
.cookie-btn-link:hover { color: var(--ink); }

/* Preferences panel */
.cookie-prefs {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease-out);
}
.cookie-prefs.is-open { grid-template-rows: 1fr; margin-top: 1.1rem; }
.cookie-prefs__inner { overflow: hidden; display: grid; gap: .6rem; }
.cookie-pref {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: var(--paper);
}
.cookie-pref strong { font-size: .88rem; display: block; }
.cookie-pref small { font-size: .76rem; color: var(--ink-soft); }

/* Switch */
.switch { position: relative; flex: none; width: 46px; height: 26px; }
.switch input { position: absolute; opacity: 0; inset: 0; cursor: pointer; z-index: 1; }
.switch .track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--paper-3);
  transition: background .3s;
}
.switch .track::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
  transition: transform .35s var(--ease-spring);
}
.switch input:checked + .track { background: var(--sage-deep); }
.switch input:checked + .track::after { transform: translateX(20px); }
.switch input:disabled + .track { opacity: .6; }

/* Floating reopen button */
.cookie-reopen {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 1290;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line-soft);
  box-shadow: 0 14px 30px -14px rgba(30, 43, 38, .4);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.5);
  pointer-events: none;
  transition: transform .5s var(--ease-spring), opacity .4s;
}
.cookie-reopen.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.cookie-reopen:hover { transform: scale(1.1) rotate(-10deg); }
.cookie-reopen svg { width: 24px; height: 24px; }

/* ==========================================================================
   404
   ========================================================================== */
.error-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}
.error-hero .code {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(6rem, 16vw, 12rem);
  line-height: 1;
  color: var(--sage-2);
}
.error-hero h1 { font-size: var(--fs-display); margin: 1rem 0 1.2rem; }
.error-hero p { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }
.error-hero .btn { margin-top: 2.2rem; }

/* ==========================================================================
   RESPONSIVE — desktop-first
   ========================================================================== */
@media (max-width: 1100px) {
  :root { --header-h: 76px; }

  .brand { font-size: 1.15rem; gap: .6rem; }
  .brand__mark { width: 36px; height: 36px; }
  .header__cta { display: none; }

  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__aside {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-chip { flex: 1 1 260px; }

  .service-row { grid-template-columns: 64px minmax(0, 1fr); }
  .service-row__body { grid-column: 2; }

  .step { grid-template-columns: 84px minmax(0, 1fr); }
  .step__body { grid-column: 2; }

  .legal { grid-template-columns: 1fr; }
  .legal__toc {
    position: static;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .footer__grid { grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, .9fr)); }
}

@media (max-width: 880px) {
  .nav, .header__cta { display: none; }
  .burger { display: block; }
  .nav-drawer { display: flex; }

  .split, .who__grid, .wwd__grid, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 16 / 11; }
  .wwd__media { aspect-ratio: 16 / 10; order: -1; }

  .services-head { flex-direction: column; align-items: flex-start; }

  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero { min-height: auto; }
  .hero__scroll { display: none; }

  .value-row { grid-template-columns: 48px minmax(0, 1fr); }
  .value-row p { grid-column: 2; }
}

@media (max-width: 620px) {
  :root { --space-section: 4.25rem; }

  .services-grid, .pricing-grid, .feature-grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .hero { padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: 4rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__aside { flex-direction: column; }

  .service-row { grid-template-columns: 1fr; gap: 1rem; }
  .service-row__num { padding: 0; }
  .service-row__body { grid-column: 1; }

  .step { grid-template-columns: 1fr; gap: .9rem; }
  .step__body { grid-column: 1; }
  .step h3 { max-width: none; }

  .cta-banner { padding: 3rem 1.5rem; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .cookie-card { left: .9rem; bottom: .9rem; width: calc(100vw - 1.8rem); padding: 1.4rem 1.3rem 1.2rem; }
  .cookie-card__actions .btn { flex: 1 1 auto; justify-content: center; }

  .faq__q { font-size: 1.05rem; padding: 1.2rem 1.25rem; }
  .faq__a-inner { padding-inline: 1.25rem; }
  .faq.is-open .faq__a-inner { padding: 0 1.25rem 1.3rem; }

  .price-card { padding: 2rem 1.5rem 1.8rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .mask-lines .line > span, .reveal-img { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .cursor-glow, body::after { display: none !important; }
}

/* ---------- Print ---------- */
@media print {
  .header, .footer, .cookie-card, .cookie-reopen, .cursor-glow, .scroll-progress, .hero__scroll, .cta-banner { display: none !important; }
  body { background: #fff; color: #000; }
  body::after { display: none; }
}
