/* ==========================================================================
   DesignWebb
   Concept: "The Shopfront". Warm ivory paper, deep ink, one shop-sign
   vermilion accent. An expressive serif leads; a clean sans does the talking.
   Sections: 1 tokens · 2 base · 3 buttons · 4 nav · 5 hero · 6 marquee
   ========================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  /* colour */
  --ivory: #F6F1E7;
  --paper: #FCFAF5;
  --sand: #EDE5D4;
  --ink: #171310;
  --ink-soft: #3B352D;
  --muted: #5E5549;
  --line: rgba(23, 19, 16, .16);
  --accent: #FF5A2C;          /* fills and highlights */
  --accent-deep: #B93712;     /* accent when used as text on light (AA) */
  --on-dark: #F6F1E7;
  --on-dark-soft: #CFC6B5;
  --line-dark: rgba(246, 241, 231, .18);

  /* type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fs-xs: clamp(.8125rem, .79rem + .1vw, .875rem);
  --fs-sm: clamp(.9375rem, .92rem + .1vw, 1rem);
  --fs-body: clamp(1rem, .96rem + .2vw, 1.125rem);
  --fs-md: clamp(1.125rem, 1.04rem + .4vw, 1.3125rem);
  --fs-lg: clamp(1.3rem, 1.12rem + .8vw, 1.75rem);
  --fs-xl: clamp(1.65rem, 1.3rem + 1.4vw, 2.5rem);
  --fs-2xl: clamp(2.2rem, 1.5rem + 3vw, 4.25rem);
  --fs-3xl: clamp(2.6rem, 1.4rem + 5vw, 6.25rem);
  --fs-hero: clamp(3rem, 1.6rem + 5.3vw, 7.25rem);

  /* spacing (4px based) */
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem; --sp-5: 1.5rem;
  --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4.5rem; --sp-9: 6rem;
  --section-y: clamp(5rem, 3.4rem + 7vw, 10rem);
  --gutter: clamp(1.25rem, .6rem + 3.2vw, 4rem);

  /* shape */
  --r-sm: 10px; --r-md: 18px; --r-lg: 28px; --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(23, 19, 16, .06), 0 10px 28px -12px rgba(23, 19, 16, .18);
  --sh-2: 0 2px 4px rgba(23, 19, 16, .08), 0 30px 60px -24px rgba(23, 19, 16, .38);
  --ease: cubic-bezier(.22, .7, .2, 1);
  --nav-h: 84px;
}

/* ---------- 2. BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 5rem; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
/* paper grain, tiny and static */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .09 0 0 0 0 .07 0 0 0 0 .06 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
::selection { background: var(--accent); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--ivory);
  border-radius: 6px;
}

.wrap { width: min(100% - 2 * var(--gutter), 1320px); margin-inline: auto; }
.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip {
  position: fixed; left: 1rem; top: -4rem; z-index: 200; padding: .8rem 1.2rem; border-radius: var(--r-pill);
  background: var(--ink); color: var(--ivory); font-weight: 600; text-decoration: none; transition: top .2s;
}
.skip:focus { top: 1rem; }

/* headings */
.h1-lite, .h2, .hero__title, .footer__word, .step__n, .plan__amt, .why__n, .success__t {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 340;
  letter-spacing: -.028em;
}
.h2 { font-size: var(--fs-2xl); line-height: 1.02; text-wrap: balance; max-width: 16ch; }
.h1-lite { font-size: var(--fs-3xl); line-height: .98; letter-spacing: -.035em; text-wrap: balance; }
.h2 em, .h1-lite em, .hero__title em { font-style: italic; font-weight: 320; }
h3 { font-family: var(--font-display); font-weight: 420; letter-spacing: -.015em; line-height: 1.12; font-size: var(--fs-lg); }
.lede { font-size: var(--fs-md); line-height: 1.55; color: var(--ink-soft); max-width: 46ch; text-wrap: pretty; }
.lede--dark { color: var(--on-dark-soft); }

/* editorial section label:  01 / Services */
.label {
  display: flex; align-items: baseline; gap: .55em; margin-bottom: var(--sp-5);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
}
.label__n { color: var(--accent-deep); font-variant-numeric: tabular-nums; }
.label__s { font-weight: 400; }
.label--dark { color: var(--on-dark-soft); }
.label--dark .label__n { color: var(--accent); }

.section { padding-block: var(--section-y); position: relative; }

/* scroll reveal (only when JS is on; content is visible without it) */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0ms); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- 3. BUTTONS ---------- */
.btn {
  --bg: var(--accent); --fg: var(--ink); --hbg: var(--ink); --hfg: var(--ivory); --bd: transparent;
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .65em;
  min-height: 48px; padding: .7rem 1.5rem; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600; line-height: 1.1; letter-spacing: .005em;
  color: var(--fg); background: var(--bg); border: 1.5px solid var(--bd); text-decoration: none; text-align: center;
  transition: color .35s var(--ease), border-color .35s var(--ease), transform .25s var(--ease), box-shadow .35s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; background: var(--hbg);
  transform: translateY(102%); border-radius: 50% 50% 0 0 / 90% 90% 0 0;
  transition: transform .55s var(--ease), border-radius .55s var(--ease);
}
.btn .arr { width: 1.2em; height: 1.2em; flex: none; stroke: currentColor; transition: transform .35s var(--ease); }
@media (hover: hover) {
  .btn:hover { color: var(--hfg); border-color: var(--hbg); }
  .btn:hover::before { transform: translateY(0); border-radius: 0; }
  .btn:hover .arr { transform: translateX(4px); }
}
.btn:active { transform: scale(.97); }
.btn--ghost { --bg: transparent; --bd: var(--ink); --fg: var(--ink); --hbg: var(--ink); --hfg: var(--ivory); }
.btn--sm { min-height: 44px; padding: .55rem 1.2rem; }
.btn--lg { min-height: 58px; padding: .9rem 1.9rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }
.arr { fill: none; }

