:root {
  --cream: #faf7f1;
  --cream-raised: #fffdf9;
  --white: #ffffff;
  --ink: #2c2a24;
  --ink-soft: #37342d;
  --body: #6a655b;
  --body-dim: #4a463f;
  --muted: #9a9385;
  --muted-light: #b6ac9c;
  --tan: #b08968;
  --tan-hover: #9a7355;
  --tan-soft: #cbb79f;
  --honey: #e6c98f;
  --amber: #e3b268;
  --tag: #f0e7dc;
  --tag-text: #8a6f52;
  --avatar: #efe4d6;
  --border: #ece7dd;
  --border-soft: #f0ece4;
  --border-strong: #d8d1c4;
  --border-input: #ded6c9;
  --border-dark: #4a463d;
  --dot: #e2d8c9;
  --on-dark-sub: #d8d1c4;
  --on-dark-list: #e6ded2;
  --footer-text: #cfc7ba;
  --footer-body: #a49c8f;
  --footer-dim: #7c766b;
  --footer-rule: #3f3c34;
  --deck-mat: #eef1f5;

  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --label: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --hex: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  --gutter: 40px;
  --section-y: 96px;
  --nav-h: 73px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: var(--ink-soft); transition: color 0.2s, background-color 0.2s, border-color 0.2s, transform 0.2s; }
img { max-width: 100%; }
button, input, select, textarea { font-family: var(--sans); }
h1, h2, h3 { margin: 0; }
h3 { font-weight: 600; }

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

.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 100;
  background: var(--ink-soft); color: var(--cream); padding: 10px 16px; border-radius: 999px; font-weight: 600;
}
.skip-link:focus { top: 12px; color: var(--cream); }

