/* ==========================================================================
   Bluestone Web Studio
   ========================================================================== */

:root {
  /* Palette */
  --slate-950: #16212d;
  --slate-900: #1f2d3d;
  --slate-800: #2a3b4e;
  --slate-700: #3b5068;
  --slate-500: #5f7489;
  --slate-300: #a9b6c3;
  --stone-200: #dfe3e6;
  --stone-100: #eef0f1;
  --stone-50:  #f6f7f7;
  --white: #ffffff;
  --copper-400: #e0a878;
  --copper-500: #b5652d;
  --copper-600: #97521f;   /* 5.9:1 on white: use for text and button fills */
  --copper-700: #7d4318;
  --copper-50:  #f7ede4;

  /* Semantic tokens */
  --text: #33404d;
  --text-strong: #1b2733;
  --text-muted: #5d6a77;
  --surface: var(--white);
  --surface-alt: var(--stone-50);
  --border: var(--stone-200);
  --accent: var(--copper-600);
  --accent-hover: var(--copper-700);
  --accent-decor: var(--copper-500);
  --success: #2e6b3f;
  --error: #b3261e;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;

  /* Spacing scale (4px base) */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem; --s-5: 1.5rem;
  --s-6: 2rem; --s-7: 2.5rem; --s-8: 3rem; --s-9: 4rem; --s-10: 6rem;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 1px 2px rgba(27, 39, 51, .06), 0 8px 24px rgba(27, 39, 51, .07);
  --shadow-lg: 0 2px 4px rgba(27, 39, 51, .06), 0 24px 48px rgba(27, 39, 51, .14);
  --container: 1160px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { color: var(--text-strong); line-height: 1.2; margin: 0 0 var(--s-3); }
h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.015em;
  font-variation-settings: "opsz" 96;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1.08; }
h1 em { font-style: italic; font-weight: 400; color: var(--accent); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.125rem; font-weight: 600; }

p { margin: 0 0 var(--s-4); }

a { color: var(--slate-700); text-underline-offset: 3px; }
a:hover { color: var(--accent); }

:focus-visible { outline: 3px solid var(--accent-decor); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: var(--s-4); top: -48px; z-index: 100;
  background: var(--text-strong); color: var(--white); padding: var(--s-2) var(--s-4); border-radius: var(--radius);
}
.skip-link:focus { top: var(--s-3); color: var(--white); }

.eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: .8em 1.5em;
  font: 600 1rem/1 var(--font-body);
  color: var(--white);
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--white); }

.btn-ghost { background: transparent; color: var(--slate-800); border-color: var(--slate-300); }
.btn-ghost:hover { background: var(--stone-100); border-color: var(--slate-500); color: var(--text-strong); }

.btn-outline { background: var(--white); color: var(--slate-800); border-color: var(--slate-800); }
.btn-outline:hover { background: var(--slate-800); border-color: var(--slate-800); color: var(--white); }

.btn-small { min-height: 40px; padding: .6em 1.1em; font-size: .9375rem; }
.btn-block { width: 100%; }

/* Header ----------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(1.4) blur(8px);
  -webkit-backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--border); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: var(--s-3); text-decoration: none; }
.brand-mark { width: 30px; height: 30px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.brand-name span { font-weight: 400; color: var(--slate-500); }

.site-nav { display: flex; align-items: center; gap: var(--s-6); }
.site-nav a:not(.btn) { color: var(--text); text-decoration: none; font-size: .9375rem; font-weight: 500; }
.site-nav a:not(.btn):hover { color: var(--accent); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 0; cursor: pointer; position: relative;
}
.nav-toggle-bar {
  position: absolute; left: 11px; width: 22px; height: 2px;
  background: var(--text-strong);
  transition: transform .2s ease, top .2s ease;
}
.nav-toggle-bar:nth-of-type(2) { top: 17px; }
.nav-toggle-bar:nth-of-type(3) { top: 25px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-of-type(2) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-of-type(3) { top: 21px; transform: rotate(-45deg); }

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

.hero {
  padding: var(--s-9) 0 var(--s-10);
  background:
    radial-gradient(900px 420px at 100% 0%, var(--copper-50), transparent 70%),
    linear-gradient(180deg, var(--white) 0%, var(--surface-alt) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--s-9); align-items: center; }

.lede { font-size: 1.1875rem; color: var(--text-muted); max-width: 34em; }

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin: var(--s-6) 0 var(--s-7); }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-7);
  list-style: none; margin: 0; padding: var(--s-5) 0 0;
  border-top: 1px solid var(--border);
  font-size: .9375rem; color: var(--text-muted);
}
.hero-facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 500;
  color: var(--text-strong); line-height: 1.2;
}

/* Hero illustration: review -> preview site */
.hero-visual { position: relative; margin: 0; padding-bottom: var(--s-2); }