/* ---------- 4. NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--nav-h);
  transition: height .45s var(--ease), background-color .45s, box-shadow .45s;
}
.nav.is-scrolled {
  height: 64px; background: rgba(246, 241, 231, .86); box-shadow: 0 1px 0 var(--line);
  -webkit-backdrop-filter: saturate(1.3) blur(14px); backdrop-filter: saturate(1.3) blur(14px);
}
.nav__in { height: 100%; display: flex; align-items: center; gap: var(--sp-4); }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; min-height: 44px; }
.brand__mark { width: 34px; height: 34px; transition: transform .45s var(--ease); }
.nav.is-scrolled .brand__mark { transform: scale(.88); }
.brand__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 520; letter-spacing: -.03em; line-height: 1; }
.brand__name em { font-style: italic; font-weight: 400; color: var(--accent-deep); }
.brand--light .brand__name em { color: var(--accent); }

.nav__links { display: none; align-items: center; gap: .15rem; margin-right: var(--sp-3); }
.nav__links a {
  position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: .5rem .85rem;
  font-size: .95rem; font-weight: 500; text-decoration: none; color: var(--ink-soft);
  transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .55rem; height: 2px; border-radius: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current] { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current]::after { transform: scaleX(1); }
.nav__cta { display: none; }
.nav__progress {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--accent);
  transform: scaleX(var(--p, 0)); transform-origin: left; opacity: 0; transition: opacity .3s;
}
.nav.is-scrolled .nav__progress { opacity: 1; }

.menu-btn {
  position: relative; width: 48px; height: 48px; flex: none; border-radius: 50%;
  background: transparent; border: 1.5px solid var(--ink); padding: 0;
  transition: background-color .3s;
}
.menu-btn i { position: absolute; left: 13px; right: 13px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .45s var(--ease), background-color .3s; }
.menu-btn i:nth-of-type(1) { top: 18px; }
.menu-btn i:nth-of-type(2) { top: 26px; }
.menu-btn[aria-expanded="true"] i:nth-of-type(1) { transform: translateY(4px) rotate(45deg); }
.menu-btn[aria-expanded="true"] i:nth-of-type(2) { transform: translateY(-4px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 55; background: var(--ivory); overflow-y: auto;
  padding: calc(var(--nav-h) + 1.5rem) 0 2rem;
  visibility: hidden; clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease), visibility 0s .65s;
}
.menu.is-open { visibility: visible; clip-path: inset(0); transition: clip-path .65s var(--ease), visibility 0s; }
.menu__in { display: flex; flex-direction: column; }
.menu__in > a:not(.btn) {
  display: flex; align-items: baseline; gap: 1rem; min-height: 64px; padding-block: .6rem;
  font-family: var(--font-display); font-size: clamp(2.2rem, 9vw, 3.4rem); font-weight: 340; letter-spacing: -.03em; line-height: 1.1;
  text-decoration: none; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .6s var(--ease);
}
.menu__in > a:not(.btn) span { font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600; letter-spacing: .12em; color: var(--accent-deep); }
.menu.is-open .menu__in > a:not(.btn) { opacity: 1; transform: none; }
.menu.is-open .menu__in > a:nth-child(1) { transition-delay: .18s; }
.menu.is-open .menu__in > a:nth-child(2) { transition-delay: .23s; }
.menu.is-open .menu__in > a:nth-child(3) { transition-delay: .28s; }
.menu.is-open .menu__in > a:nth-child(4) { transition-delay: .33s; }
.menu.is-open .menu__in > a:nth-child(5) { transition-delay: .38s; }
.menu.is-open .menu__in > a:nth-child(6) { transition-delay: .43s; }
.menu__cta { margin-top: var(--sp-6); }
.menu__mail { margin-top: var(--sp-5); font-size: var(--fs-sm); color: var(--muted); }
body.menu-open { overflow: hidden; }

@media (min-width: 720px) { .nav__cta { display: inline-flex; } }
@media (min-width: 1060px) {
  .nav__links { display: flex; }
  .menu-btn, .menu { display: none; }
}

/* ---------- 5. HERO ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(1.5rem, 4vw, 4rem)); padding-bottom: clamp(3.5rem, 6vw, 7rem); overflow: clip; }
.hero__grid { display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: start; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem; margin-bottom: var(--sp-5);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-soft);
}
.eyebrow__dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.eyebrow__dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px solid var(--accent); animation: ping 2.6s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(.4); opacity: .9; } 80%, 100% { transform: scale(1.5); opacity: 0; } }

.hero__title { font-size: var(--fs-hero); line-height: .94; letter-spacing: -.045em; font-weight: 330; text-wrap: balance; }
.hero__title .hl em {
  padding-inline: .04em; font-weight: 300;
  background: linear-gradient(transparent 66%, var(--accent) 66% 92%, transparent 92%) no-repeat 0 0 / 0% 100%;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  animation: hl 1.1s .9s var(--ease) forwards;
}
@keyframes hl { to { background-size: 100% 100%; } }
.hero__lede { margin-top: clamp(1.5rem, 2.6vw, 2.25rem); max-width: 40ch; font-size: var(--fs-md); line-height: 1.55; color: var(--ink-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: clamp(1.75rem, 3vw, 2.5rem); }
.hero__facts { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin-top: var(--sp-6); font-size: var(--fs-sm); font-weight: 500; color: var(--ink-soft); }
.hero__facts li { display: inline-flex; align-items: center; gap: .5rem; }
.hero__facts svg { width: 18px; height: 18px; color: var(--accent-deep); stroke: currentColor; fill: none; }

.rise { animation: rise 1.05s var(--ease) both; animation-delay: calc(var(--i, 0) * 90ms); }
.rise:not(h1) { animation-name: rise-fade; }
@keyframes rise { from { transform: translateY(38px); } to { transform: none; } }
@keyframes rise-fade { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* hero visual: browser + phone in an arched "shop window" */
.hero__visual { position: relative; isolation: isolate; width: 100%; max-width: 660px; margin-inline: auto; padding: 4% 0 2%; }
.hero__visual::before, .hero__visual::after {
  content: ""; position: absolute; z-index: -1; border-radius: 999px 999px var(--r-lg) var(--r-lg);
}
.hero__visual::before { inset: 0 3% 0 12%; background: var(--sand); }
.hero__visual::after { inset: 2.5% 0 -2.5% 15%; border: 1.5px solid var(--ink); opacity: .85; }
.hv { position: relative; aspect-ratio: 1 / 1.02; --px: 0; --py: 0; }
.hv__browser { position: absolute; left: -2%; top: 19%; width: 92%; transform: translate3d(calc(var(--px) * -10px), calc(var(--py) * -8px), 0) rotate(-2.4deg); transition: transform .5s var(--ease); }
.hv__phone { position: absolute; right: 0; bottom: 1%; width: 33%; transform: translate3d(calc(var(--px) * 14px), calc(var(--py) * 12px), 0) rotate(3deg); transition: transform .5s var(--ease); }
.hv__float--a { animation: float 9s ease-in-out infinite; }
.hv__float--b { animation: float 7s ease-in-out -2s infinite; }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }

.badge {
  position: absolute; z-index: 3; right: 4%; top: 0; width: clamp(84px, 18%, 128px); aspect-ratio: 1; display: grid; place-items: center;
  border-radius: 50%; background: var(--accent); color: var(--ink); text-decoration: none; box-shadow: var(--sh-1);
  transition: transform .5s var(--ease);
}
.badge > svg:first-child { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 26s linear infinite; }
.badge text { font-family: var(--font-body); font-size: 10.2px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; fill: var(--ink); }
.badge__arr { width: 34%; height: 34%; stroke: var(--ink); fill: none; transform: rotate(-45deg); transition: transform .5s var(--ease); }
@media (hover: hover) { .badge:hover { transform: scale(1.06); } .badge:hover .badge__arr { transform: rotate(0); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (min-width: 1000px) {
  .badge { right: auto; left: 0; top: 4%; }
  .hero__grid { grid-template-columns: minmax(0, 1.14fr) minmax(0, .86fr); gap: clamp(1rem, 3vw, 4rem); }
  .hero__visual { margin-top: clamp(0rem, 1vw, 1.5rem); margin-inline: 0 0; max-width: 700px; }
}

/* ---------- 6. MARQUEE ---------- */
.marquee { overflow: hidden; border-block: 1.5px solid var(--ink); background: var(--ivory); padding-block: clamp(.9rem, 1.6vw, 1.3rem); }
.marquee__track { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3rem); width: max-content; animation: marquee 48s linear infinite; padding-right: clamp(1.5rem, 3vw, 3rem); }
.marquee span { font-family: var(--font-display); font-style: italic; font-weight: 340; font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.75rem); letter-spacing: -.02em; line-height: 1.1; white-space: nowrap; }
.marquee i { flex: none; width: 12px; height: 12px; background: var(--accent); transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Sections: 7 services · 8 why · 9 work · 10 process · 11 pricing · 12 about
             13 contact + form · 14 footer · 15 sticky CTA · 16 reduced motion
   ========================================================================== */

/* ---------- 7. SERVICES ---------- */
.services__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
.services__intro .h2 { max-width: 12ch; }
.services__intro .lede { margin-top: var(--sp-5); }
.services__intro .btn { margin-top: var(--sp-6); }
.svc-list { border-top: 1.5px solid var(--ink); }
.svc {
  position: relative; isolation: isolate; display: grid; grid-template-columns: auto 1fr; gap: 1rem clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.5rem, 2.6vw, 2.25rem); border-bottom: 1px solid var(--line);
}
.svc::before {
  content: ""; position: absolute; inset: 0 -1rem; z-index: -1; background: var(--sand); border-radius: var(--r-sm);
  transform: scaleY(0); transform-origin: bottom; transition: transform .55s var(--ease);
}
.svc__n { min-width: 2.2ch; padding-top: .15em; font-family: var(--font-display); font-style: italic; font-size: var(--fs-lg); color: var(--accent-deep); }
.svc h3 { font-size: var(--fs-xl); font-weight: 360; letter-spacing: -.025em; transition: transform .5s var(--ease); }
.svc p { margin-top: .55rem; max-width: 46ch; color: var(--ink-soft); }
@media (hover: hover) {
  .svc:hover::before { transform: scaleY(1); }
  .svc:hover h3 { transform: translateX(8px); }
}
@media (min-width: 1000px) {
  .services__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(3rem, 7vw, 8rem); }
  .services__intro { position: sticky; top: 7rem; align-self: start; }
}

