/* =================================================================
   SAXENA STUDIO — stylesheet
   Editorial / premium. Warm paper neutrals, near-black ink,
   one vermillion accent. Fraunces (display) + Inter (body).
   Organized: tokens → base → layout → components → sections → motion
   ================================================================= */

/* -----------------------------------------------------------------
   DESIGN TOKENS
   ----------------------------------------------------------------- */
:root {
  /* Palette — warm paper + ink + a single confident accent */
  --paper:      #F5F1E8;   /* page background, warm off-white */
  --paper-2:    #EDE7D9;   /* alternating section tint */
  --card:       #FBF9F3;   /* raised surfaces */
  --ink:        #16140F;   /* near-black, warm */
  --ink-2:      #2A271F;   /* dark band background */
  --muted:      #6B6657;   /* secondary text */
  --muted-2:    #908A78;   /* tertiary / fine print */
  --line:       rgba(22, 20, 15, 0.12);
  --line-soft:  rgba(22, 20, 15, 0.07);

  --accent:        #E2492D;  /* vermillion */
  --accent-deep:   #C13A22;
  --accent-tint:   rgba(226, 73, 45, 0.12);
  --accent-ink:    #FFFFFF;  /* text on accent */

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

  /* Rhythm */
  --container: 1140px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 18px;
  --radius-sm: 11px;

  --shadow-sm: 0 1px 2px rgba(22,20,15,.05), 0 4px 14px rgba(22,20,15,.05);
  --shadow-md: 0 8px 24px rgba(22,20,15,.08), 0 24px 60px rgba(22,20,15,.10);
  --shadow-lg: 0 20px 50px rgba(22,20,15,.14), 0 40px 90px rgba(22,20,15,.16);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 84px; /* offset sticky nav for anchor jumps */
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* subtle paper grain */
  background-image:
    radial-gradient(rgba(22,20,15,0.022) 1px, transparent 1px);
  background-size: 4px 4px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--paper); padding: .7rem 1.1rem;
  border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Headings use the display serif */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}

.hl { color: var(--accent); }
.hl-ink { box-shadow: inset 0 -0.5em 0 var(--accent-tint); }

/* -----------------------------------------------------------------
   BUTTONS
   ----------------------------------------------------------------- */
.btn {
  --pad-y: .8rem; --pad-x: 1.35rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600; font-size: .98rem; letter-spacing: .005em;
  line-height: 1; white-space: nowrap;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              box-shadow .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn--sm { --pad-y: .62rem; --pad-x: 1.05rem; font-size: .9rem; }
.btn--lg { --pad-y: 1rem; --pad-x: 1.7rem; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }

.btn--accent {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 6px 18px rgba(226,73,45,.28);
}
.btn--accent:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(226,73,45,.36); }
.btn--accent:active { transform: translateY(0); }

.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }

/* -----------------------------------------------------------------
   NAV
   ----------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(245, 241, 232, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 72px;
}
.nav__brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); }
.nav__mark { color: var(--accent); display: inline-flex; }
.nav__wordmark {
  font-family: var(--font-display); font-weight: 600; font-size: 1.28rem;
  letter-spacing: -0.02em;
}
.nav__wordmark-light { color: var(--muted); font-weight: 500; }

.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a {
  position: relative; color: var(--muted); font-weight: 500; font-size: .96rem;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--accent); transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { margin-left: .25rem; }

.nav__toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; margin-left: auto; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column; gap: .25rem;
  padding: .5rem var(--gutter) 1.5rem;
  background: rgba(245, 241, 232, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a:not(.btn) {
  padding: .85rem .25rem; font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn { margin-top: .9rem; }

/* -----------------------------------------------------------------
   HERO
   ----------------------------------------------------------------- */
.hero { position: relative; padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: var(--section-y); overflow: hidden; }
.hero__glow {
  position: absolute; z-index: 0; top: -22%; right: -8%;
  width: min(60vw, 640px); aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-tint), transparent 62%);
  filter: blur(8px); pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }

.hero__title {
  font-size: clamp(2.6rem, 1.6rem + 4.4vw, 4.7rem);
  margin: 1.1rem 0 0;
  letter-spacing: -0.025em;
}
.hero__title em {
  font-style: italic; font-weight: 500; color: var(--accent);
}
.hero__sub {
  margin-top: 1.4rem; max-width: 36ch;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem); color: var(--muted); line-height: 1.55;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }

.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__trust {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.4rem; font-size: .92rem; color: var(--muted);
}
.ico-check { color: var(--accent); flex: none; }

/* Hero side panel — browser/booking mock */
.hero__panel { position: relative; }
.browser {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft);
  overflow: hidden; transform: rotate(1.2deg);
  transition: transform .5s var(--ease);
}
.hero__panel:hover .browser { transform: rotate(0deg); }
.browser__bar {
  display: flex; align-items: center; gap: 6px;
  padding: .7rem .9rem; background: var(--paper-2); border-bottom: 1px solid var(--line-soft);
}
.browser__bar > span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.browser__bar > span:nth-child(1) { background: #E6A23C; }
.browser__url {
  margin-left: .6rem; font-size: .72rem; color: var(--muted-2);
  background: var(--card); padding: .25rem .7rem; border-radius: 6px; flex: 1;
}
.browser__screen { padding: 1.3rem; }

.mock-book { display: grid; gap: .9rem; }
.mock-book__head { display: flex; align-items: center; gap: .7rem; }
.mock-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); flex: none; }
.mock-line { height: 9px; border-radius: 5px; background: var(--line); }
.mock-line--lg { width: 120px; margin-bottom: 7px; }
.mock-line--sm { width: 78px; background: var(--line-soft); }
.mock-book__label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.mock-cal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.mock-cal span { aspect-ratio: 1; border-radius: 7px; background: var(--paper-2); }
.mock-cal span.is-on { background: var(--accent); box-shadow: 0 4px 12px rgba(226,73,45,.35); }
.mock-slots { display: flex; gap: .5rem; }
.mock-slots em {
  font-style: normal; font-size: .82rem; font-weight: 600; color: var(--muted);
  padding: .45rem .7rem; border-radius: 8px; border: 1px solid var(--line);
}
.mock-slots em.is-on { color: var(--accent); border-color: var(--accent); background: var(--accent-tint); }
.mock-confirm {
  text-align: center; font-weight: 600; font-size: .88rem; color: var(--accent-ink);
  background: var(--ink); padding: .75rem; border-radius: 10px;
}
.hero__panel-tag {
  position: absolute; bottom: -18px; left: -10px;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-md);
  border-radius: 12px; padding: .7rem .95rem; font-size: .85rem; color: var(--muted);
  max-width: 230px;
}
.hero__panel-tag strong { color: var(--ink); display: block; font-weight: 600; }

/* Hero stats strip */
.hero__stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 2rem; border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: .3rem; }
.stat__num { font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); font-weight: 600; letter-spacing: -0.02em; }
.stat__label { font-size: .85rem; color: var(--muted); line-height: 1.35; }

/* -----------------------------------------------------------------
   HOOK (dark band)
   ----------------------------------------------------------------- */
.hook { background: var(--ink-2); color: var(--paper); padding-block: clamp(3.5rem, 7vw, 6rem); }
.hook__eyebrow {
  font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.2rem;
}
.hook__text {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.5rem, 1.1rem + 2.2vw, 2.6rem); line-height: 1.28; letter-spacing: -0.01em;
  max-width: 22ch; max-width: 24ch;
  color: rgba(245,241,232,0.86);
}
.hook__text .hl { color: var(--paper); font-style: normal; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 6px; text-decoration-thickness: 2px; }

/* -----------------------------------------------------------------
   GENERIC SECTION
   ----------------------------------------------------------------- */
.section { padding-block: var(--section-y); }
.section--alt { background: var(--paper-2); }
.section__head { max-width: 56ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section__kicker {
  font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .8rem;
}
.section__title { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem); letter-spacing: -0.02em; }
.section__lead { margin-top: 1.1rem; color: var(--muted); font-size: clamp(1.02rem, 1rem + 0.3vw, 1.15rem); }
.section__lead strong { color: var(--ink); font-weight: 600; }