.container { max-width: 1200px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ---------- hexagon motif ---------- */
.hex { display: inline-block; flex: none; clip-path: var(--hex); background: var(--tan); }
.hex--xs { width: 7px; height: 8px; }
.hex--sm { width: 9px; height: 10px; }
.hex--md { width: 10px; height: 11px; }
.hex--icon { width: 34px; height: 38px; background: var(--tag); }
.hex--avatar { width: 38px; height: 42px; background: var(--avatar); }
.hex--soft { background: var(--tan-soft); }

/* ---------- logo ---------- */
.logo { display: flex; align-items: center; gap: 11px; }
.logo__mark { display: block; width: 30px; height: 28px; margin-top: 1px; flex: none; }
.logo__word { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--ink-soft); line-height: 1; }

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: var(--label); font-size: 13px; letter-spacing: 0.14em; color: var(--tan);
  text-transform: uppercase; font-weight: 600; display: inline-flex; align-items: center; gap: 9px;
}
.h2 {
  font-family: var(--serif); font-weight: 500; font-size: 46px; line-height: 1.08;
  letter-spacing: -0.02em; color: var(--ink); margin: 16px 0 0;
}
.lede { font-size: 17px; color: var(--body); line-height: 1.6; margin: 0; }
.section-head { max-width: 640px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 600; font-size: 16px; padding: 15px 28px;
  border: 1px solid transparent; cursor: pointer; line-height: 1.2; font-family: var(--sans);
}
.btn--primary { background: var(--tan); color: #fff; }
.btn--primary:hover { background: var(--tan-hover); color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn--outline:hover { border-color: var(--body); color: var(--ink); }
.btn--dark { background: var(--ink-soft); color: var(--cream); }
.btn--dark:hover { background: var(--ink); color: var(--cream); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 241, 0.82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 18px var(--gutter); display: flex; align-items: center; justify-content: space-between; }
.nav__links { display: flex; align-items: center; gap: 30px; font-size: 15px; }
.nav__links a { color: var(--body); }
.nav__links a:hover { color: var(--tan); }
.nav__links .nav__book { color: var(--tan); font-weight: 600; }
.nav__links .nav__book:hover { color: var(--tan-hover); }
.nav__links .nav__cta { background: var(--ink-soft); color: var(--cream); padding: 11px 20px; border-radius: 999px; font-weight: 600; }
.nav__links .nav__cta:hover { background: var(--ink); color: var(--cream); }
.nav__toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer; padding: 0; margin-right: -11px;
}
.nav__toggle-bars { width: 22px; display: flex; flex-direction: column; gap: 5px; }
.nav__toggle-bars span { display: block; height: 2px; background: var(--ink); transition: transform 0.2s, opacity 0.2s; }
.nav[data-open="true"] .nav__toggle-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav[data-open="true"] .nav__toggle-bars span:nth-child(2) { opacity: 0; }
.nav[data-open="true"] .nav__toggle-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__menu { display: none; }

/* ---------- hero ---------- */
.hero { padding-top: 8px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; align-items: stretch; }
.hero__copy { padding: 84px 48px 84px 0; display: flex; flex-direction: column; gap: 28px; }
.hero__eyebrow { font-size: 14px; gap: 10px; }
.hero__title { font-family: var(--serif); font-weight: 500; font-size: 64px; line-height: 1.03; letter-spacing: -0.02em; color: var(--ink); }
.hero__lede { font-size: 20px; line-height: 1.55; color: var(--body); margin: 0; max-width: 500px; }
.hero__ctas { display: flex; gap: 14px; margin-top: 6px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 40px; margin: 24px 0 0; padding-top: 28px; border-top: 1px solid var(--border); row-gap: 18px; }
.stat__value { font-family: var(--serif); font-size: 30px; color: var(--ink); white-space: nowrap; }
.stat__label { font-size: 13px; color: var(--muted); white-space: nowrap; }
.stat .m-only { display: none; }
.hero__media { position: relative; min-height: 560px; margin: 40px 0; border-radius: 18px; overflow: hidden; background: #f2ece2; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; display: block; }

/* ---------- trust strip ---------- */
.trust { padding-top: 40px; padding-bottom: 24px; }
.trust__label { text-align: center; font-family: var(--label); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-light); margin: 0 0 22px; }
.trust__names { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; opacity: 0.72; font-family: var(--serif); font-size: 22px; color: var(--body); margin: 0; padding: 0; list-style: none; }
.trust__names li { white-space: nowrap; }
.trust__names a { color: inherit; }
.trust__names a:hover { color: var(--tan); }

/* ---------- services ---------- */
.band { background: var(--cream-raised); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services { margin-top: 40px; }
.section-pad { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.services .section-head { margin-bottom: 20px; }
.steps { display: flex; gap: 12px; flex-wrap: wrap; margin: 32px 0 48px; padding: 0; list-style: none; }
.step { flex: 1; min-width: 220px; background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; }
.step__num { font-family: var(--label); font-size: 13px; color: var(--tan); font-weight: 700; }
.step__title { font-family: var(--serif); font-size: 22px; color: var(--ink); margin: 6px 0; font-weight: 400; }
.step__body { font-size: 15px; color: var(--body); line-height: 1.5; margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { display: block; background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 30px; transition: border-color 0.2s, transform 0.2s; }
.service-card:hover { border-color: var(--tan); transform: translateY(-3px); }
.service-card .hex--icon { display: block; margin-bottom: 20px; }
.service-card__title { font-family: var(--serif); font-size: 23px; color: var(--ink); margin: 0 0 8px; }
.service-card__body { font-size: 15px; color: var(--body); line-height: 1.55; margin: 0; }

/* ---------- work ---------- */
.work .section-head { margin-bottom: 48px; }
.project { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; margin-bottom: 72px; }
.project:last-child { margin-bottom: 0; }
.project--flip { grid-template-columns: 1.15fr 0.85fr; }
.project--flip .browser { order: 1; }
.project--flip .project__text { order: 2; }
.project__eyebrow { font-family: var(--label); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tan); font-weight: 600; }
.project__name { font-family: var(--serif); font-size: 34px; color: var(--ink); margin: 12px 0 14px; }
.project__name a { color: inherit; display: inline-flex; align-items: baseline; gap: 0.25em; }
.project__name a:hover { color: var(--tan); }
.project__ext { font-family: var(--sans); font-size: 0.55em; color: var(--tan); transition: transform 0.2s; }
.project__name a:hover .project__ext { transform: translate(2px, -2px); }
.project__text p { font-size: 16px; color: var(--body); line-height: 1.6; margin: 0 0 20px; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.tag { font-size: 13px; background: var(--tag); color: var(--tag-text); padding: 6px 12px; border-radius: 999px; }

.browser { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: #fff; }
.browser__bar { display: flex; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--border-soft); background: var(--cream); }
.browser__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--dot); }
.carousel { position: relative; overflow: hidden; height: 340px; touch-action: pan-y; }
.carousel__track { display: flex; height: 100%; transition: transform 0.4s ease; margin: 0; padding: 0; list-style: none; }
.carousel__slide { min-width: 100%; height: 100%; background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.carousel--mat .carousel__slide { background: var(--deck-mat); align-items: flex-start; }
.carousel__slide img { width: 100%; height: auto; display: block; user-select: none; -webkit-user-drag: none; }
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); background: rgba(255, 255, 255, 0.92); color: var(--body); font-size: 18px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); padding: 0 0 2px;
  transition: border-color 0.2s, color 0.2s;
}
.carousel__btn:hover { border-color: var(--tan); color: var(--tan); }
.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }
.carousel__dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 7px; }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: var(--dot); transition: background-color 0.2s; }
.carousel__dot[aria-current="true"] { background: var(--tan); }