/* ---------- 8. WHY ---------- */
.why { background: var(--ink); color: var(--on-dark); padding-top: calc(var(--section-y) + 2rem); }
.awning {
  position: absolute; top: 0; left: 0; right: 0; height: 44px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 44px, var(--ivory) 44px 88px);
  -webkit-mask: radial-gradient(circle at 50% 0, #000 21.5px, transparent 22px) 0 100% / 44px 22px repeat-x, linear-gradient(#000, #000) 0 0 / 100% 22px no-repeat;
  mask: radial-gradient(circle at 50% 0, #000 21.5px, transparent 22px) 0 100% / 44px 22px repeat-x, linear-gradient(#000, #000) 0 0 / 100% 22px no-repeat;
}
.why .h1-lite { max-width: 13ch; margin-bottom: clamp(3rem, 6vw, 6rem); }
.why .h1-lite em { color: var(--accent); }
.why__grid { display: grid; gap: 2.5rem 3rem; grid-template-columns: 1fr; }
.why__item { padding-top: 1.5rem; border-top: 1px solid var(--line-dark); }
.why__n { display: block; margin-bottom: 1rem; font-size: var(--fs-xl); font-style: italic; font-weight: 300; line-height: 1; color: var(--accent); }
.why__item h3 { margin-bottom: .6rem; color: var(--on-dark); font-size: var(--fs-lg); }
.why__item p { max-width: 30ch; color: var(--on-dark-soft); }
.why__cta { margin-top: clamp(3rem, 6vw, 5rem); }
.sign { display: none; position: absolute; z-index: 2; top: 44px; right: clamp(2rem, 9vw, 11rem); width: 168px; transform-origin: 50% 0; animation: swing 6s ease-in-out infinite; }
.sign__cord { position: absolute; left: 50%; top: 0; width: 100px; height: 66px; margin-left: -50px; stroke: var(--on-dark-soft); stroke-width: 2; fill: none; }
.sign__board { position: relative; margin-top: 62px; display: grid; justify-items: center; gap: .1rem; padding: 1.1rem .5rem 1.2rem; border-radius: 18px; background: var(--accent); color: var(--ink); text-align: center; box-shadow: 0 0 0 4px var(--ink), 0 0 0 6px var(--accent), 0 24px 40px -18px rgba(0, 0, 0, .8); }
.sign__small { font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.sign__big { margin-block: .15rem .3rem; font-family: var(--font-display); font-size: 3.2rem; font-style: italic; font-weight: 400; line-height: 1; letter-spacing: -.03em; }
@keyframes swing { 0%, 100% { transform: rotate(-3.5deg); } 50% { transform: rotate(3.5deg); } }
@media (min-width: 900px) { .sign { display: block; } }
.why .btn--primary, .contact .btn--primary, .footer .btn--primary { --hbg: var(--ivory); --hfg: var(--ink); }
.why :focus-visible, .contact :focus-visible, .footer :focus-visible { outline-color: var(--ivory); box-shadow: 0 0 0 2px var(--ink); }
@media (min-width: 720px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) {
  .why__grid { grid-template-columns: repeat(4, 1fr); }
  .why__item:nth-child(2) { margin-top: 3rem; }
  .why__item:nth-child(3) { margin-top: 6rem; }
  .why__item:nth-child(4) { margin-top: 9rem; }
  .why__cta { margin-top: calc(-1 * clamp(2rem, 5vw, 5rem)); }
}

/* ---------- 9. OUR WORK ---------- */
.work-sec { background: var(--sand); }
.dot, .tag__dot { display: inline-block; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.work-head { display: grid; gap: 2rem; align-items: end; margin-bottom: clamp(3rem, 6vw, 6rem); }
.work-head .h2 { max-width: 14ch; }
.work-note { max-width: 46ch; padding-left: 1.25rem; border-left: 2px solid var(--ink); color: var(--ink-soft); }
.work-note__flag { display: flex; align-items: center; gap: .55rem; margin-bottom: .6rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); }
.work-note__flag .dot { background: var(--accent-deep); }
.work-grid { display: grid; grid-template-columns: 1fr; gap: clamp(3rem, 5vw, 4.5rem) clamp(1.25rem, 3vw, 2.5rem); }

.stage { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--r-lg); background: var(--stage); }
.stage--browser { aspect-ratio: 1 / .8; }
.stage--phone { aspect-ratio: 1 / 1.1; }
.stage .mock { position: absolute; transition: transform .8s var(--ease); }
.stage--browser .mock { left: 8%; right: 8%; top: 50%; width: auto; margin-top: -.3%; translate: 0 -50%; transform: rotate(-1.2deg); }
.stage--phone .mock { left: 50%; top: 9%; width: clamp(150px, 56%, 300px); translate: -50% 0; transform: rotate(-2deg); }
.tag {
  position: absolute; z-index: 4; left: 1rem; top: 1rem; display: inline-flex; align-items: center; gap: .5rem;
  padding: .42rem .85rem; border-radius: var(--r-pill); background: var(--ink); color: var(--ivory);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; line-height: 1;
}
.panel {
  position: absolute; z-index: 5; left: .75rem; right: .75rem; bottom: .75rem; padding: 1.15rem 1.3rem 1.2rem;
  border-radius: var(--r-md); background: var(--pb); color: var(--pf); box-shadow: var(--sh-2);
  opacity: 0; visibility: hidden; transform: translateY(calc(100% + 1rem));
  transition: transform .65s var(--ease), opacity .4s var(--ease), visibility 0s .65s;
}
.panel__t { margin-bottom: .4rem; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--pa); }
.panel__p { font-size: .95rem; line-height: 1.5; }
.panel__meta { display: grid; gap: .55rem; margin-top: .9rem; }
.panel__meta > div { display: flex; align-items: center; gap: .9rem; }
.panel__meta dt { flex: none; min-width: 3.6rem; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.panel__meta dd { font-size: .9rem; }
.sw { display: flex; gap: .45rem; }
.sw li { width: 24px; height: 24px; border-radius: 50%; background: var(--c); box-shadow: 0 0 0 1.5px rgba(255, 255, 255, .45); }
.panel__fine { margin-top: .85rem; font-size: .78rem; opacity: .8; }
.work.is-open .panel { opacity: 1; visibility: visible; transform: none; transition: transform .65s var(--ease), opacity .4s var(--ease), visibility 0s; }
@media (hover: hover) {
  .work .stage:hover .panel { opacity: 1; visibility: visible; transform: none; transition: transform .65s var(--ease), opacity .4s var(--ease), visibility 0s; }
  .work .stage:hover .mock { transform: rotate(0deg) translateY(-1.5%); }
}
.work.is-open .stage .mock { transform: rotate(0deg) translateY(-2%); }
.work__cap { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: .85rem 1rem; padding: 1.15rem .25rem 0; }
.work__cap h3 { font-size: var(--fs-lg); }
.work__cap p { margin-top: .15rem; font-size: var(--fs-sm); color: var(--muted); }
.work__acts { display: flex; flex-wrap: wrap; gap: .5rem; }
.work__live {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; padding: .5rem 1.05rem; flex: none;
  border: 1.5px solid var(--ink); border-radius: var(--r-pill); background: var(--ink); color: var(--ivory); font-size: var(--fs-sm); font-weight: 600;
  transition: background-color .3s, border-color .3s;
}
.work__live svg { width: 16px; height: 16px; flex: none; transition: transform .4s var(--ease); }
@media (hover: hover) { .work__live:hover { background: var(--accent-deep, #B93A14); border-color: var(--accent-deep, #B93A14); } .work__live:hover svg { transform: translate(2px,-2px); } }
.panel__fine a { text-decoration: underline; text-underline-offset: 3px; }
.work__more {
  display: inline-flex; align-items: center; gap: .55rem; min-height: 44px; padding: .5rem 1.05rem; flex: none;
  border: 1.5px solid var(--ink); border-radius: var(--r-pill); background: transparent; font-size: var(--fs-sm); font-weight: 600;
  transition: background-color .3s, color .3s;
}
.work__more svg { width: 16px; height: 16px; stroke: currentColor; fill: none; transition: transform .5s var(--ease); }
.work__more[aria-expanded="true"] { background: var(--ink); color: var(--ivory); }
.work__more[aria-expanded="true"] svg { transform: rotate(45deg); }
@media (hover: hover) { .work__more:hover { background: var(--ink); color: var(--ivory); } }
.work-foot { max-width: 58ch; margin: clamp(3rem, 6vw, 5rem) auto 0; text-align: center; font-size: var(--fs-sm); color: var(--muted); }

@media (min-width: 640px) and (max-width: 899px) {
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
  .stage--browser, .stage--phone { aspect-ratio: 1 / 1.08; }
  .work:nth-child(even) { margin-top: 3rem; }
}
@media (min-width: 900px) {
  .work-head { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
  .work-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); align-items: start; }
  .work--wide { grid-column: span 7; }
  .work--narrow { grid-column: span 5; }
  .work:nth-child(even) { margin-top: clamp(2.5rem, 7vw, 7rem); }
}

/* ---------- 10. PROCESS ---------- */
.process__title { max-width: 16ch; margin-bottom: clamp(3rem, 6vw, 5rem); }
.steps { display: grid; gap: 2.75rem 2rem; grid-template-columns: 1fr; }
.step { position: relative; padding-top: 1.5rem; border-top: 1.5px solid var(--ink); }
.step::before { content: ""; position: absolute; left: 0; top: -6.5px; width: 11px; height: 11px; border-radius: 50%; background: var(--accent); }
.step__n { display: block; margin-bottom: 1rem; font-size: clamp(4.5rem, 3rem + 6vw, 8rem); font-style: italic; font-weight: 300; line-height: .9; letter-spacing: -.04em; transition: color .4s, transform .6s var(--ease); }
.step h3 { font-size: var(--fs-lg); margin-bottom: .6rem; }
.step p { max-width: 30ch; color: var(--ink-soft); }
@media (hover: hover) { .step:hover .step__n { color: var(--accent-deep); transform: translateX(6px); } }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* ---------- 11. PRICING ---------- */
.pricing { background: var(--sand); }
.pricing__head { display: grid; gap: 1.5rem; align-items: end; margin-bottom: clamp(3rem, 6vw, 5rem); }
.pricing__head .h2 { max-width: 14ch; }
.plans { display: grid; gap: 1.5rem; }
.plan { position: relative; display: flex; flex-direction: column; gap: 1.5rem; padding: clamp(1.75rem, 3vw, 2.75rem); border-radius: var(--r-lg); }
.plan h3 { font-size: var(--fs-xl); }
.plan__for { margin-top: .5rem; max-width: 30ch; color: var(--ink-soft); }
.plan__price { display: flex; align-items: baseline; gap: .5rem; }
.plan__from { font-size: var(--fs-sm); font-weight: 500; color: var(--muted); }
.plan__amt { font-size: clamp(4rem, 3rem + 4vw, 6rem); line-height: .9; letter-spacing: -.05em; }
.plan__per { font-size: var(--fs-sm); color: var(--muted); }
.ticks { display: grid; gap: .75rem; padding-top: 1.5rem; border-top: 1px solid var(--line); flex: 1; align-content: start; }
.ticks li { position: relative; padding-left: 2rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .22em; width: 1.2em; height: 1.2em; background: var(--accent-deep);
  -webkit-mask: var(--check) center / contain no-repeat; mask: var(--check) center / contain no-repeat;
  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5' fill='none' stroke='%23000' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.plan--starter { background: var(--paper); border: 1.5px solid var(--ink); }
.plan--business { overflow: hidden; background: var(--ink); color: var(--on-dark); padding-top: calc(clamp(1.75rem, 3vw, 2.75rem) + 34px); box-shadow: var(--sh-2); }
.plan--business .plan__for, .plan--business .plan__from { color: var(--on-dark-soft); }
.plan--business .ticks { border-color: var(--line-dark); }
.plan--business .ticks li::before { background: var(--accent); }
.plan--business .plan__amt { font-size: clamp(4.5rem, 3.2rem + 5.4vw, 8rem); }
.plan--business .btn--primary { --hbg: var(--ivory); --hfg: var(--ink); }
.plan--business :focus-visible { outline-color: var(--ivory); box-shadow: 0 0 0 2px var(--ink); }
.plan__awning {
  position: absolute; top: 0; left: 0; right: 0; height: 30px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 30px, var(--ivory) 30px 60px);
  -webkit-mask: radial-gradient(circle at 50% 0, #000 14.5px, transparent 15px) 0 100% / 30px 15px repeat-x, linear-gradient(#000, #000) 0 0 / 100% 15px no-repeat;
  mask: radial-gradient(circle at 50% 0, #000 14.5px, transparent 15px) 0 100% / 30px 15px repeat-x, linear-gradient(#000, #000) 0 0 / 100% 15px no-repeat;
}
.plan__flag {
  align-self: flex-start; padding: .4rem .9rem; border-radius: var(--r-pill); background: var(--accent); color: var(--ink);
  font-size: .75rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; line-height: 1;
}
.addon {
  position: relative; display: grid; gap: 1.25rem; align-items: center; margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding: clamp(2rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.25rem); border: 1.5px dashed var(--ink); border-radius: var(--r-lg);
}
.addon__plus { position: absolute; top: -22px; left: clamp(1.5rem, 3vw, 2.5rem); display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--sand); border: 1.5px solid var(--ink); }
.addon__plus svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; }
.addon__tag { margin-bottom: .35rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); }
.addon h3 { font-size: var(--fs-xl); }
.addon__main p:last-child { margin-top: .5rem; max-width: 50ch; color: var(--ink-soft); }
.plan__price--sm .plan__amt { font-size: clamp(2.75rem, 2.2rem + 2vw, 4rem); }
.every { display: grid; gap: 1rem 3rem; align-items: center; justify-items: start; margin-top: clamp(2.5rem, 4vw, 3.5rem); padding-top: 2rem; border-top: 1px solid var(--line); }
.every__t { font-family: var(--font-body); font-size: var(--fs-md); font-weight: 600; letter-spacing: 0; }
.every__list { display: flex; flex-wrap: wrap; gap: .65rem 1.75rem; }
.every__list li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; }
.every__list svg { width: 18px; height: 18px; color: var(--accent-deep); stroke: currentColor; fill: none; }
@media (min-width: 900px) {
  .pricing__head { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .plans { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); align-items: end; }
  .addon { grid-template-columns: 1fr auto auto; gap: 2rem 3rem; }
}

/* ---------- 12. ABOUT ---------- */
.about__grid { display: grid; gap: 3.5rem; align-items: center; }
.about__art { order: 2; width: 100%; max-width: 520px; margin-inline: auto; }
.about__art svg { width: 100%; height: auto; }
.about__copy { order: 1; }
.about__copy .h2 { max-width: 17ch; }
.about__copy .lede { margin-top: var(--sp-5); }
.about__copy .lede + p { margin-top: 1rem; max-width: 46ch; color: var(--ink-soft); }
.promises { margin-top: 2.5rem; border-top: 1.5px solid var(--ink); }
.promises li { display: grid; grid-template-columns: 2.2rem 1fr; gap: 1rem; padding-block: 1.25rem; border-bottom: 1px solid var(--line); }
.promises__n { font-family: var(--font-display); font-style: italic; font-size: var(--fs-lg); line-height: 1.1; color: var(--accent-deep); }
.promises h3 { font-size: var(--fs-md); }
.promises p { margin-top: .25rem; max-width: 42ch; color: var(--ink-soft); }
@media (min-width: 1000px) {
  .about__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(3rem, 8vw, 9rem); }
  .about__art { order: 1; margin-inline: 0; position: sticky; top: 8rem; align-self: start; }
  .about__copy { order: 2; }
}