/* -----------------------------------------------------------------
   SERVICES CARDS
   ----------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent); margin-bottom: 1.2rem;
}
.card__title { font-size: 1.4rem; margin-bottom: .7rem; }
.card__body { color: var(--muted); font-size: .98rem; }

/* -----------------------------------------------------------------
   PORTFOLIO / WORK
   ----------------------------------------------------------------- */
.work { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }
.work__card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.work__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.work__frame {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  padding: clamp(1.1rem, 2.5vw, 1.8rem) clamp(1.1rem, 2.5vw, 1.8rem) 0;
  position: relative; overflow: hidden;
}
.work__frame::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 80% 0%, var(--accent-tint), transparent 55%);
  pointer-events: none;
}
.work__frame img {
  width: 100%; border-radius: 10px 10px 0 0; box-shadow: 0 -2px 20px rgba(0,0,0,.25);
  position: relative; z-index: 1;
}
.work__meta { padding: 1.3rem 1.5rem 1.5rem; }
.work__title { font-size: 1.3rem; margin-bottom: .45rem; }
.work__desc { color: var(--muted); font-size: .95rem; }
.work__note { margin-top: 1.6rem; font-size: .85rem; color: var(--muted-2); text-align: center; }
.work__note code { background: var(--card); padding: .1rem .4rem; border-radius: 5px; border: 1px solid var(--line); font-size: .85em; }

/* -----------------------------------------------------------------
   HOW IT WORKS — steps
   ----------------------------------------------------------------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  content: ""; position: absolute; top: calc(2.6rem - 1px - 5px); left: 0; right: 0; height: 1px;
  background: var(--line);
}
.step::after {
  content: ""; position: absolute; top: calc(2.6rem - 6px); left: 0; width: 11px; height: 11px;
  border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--paper);
}
.step__num { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--accent); position: absolute; top: 0; left: 0; }
.step__title { font-size: 1.35rem; margin-bottom: .55rem; }
.step__body { color: var(--muted); font-size: .95rem; }

/* -----------------------------------------------------------------
   PRICING
   ----------------------------------------------------------------- */
.pricing { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.25rem, 3vw, 2rem); align-items: stretch; }
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.price-card--feature {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.price-card--feature::before {
  content: ""; position: absolute; top: -40%; right: -20%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(226,73,45,.4), transparent 65%); filter: blur(10px);
}
.price-card__tag {
  position: relative; font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.price-card__amount { position: relative; font-family: var(--font-display); font-size: clamp(3rem, 2rem + 4vw, 4.4rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.price-card__currency { font-size: .5em; vertical-align: super; opacity: .7; margin-right: .05em; }
.price-card__line { position: relative; margin-top: 1rem; font-size: 1.08rem; color: rgba(245,241,232,.9); }
.price-card__fine { position: relative; margin-top: .4rem; font-size: .92rem; color: rgba(245,241,232,.6); margin-bottom: auto; }
.price-card--feature .btn { margin-top: 1.8rem; }

.price-then { display: flex; flex-direction: column; gap: 1rem; }
.price-then__label { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--muted); margin-bottom: .1rem; }
.price-mini {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); flex: 1;
}
.price-mini--pref { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-sm); }
.price-mini__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .5rem; }
.price-mini__title { font-size: 1.35rem; display: inline-flex; align-items: center; gap: .6rem; }
.price-mini__amount { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; white-space: nowrap; }
.price-mini__amount span { font-size: .55em; color: var(--muted); font-weight: 500; }
.price-mini__body { color: var(--muted); font-size: .95rem; }
.pill {
  font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-tint); padding: .25rem .55rem; border-radius: 999px;
}

.payback {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--accent-tint); border: 1px solid rgba(226,73,45,.25);
  border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 1.8rem);
}
.payback__ico { color: var(--accent); flex: none; margin-top: .15rem; }
.payback p { font-size: clamp(1.02rem, 1rem + 0.4vw, 1.2rem); color: var(--ink); }
.payback strong { font-weight: 700; }

/* -----------------------------------------------------------------
   ABOUT
   ----------------------------------------------------------------- */