/* ---------- pricing ---------- */
.pricing .section-head { margin-bottom: 48px; }
.pricing .h2 { margin-bottom: 12px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 30px; display: flex; flex-direction: column; }
.price-card__title { font-family: var(--serif); font-size: 24px; color: var(--ink); margin: 0 0 6px; }
.price-card__sub { font-size: 14px; color: var(--body); line-height: 1.4; margin: 0 0 14px; height: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.price-rows { margin: 0; padding: 0; list-style: none; }
.price-row { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 16px; min-height: 62px; padding: 13px 0; border-top: 1px solid var(--border); }
.price-row__label { font-size: 15px; color: var(--ink); line-height: 1.35; }
.price-row__sub { font-size: 13px; color: var(--muted); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.price-row__figure { font-family: var(--serif); font-size: 21px; color: var(--ink); white-space: nowrap; }
.price-card__includes { border-top: 1px solid var(--border); padding: 18px 0 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 9px; list-style: none; }
.price-card__includes li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--body); }
.price-card__timeline { font-family: var(--label); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--tan); margin: 0 0 22px; }
.price-card__cta { margin-top: auto; text-align: center; border: 1px solid var(--border-strong); color: var(--ink); padding: 12px; border-radius: 999px; font-weight: 600; font-size: 15px; }
.price-card__cta:hover { border-color: var(--body); color: var(--ink); }