/* ---------- 13. CONTACT + FORM ---------- */
.contact { background: var(--ink); color: var(--on-dark); }
.contact__grid { display: grid; gap: 3rem; align-items: start; }
.contact .h1-lite { max-width: 13ch; font-size: clamp(2.6rem, 1.5rem + 4.2vw, 5.5rem); }
.contact .h1-lite em { color: var(--accent); }
.contact__copy .lede { margin-top: var(--sp-5); }
.mail { margin-top: 2.5rem; }
.mail__label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-soft); }
.mail__row { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; margin-top: .35rem; }
.mail__addr { font-family: var(--font-display); font-size: var(--fs-lg); letter-spacing: -.01em; text-decoration: none; border-bottom: 2px solid var(--accent); padding-block: .5rem .1em; overflow-wrap: anywhere; transition: color .25s; }
@media (hover: hover) { .mail__addr:hover { color: var(--accent); } }
.copy { min-height: 44px; padding: .4rem 1.1rem; border: 1.5px solid rgba(246, 241, 231, .5); border-radius: var(--r-pill); background: transparent; color: var(--on-dark); font-size: .875rem; font-weight: 600; transition: background-color .3s, color .3s, border-color .3s; }
@media (hover: hover) { .copy:hover { background: var(--ivory); color: var(--ink); } }
.copy.is-done { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.next { display: grid; gap: .9rem; margin-top: 2.5rem; color: var(--on-dark-soft); }
.next li { display: flex; align-items: center; gap: 1rem; }
.next span { display: grid; place-items: center; flex: none; width: 34px; height: 34px; border: 1.5px solid var(--accent); border-radius: 50%; font-size: .9rem; font-weight: 600; color: var(--accent); }

.formcard { padding: clamp(1.5rem, 3.5vw, 3rem); border-radius: var(--r-lg); background: var(--ivory); color: var(--ink); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6); }
.formcard :focus-visible { outline-color: var(--ink); box-shadow: 0 0 0 2px var(--ivory); }
.form { display: grid; gap: 1.35rem; }
.form__row { display: grid; gap: 1.35rem; }
.field { display: grid; gap: .5rem; min-width: 0; margin: 0; padding: 0; border: 0; }
.field label, .field legend { padding: 0; font-size: .9375rem; font-weight: 600; }
.opt { font-weight: 400; color: var(--muted); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea, .field select {
  width: 100%; min-height: 52px; padding: .8rem 1rem; border: 1.5px solid #786F63; border-radius: var(--r-sm);
  background: var(--paper); font-size: 1rem; line-height: 1.4; -webkit-appearance: none; appearance: none;
  transition: border-color .25s, background-color .25s, box-shadow .25s;
}
.field textarea { min-height: 7.5rem; resize: vertical; line-height: 1.55; }
.field select { padding-right: 2.75rem; cursor: pointer; }
.field select:invalid { color: var(--muted); }
.field select option { color: var(--ink); }
@media (hover: hover) { .field input:hover, .field textarea:hover, .field select:hover { border-color: var(--ink); } }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); background: #fff; }
.select { position: relative; }
.select::after { content: ""; position: absolute; right: 1.15rem; top: 50%; width: 9px; height: 9px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: translateY(-75%) rotate(45deg); pointer-events: none; }
.field.is-invalid input, .field.is-invalid textarea, .field.is-invalid select { border-color: #B3261E; background: #FFF6F4; }
.field__err { display: none; font-size: .875rem; font-weight: 500; line-height: 1.4; color: #A5211A; }
.field.is-invalid .field__err { display: block; animation: errIn .4s var(--ease); }
@keyframes errIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.seg { display: inline-grid; grid-auto-flow: column; gap: .3rem; width: max-content; max-width: 100%; padding: .3rem; border-radius: var(--r-pill); background: var(--sand); }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.seg span { display: grid; place-items: center; min-width: 5.5rem; min-height: 44px; padding: 0 1.4rem; border-radius: var(--r-pill); font-weight: 600; transition: background-color .3s var(--ease), color .3s var(--ease); }
.seg input:checked + span { background: var(--ink); color: var(--ivory); }
.seg input:focus-visible + span { outline: 3px solid var(--ink); outline-offset: 2px; }
.field--seg.is-invalid .seg { box-shadow: 0 0 0 2px #B3261E; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__error { padding: .9rem 1.1rem; border: 1.5px solid #B3261E; border-radius: var(--r-sm); background: #FCE9E6; color: #6E1810; font-size: .95rem; font-weight: 500; }
.form__error a { font-weight: 700; }
.form__submit { margin-top: .5rem; }
.form__submit[disabled] { opacity: .75; cursor: progress; }
.form__fine { text-align: center; font-size: .875rem; color: var(--muted); }
.success { display: grid; justify-items: center; gap: 1rem; padding: clamp(1.5rem, 4vw, 3rem) 0; text-align: center; }
.success:focus { outline: none; }
.success__tick { width: 84px; height: 84px; color: var(--ink); }
.success__tick circle { stroke-dasharray: 152; stroke-dashoffset: 152; animation: draw .9s .1s var(--ease) forwards; }
.success__tick path { stroke-dasharray: 40; stroke-dashoffset: 40; stroke: var(--accent-deep); animation: draw .6s .7s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.success__t { font-size: var(--fs-xl); line-height: 1.05; }
.success p { max-width: 36ch; color: var(--ink-soft); }
.success__small { font-size: var(--fs-sm); }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) {
  .contact__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(3rem, 7vw, 7rem); }
  .contact__copy { position: sticky; top: 7rem; }
}

/* ---------- 14. FOOTER ---------- */
.footer { background: var(--ink); color: var(--on-dark-soft); padding-top: clamp(3.5rem, 6vw, 5.5rem); border-top: 1px solid var(--line-dark); }
.footer__top { display: grid; gap: 2.75rem; }
.footer__brand { display: grid; justify-items: start; gap: 1.25rem; max-width: 34ch; }
.brand--light { color: var(--on-dark); margin-right: 0; }
.footer__nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; }
.footer__nav a { display: flex; align-items: center; min-height: 44px; color: var(--on-dark); font-size: 1.0625rem; text-decoration: none; transition: color .25s, transform .4s var(--ease); }
@media (hover: hover) { .footer__nav a:hover { color: var(--accent); transform: translateX(6px); } }
.footer__h { margin-bottom: .4rem; font-size: var(--fs-xs); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.footer__contact > a { display: inline-block; padding-block: .5rem; color: var(--on-dark); font-family: var(--font-display); font-size: var(--fs-lg); text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: .25em; overflow-wrap: anywhere; }
.footer__note { max-width: 36ch; margin-top: 1.25rem; font-size: .9rem; }
.footer__word { width: 100%; height: auto; margin-top: clamp(3rem, 6vw, 5rem); overflow: visible; }
.footer__word text { fill: var(--on-dark); font-family: var(--font-display); font-size: 210px; font-weight: 340; letter-spacing: -.04em; }
.footer__base { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem 1.5rem; margin-top: 1.5rem; padding-block: 1.25rem 2rem; border-top: 1px solid var(--line-dark); font-size: .875rem; }
.footer__top-link { display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; color: var(--on-dark); text-decoration: none; }
.arr--up { width: 18px; height: 18px; stroke: currentColor; transform: rotate(-90deg); transition: transform .4s var(--ease); }
@media (hover: hover) { .footer__top-link:hover .arr--up { transform: rotate(-90deg) translateX(4px); } }
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.4fr 1fr 1.3fr; gap: 4rem; } .footer__nav { grid-template-columns: 1fr; } }