.quote-card {
  position: relative; z-index: 2;
  width: 80%;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-decor);
  border-radius: var(--radius);
  padding: var(--s-4) var(--s-5);
  box-shadow: var(--shadow);
}
.quote-card .stars { color: var(--accent-decor); letter-spacing: 2px; font-size: .9rem; }
.quote-card p {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--text-strong);
  margin: var(--s-2) 0; line-height: 1.45;
}
.quote-card mark {
  background: linear-gradient(transparent 58%, rgba(224, 168, 120, .55) 58%);
  color: inherit; padding: 0 .1em;
}
.quote-card span { font-size: .8125rem; color: var(--text-muted); }

.flow-arrow { width: 120px; height: 70px; margin: -6px 0 -18px 34%; color: var(--slate-500); position: relative; z-index: 1; }

.browser {
  position: relative;
  margin-left: auto;
  width: 90%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--stone-100);
  border-bottom: 1px solid var(--border);
}
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--slate-300); }
.browser-url {
  margin-left: var(--s-3); flex: 1;
  font-size: .75rem; color: var(--text-muted);
  background: var(--white); border-radius: 4px; padding: 3px 10px;
}
.browser-body { padding: var(--s-5); background: var(--slate-900); }
.browser-tag {
  display: inline-block;
  font-size: .6875rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); background: var(--copper-600);
  padding: 4px 8px; border-radius: 999px; margin-bottom: var(--s-3);
}
.browser-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); line-height: 1.2; margin: 0 0 var(--s-2); }
.browser-sub { font-size: .875rem; color: var(--slate-300); margin: 0 0 var(--s-4); }
.browser-chips { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.browser-chips span {
  font-size: .75rem; font-weight: 600;
  padding: 5px 10px; border-radius: 4px;
  background: var(--slate-800); color: var(--stone-200);
}
.browser-chips .is-accent { background: var(--copper-600); color: var(--white); }

/* Sections --------------------------------------------------------------- */

.section { padding: var(--s-10) 0; }
.section-tinted { background: var(--surface-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { max-width: 680px; margin: 0 auto var(--s-8); text-align: center; }
.section-head > p:last-child { color: var(--text-muted); font-size: 1.125rem; margin-bottom: 0; }
.section-head-left { text-align: left; margin: 0; }

/* Process ---------------------------------------------------------------- */

.process {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6);
  position: relative;
}
.process::before {
  content: ""; position: absolute; left: 22px; right: 22px; top: 22px;
  border-top: 2px dashed var(--slate-300);
}
.process li { position: relative; }
.process-num {
  position: relative;
  display: grid; place-items: center;
  width: 44px; height: 44px; margin-bottom: var(--s-4);
  border-radius: 50%;
  background: var(--slate-900); color: var(--white);
  font-family: var(--font-display); font-size: 1.1rem;
  box-shadow: 0 0 0 6px var(--white);
}
.process li:nth-child(3) .process-num { background: var(--copper-600); }
.process p { color: var(--text-muted); margin: 0; font-size: .98rem; }

/* What you get ----------------------------------------------------------- */

.demo-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s-9); align-items: center; }
.demo-intro { color: var(--text-muted); font-size: 1.125rem; }

.anatomy { list-style: none; counter-reset: pin; margin: var(--s-6) 0 0; padding: 0; display: grid; gap: var(--s-4); }
.anatomy li {
  counter-increment: pin;
  position: relative;
  padding: var(--s-4) var(--s-5) var(--s-4) 3.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: .98rem;
}
.anatomy li::before {
  content: counter(pin);
  position: absolute; left: var(--s-4); top: var(--s-4);
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--copper-600); color: var(--white);
  font: 600 .8125rem/1 var(--font-body);
}
.anatomy b { display: block; color: var(--text-strong); font-weight: 600; margin-bottom: 2px; }