.price-card--dark { background: var(--ink-soft); border-color: var(--ink-soft); }
.price-card--dark .price-card__title { color: var(--cream); }
.price-card--dark .price-card__sub { color: var(--on-dark-sub); }
.price-card--dark .price-row { border-top-color: var(--border-dark); }
.price-card--dark .price-row__label, .price-card--dark .price-row__figure { color: var(--cream); }
.price-card--dark .price-row__sub { color: var(--muted-light); }
.price-card--dark .price-card__includes { border-top-color: var(--border-dark); }
.price-card--dark .price-card__includes li { color: var(--on-dark-sub); }
.price-card--dark .price-card__timeline { color: var(--tan-soft); }
.price-card--dark .price-card__cta { background: var(--tan); border-color: var(--tan); color: #fff; }
.price-card--dark .price-card__cta:hover { background: var(--tan-hover); border-color: var(--tan-hover); color: #fff; }

.vcheck { margin-top: 20px; background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 26px 30px; display: grid; grid-template-columns: minmax(220px, 1fr) auto; gap: 24px 40px; align-items: center; scroll-margin-top: calc(var(--nav-h) + 24px); }
.vcheck__text { font-size: 14px; color: var(--body); line-height: 1.5; margin: 0; }
.vcheck__form { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.vcheck__input { font-size: 15px; padding: 13px 15px; border-radius: 10px; border: 1px solid var(--border); background: #fff; color: var(--ink); width: 180px; }
.vcheck__input::placeholder { color: var(--muted); }
.vcheck__btn { padding: 14px 24px; font-size: 15px; border: none; white-space: nowrap; }
.vcheck__done { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--ink); }
.vcheck__done .check { width: 40px; height: 40px; font-size: 18px; margin: 0; flex: none; }
.vcheck__error { grid-column: 1 / -1; margin: -8px 0 0; }

.alongside { margin-top: 20px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px 30px; display: flex; flex-wrap: wrap; gap: 28px 48px; align-items: center; }
.alongside .eyebrow { font-size: 12px; }
.alongside__item { flex: 1 1 240px; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.alongside__label { font-size: 15px; color: var(--ink); }
.alongside__sub { font-size: 13px; color: var(--muted); margin-top: 3px; }
.pricing__note { text-align: center; font-size: 15px; color: var(--muted); margin: 28px 0 0; }

/* ---------- testimonials ---------- */
.testimonials { padding: var(--section-y) 0; overflow: hidden; }
.testimonials .container { padding-bottom: 40px; }
.marquee { --card-w: 360px; --gap: 20px; --speed: 46s; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: var(--gap); width: max-content; padding: 0 calc(var(--gap) / 2); margin: 0; list-style: none; animation: marquee var(--speed) linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.quote-card { width: var(--card-w); background: var(--cream-raised); border: 1px solid var(--border); border-radius: 16px; padding: 28px; margin: 0; display: flex; flex-direction: column; justify-content: space-between; }
.quote-card blockquote { font-size: 16px; color: var(--body-dim); line-height: 1.6; margin: 0 0 20px; }
.quote-card figcaption { display: flex; align-items: center; gap: 12px; }
.quote-card__name { font-weight: 600; font-size: 14px; color: var(--ink); }
.quote-card__role { font-size: 13px; color: var(--muted); }

/* ---------- quote form ---------- */
.quote { background: var(--ink-soft); color: var(--cream); scroll-margin-top: 0; }
.quote__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.quote .eyebrow { color: var(--tan-soft); }
.quote__title { font-family: var(--serif); font-weight: 500; font-size: 44px; line-height: 1.08; color: var(--cream); margin: 16px 0 20px; }
.quote__lede { font-size: 17px; color: var(--footer-text); line-height: 1.6; margin: 0 0 28px; }
.assurances { display: flex; flex-direction: column; gap: 16px; margin: 0; padding: 0; list-style: none; }
.assurances li { display: flex; gap: 12px; align-items: center; font-size: 15px; color: var(--on-dark-list); }
.panel { background: var(--cream); border-radius: 20px; padding: 36px; color: var(--ink); }
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 13px; color: var(--body); font-weight: 600; }
.field__control {
  font-family: var(--sans); font-size: 15px; font-weight: 400; padding: 12px 14px; border: 1px solid var(--border-input);
  border-radius: 10px; background: #fff; color: var(--ink); width: 100%; transition: border-color 0.2s;
}
.field__control::placeholder { color: var(--muted); }
select.field__control {
  -webkit-appearance: none; appearance: none; padding-right: 38px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%236a655b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
textarea.field__control { resize: vertical; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--tan) !important; }
.field__control[aria-invalid="true"] { border-color: #b4533a; }
.form__submit { padding: 15px; border: none; font-weight: 700; font-size: 16px; width: 100%; }
.form__submit[disabled] { opacity: 0.7; cursor: progress; }
.form__note { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 2px 0 0; text-align: center; }
.form__note a { color: var(--tan); text-decoration: underline; }
.form__error { font-size: 14px; color: #a2432c; margin: 0; text-align: center; line-height: 1.5; }
.form__error a { color: inherit; text-decoration: underline; }
.hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.success { text-align: center; padding: 48px 12px; }
.check { width: 56px; height: 56px; border-radius: 50%; background: var(--tag); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; color: var(--tan); font-size: 26px; }
.success__title { font-family: var(--serif); font-size: 28px; color: var(--ink); margin: 0 0 10px; }
.success__text { font-size: 16px; color: var(--body); line-height: 1.6; margin: 0 0 24px; }
.success .btn { padding: 12px 24px; font-size: 15px; }

/* ---------- book ---------- */
.book__head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.book__head .h2 { margin-bottom: 12px; }
.book__cta { text-align: center; }

/* ---------- faq ---------- */
.faq { background: var(--cream-raised); border-top: 1px solid var(--border); }
.faq__inner { max-width: 900px; }
.faq__head { text-align: center; margin-bottom: 48px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 4px 24px; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; font-family: var(--serif); font-size: 20px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq__plus { transition: transform 0.2s; color: var(--tan); font-size: 24px; font-weight: 300; line-height: 1; flex: none; }
.faq details[open] .faq__plus { transform: rotate(45deg); }
.faq details p { font-size: 16px; color: var(--body); line-height: 1.6; margin: 0 0 20px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--footer-text); }
.footer__grid { padding-top: 72px; padding-bottom: 40px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer .logo { margin-bottom: 18px; }
.footer .logo__word { color: var(--cream); }
.footer__about { font-size: 15px; line-height: 1.6; color: var(--footer-body); margin: 0 0 20px; max-width: 300px; }
.footer__cta { display: inline-block; background: var(--tan); color: #fff; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; }
.footer__cta:hover { background: var(--tan-hover); color: #fff; }
.footer__heading { font-family: var(--label); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--footer-dim); margin: 0 0 16px; font-weight: 400; }
.footer__links { display: flex; flex-direction: column; gap: 12px; font-size: 15px; margin: 0; padding: 0; list-style: none; }
.footer__links a { color: var(--footer-text); }
.footer__links a:hover { color: #fff; }
.footer__bar { padding-top: 24px; padding-bottom: 24px; border-top: 1px solid var(--footer-rule); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 14px; color: var(--footer-dim); }

/* ---------- mobile sticky bar ---------- */
.stickybar { display: none; }

/* ---------- legal pages ---------- */
.legal-nav { background: rgba(250, 247, 241, 0.9); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.legal-nav__inner { max-width: 900px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; }
.legal-nav__back { font-size: 15px; color: var(--body); }
.legal-nav__back:hover { color: var(--tan); }
.legal { max-width: 760px; margin: 0 auto; padding: 72px 32px 96px; }
.legal .eyebrow { gap: 0; }
.legal h1 { font-family: var(--serif); font-weight: 500; font-size: 52px; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); margin: 16px 0 10px; }
.legal__date { font-size: 15px; color: var(--muted); margin: 0 0 8px; }
.legal__intro { font-size: 18px; color: var(--body); line-height: 1.65; margin: 24px 0 0; }
.legal__rule { height: 1px; background: var(--border); margin: 40px 0; }
.legal h2 { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--ink); margin: 0 0 12px; }
.legal p, .legal ul { font-size: 17px; color: var(--body-dim); line-height: 1.7; margin: 0 0 32px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--tan); }
.legal a:hover { color: var(--tag-text); }
.legal-footer { background: var(--ink); color: var(--footer-dim); }
.legal-footer__inner { max-width: 900px; margin: 0 auto; padding: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 14px; }
.legal-footer__links { display: flex; gap: 24px; }
.legal-footer__links a { color: var(--footer-text); }
.legal-footer__links a:hover { color: #fff; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1199px) {
  .hero__stats { flex-wrap: wrap; }
}

@media (max-width: 1100px) {
  .price-row__label-wrap { min-width: 0; }
  .price-grid { grid-template-columns: 1fr; max-width: 720px; }
  .price-card__sub { height: auto; white-space: normal; }
  .vcheck { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 56px; }
}

@media (max-width: 920px) {
  :root { --nav-h: 65px; }
  .nav__inner { padding-top: 14px; padding-bottom: 14px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav[data-open="true"] .nav__menu { display: flex; }
  .nav__menu { flex-direction: column; gap: 4px; padding: 8px var(--gutter) 20px; border-top: 1px solid var(--border); }
  .nav__menu a { padding: 12px 0; font-size: 16px; color: var(--body-dim); border-bottom: 1px solid var(--border-soft); }
  .nav__menu a:hover { color: var(--tan); }
  .nav__menu .btn { margin-top: 12px; padding: 13px; font-size: 15px; border-bottom: none; color: var(--cream); }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { display: contents; }
  .hero__grid > * , .hero__copy > * { order: 1; }
  .hero__eyebrow { margin-top: 48px; }
  .hero__grid { gap: 24px; }
  .hero__media { order: 2; min-height: 0; height: 420px; margin: 8px 0 0; }
  .hero__stats { order: 3; margin-top: 0; }
  .hero__lede { max-width: 620px; }

  .project, .project--flip { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .project .browser { order: 1; }
  .project .project__text { order: 2; }
  .carousel { height: auto; aspect-ratio: 16 / 10.5; }

  .quote__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; --section-y: 56px; --nav-h: 73px; }

  .logo__word { font-size: 21px; }
  .logo { gap: 9px; }
  .eyebrow { font-size: 12px; }
  .h2 { font-size: 32px; line-height: 1.1; margin-top: 12px; }
  .lede { font-size: 15px; }

  .hero__eyebrow { margin-top: 32px; font-size: 12px; }
  .hero__eyebrow .hex { display: none; }
  .hero__grid { gap: 20px; }
  .hero__title { font-size: 40px; line-height: 1.05; }
  .hero__lede { font-size: 17px; }
  .hero__ctas { flex-direction: column; gap: 12px; margin-top: 4px; }
  .hero__ctas .btn { width: 100%; padding: 15px; }
  .hero__media { height: 300px; border-radius: 16px; margin-top: 12px; }
  .hero__stats { justify-content: space-between; gap: 12px; padding-top: 20px; flex-wrap: nowrap; margin-top: 8px; }
  .stat__value { font-size: 24px; }
  .stat__label { font-size: 12px; }
  .stat .d-only { display: none; }
  .stat .m-only { display: inline; }

  .trust { padding-top: 32px; padding-bottom: 32px; }
  .trust__label { font-size: 11px; margin-bottom: 16px; }
  .trust__names { font-size: 18px; gap: 22px; }

  .services { margin-top: 0; }
  .services .h2 { margin-bottom: 8px; }
  .steps { margin: 20px 0 28px; }
  .step { padding: 18px 20px; min-width: 100%; }
  .service-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { border-radius: 14px; padding: 22px; }
  .service-card .hex--icon { display: none; }
  .service-card__title { font-size: 20px; margin-bottom: 6px; }
  .service-card__body { font-size: 14px; line-height: 1.5; }
  .service-card:hover { transform: none; }

  .work .section-head { margin-bottom: 28px; }
  .project, .project--flip { gap: 18px; margin-bottom: 48px; }
  .project__eyebrow { font-size: 11px; }
  .project__name { font-size: 26px; margin: 8px 0 10px; }
  .project__text p { font-size: 15px; margin-bottom: 14px; }
  .tag { font-size: 12px; padding: 5px 11px; }
  .browser { border-radius: 14px; }
  .browser__bar { padding: 10px 14px; }
  .browser__bar span { width: 8px; height: 8px; }
  .carousel__btn { width: 40px; height: 40px; }
  .carousel__btn--prev { left: 8px; }
  .carousel__btn--next { right: 8px; }

  .pricing .section-head { margin-bottom: 24px; }
  .pricing .h2 { margin-bottom: 8px; }
  .price-grid { gap: 14px; }
  .price-card { border-radius: 14px; padding: 24px; }
  .price-card__title { font-size: 21px; margin-bottom: 4px; }
  .price-card__sub { margin-bottom: 10px; }
  .price-row { min-height: 0; padding: 12px 0; gap: 12px; }
  .price-row__label { font-size: 14px; }
  .price-row__sub { font-size: 12px; margin-top: 2px; }
  .price-row__figure { font-size: 18px; }
  .price-card__includes { padding-top: 14px; margin: 2px 0 14px; gap: 8px; }
  .price-card__includes li { font-size: 13px; gap: 8px; }
  .price-card__includes .hex--xs { width: 6px; height: 7px; }
  .price-card__timeline { font-size: 11px; margin-bottom: 16px; }
  .price-card__cta { font-size: 14px; }
  .vcheck { border-radius: 14px; padding: 24px; gap: 14px; margin-top: 14px; }
  .vcheck__form { flex-direction: column; align-items: stretch; gap: 10px; }
  .vcheck__input { width: 100%; font-size: 16px; }
  .vcheck__btn { padding: 13px; }
  .alongside { border-radius: 14px; padding: 24px; gap: 0; margin-top: 14px; }
  .alongside .eyebrow { font-size: 11px; width: 100%; }
  .alongside .eyebrow .hex { display: none; }
  .alongside__item { flex-basis: 100%; gap: 12px; padding: 14px 0 12px; }
  .alongside__item + .alongside__item { border-top: 1px solid var(--border); padding-top: 12px; padding-bottom: 0; }
  .alongside__label { font-size: 14px; }
  .alongside__sub { font-size: 12px; margin-top: 2px; }
  .alongside .price-row__figure { font-size: 18px; }
  .pricing__note { font-size: 14px; margin-top: 24px; }

  .testimonials .container { padding-bottom: 28px; }
  .marquee { --card-w: 260px; --gap: 14px; --speed: 38s; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
  .quote-card { border-radius: 14px; padding: 22px; }
  .quote-card blockquote { font-size: 14px; margin-bottom: 16px; }
  .quote-card .hex--avatar { display: none; }
  .quote-card__name { font-size: 13px; }
  .quote-card__role { font-size: 12px; }

  .quote__title { font-size: 32px; line-height: 1.1; margin: 12px 0 12px; }
  .quote__lede { font-size: 15px; margin-bottom: 24px; }
  .quote__grid { gap: 32px; }
  .assurances li { font-size: 14px; }
  .panel { border-radius: 18px; padding: 24px; }
  .form { gap: 14px; }
  .form__row { grid-template-columns: 1fr; gap: 14px; }
  .field { gap: 6px; }
  .field__control { font-size: 16px; }
  .success { padding: 32px 8px; }
  .check { width: 52px; height: 52px; font-size: 24px; margin-bottom: 16px; }
  .success__title { font-size: 24px; margin-bottom: 8px; }
  .success__text { font-size: 15px; margin-bottom: 20px; }

  .book__head { margin-bottom: 24px; }
  .book__head .h2 { margin-bottom: 10px; }
  .book__cta .btn { width: 100%; padding: 16px 24px; }

  .faq__head { margin-bottom: 24px; }
  .faq__list { gap: 10px; }
  .faq details { border-radius: 12px; padding: 2px 18px; }
  .faq summary { font-size: 17px; padding: 16px 0; gap: 12px; line-height: 1.3; }
  .faq__plus { font-size: 22px; }
  .faq details p { font-size: 15px; margin-bottom: 16px; }

  .footer__grid { padding-top: 48px; padding-bottom: 32px; gap: 32px 24px; }
  .footer__about { font-size: 14px; }
  .footer__links { font-size: 14px; }
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 6px; font-size: 13px; padding-bottom: calc(24px + 76px + env(safe-area-inset-bottom)); }

  .stickybar {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(250, 247, 241, 0.96); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(110%); transition: transform 0.3s ease; visibility: hidden;
  }
  .stickybar[data-visible="true"] { transform: translateY(0); visibility: visible; }
  .stickybar .btn { flex: 1; min-height: 44px; padding: 12px; font-size: 15px; }

  .legal-nav__inner { padding: 14px 20px; }
  .legal { padding: 48px 20px 64px; }
  .legal h1 { font-size: 40px; }
  .legal__intro { font-size: 17px; }
  .legal h2 { font-size: 24px; }
  .legal p, .legal ul { font-size: 16px; margin-bottom: 28px; }
  .legal-footer__inner { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
  .marquee__track { animation: none; }
  .marquee__track > [aria-hidden="true"] { display: none; }
  .carousel__track, .service-card, .stickybar { transition: none; }
}