/* ---------- 15. STICKY CTA (phones) ---------- */
.sticky-cta {
  position: fixed; z-index: 70; left: 50%; bottom: max(1rem, env(safe-area-inset-bottom)); min-height: 52px; padding-inline: 1.9rem;
  box-shadow: var(--sh-2); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 140%);
  transition: transform .6s var(--ease), opacity .4s var(--ease), visibility 0s .6s, color .35s, border-color .35s;
}
.sticky-cta.is-on { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); transition-delay: 0s; }
.sticky-cta:active { transform: translate(-50%, 0) scale(.97); }
@media (min-width: 720px) { .sticky-cta { display: none; } }

/* ---------- 16. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; animation-delay: 0ms !important; transition-duration: .001ms !important; transition-delay: 0ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .rise { animation: none; }
  .hero__title .hl em { background-size: 100% 100%; animation: none; }
}

/* ==========================================================================
   LEGAL PAGES (privacy.html, terms.html). Plain reading pages that reuse the
   site's tokens. Nothing here affects the main page.
   ========================================================================== */
.legal__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.5rem; }
.legal__bar .brand { margin: 0; }
.legal__back { display: inline-flex; align-items: center; min-height: 44px; font-size: var(--fs-sm); font-weight: 600; color: var(--ink); text-decoration-thickness: 1px; }
.legal__back:hover { color: var(--accent-deep); }
.legal { width: min(100% - 2 * var(--gutter), 46rem); margin-inline: auto; padding-block: clamp(2rem, 1rem + 4vw, 5rem) clamp(4rem, 3rem + 5vw, 8rem); }
.legal h1 { font-family: var(--font-display); font-weight: 350; font-size: var(--fs-2xl); line-height: 1.02; letter-spacing: -.02em; text-wrap: balance; }
.legal__meta { margin-top: 1.25rem; font-size: var(--fs-sm); color: var(--muted); }
.legal__intro { margin-top: 1rem; font-size: var(--fs-md); line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }
.legal section { margin-top: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem); scroll-margin-top: 1.5rem; }
.legal h2 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-lg); line-height: 1.15; letter-spacing: -.01em; }
.legal h3 { margin-top: 1.5rem; font-size: var(--fs-body); font-weight: 650; }
.legal p, .legal li, .legal dd { max-width: 68ch; text-wrap: pretty; }
.legal section p, .legal section ul, .legal section .legal__table, .legal section dl { margin-top: 1rem; }
.legal section h2 + p { margin-top: .85rem; }
.legal ul { display: grid; gap: .6rem; padding-left: 1.25rem; list-style: disc; }
.legal li::marker { color: var(--accent-deep); }
.legal a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: .2em; }
.legal a:hover { color: var(--ink); }
.legal a:focus-visible, .legal__back:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 3px; }
.legal__toc { margin-top: 2rem; padding: 1.25rem 1.5rem; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); }
.legal__toc-h { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.legal__toc ol { margin-top: .75rem; display: grid; gap: .1rem .5rem; list-style: none; counter-reset: toc; }
@media (min-width: 640px) { .legal__toc ol { grid-template-columns: 1fr 1fr; } }
.legal__toc li { counter-increment: toc; }
.legal__toc li a { display: inline-flex; align-items: center; min-height: 44px; font-size: var(--fs-sm); color: var(--ink); text-decoration: none; }
.legal__toc li a::before { content: counter(toc) "."; min-width: 1.75em; color: var(--muted); font-variant-numeric: tabular-nums; }
.legal__toc li a:hover { color: var(--accent-deep); text-decoration: underline; }
.legal__facts { display: grid; gap: 0; border-top: 1px solid var(--line); }
.legal__facts > div { display: grid; grid-template-columns: 9.5rem 1fr; gap: 1rem; padding-block: .85rem; border-bottom: 1px solid var(--line); }
@media (max-width: 560px) { .legal__facts > div { grid-template-columns: 1fr; gap: .15rem; } }
.legal__facts dt { font-size: var(--fs-sm); font-weight: 600; color: var(--muted); }
.legal__facts dd { margin: 0; }
.legal__table { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); }
.legal__table:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.legal table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); line-height: 1.5; }
.legal th, .legal td { padding: .8rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.legal thead th { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: var(--sand); }
.legal tbody tr:last-child td { border-bottom: 0; }
.legal td:first-child { min-width: 13rem; font-weight: 550; }
.legal .ph { padding: .05em .35em; border-radius: 4px; background: #FFE45E; color: #171310; font-weight: 600; }
.legal__foot { border-top: 1px solid var(--line); }
.legal__foot .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .25rem 1.5rem; padding-block: 1.25rem 2rem; font-size: var(--fs-sm); color: var(--muted); }
.legal__foot a { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink); }
.legal__foot nav { display: flex; flex-wrap: wrap; gap: 0 1.25rem; }