.demo-visual { display: flex; justify-content: center; }
.phone {
  width: 300px; max-width: 100%;
  padding: 12px;
  background: var(--slate-950);
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
}
.phone-screen {
  background: #faf6ef;
  border-radius: 30px;
  padding: 18px 14px;
  display: grid; gap: 10px;
}
.phone-screen i { display: block; height: 7px; border-radius: 4px; background: #e2d7c6; }
.phone-screen .pin {
  position: absolute; right: -8px; top: -8px;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--copper-600); color: var(--white);
  font: 600 .75rem/1 var(--font-body);
  box-shadow: 0 0 0 3px #faf6ef;
}
.ph-hero, .ph-block { position: relative; border-radius: 12px; padding: 12px; }
.ph-hero { background: #fff; border: 1px solid #ece3d4; display: grid; gap: 7px; }
.ph-hero b { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; line-height: 1.15; color: #2b1b14; }
.ph-hero .ph-kicker { width: 45%; background: #d9a79a; }
.ph-hero .ph-btn { width: 52%; height: 22px; border-radius: 999px; background: #9b1c1f; }
.ph-block { background: #2b1b14; display: grid; gap: 8px; }
.ph-dish { display: flex; align-items: center; gap: 8px; }
.ph-dish i { flex: 1; background: rgba(248, 241, 228, .25); }
.ph-dish em { font: 600 .7rem/1 var(--font-body); font-style: normal; color: #c9a45c; }
.ph-menu { background: #fff; border: 1px solid #ece3d4; }
.ph-search { height: 20px !important; border-radius: 6px !important; background: #efe7da !important; }
.ph-chips { display: flex; gap: 5px; }
.ph-chips i { flex: 1; height: 14px; border-radius: 999px; }
.ph-chips i:first-child { background: #2b1b14; }
.ph-review { background: #fff; border: 1px solid #ece3d4; }
.ph-review .ph-stars { color: #c9a45c; font-size: .7rem; letter-spacing: 2px; }
.ph-review i.short { width: 60%; }
.ph-visit { background: #fff; border: 1px solid #ece3d4; grid-template-columns: auto 1fr; align-items: center; }
.ph-open { font: 600 .65rem/1 var(--font-body); text-transform: uppercase; letter-spacing: .06em; color: #fff; background: #2e6b3c; padding: 5px 8px; border-radius: 999px; }
.ph-map { height: 34px !important; border-radius: 8px !important; background: repeating-linear-gradient(45deg, #e7efe4 0 6px, #dfe8dc 6px 12px) !important; }

/* Pricing ---------------------------------------------------------------- */

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); align-items: stretch; }

.plan {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-6) var(--s-6) var(--s-5);
  box-shadow: var(--shadow);
}
.plan h3 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; margin-bottom: var(--s-1); }
.plan-featured { border: 2px solid var(--slate-800); background: linear-gradient(180deg, var(--white), var(--surface-alt)); }
.plan-badge {
  position: absolute; top: -13px; left: var(--s-6); margin: 0;
  background: var(--slate-800); color: var(--white);
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.plan-fit { color: var(--text-muted); font-size: .9375rem; margin-bottom: var(--s-5); }
.plan-price { display: flex; align-items: baseline; gap: var(--s-3); margin: 0; }
.price { font-family: var(--font-display); font-size: 3rem; font-weight: 500; color: var(--text-strong); line-height: 1; letter-spacing: -.02em; }
.price-note { color: var(--text-muted); font-size: .9375rem; }
.plan-then { margin: var(--s-3) 0 var(--s-5); padding-bottom: var(--s-5); border-bottom: 1px solid var(--border); font-size: .9375rem; }
.plan-list { list-style: none; margin: 0 0 var(--s-5); padding: 0; flex-grow: 1; }
.plan-list li { position: relative; padding-left: 26px; margin-bottom: var(--s-3); font-size: .97rem; }
.plan-list li::before {
  content: ""; position: absolute; left: 2px; top: .45em;
  width: 11px; height: 6px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.plan-footnote { font-size: .875rem; color: var(--text-muted); margin-bottom: var(--s-5); }
.plan .btn { width: 100%; }

.addons {
  margin-top: var(--s-8);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
}
.addons h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; }
.addon-list { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: var(--s-8); margin: 0; }
.addon-list div { display: flex; justify-content: space-between; gap: var(--s-4); padding: var(--s-3) 0; border-bottom: 1px dashed var(--slate-300); }
.addon-list dd { margin: 0; font-weight: 600; color: var(--text-strong); white-space: nowrap; }

/* Included --------------------------------------------------------------- */

.features {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5);
}
.features li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
}
.features svg {
  width: 44px; height: 44px; padding: 10px; margin-bottom: var(--s-4);
  border-radius: var(--radius);
  background: var(--copper-50);
  fill: none; stroke: var(--copper-600); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.features h3 { font-size: 1.0625rem; margin-bottom: var(--s-1); }
.features p { color: var(--text-muted); margin: 0; font-size: .97rem; }

.founding {
  margin-top: var(--s-8);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-4) var(--s-6);
  padding: var(--s-5) var(--s-6);
  border: 2px dashed var(--slate-300);
  border-radius: var(--radius-lg);
}
.founding p { margin: 0; max-width: 40em; color: var(--text-muted); }
.founding strong { color: var(--text-strong); }

/* FAQ -------------------------------------------------------------------- */

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--s-9); align-items: start; }
.faq-grid .section-head { position: sticky; top: calc(var(--header-h) + var(--s-6)); }
.faq details { border-bottom: 1px solid var(--border); }
.faq details:first-child { border-top: 1px solid var(--border); }
.faq summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-4);
  padding: var(--s-5) 0;
  cursor: pointer;
  font-weight: 600; font-size: 1.0625rem; color: var(--text-strong);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none; width: 10px; height: 10px; margin-right: var(--s-1);
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-3px);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq summary:hover { color: var(--accent); }
.faq details p { color: var(--text-muted); margin: 0 0 var(--s-5); max-width: 40em; }

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

.section-dark { background: var(--slate-900); color: var(--stone-200); }
.section-dark h2 { color: var(--white); }
.section-dark .eyebrow { color: var(--copper-400); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--s-9); align-items: start; }
.contact-copy p { color: var(--slate-300); font-size: 1.0625rem; }
.contact-email { margin-top: var(--s-6); }
.contact-email a {
  color: var(--white); font-weight: 600; font-size: 1.125rem;
  text-decoration-color: var(--copper-500); text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.contact-email a:hover { color: var(--copper-400); }

.contact-form {
  background: var(--white); color: var(--text);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .25);
}
.field { margin-bottom: var(--s-4); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field label { display: block; font-size: .875rem; font-weight: 600; color: var(--text-strong); margin-bottom: var(--s-2); }
.optional { font-weight: 400; color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit; font-size: 1rem;
  color: var(--text-strong);
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius);
  padding: .7em .85em;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--slate-700);
  box-shadow: 0 0 0 3px rgba(59, 80, 104, .2);
}
.field .is-invalid { border-color: var(--error); }
.form-status { margin: var(--s-3) 0 0; font-size: .9375rem; min-height: 1.4em; }
.form-status.is-error { color: var(--error); }
.form-status.is-success { color: var(--success); }

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

.site-footer { background: var(--slate-950); color: var(--slate-300); padding: var(--s-8) 0; font-size: .9375rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: var(--s-6); align-items: start; }
.footer-inner p { margin: 0 0 var(--s-2); }
.site-footer .brand-name { color: var(--white); font-size: 1.2rem; }
.site-footer .brand-name span { color: var(--slate-300); }
.footer-nav { display: flex; flex-direction: column; gap: var(--s-2); }
.site-footer a { color: var(--stone-200); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-contact { text-align: right; }
.footer-contact a { overflow-wrap: anywhere; }
.copyright { color: var(--slate-300); }

/* Responsive ------------------------------------------------------------- */

@media (max-width: 1024px) {
  .process { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-7); }
  .process::before { display: none; }
  .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero-grid, .demo-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .hero-visual { max-width: 480px; }
  .faq-grid .section-head { position: static; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: var(--s-6); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-contact { text-align: left; }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }
  .container { padding: 0 var(--s-4); }

  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: var(--s-2) var(--s-4) var(--s-5);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(27, 39, 51, .08);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) { padding: var(--s-4) 0; border-bottom: 1px solid var(--stone-100); }
  .site-nav .btn { margin-top: var(--s-4); }

  .hero { padding: var(--s-7) 0 var(--s-8); }
  .hero-visual { max-width: none; }
  .quote-card { width: 94%; }
  .quote-card p { font-size: 1.02rem; }
  .flow-arrow { width: 96px; height: 56px; margin: -4px 0 -14px 28%; }
  .browser { width: 100%; }
  .browser-body { padding: var(--s-4); }
  .browser-title { font-size: 1.3rem; }
  .section { padding: var(--s-9) 0; }
  .section-head { margin-bottom: var(--s-7); }
  .hero-actions .btn { flex: 1 1 auto; }

  .process { grid-template-columns: 1fr; row-gap: var(--s-6); }
  .features { grid-template-columns: 1fr; }
  .addons { padding: var(--s-5); }
  .addon-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: var(--s-5); }
  .founding { padding: var(--s-5); }
  .founding .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .brand-name { font-size: 1.05rem; }
  .brand-mark { width: 26px; height: 26px; }
  .hero-facts { gap: var(--s-3) var(--s-5); }
}