.about { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__portrait { position: relative; }
.about__photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius);
  background:
    linear-gradient(150deg, var(--paper-2), var(--card)),
    var(--card);
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  display: grid; place-items: center; text-align: center;
  color: var(--muted-2); font-size: .95rem; line-height: 1.5;
}
.about__photo::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(120% 90% at 100% 0%, var(--accent-tint), transparent 50%);
  pointer-events: none;
}
.about__sig {
  position: absolute; bottom: -14px; right: -10px;
  font-family: var(--font-display); font-style: italic; font-size: 1.5rem; font-weight: 500;
  background: var(--card); padding: .4rem 1rem; border-radius: 999px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); color: var(--ink);
}
.about__lead { color: var(--muted); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); margin-top: 1.1rem; }
.about__lead:first-of-type { margin-top: 1.4rem; }
.about__lead strong { color: var(--ink); font-weight: 600; }

/* -----------------------------------------------------------------
   FINAL CTA (dark band) + FORM
   ----------------------------------------------------------------- */
.cta { position: relative; background: var(--ink); color: var(--paper); padding-block: var(--section-y); overflow: hidden; }
.cta__glow {
  position: absolute; top: -30%; left: -10%; width: min(70vw, 700px); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(226,73,45,.22), transparent 60%); filter: blur(10px); pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.cta__title { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.3rem); letter-spacing: -0.025em; }
.cta__line { margin-top: 1.1rem; color: rgba(245,241,232,.72); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); max-width: 38ch; }
.cta__pitch .btn { margin-top: 1.8rem; }
.cta__assure { list-style: none; margin-top: 2rem; display: grid; gap: .7rem; }
.cta__assure li { position: relative; padding-left: 1.7rem; color: rgba(245,241,232,.8); font-size: .96rem; }
.cta__assure li::before {
  content: ""; position: absolute; left: 0; top: .35rem; width: 16px; height: 16px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M16.5 5.5 8 14 3.5 9.5'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M16.5 5.5 8 14 3.5 9.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Form */
.cta__formwrap {
  background: var(--card); color: var(--ink); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.3rem); box-shadow: var(--shadow-lg);
}
.form { display: grid; gap: 1rem; }
.form__intro { font-size: .95rem; color: var(--muted); margin-bottom: .2rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field__hint { font-size: .8rem; color: var(--muted); margin-top: .1rem; line-height: 1.4; }
.field input, .field textarea {
  font: inherit; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line); border-radius: 10px; padding: .75rem .85rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease); width: 100%;
  resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field[data-invalid] input, .field[data-invalid] textarea { border-color: var(--accent); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form__status { font-size: .92rem; min-height: 1.2em; margin-top: .2rem; }
.form__status[data-state="success"] { color: #1f7a4d; font-weight: 600; }
.form__status[data-state="error"]   { color: var(--accent-deep); font-weight: 600; }
.form__status[data-state="loading"] { color: var(--muted); }

.btn[aria-busy="true"] { opacity: .75; pointer-events: none; }

/* -----------------------------------------------------------------
   FOOTER
   ----------------------------------------------------------------- */
.footer { background: var(--ink-2); color: rgba(245,241,232,.72); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 2.5rem; }
.footer .nav__wordmark { color: var(--paper); }
.footer .nav__wordmark-light { color: rgba(245,241,232,.55); }
.footer__tag { margin-top: .7rem; font-size: .95rem; max-width: 32ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__col h4 { font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(245,241,232,.5); margin-bottom: .9rem; }
.footer__col a { display: block; padding: .25rem 0; color: rgba(245,241,232,.8); font-size: .95rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-block: 1.4rem; border-top: 1px solid rgba(245,241,232,.12);
  font-size: .85rem; color: rgba(245,241,232,.55);
}
.footer__top:hover { color: var(--accent); }

/* -----------------------------------------------------------------
   SCROLL REVEAL
   ----------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* -----------------------------------------------------------------
   RESPONSIVE
   ----------------------------------------------------------------- */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__panel { max-width: 420px; margin-inline: auto; width: 100%; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .cards { grid-template-columns: 1fr; }
  .work { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .pricing { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about__portrait { max-width: 360px; }
  .cta__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
}

@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
  .step::before { display: none; }
}

/* -----------------------------------------------------------------
   MOTION PREFERENCES
   ----------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .browser { transform: none; }
}