/* discreet legal links in the footer base row */
.footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 0 1.25rem; }
.footer__legal a { display: inline-flex; align-items: center; min-height: 44px; color: var(--on-dark-soft); text-decoration: none; }
.footer__legal a:hover, .footer__legal a:focus-visible { color: var(--on-dark); text-decoration: underline; text-underline-offset: .2em; }
.form__fine a { color: inherit; text-decoration: underline; text-underline-offset: .2em; }
.footer__fine { display: flex; flex-wrap: wrap; align-items: center; gap: 0 1.5rem; }
.legal__facts a { display: inline-flex; align-items: center; min-height: 44px; }
.legal__back { white-space: nowrap; }

/* ==========================================================================
   17. CONCEPT MOCK-UPS
   Every mock-up is drawn in CSS. Sizes use cqw (1% of the mock-up's own
   width), so each one scales perfectly from a phone screen to a big monitor.
   All text inside them is generated with CSS (data-t), so it is decoration
   only: screen readers, search engines and audits skip it.
   ========================================================================== */
.mock {
  container-type: inline-size; width: 100%; line-height: 1; pointer-events: none; -webkit-user-select: none; user-select: none;
  font-family: var(--font-body);
}
.mock *, .mock *::before, .mock *::after { margin: 0; box-sizing: border-box; }
.mock i, .mock b, .mock span, .mock em { display: block; font-style: normal; font-weight: inherit; }
.mock .t::before { content: attr(data-t); }
.mock .t { white-space: nowrap; }
.mock svg { display: block; }
.mock .mk-pill { text-align: center; }
.mock .mk-lines { display: flex; flex-direction: column; }
.mock .mk-lines i { background: currentColor; opacity: .24; }

/* --- browser frame --- */
.mock--browser .mk-frame {
  overflow: hidden; border-radius: 1.6cqw; background: #fff;
  box-shadow: 0 0 0 .18cqw rgba(23, 19, 16, .16), 0 3cqw 6cqw -1.6cqw rgba(23, 19, 16, .42), 0 .6cqw 1.6cqw rgba(23, 19, 16, .14);
}
.mock--browser .mk-bar { display: flex; align-items: center; gap: .9cqw; height: 4.4cqw; padding: 0 2cqw; background: #EFE9DD; border-bottom: .15cqw solid rgba(23, 19, 16, .1); }
.mock--browser .mk-bar .d { width: 1.2cqw; height: 1.2cqw; border-radius: 50%; background: #d6cfc0; }
.mock--browser .mk-bar .d:nth-child(1) { background: #f36b5b; }
.mock--browser .mk-bar .d:nth-child(2) { background: #f5bd4f; }
.mock--browser .mk-bar .d:nth-child(3) { background: #5fc35a; }
.mock--browser .mk-bar .mk-url { display: flex; align-items: center; width: 34cqw; height: 2.7cqw; margin-left: 2cqw; padding: 0 1.6cqw; border-radius: 2cqw; background: #fff; color: #6b6357; font-size: 1.4cqw; }
.mock--browser .mk-page { position: relative; display: flex; flex-direction: column; overflow: hidden; aspect-ratio: 16 / 9.7; }
.mock--browser .mk-page > * { position: relative; z-index: 1; }
.mock--browser .mk-head { display: flex; align-items: center; gap: 3cqw; padding: 2.6cqw 4.5cqw; }
.mock--browser .mk-logo { margin-right: auto; }
.mock--browser .mk-nav { display: flex; gap: 2.4cqw; font-size: 1.6cqw; font-weight: 500; }
.mock--browser .mk-hero { display: flex; flex: 1; align-items: center; justify-content: space-between; }
.mock--browser .mk-copy { display: flex; flex-direction: column; align-items: flex-start; }
.mock--browser .mk-lines { gap: .9cqw; margin-top: 2.4cqw; }
.mock--browser .mk-lines i { height: .9cqw; width: 32cqw; border-radius: 1cqw; }
.mock--browser .mk-lines i:nth-child(2) { width: 24cqw; }
.mock--browser .mk-cta { display: flex; gap: 1.4cqw; margin-top: 3cqw; }
.mock--browser .mk-pill { padding: 1.1cqw 2.3cqw; border-radius: 99cqw; font-size: 1.6cqw; font-weight: 700; }
.mock--browser .mk-pill--solid, .mock--browser .mk-pill--ghost { padding: 1.35cqw 2.7cqw; }

/* --- phone frame --- */
.mock--phone .mk-frame {
  position: relative; aspect-ratio: 9 / 19; padding: 2.8cqw; border-radius: 13.5cqw; background: #0d0d0e;
  box-shadow: 0 0 0 .4cqw #34343a, 0 5cqw 9cqw -3cqw rgba(23, 19, 16, .55), 0 1cqw 2.5cqw rgba(23, 19, 16, .25);
}
.mock--phone .mk-frame::before { content: ""; position: absolute; z-index: 5; top: 5.6cqw; left: 50%; width: 26cqw; height: 7cqw; margin-left: -13cqw; border-radius: 4cqw; background: #0d0d0e; }
.mock--phone .mk-page { position: relative; display: flex; flex-direction: column; height: 100%; overflow: hidden; border-radius: 10.8cqw; }
.mock--phone .mk-page > * { position: relative; z-index: 1; }
.mock--phone .mk-head { display: flex; align-items: center; justify-content: space-between; padding: 15.5cqw 7cqw 0; }
.mock--phone .mk-hero { display: flex; flex-direction: column; align-items: flex-start; padding: 8cqw 7cqw 0; }
.mock--phone .mk-lines { gap: 1.5cqw; margin-top: 5cqw; }
.mock--phone .mk-lines i { height: 1.1cqw; width: 62cqw; border-radius: 1cqw; }
.mock--phone .mk-lines i:nth-child(2) { width: 52cqw; }
.mock--phone .mk-lines i:nth-child(3) { width: 38cqw; }
.mock--phone .mk-pill { padding: 3.4cqw 7cqw; border-radius: 99cqw; font-size: 4.2cqw; font-weight: 700; margin-top: 7cqw; }

/* ---------- BARBER (browser): minimalist, monochrome + one lime highlight ---------- */
.m-barber { --bg: #f6f5f1; --fg: #0e0e0e; --mute: #5c5b57; --line: #d9d7d0; --lime: #c8f03c; }
.m-barber .mk-page { background: var(--bg); color: var(--fg); justify-content: space-between; }
.m-barber .mk-head { border-bottom: .15cqw solid var(--line); }
.m-barber .mk-logo { font-family: var(--font-mono, ui-monospace, monospace); font-size: 1.8cqw; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.m-barber .mk-nav { color: var(--mute); }
.m-barber .mk-head > .mk-pill { background: var(--fg); color: var(--bg); }
.m-barber .mk-hero { padding: 0 6cqw 0 5cqw; }
.m-barber .mk-eyebrow { margin-bottom: 2.2cqw; font-family: var(--font-mono, ui-monospace, monospace); font-size: 1.4cqw; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.m-barber .mk-h { font-size: 7.2cqw; font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.m-barber .mk-h--acc { margin-top: .6cqw; padding: 0 1.2cqw .5cqw; margin-left: -1.2cqw; background: var(--lime); border-radius: .8cqw; }
.m-barber .mk-lines i { background: var(--fg); }
.m-barber .mk-pill--solid { background: var(--fg); color: var(--bg); }
.m-barber .mk-pill--ghost { border: .2cqw solid var(--fg); color: var(--fg); }
.m-barber .mk-dial { display: grid; place-items: center; flex: none; width: 21cqw; height: 21cqw; border-radius: 50%; background: var(--lime); font-size: 3.1cqw; font-weight: 500; letter-spacing: -.03em; }
.m-barber .mk-tiles { display: flex; gap: 3cqw; padding: 0 5cqw 3.2cqw; }
.m-barber .mk-tiles i { display: flex; flex: 1; justify-content: space-between; padding-top: 1.6cqw; border-top: .2cqw solid var(--fg); font-size: 1.6cqw; font-weight: 500; }
.m-barber .mk-tiles i::after { content: attr(data-p); font-family: var(--font-mono, ui-monospace, monospace); color: var(--mute); }

/* ---------- RESTAURANT (phone) ---------- */
.m-resto { --bg: #170d0a; --fg: #f1e6d2; --gold: #e0a458; }
.m-resto .mk-page { background: radial-gradient(70% 34% at 74% 15%, rgba(224, 164, 88, .34), transparent 70%), var(--bg); color: var(--fg); }
.m-resto .mk-logo { font-family: var(--font-display); font-size: 5.4cqw; font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.m-resto .mk-logo::before { font-style: italic; }
.m-resto .mk-burger { display: grid; gap: 1.2cqw; width: 6.4cqw; }
.m-resto .mk-burger i { height: .55cqw; border-radius: 1cqw; background: var(--fg); }
.m-resto .mk-hero { position: relative; padding-top: 10cqw; }
.m-resto .mk-eyebrow { margin-bottom: 3.5cqw; font-size: 3cqw; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.m-resto .mk-h { font-family: var(--font-display); font-size: 12.2cqw; font-style: italic; font-weight: 300; letter-spacing: -.03em; line-height: 1; }
.m-resto .mk-h + .mk-h { color: var(--gold); }
.m-resto .mk-pill--solid { background: var(--gold); color: #170d0a; }
.m-resto .mk-candle { position: absolute; right: 7cqw; top: 8cqw; width: 5.4cqw; height: 24cqw; }
.m-resto .wax { position: absolute; left: 0; right: 0; bottom: 0; height: 15cqw; border-radius: 1cqw 1cqw .6cqw .6cqw; background: linear-gradient(90deg, #e2d3b3, #f8eed9 45%, #d3c19b); }
.m-resto .wick { position: absolute; bottom: 15cqw; left: 50%; width: .55cqw; height: 2.6cqw; margin-left: -.27cqw; background: #3a2a20; }
.m-resto .flame {
  position: absolute; bottom: 17.2cqw; left: 50%; width: 3.4cqw; height: 6cqw; margin-left: -1.7cqw; transform-origin: 50% 100%;
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%; background: radial-gradient(60% 70% at 50% 75%, #fff2c2, #ffc35a 55%, #ff8a2a);
  box-shadow: 0 0 7cqw 2.6cqw rgba(255, 180, 80, .5); animation: flicker 2.6s ease-in-out infinite;
}
@keyframes flicker { 0%, 100% { transform: scale(1, 1) rotate(-1deg); } 30% { transform: scale(.93, 1.07) rotate(1.6deg); } 60% { transform: scale(1.05, .95) rotate(-2deg); } }
.m-resto .mk-menu { margin: 13cqw 7cqw 0; padding-top: 4.5cqw; border-top: .3cqw solid rgba(224, 164, 88, .45); }
.m-resto .mk-menu-h { margin-bottom: 3cqw; font-family: var(--font-display); font-size: 5cqw; font-style: italic; color: var(--gold); }
.m-resto .mk-row { display: flex; align-items: baseline; justify-content: space-between; gap: 3cqw; padding: 3.2cqw 0; border-bottom: .25cqw dotted rgba(241, 230, 210, .35); font-size: 3.9cqw; }
.m-resto .mk-row b { font-size: 3cqw; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ---------- PLUMBER (phone) ---------- */
.m-plumb { --bg: #f3f7fb; --navy: #0a2540; --blue: #1662d8; --yel: #ffc82c; }
.m-plumb .mk-page { background: var(--bg); color: var(--navy); }
.m-plumb .mk-head { gap: 2.6cqw; padding-inline: 6cqw; }
.m-plumb .mk-drop { flex: none; width: 6cqw; height: 6cqw; margin: 0 1cqw 0 .8cqw; border-radius: 0 50% 50% 50%; background: var(--blue); transform: rotate(45deg); }
.m-plumb .mk-brand { margin-right: auto; }
.m-plumb .mk-logo { font-size: 4.8cqw; font-weight: 700; letter-spacing: -.01em; }
.m-plumb .mk-sub { margin-top: 1cqw; font-size: 2.8cqw; font-weight: 500; color: #3f566d; }
.m-plumb .mk-call { display: grid; place-items: center; width: 10.5cqw; height: 10.5cqw; border-radius: 50%; background: var(--blue); color: #fff; }
.m-plumb .mk-call svg { width: 5.2cqw; height: 5.2cqw; }
.m-plumb .mk-hero { margin: 7cqw 5cqw 0; padding: 7cqw 6cqw 7cqw; border-radius: 6cqw; background: var(--navy); color: #fff; }
.m-plumb .mk-eyebrow { margin-bottom: 3cqw; font-size: 2.8cqw; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--yel); }
.m-plumb .mk-h { font-size: 10.4cqw; font-weight: 700; letter-spacing: -.035em; line-height: 1.02; }
.m-plumb .mk-h--acc { color: var(--yel); }
.m-plumb .mk-pill--solid { background: var(--yel); color: var(--navy); font-size: 4.8cqw; padding: 3.6cqw 9cqw; }
.m-plumb .mk-list { display: grid; gap: 2.4cqw; margin: 6cqw 5cqw 0; }
.m-plumb .mk-li { display: flex; align-items: center; gap: 3cqw; padding: 3.6cqw 4cqw; border-radius: 3.6cqw; background: #fff; box-shadow: 0 .4cqw 1.6cqw rgba(10, 37, 64, .1); font-size: 4cqw; font-weight: 600; }
.m-plumb .tick { position: relative; flex: none; width: 5.8cqw; height: 5.8cqw; border-radius: 50%; background: var(--blue); }
.m-plumb .tick::after { content: ""; position: absolute; left: 2cqw; top: 1cqw; width: 1.5cqw; height: 2.9cqw; border: solid #fff; border-width: 0 .6cqw .6cqw 0; transform: rotate(45deg); }
.m-plumb .mk-dock { display: grid; grid-template-columns: 1fr 1fr; gap: 2cqw; margin-top: auto; padding: 3cqw 4cqw 5cqw; background: #fff; box-shadow: 0 -1cqw 3cqw rgba(10, 37, 64, .1); }
.m-plumb .mk-dock i { padding: 3.4cqw 2cqw; border-radius: 99cqw; font-size: 3.8cqw; font-weight: 700; text-align: center; background: var(--navy); color: #fff; }
.m-plumb .mk-dock i:first-child { background: var(--yel); color: var(--navy); }

/* ---------- ICE CREAM (browser) ---------- */
.m-ice { --bg: #ffe6ee; --choc: #3b1f17; --berry: #d6215b; --mint: #b8f0d8; --cone: #f2a65a; }
.m-ice .mk-page { background: var(--bg); color: var(--choc); }
.m-ice .mk-page::before { content: ""; position: absolute; z-index: 0; right: -5cqw; top: 6cqw; width: 42cqw; height: 42cqw; border-radius: 50%; background: var(--mint); }
.m-ice .mk-logo { font-family: var(--font-display); font-size: 2.7cqw; font-style: italic; font-weight: 700; letter-spacing: -.02em; color: var(--berry); }
.m-ice .mk-nav { font-weight: 600; }
.m-ice .mk-head > .mk-pill { background: var(--berry); color: #fff; }
.m-ice .mk-hero { padding: 0 8cqw 0 5cqw; }
.m-ice .mk-h { font-family: var(--font-display); font-size: 7.4cqw; font-weight: 700; letter-spacing: -.035em; line-height: .96; }
.m-ice .mk-h--acc { color: var(--berry); text-decoration: underline wavy #ff8fb1; text-decoration-thickness: .5cqw; text-underline-offset: .9cqw; }
.m-ice .mk-pill--solid { background: var(--berry); color: #fff; }
.m-ice .mk-cone { position: relative; flex: none; width: 19cqw; height: 40cqw; scale: .86; transform-origin: 50% 70%; animation: bob 4.2s ease-in-out infinite; }
.m-ice .mk-cone i { position: absolute; }
.m-ice .cone {
  left: 1.6cqw; right: 1.6cqw; bottom: 0; height: 18cqw; clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: repeating-linear-gradient(45deg, transparent 0 1.7cqw, rgba(120, 60, 20, .3) 1.7cqw 2cqw), repeating-linear-gradient(-45deg, transparent 0 1.7cqw, rgba(120, 60, 20, .3) 1.7cqw 2cqw), var(--cone);
}
.m-ice .s1 { left: 0; bottom: 15cqw; width: 19cqw; height: 12cqw; border-radius: 50% 50% 46% 46% / 62% 62% 38% 38%; background: #ff8fb1; }
.m-ice .s1::after { content: ""; position: absolute; left: 14%; bottom: -2.6cqw; width: 3.4cqw; height: 5.4cqw; border-radius: 0 0 3cqw 3cqw; background: #ff8fb1; }
.m-ice .s2 { left: 1.6cqw; bottom: 23.5cqw; width: 15.8cqw; height: 11cqw; border-radius: 50%; background: #8fdcb8; }
.m-ice .s3 { left: 3.6cqw; bottom: 31cqw; width: 11.8cqw; height: 8.4cqw; border-radius: 50%; background: #fff4c9; }
.m-ice .cherry { left: 50%; bottom: 38cqw; width: 3.2cqw; height: 3.2cqw; margin-left: -1.6cqw; border-radius: 50%; background: #d6215b; box-shadow: inset -.5cqw -.5cqw 0 rgba(0, 0, 0, .15); }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-1.6cqw) rotate(2deg); } }
.m-ice .mk-chips { display: flex; gap: 1.5cqw; padding: 0 5cqw 3.4cqw; }
.m-ice .mk-chips i { padding: 1.3cqw 2.6cqw; border-radius: 99cqw; font-size: 1.6cqw; font-weight: 700; color: var(--choc); }
.m-ice .c1 { background: #ff8fb1; transform: rotate(-2deg); }
.m-ice .c2 { background: #8fdcb8; transform: rotate(1.5deg); }
.m-ice .c3 { background: #ffd98a; transform: rotate(-1deg); }
.m-ice .c4 { background: #ffb36b; transform: rotate(2deg); }

/* ---------- SPA (browser) ---------- */
.m-spa { --bg: #eef0e7; --deep: #24382f; --clay: #b7846a; --clay-d: #7a4f39; }
.m-spa .mk-page { background: var(--bg); color: var(--deep); }
.m-spa .mk-head { padding: 2.8cqw 5cqw; }
.m-spa .mk-logo { font-size: 1.8cqw; font-weight: 500; letter-spacing: .34em; text-transform: uppercase; }
.m-spa .mk-nav { color: #45594e; }
.m-spa .mk-head > .mk-pill { border: .2cqw solid var(--deep); color: var(--deep); }
.m-spa .mk-hero { padding: 0 7cqw 0 6cqw; }
.m-spa .mk-eyebrow { margin-bottom: 2.4cqw; font-size: 1.4cqw; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--clay-d); }
.m-spa .mk-h { font-family: var(--font-display); font-size: 8.2cqw; font-weight: 300; letter-spacing: -.03em; line-height: 1; }
.m-spa .mk-h--acc { font-style: italic; color: var(--clay-d); }
.m-spa .mk-pill--solid { background: var(--deep); color: #eef0e7; }
.m-spa .mk-art { position: relative; flex: none; width: 26cqw; height: 37cqw; }
.m-spa .arch { position: absolute; inset: 0; overflow: hidden; border-radius: 99cqw 99cqw 0 0; background: linear-gradient(180deg, #cfdac8 0%, #a9bfae 62%, #8aa08f 100%); }
.m-spa .arch::before { content: ""; position: absolute; inset: 2.6cqw 2.6cqw 0; border: .25cqw solid rgba(238, 240, 231, .75); border-bottom: 0; border-radius: 99cqw 99cqw 0 0; }
.m-spa .sun { position: absolute; left: 50%; top: 30%; width: 11cqw; height: 11cqw; margin-left: -5.5cqw; border-radius: 50%; background: #ecd0bd; }
.m-spa .stones { position: absolute; left: 50%; bottom: 1.4cqw; display: flex; flex-direction: column-reverse; align-items: center; gap: .3cqw; transform: translateX(-50%); }
.m-spa .stones i { border-radius: 50%; }
.m-spa .stones i:nth-child(1) { width: 11cqw; height: 3.4cqw; background: var(--deep); }
.m-spa .stones i:nth-child(2) { width: 8cqw; height: 2.8cqw; background: var(--clay); }
.m-spa .stones i:nth-child(3) { width: 5cqw; height: 2.4cqw; background: #eef0e7; }
.m-spa .mk-foot { display: flex; gap: 4.5cqw; padding: 2.6cqw 6cqw 3.2cqw; border-top: .15cqw solid rgba(36, 56, 47, .22); font-size: 1.5cqw; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }

/* ---------- FLORIST (phone) ---------- */
.m-florist { --bg: #fff3ee; --plum: #45193a; --leaf: #3f6b50; }
.m-florist .mk-page { background: var(--bg); color: var(--plum); }
.m-florist .mk-logo { font-family: var(--font-display); font-size: 5.6cqw; font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.m-florist .mk-bag { width: 6.6cqw; height: 6.6cqw; }
.m-florist .mk-bag svg { width: 100%; height: 100%; }
.m-florist .mk-bouquet { position: relative; height: 58cqw; margin-top: 2cqw; }
.m-florist .stem { position: absolute; width: 1.2cqw; border-radius: 1cqw; background: var(--leaf); transform-origin: 50% 0; }
.m-florist .stem.s1 { left: 33cqw; top: 38cqw; height: 26cqw; transform: rotate(7deg); }
.m-florist .stem.s2 { left: 74cqw; top: 26cqw; height: 34cqw; transform: rotate(-9deg); }
.m-florist .stem.s3 { left: 59cqw; top: 46cqw; height: 22cqw; transform: rotate(-2deg); }
.m-florist .mk-fl { position: absolute; }
.m-florist .mk-fl.f1 { left: 13cqw; top: 5cqw; width: 38cqw; height: 38cqw; --pet: #e2557f; --ctr: #ffd166; --edge: #fff3ee; animation: sway 6s ease-in-out infinite; transform-origin: 50% 100%; }
.m-florist .mk-fl.f2 { left: 58cqw; top: 0; width: 32cqw; height: 32cqw; --pet: #f7a1b8; --ctr: #fff1b8; --edge: #fff3ee; }
.m-florist .mk-fl.f3 { left: 43cqw; top: 25cqw; width: 28cqw; height: 28cqw; --pet: #ffffff; --ctr: #f5b301; --edge: #ead2d0; }
@keyframes sway { 0%, 100% { transform: rotate(-2deg); } 50% { transform: rotate(2deg); } }
.m-florist .mk-hero { padding-top: 3cqw; }
.m-florist .mk-h { font-family: var(--font-display); font-size: 12cqw; font-style: italic; font-weight: 300; letter-spacing: -.03em; line-height: 1; }
.m-florist .mk-pill--solid { background: var(--plum); color: #fff3ee; }
.m-florist .mk-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 3cqw; padding: 8cqw 7cqw 0; }
.m-florist .tile { display: flex; align-items: flex-end; aspect-ratio: 1 / .82; padding: 3.2cqw; border-radius: 5cqw; }
.m-florist .tile i { font-size: 3.8cqw; font-weight: 700; }
.m-florist .tile.a { background: linear-gradient(160deg, #fbc9d6, #f29bb4); }
.m-florist .tile.b { background: linear-gradient(160deg, #d6e8da, #9ec3a9); }

