/* ============================================================
   siteBloom — design system
   ============================================================ */

/* -- Self-hosted fonts (latin subset) ------------------------ */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/anton-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/assets/fonts/inter-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/fraunces-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/fraunces-italic-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/jetbrains-mono-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Cabinet Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/cabinet-grotesk-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cabinet Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/cabinet-grotesk-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cabinet Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/cabinet-grotesk-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Cabinet Grotesk';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/cabinet-grotesk-800.woff2') format('woff2');
}

/* -- Tokens -------------------------------------------------- */
:root {
  /* colour — rainforest greens + faded mustard */
  --bg:          #f5eee0;   /* warm cream, slight honey */
  --bg-cream:    #fbf5e6;
  --bg-deep:     #1a3a2a;   /* deep rainforest */
  --bg-deep-2:   #12291e;
  --ink:         #18241d;
  --ink-muted:   #576058;
  --ink-soft:    #8a8f82;
  --line:        #d9cfb5;
  --line-soft:   #e6dcc1;
  --moss:        #3d5a42;
  --moss-soft:   #6e8471;
  --leaf:        #2f6a3f;   /* brighter spring green for accents */
  --mustard:     #d4b85a;   /* faded mustard */
  --mustard-soft:#e8d28c;
  --honey:       #c99a3a;
  --cream-ink:   #ece3ce;
  --cream-muted: #a6a48e;
  /* legacy aliases so existing rules keep compiling */
  --gold:        var(--mustard);
  --gold-soft:   var(--mustard-soft);

  /* type */
  --f-display: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --f-mockup:  'Fraunces', 'Times New Roman', ui-serif, serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* scale */
  --shell:     1240px;
  --gap:       clamp(1.25rem, 2vw, 2rem);
  --pad-y:     clamp(3.25rem, 6vw, 5.75rem);
  --pad-y-top: clamp(1.25rem, 2.5vw, 2rem);
  --header-h:  72px;
  --radius-s:  4px;
  --radius:    10px;

  /* motion */
  --ease:      cubic-bezier(.2,.7,.2,1);
}

/* -- Reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, dl, dd { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--bg-deep); color: var(--bg-cream); }

/* -- Grain overlay ------------------------------------------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.14  0 0 0 0 0.11  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* -- Shell --------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
  padding-right: clamp(1.25rem, 3vw, 2.5rem);
}

/* -- Typography ---------------------------------------------- */
.display {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.display em {
  font-style: normal;
  font-weight: 700;
  color: var(--leaf);
}

h1.display { font-size: clamp(2.6rem, 6.6vw, 5.4rem); letter-spacing: -0.04em; line-height: 1; font-weight: 500; }
h2.display { font-size: clamp(2rem, 4.8vw, 3.6rem); letter-spacing: -0.035em; font-weight: 500; }
h3.display { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.2; letter-spacing: -0.02em; font-weight: 600; }

.lede {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  color: var(--ink-muted);
  max-width: 54ch;
  line-height: 1.55;
}

.mono {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.tiny { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-muted); }
.tiny em { color: var(--leaf); font-style: normal; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--moss);
  border-radius: 50%;
  display: inline-block;
}
.eyebrow-dot-light { background: var(--gold); }

/* -- Wordmark ------------------------------------------------ */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--bg-deep);
  font-family: var(--f-display);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.035em;
  transition: opacity .3s var(--ease);
}
.wordmark:hover { opacity: 0.88; }
.wm-icon {
  width: 1.5em;
  height: 1.5em;
  color: var(--bg-deep);
  flex-shrink: 0;
  transform-origin: 50% 90%;
  transition: transform .6s var(--ease);
}
.wm-icon-core { fill: var(--mustard); }
.wordmark:hover .wm-icon { transform: rotate(-8deg); }
.wm-text { display: inline-flex; align-items: baseline; }
.wm-site { font-weight: 400; }
.wm-bloom { font-weight: 700; position: relative; color: var(--leaf); }

.wm-flower {
  position: absolute;
  top: -0.35em;
  right: -0.55em;
  width: 0.7em;
  height: 0.7em;
  transform-origin: 50% 50%;
  animation: wm-flower-drift 14s linear infinite;
  transition: transform .55s var(--ease);
  pointer-events: none;
}
.wm-flower-petals {
  transform-origin: 12px 12px;
  transition: transform .55s var(--ease);
}
.wordmark:hover .wm-flower { transform: scale(1.25) rotate(18deg); }
.wordmark:hover .wm-flower-petals { transform: scale(1.12); }
.wordmark:active .wm-flower { animation: wm-flower-spin .6s var(--ease); }

@keyframes wm-flower-drift {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes wm-flower-spin {
  0%   { transform: scale(1) rotate(0deg); }
  50%  { transform: scale(1.3) rotate(200deg); }
  100% { transform: scale(1) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .wm-flower, .wm-flower-petals { animation: none !important; transition: none !important; }
  .wordmark:hover .wm-flower, .wordmark:hover .wm-flower-petals,
  .wordmark:active .wm-flower { transform: none; animation: none !important; }
}

/* Hero wordmark — large, centred version of the wordmark that sits at
   the top of the hero. Reuses the .wm-* classes so colour, weights and
   the flower stay consistent; only the font-size is bumped so the
   em-based flower scales with it. */
.hero-wordmark {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bg-deep);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  user-select: none;
}
.hero-wordmark .wm-text { display: inline-flex; align-items: baseline; }
.hero-wordmark .wm-site { font-weight: 400; }
.hero-wordmark .wm-bloom { font-weight: 700; position: relative; }

/* -- Buttons ------------------------------------------------- */
/* Stamp-pill pattern: a label sits on the left, a contrasting
   circular arrow badge is stuck to the right edge of the pill.
   Padding is tight on the right so the badge meets the rim;
   the badge's fill (and inverse text colour) comes from the
   variant. Used by every CTA on the site for consistency. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.55rem 0.55rem 1.55rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-sm {
  padding: 0.32rem 0.32rem 0.32rem 1rem;
  font-size: 0.83rem;
  gap: 0.6rem;
}
.btn-block {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform .35s var(--ease), background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn-sm .btn-arrow {
  width: 1.7rem;
  height: 1.7rem;
  font-size: 0.72rem;
}
@media (hover: hover) {
  .btn:hover .btn-arrow { transform: scale(1.08); }
}

/* Primary — flat rainforest green pill with a slow, subtle white shimmer
   sweeping diagonally across. Shimmer uses mix-blend-mode: screen so it
   brightens the green band but leaves the white label/arrow unaffected. */
@keyframes btn-primary-shimmer {
  0%   { transform: translateX(-110%); }
  55%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--leaf);
  color: #fff;
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 1px 1px rgba(20, 50, 30, 0.08),
    0 12px 28px -12px rgba(25, 70, 40, 0.38);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 65%
  );
  transform: translateX(-110%);
  animation: btn-primary-shimmer 6.5s ease-in-out infinite;
  mix-blend-mode: screen;
}
.btn-primary .btn-arrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.20),
    0 2px 2px rgba(20, 50, 30, 0.10),
    0 18px 36px -10px rgba(25, 80, 45, 0.46);
}
.btn-primary:hover .btn-arrow {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-primary:active { transform: translateY(0); }

/* Primary CTAs — bare subtle arrow, no circle. Applies to every
   .btn-primary (dark-green hero/header/pricing CTAs and the mustard
   form-submit .btn-light). Colour is set per variant below. */
.btn-primary .btn-arrow,
.btn-primary:hover .btn-arrow {
  width: auto;
  height: auto;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* Light — for the dark .enquire section: mustard pill, deep-ink
   label and arrow (inverse of the primary). */
.btn-primary.btn-light {
  background: var(--mustard);
  color: var(--bg-deep);
  border-color: var(--mustard);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10),
    0 1px 1px rgba(120, 90, 30, 0.08),
    0 12px 28px -10px rgba(150, 110, 40, 0.32);
}
.btn-primary.btn-light .btn-arrow,
.btn-primary.btn-light:hover .btn-arrow {
  color: rgba(20, 30, 20, 0.75);
}
.btn-primary.btn-light:hover {
  background: var(--mustard-soft);
  border-color: var(--mustard-soft);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 2px 2px rgba(120, 90, 30, 0.10),
    0 18px 36px -10px rgba(180, 130, 50, 0.42);
}

/* Ghost — outlined pill, outlined stamp. Fills on hover. */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost .btn-arrow {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg-cream);
  border-color: var(--ink);
}
.btn-ghost:hover .btn-arrow {
  background: var(--mustard);
  color: var(--ink);
  border-color: var(--mustard);
}

@media (prefers-reduced-motion: reduce) {
  .btn, .btn-arrow { transition: none; }
  .btn:hover { transform: none; }
  .btn:hover .btn-arrow { transform: none; }
  .btn-primary::after { animation: none; }
}

/* -- Section head ------------------------------------------- */
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 3.5vw, 3rem); }
.section-head .lede { margin-top: 1.4rem; }

/* ============================================================
   Header
   ============================================================ */
/* Sticky header — at the top of index.html the header is visually
   absent (transparent bg, no border, all items hidden). Two one-way
   latches drive the reveal:
     .has-mark  — added once the hero wordmark scrolls under the
                  header; fades in the bg/border and the small
                  header wordmark.
     .has-cta   — added once the hero CTA scrolls under the header;
                  fades in the nav and the header CTA.
   Latches are never removed, so scrolling back up does not flicker.
   Pages without a [data-hero-mark] (e.g. privacy.html) get both
   classes immediately at init, so the header is fully visible. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  pointer-events: none;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color .35s var(--ease),
    backdrop-filter  .35s var(--ease),
    -webkit-backdrop-filter .35s var(--ease),
    border-color     .35s var(--ease);
}
.site-header.has-mark {
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border-bottom-color: var(--line-soft);
}
.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  height: 72px;
}
.nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.nav a {
  position: relative;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width .35s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

/* Header reveal — items hidden by default, faded in by the latches. */
.site-header .wordmark,
.site-header .nav,
.site-header .header-cta {
  opacity: 0;
  transform: translateY(-3px);
  pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.site-header.has-mark .wordmark {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.site-header.has-cta .nav,
.site-header.has-cta .header-cta {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .site-header .wordmark,
  .site-header .nav,
  .site-header .header-cta { transition: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(1.5rem, 4vw, 4rem);
  overflow: hidden;
}
.hero-shell {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.hero-copy { max-width: 740px; text-align: center; }

.hero-copy h1 {
  margin-top: 0.4rem;
}
.hero-copy .lede {
  margin-top: 1.75rem;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
}
.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* Short intro line that sits between the H1 and the steps */
.hero-intro {
  margin-top: clamp(1.1rem, 1.6vw, 1.6rem);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 56ch;
  margin-inline: auto;
}

/* Desktop: hero copy spans the full shell. Centring is on the base
   rule so mobile inherits it. */
@media (min-width: 961px) {
  .hero-copy { max-width: none; }
}


/* ============================================================
   "How it works" section — its own section between the hero and
   showcase, matching the section padding/divider used by every
   other section. Three words (Chat, Build, Launch) at display
   size, two faded + one active, mirroring the H1's *local*
   emphasis. Tap a word OR swipe the card to switch. Card
   crossfades the matching panel content, with a small phase-
   specific accent (chat dots, build wireframe bars, launch live).
   ============================================================ */
.how-it-works {
  padding-top: var(--pad-y-top);
  padding-bottom: var(--pad-y);
  border-top: 1px solid var(--line);
}
.phases > .eyebrow { margin-bottom: 1rem; }

/* Title row — two faded words + one green-bold active word,
   exactly mirroring the .display em treatment used for "local". */
.phases-title {
  margin: 0 0 clamp(1.25rem, 2vw, 1.75rem);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-align: left;
}
.phases-word {
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: var(--ink);
  letter-spacing: -0.025em;
  transition: color .35s var(--ease), font-weight .35s var(--ease);
}
.phases-word.is-active {
  color: var(--leaf);
  font-weight: 700;
}
@media (hover: hover) {
  .phases-word:not(.is-active):hover { color: var(--moss); }
}
.phases-word:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 4px;
  border-radius: 4px;
}
.phases-sep {
  display: inline-block;
  padding: 0 0.45em;
  color: var(--ink);
  opacity: 0.28;
  font-weight: 450;
}

/* Card + sliding track */
.phases-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  touch-action: pan-y;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.03),
    0 24px 50px -28px rgba(26, 58, 42, 0.18);
}
.phases-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  transition: transform .42s var(--ease);
  will-change: transform;
}
.phases-panel {
  flex: 0 0 100%;
  min-width: 0;
  padding: clamp(1.75rem, 2.8vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.phases-num {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.phases-h {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
}
.phases-p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
  max-width: 56ch;
}
.phases-detail {
  margin-top: auto;
  color: var(--leaf);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.65rem;
}

/* Phase-specific accents — three dots, top-right of each panel */
.phases-accent {
  position: absolute;
  top: clamp(1.25rem, 2.4vw, 2rem);
  right: clamp(1.25rem, 2.4vw, 2rem);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.phases-accent .pa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mustard);
}

/* Chat + Build share the bouncing typing-indicator pulse in mustard */
.phases-accent-chat .pa-dot,
.phases-accent-build .pa-dot {
  opacity: 0;
  animation: pa-pulse 1.6s ease-in-out infinite;
}
.phases-accent-chat .pa-dot:nth-child(2),
.phases-accent-build .pa-dot:nth-child(2) { animation-delay: 0.2s; }
.phases-accent-chat .pa-dot:nth-child(3),
.phases-accent-build .pa-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pa-pulse {
  0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
  40%           { opacity: 1;    transform: translateY(-2px); }
}

/* Launch — three dots in a bright "live" green with a synchronized
   pulse: each dot scales + brightens on a 1.4s cycle, all three in
   sync so it reads as a status indicator (broadcasting / online),
   not a typing indicator. Brighter and more saturated than the
   brand --leaf so it carries the universal "LIVE" recognition. */
/* Launch — same opacity-fade pulse as Chat/Build, just in the live
   green instead of mustard. No scale, no halo, no bounce. */
.phases-accent-launch .pa-dot {
  background: #22c55e;
  opacity: 0;
  animation: pa-pulse-launch 1.6s ease-in-out infinite;
}
.phases-accent-launch .pa-dot:nth-child(2) { animation-delay: 0.2s; }
.phases-accent-launch .pa-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pa-pulse-launch {
  0%, 80%, 100% { opacity: 0.25; }
  40%           { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .phases-accent .pa-dot { animation: none; opacity: 0.8; }
  .phases-track { transition: none; }
}

/* Position indicator below the card — three short bars, all the
   same width so only the colour shifts when the active one changes.
   Mirrors the dot-row pattern used by the outcomes/pricing decks but
   without the active-state width-grow. */
.phases-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 clamp(1.75rem, 2.8vw, 2.5rem) clamp(1.5rem, 2.4vw, 2rem);
}
.phases-foot .phases-segments {
  flex: 1;
  margin: 0;
}
@media (min-width: 780px) {
  .phases-foot { display: none; }
}
.phases-segments {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.phases-seg {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--line);
  transition: background-color .35s var(--ease);
}
.phases-seg.is-active {
  background: var(--leaf);
}

/* Mobile fit — tighten the title scale, reduce panel padding,
   keep the accent from colliding with the heading copy, and stop
   the flex-track's intrinsic 300%-wide content from pushing any
   ancestor wider than the shell padding allows. */
.phases,
.phases-card,
.phases-track { min-width: 0; }
.phases-card { width: 100%; }

/* Desktop layout — three panels visible side-by-side, matching the
   outcomes/pricing decks. The single-card chrome on .phases-card
   moves onto each .phases-panel instead, the title's active/faded
   states flatten to a unified heading (no single panel is "active"
   when all three are visible), and segment indicators are hidden. */
@media (min-width: 780px) {
  /* Title is hidden on desktop — each panel has its own h3, the
     eyebrow provides section labelling, so the tab-style title row
     would be redundant. */
  .phases-title { display: none; }

  /* Card wrapper has no chrome — each panel below carries its own. */
  .phases-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    touch-action: auto;
  }
  .phases-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.75rem);
    transition: none;
    will-change: auto;
  }
  .phases-panel {
    flex: none;
    background: var(--bg-cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.75rem, 2.4vw, 2.4rem);
    box-shadow:
      0 1px 0 rgba(0,0,0,0.03),
      0 30px 60px -30px rgba(26, 58, 42, 0.18),
      0 14px 30px -16px rgba(26, 58, 42, 0.10);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  }
  @media (hover: hover) {
    .phases-panel:hover {
      transform: translateY(-4px);
      box-shadow:
        0 1px 0 rgba(0,0,0,0.03),
        0 36px 70px -30px rgba(26, 58, 42, 0.22),
        0 18px 36px -18px rgba(26, 58, 42, 0.14);
    }
  }
  .phases-segments { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .phases-panel { transition: none; }
  .phases-panel:hover { transform: none; }
}

/* Phases compact layout — single-card carousel below 779px,
   matching the outcomes/pricing decks. */
@media (max-width: 779px) {
  .phases {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .phases-title {
    font-size: clamp(1.65rem, 8.5vw, 2.4rem);
  }
  .phases-sep { padding: 0 0.3em; }
  .phases-panel {
    padding: 1.4rem 1.25rem 1.5rem;
  }
  .phases-accent {
    top: 1rem;
    right: 1rem;
  }
  /* Heading reserves space at top-right so it never collides with
     the accent dots when copy wraps onto multiple lines. */
  .phases-h { padding-right: 4rem; }
}

@media (max-width: 540px) {
  /* H1 caps out around 2.6rem at 375px, which makes "Beautiful
     websites" wider than the available shell (335px). Scale down. */
  .hero-copy h1.display {
    font-size: clamp(1.9rem, 8.5vw, 2.5rem);
    letter-spacing: -0.03em;
  }
}

/* ============================================================
   Carousel chrome — shared by the outcomes and pricing decks (and
   any future deck/carousel that needs it). Manual nav: click
   arrows or segment indicators, swipe on touch, ArrowLeft/Right
   when focused.
   ============================================================ */
.proc-segments {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
}
.proc-seg {
  display: block;
  width: 22px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: var(--line);
  cursor: pointer;
  position: relative;
  transition: background-color .35s var(--ease);
}
.proc-seg.is-active {
  background: var(--moss);
}
.proc-seg:hover { background: var(--ink-muted); }
.proc-seg.is-active:hover { background: var(--moss); }
.proc-seg:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 3px;
}

/* -- Viewport + sliding track -- */
.proc-viewport {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}
.proc-track {
  display: flex;
  width: 100%;
  transition: transform .42s var(--ease);
  will-change: transform;
}
.proc-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.proc-num {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.proc-title {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
}
.proc-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}

/* -- Footer (prev | centered segments | next) -- */
.proc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.proc-foot .proc-segments {
  flex: 1;
  justify-content: center;
}
.proc-arrow {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink-muted);
  border: 0;
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  transition: color .25s var(--ease);
}
.proc-arrow svg {
  width: 16px;
  height: 16px;
}
.proc-arrow:hover:not(:disabled) {
  color: var(--ink);
}
.proc-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.proc-arrow:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 3px;
}

/* -- Reduced motion -- */
@media (prefers-reduced-motion: reduce) {
  .proc-track { transition: none; }
  .proc-seg { transition: none; }
  .proc-arrow { transition: none; }
}


/* -- Visually hidden helper for in-button labels -- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}


/* -- Hero visual (layered mockup) --------------------------- */
.hero-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  min-height: 460px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .65;
  z-index: 0;
}
.blob-a {
  width: 70%; height: 70%;
  left: -10%; top: -5%;
  background: radial-gradient(circle, #4a5d4f 0%, transparent 70%);
}
.blob-b {
  width: 50%; height: 50%;
  right: -8%; bottom: 5%;
  background: radial-gradient(circle, #b89968 0%, transparent 70%);
  opacity: .45;
}

.mockup {
  position: absolute;
  background: var(--bg-cream);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 40px 80px -30px rgba(31, 45, 35, 0.35),
    0 20px 40px -20px rgba(31, 45, 35, 0.18);
  overflow: hidden;
  margin: 0;
}
.mockup-main {
  inset: 6% 2% 6% 8%;
  z-index: 2;
  transform: translateY(0) rotate(-1.2deg);
  transition: transform .8s var(--ease);
}
.mockup-main:hover { transform: translateY(-6px) rotate(-0.6deg); }

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #efe8d7;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.mockup-bar span {
  width: 9px; height: 9px; border-radius: 50%;
  background: #d3c9b4;
}
.mockup-url {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  margin: 0;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.mockup-body {
  display: grid;
  grid-template-rows: 44% 1fr;
}
.mockup-image {
  background-color: #c7c0ac;
  background-size: cover;
  background-position: center;
  position: relative;
}
.mockup-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,45,35,0) 55%, rgba(31,45,35,0.25) 100%);
}
.mockup-content { padding: 18px 20px 22px; }
.mockup-content .tiny { margin-bottom: 8px; color: var(--moss); }
.mockup-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.mockup-lede {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.45;
  margin-bottom: 14px;
}
.mockup-menu {
  display: grid;
  gap: 7px;
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}
.mockup-menu > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--ink);
}
.mockup-menu em {
  font-family: var(--f-mono);
  font-style: normal;
  color: var(--moss);
  font-size: 0.72rem;
}

.mockup-card {
  position: absolute;
  right: 0;
  bottom: 10%;
  width: 40%;
  min-width: 170px;
  max-width: 220px;
  padding: 18px 18px 14px;
  background: var(--bg-deep);
  color: var(--cream-ink);
  border-radius: 14px;
  z-index: 3;
  transform: rotate(3deg);
  transition: transform .8s var(--ease);
}
.mockup-card:hover { transform: rotate(1.5deg) translateY(-4px); }
.mockup-card .tiny { color: var(--gold); }
.card-line {
  font-family: var(--f-display);
  font-size: 1.6rem;
  line-height: 1;
  margin: 14px 0 16px;
  font-weight: 450;
  letter-spacing: -0.02em;
}
.card-foot { color: var(--cream-muted); }

/* -- Mockup isolation: locks the Oak & Thistle example to its own palette
      + typeface so it reads as a *different brand* than siteBloom. ---------- */
.mockup-main,
.mockup-card {
  --bg:          #f4efe6;
  --bg-cream:    #faf6ee;
  --bg-deep:     #1f2d23;
  --ink:         #1a1f1b;
  --ink-muted:   #5e6459;
  --ink-soft:    #8b8d82;
  --line:        #ddd4c1;
  --line-soft:   #e7dfcd;
  --moss:        #4a5d4f;
  --gold:        #b89968;
  --cream-ink:   #e8e0cf;
  --cream-muted: #a8a391;
}
.mockup-title,
.mockup-card .card-line {
  font-family: var(--f-mockup);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: #1a1f1b;
}
.mockup-card .card-line { color: #e8e0cf; }
.mockup-card {
  background: #1f2d23;
  color: #e8e0cf;
}

/* ============================================================
   Showcase (placeholder — built next)
   ============================================================ */
.showcase {
  padding-top: var(--pad-y-top);
  padding-bottom: var(--pad-y);
  border-top: 1px solid var(--line);
}
/* ============================================================
   Showcase slider
   ============================================================ */
.ss {
  margin: 0;
  display: grid;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
}
.ss + .ss {
  margin-top: clamp(4rem, 7vw, 7rem);
  padding-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--line-soft);
}
.ss-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 40px 90px -30px rgba(26, 58, 42, 0.4),
    0 20px 50px -20px rgba(26, 58, 42, 0.25);
  transform: translateY(0);
  transition: transform .8s var(--ease), box-shadow .8s var(--ease);
}
@media (hover: hover) {
  .ss-frame:hover {
    transform: translateY(-6px);
    box-shadow:
      0 1px 0 rgba(0,0,0,0.04),
      0 50px 110px -30px rgba(26, 58, 42, 0.45),
      0 26px 60px -20px rgba(26, 58, 42, 0.28);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ss-frame { transition: none; }
  .ss-frame:hover { transform: none; box-shadow: inherit; }
}
.ss-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #e8dfc7;
  border-bottom: 1px solid var(--line-soft);
  box-shadow:
    0 1px 0 rgba(26, 58, 42, 0.04),
    0 6px 10px -6px rgba(26, 58, 42, 0.12);
  position: relative;
  z-index: 1;
}
.ss-bar span {
  width: 9px; height: 9px; border-radius: 50%;
  background: #c9bfa5;
}

/* On mobile, swap the desktop-style traffic-light bar for a mobile
   browser URL pill (closer to iOS Safari / Chrome chrome). */
@media (max-width: 779px) {
  .ss-bar {
    justify-content: center;
    padding: 7px 12px;
    gap: 0;
  }
  .ss-bar span { display: none; }
  .ss-bar::after {
    content: attr(data-url);
    display: inline-flex;
    align-items: center;
    font-family: -apple-system, system-ui, 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(26, 58, 42, 0.65);
    letter-spacing: 0.005em;
    padding: 4px 16px 5px;
    background: #fbf5e6;
    border-radius: 999px;
    border: 1px solid rgba(26, 58, 42, 0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.ss-viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #fff;
  user-select: none;
  touch-action: pan-y;
}
.ss-side {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ss-before { z-index: 1; }
.ss-after {
  z-index: 2;
  clip-path: inset(0 0 0 var(--pos));
}

/* --- Showcase carousel (replaces drag slider) --------------- */
.sc-carousel { position: relative; }
.sc-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.4rem, 1.5vw, 0.75rem);
  margin-bottom: 1.5rem;
  flex-wrap: nowrap;
}
.sc-picker, .sc-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-cream);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  gap: 2px;
}
.sc-pick, .sc-side-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--f-mono);
  font-size: clamp(0.62rem, 1.6vw, 0.72rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: clamp(0.4rem, 1.2vw, 0.5rem) clamp(0.55rem, 2vw, 0.95rem);
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
  min-width: 28px;
  line-height: 1;
}
.sc-pick:hover, .sc-side-btn:hover { color: var(--ink); }
.sc-pick.is-active {
  background: var(--bg-deep);
  color: var(--bg-cream);
}
.sc-pick.is-active:hover { color: var(--bg-cream); }

.sc-side-btn[data-side="before"].is-active {
  background: var(--gold);
  color: var(--bg-deep);
}
.sc-side-btn[data-side="before"].is-active:hover { color: var(--bg-deep); }
.sc-side-btn[data-side="after"].is-active {
  background: var(--bg-deep);
  color: var(--bg-cream);
}
.sc-side-btn[data-side="after"].is-active:hover { color: var(--bg-cream); }

.sc-stage { position: relative; touch-action: pan-y; }
.sc-slide { display: none; }
.sc-slide.is-active {
  display: grid;
  animation: sc-slide-in .35s var(--ease) both;
}
.sc-stage .ss + .ss { margin-top: 0; padding-top: 0; border-top: 0; }

@keyframes sc-slide-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .sc-slide.is-active { animation: none; }
}

.sc-carousel .ss-after { clip-path: none; }
.sc-carousel .ss-before,
.sc-carousel .ss-after {
  transition: opacity .35s var(--ease);
}
.sc-carousel[data-side="after"]  .ss-before,
.sc-carousel[data-side="before"] .ss-after {
  opacity: 0;
  pointer-events: none;
}
.sc-carousel[data-side="after"]  .ss-after,
.sc-carousel[data-side="before"] .ss-before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .sc-pick, .sc-side-btn,
  .sc-carousel .ss-before, .sc-carousel .ss-after { transition: none; }
}

/* --- Mobile fullscreen takeover ----------------------------- */
.sc-close { display: none; }
.sc-hint { display: none; }

@media (max-width: 779px) {
  .sc-hint {
    display: block;
    text-align: center;
    color: var(--ink-soft);
    margin: 0 0 0.75rem;
    letter-spacing: 0.08em;
  }
  .sc-carousel .ss-frame { cursor: zoom-in; }
}

.sc-carousel.is-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-deep);
  padding: clamp(0.75rem, 3vw, 1.25rem);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
}
.sc-carousel.is-fullscreen .sc-hint { display: none; }
.sc-carousel.is-fullscreen .sc-controls {
  margin-bottom: 0;
  flex: 0 0 auto;
}
.sc-carousel.is-fullscreen .sc-picker,
.sc-carousel.is-fullscreen .sc-toggle {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
.sc-carousel.is-fullscreen .sc-pick,
.sc-carousel.is-fullscreen .sc-side-btn {
  color: rgba(245,238,224,0.7);
}
.sc-carousel.is-fullscreen .sc-pick:hover,
.sc-carousel.is-fullscreen .sc-side-btn:hover { color: var(--bg-cream); }
.sc-carousel.is-fullscreen .sc-pick.is-active {
  background: var(--bg-cream);
  color: var(--bg-deep);
}
.sc-carousel.is-fullscreen .sc-side-btn[data-side="after"].is-active {
  background: var(--bg-cream);
  color: var(--bg-deep);
}
/* before-active mustard stays visible on dark bg */

.sc-carousel.is-fullscreen .sc-close {
  display: grid;
  place-items: center;
  width: clamp(32px, 8vw, 40px);
  height: clamp(32px, 8vw, 40px);
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.1);
  color: var(--bg-cream);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  order: 99;
  margin-left: auto;
  transition: background .2s var(--ease);
}
.sc-carousel.is-fullscreen .sc-close svg {
  width: 45%;
  height: 45%;
}
.sc-carousel.is-fullscreen .sc-close:hover {
  background: rgba(255,255,255,0.18);
}
.sc-carousel.is-fullscreen .sc-controls {
  justify-content: flex-start;
}
.sc-carousel.is-fullscreen .sc-toggle {
  margin-left: 0;
}

.sc-carousel.is-fullscreen .sc-stage {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  display: grid;
  place-items: center;
  -webkit-overflow-scrolling: touch;
}
.sc-carousel.is-fullscreen .sc-slide.is-active {
  width: 920px;
  max-width: 100%;
  animation: none;
}
.sc-carousel.is-fullscreen .ss-frame {
  width: 920px;
  max-width: 100%;
  cursor: default;
}

/* Mobile preview thumbnail: hide bottom panels that would otherwise
   anchor themselves to the foot of the short 4:5 viewport and hog
   half the preview. Fullscreen still shows them. */
@media (max-width: 779px) {
  .sc-carousel:not(.is-fullscreen) .ta-prices,
  .sc-carousel:not(.is-fullscreen) .ta-visit,
  .sc-carousel:not(.is-fullscreen) .eb-menu {
    display: none;
  }
}

/* Mobile fullscreen: let the mockup render tall like a phone screen */
@media (max-width: 779px) {
  .sc-carousel.is-fullscreen .sc-stage {
    place-items: stretch;
  }
  .sc-carousel.is-fullscreen .sc-slide.is-active,
  .sc-carousel.is-fullscreen .ss-frame {
    width: 100%;
    height: auto;
    align-self: stretch;
  }
  .sc-carousel.is-fullscreen .ss-viewport {
    aspect-ratio: auto;
    min-height: max(760px, calc(100vh - 130px));
  }
}
.sc-carousel.is-fullscreen .ss-frame:hover {
  transform: none;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 40px 90px -30px rgba(0, 0, 0, 0.6),
    0 20px 50px -20px rgba(0, 0, 0, 0.4);
}

body.has-fullscreen-overlay { overflow: hidden; }
.ss-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: rgba(255,255,255,0.95);
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(26, 58, 42, 0.15), 0 0 20px rgba(0,0,0,0.2);
}
.ss-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--bg-deep);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px -6px rgba(0,0,0,0.25), 0 0 0 3px rgba(212,184,90,0.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ss:hover .ss-handle,
.ss-range:focus-visible + .ss-divider .ss-handle {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 12px 24px -6px rgba(0,0,0,0.28), 0 0 0 5px rgba(212,184,90,0.55);
}
.ss-range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
}
.ss-indicator {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.85rem 0.45rem 0.75rem;
  background: var(--bg-cream);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--ink-muted);
  transition: border-color .35s var(--ease), color .35s var(--ease);
}
.ss-indicator-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 0 rgba(47, 106, 63, 0.45);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
  animation: ss-pulse 2.4s ease-in-out infinite;
}
.ss-indicator-text {
  display: grid;
  grid-template-columns: 1fr;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  min-width: 10ch;
}
.ss-label {
  grid-column: 1;
  grid-row: 1;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.ss-label-before { opacity: 0; transform: translateY(-4px); }
.ss-label-after  { opacity: 1; transform: none; }
.ss.is-before-side .ss-indicator { border-color: rgba(230, 0, 35, 0.35); }
.ss.is-before-side .ss-indicator-dot {
  background: #e60023;
  box-shadow: 0 0 0 4px rgba(230, 0, 35, 0.18);
  animation-name: ss-pulse-red;
}
.ss.is-before-side .ss-label-before { opacity: 1; transform: none; }
.ss.is-before-side .ss-label-after  { opacity: 0; transform: translateY(4px); }
@keyframes ss-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 106, 63, 0.4); }
  50%      { box-shadow: 0 0 0 5px rgba(47, 106, 63, 0); }
}
@keyframes ss-pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 0, 35, 0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(230, 0, 35, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .ss-indicator-dot { animation: none; }
}

.ss-caption {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-top: 0.5rem;
}
.ss-caption h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: 0.75rem;
}
.ss-notes p { color: var(--ink-muted); max-width: 46ch; }
.ss-meta {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}
.ss-meta li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.ss-meta .tiny { color: var(--moss); }

/* ------------------------------------------------------------
   "Before" — deliberately ugly. Real UK takeaway-site tropes:
   clashing neons, comic-ish font, hard shadows, clutter, typos.
   ------------------------------------------------------------ */
.bf-site {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #ffffff;
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', system-ui, sans-serif;
  color: #222;
  font-size: 13px;
  line-height: 1.3;
}
.bf-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  background: #e5e5e5;
  border-bottom: 1px solid #bdbdbd;
  position: relative;
  font-family: Arial, sans-serif;
}
.bf-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #b8b8b8;
}
.bf-url {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  margin: 0;
  font-size: 10.5px;
  color: #555;
}
.bf-alert {
  background: linear-gradient(90deg, #ff0044, #ffb300);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 0 #880022;
  font-family: 'Impact', 'Arial Black', sans-serif;
}
.bf-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  background: #fff;
  border-bottom: 2px solid #002a9e;
}
.bf-logo-mini {
  color: #e60023;
  font-weight: 700;
  font-size: 15px;
  text-shadow: 1px 1px 0 #0033aa;
  font-family: 'Impact', 'Arial Black', sans-serif;
  letter-spacing: -0.5px;
}
.bf-nav ul {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  color: #0b5394;
  font-family: Arial, sans-serif;
  font-weight: 700;
}
.bf-nav li { cursor: pointer; text-decoration: underline; }
.bf-order {
  margin-left: auto;
  background: #e60023;
  color: #fff;
  border: 2px solid #0033aa;
  padding: 4px 10px;
  font-weight: 900;
  font-size: 11px;
  font-family: 'Impact', 'Arial Black', sans-serif;
  border-radius: 2px;
  cursor: pointer;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}
.bf-hero {
  position: relative;
  height: 38%;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
}
.bf-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.22);
}
.bf-hero-logo {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 12px 20px;
}
.bf-logo-big {
  display: inline-block;
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  color: #fff;
  -webkit-text-stroke: 2px #e60023;
  text-stroke: 2px #e60023;
  letter-spacing: -1px;
  text-shadow: 3px 3px 0 #002a9e;
}
.bf-logo-big em {
  font-style: normal;
  color: #fff;
  -webkit-text-stroke: 2px #002a9e;
  text-stroke: 2px #002a9e;
}
.bf-tagline {
  color: #ff3355;
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 16px;
  margin: 6px 0 4px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}
.bf-stars {
  color: #ffd84d;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  margin: 2px 0 10px;
  text-shadow: 1px 1px 0 #002a9e;
  font-family: 'Impact', sans-serif;
}
.bf-cta {
  background: linear-gradient(180deg, #ff5500, #e60023);
  color: #fff;
  border: 2px solid #ffd84d;
  padding: 6px 16px;
  font-weight: 900;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Impact', sans-serif;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #880022;
  box-shadow: 0 3px 0 #002a9e;
}
.bf-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 8px;
  background: #f2f2f2;
}
.bf-card {
  padding: 8px;
  border-radius: 3px;
  border: 2px dashed;
  text-align: center;
  font-family: Arial, sans-serif;
}
.bf-card-red    { background: #ffe1e1; border-color: #e60023; color: #a80000; }
.bf-card-blue   { background: #dde7ff; border-color: #002a9e; color: #002a9e; }
.bf-card-yellow { background: #fff3b0; border-color: #d49b00; color: #6b4800; }
.bf-card-tag {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 0 0 3px;
  font-family: 'Impact', sans-serif;
}
.bf-card-title {
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 3px;
  font-family: 'Comic Sans MS', cursive;
}
.bf-card-desc {
  font-size: 10.5px;
  margin: 0;
  color: #333;
}
.bf-welcome {
  padding: 10px 16px 12px;
  background: #fff;
}
.bf-h2 {
  color: #e60023;
  font-family: 'Comic Sans MS', cursive;
  font-size: 16px;
  margin: 0 0 6px;
  text-shadow: 1px 1px 0 #ffd84d;
}
.bf-welcome p {
  font-size: 11.5px;
  line-height: 1.45;
  margin: 0 0 5px;
  color: #333;
  font-family: Arial, sans-serif;
}
.bf-note {
  color: #0b5394;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3px;
  text-align: center;
  margin-top: 4px !important;
}

/* ------------------------------------------------------------
   "After" — Pizza House, deals-led. SAME BRAND (Impact red+navy
   wordmark preserved, red + navy palette preserved). Flat red
   canvas, rotated Order-Now sticker, Anton display type, three
   bold colour-blocked deal cards, pizza mascot. Not a rebrand.
   ------------------------------------------------------------ */
.af-site {
  --af-red:     #e60023;
  --af-red-d:   #b1001b;
  --af-navy:    #002a9e;
  --af-navy-d:  #001f73;
  --af-mustard: #f5b83b;
  --af-mustard-d:#c78f1d;
  --af-cream:   #fff6e8;
  --af-cream-d: #f1e5c9;
  --af-ink:     #1a1410;
  --af-ink-m:   #5e5e5e;
  --af-bg:      #ffffff;
  --af-line:    #e6e1d7;

  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--af-bg);
  color: var(--af-ink);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  line-height: 1.45;
  container-type: inline-size;
  container-name: af;
}
.af-banner {
  background: var(--af-navy);
  color: #fff;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 7px 14px;
  text-align: center;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.af-banner strong { font-weight: 700; }
.af-banner-sep { opacity: 0.4; }

/* Nav — brand logo preserved intact */
.af-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--af-line);
  background: var(--af-bg);
  z-index: 2;
}
.af-logo {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--af-red);
  -webkit-text-stroke: 0.5px var(--af-red);
}
.af-logo em {
  font-style: normal;
  color: var(--af-navy);
  -webkit-text-stroke: 0.5px var(--af-navy);
}
.af-links {
  display: flex;
  gap: 20px;
  margin-left: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--af-ink);
}
.af-links a { cursor: pointer; }
.af-order {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--af-red);
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: -0.005em;
  box-shadow: 0 4px 10px -4px rgba(230, 0, 35, 0.5);
}

/* Hero — flat red deals canvas */
.af-hero {
  position: relative;
  background: var(--af-red);
  color: #fff;
  padding: clamp(18px, 2.8vw, 28px) clamp(20px, 3vw, 32px) clamp(12px, 2vw, 16px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(10px, 1.4vw, 16px);
  min-height: 0;
  overflow: hidden;
}

/* Rotated starburst sticker top-right */
.af-sticker {
  position: absolute;
  top: clamp(-10px, -0.4vw, -4px);
  right: clamp(10px, 2vw, 22px);
  width: clamp(70px, 8.5vw, 94px);
  height: clamp(70px, 8.5vw, 94px);
  transform: rotate(-10deg);
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.af-sticker-burst {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 3px 0 rgba(0,0,0,0.15));
}
.af-sticker-text {
  position: relative;
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(14px, 1.7vw, 18px);
  color: var(--af-cream);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 0.95;
  text-transform: uppercase;
}

/* Giant display headline */
.af-h1 {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--af-cream);
  text-transform: uppercase;
  max-width: 70%;
}
.af-h1 em {
  font-style: normal;
  color: var(--af-mustard);
}

/* Mascot */
.af-mascot {
  position: absolute;
  right: clamp(-10px, 2vw, 30px);
  top: clamp(60px, 7vw, 90px);
  width: clamp(130px, 15vw, 200px);
  height: auto;
  z-index: 2;
  transform: rotate(6deg);
  pointer-events: none;
}

/* Deals grid */
.af-deals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.4vw, 14px);
  align-self: end;
  position: relative;
  z-index: 1;
}
.af-deal {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 6px;
  padding: clamp(14px, 1.8vw, 20px);
  border: 3px solid var(--af-ink);
  box-shadow: 6px 6px 0 var(--af-ink);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  min-width: 0;
}
.af-deal:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--af-ink);
}
.af-deal-navy {
  background: var(--af-navy);
  color: var(--af-cream);
}
.af-deal-mustard {
  background: var(--af-mustard);
  color: var(--af-ink);
}
.af-deal-cream {
  background: var(--af-cream);
  color: var(--af-ink);
}
.af-deal-kicker {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.af-deal-navy .af-deal-kicker { color: var(--af-mustard); }
.af-deal-mustard .af-deal-kicker { color: var(--af-ink); }
.af-deal-cream .af-deal-kicker { color: var(--af-red); }
.af-deal-title {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.af-deal-mustard .af-deal-title,
.af-deal-cream .af-deal-title { color: var(--af-red); }
.af-deal-navy .af-deal-title em { color: var(--af-mustard); font-style: normal; }
.af-deal-mustard .af-deal-title em,
.af-deal-cream .af-deal-title em { color: var(--af-navy); font-style: normal; }
.af-deal-title sup {
  font-size: 0.45em;
  vertical-align: 0.35em;
  margin-left: 2px;
  letter-spacing: 0;
}
.af-deal-desc {
  font-size: 11.5px;
  line-height: 1.4;
  max-width: 22ch;
}
.af-deal-navy .af-deal-desc { color: rgba(255, 246, 232, 0.85); }
.af-deal-btn {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(13px, 1.6vw, 17px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 16px;
  justify-self: start;
  align-self: end;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--af-red);
  color: var(--af-cream);
  transition: background .2s ease;
}
.af-deal-btn span { transition: transform .2s ease; }
.af-deal:hover .af-deal-btn span { transform: translateX(3px); }
.af-deal-cream .af-deal-btn {
  background: var(--af-navy);
}

/* Stamp rosette on the middle card */
.af-deal-stamp {
  position: absolute;
  top: -12px;
  right: -14px;
  transform: rotate(12deg);
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(11px, 1.3vw, 14px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--af-cream);
  background: var(--af-red);
  padding: 8px 10px;
  border: 2.5px solid var(--af-ink);
  box-shadow: 3px 3px 0 var(--af-ink);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

.af-strap {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--af-cream);
  opacity: 0.85;
  text-align: center;
  margin: 2px 0 0;
}

/* --- Pizza House mobile reflow ------------------------------ */
@container af (max-width: 480px) {
  .af-site {
    font-size: 13px;
    grid-template-rows: auto auto auto;
  }

  .af-banner {
    padding: 7px 12px;
    font-size: 9.5px;
    gap: 6px;
    flex-wrap: nowrap;
  }
  .af-banner-sep,
  .af-banner-phone { display: none; }

  .af-nav {
    padding: 11px 14px;
    gap: 10px;
  }
  .af-logo { font-size: 22px; }
  .af-links { display: none; }
  .af-order {
    margin-left: auto;
    font-size: 11px;
    padding: 7px 14px;
  }

  .af-hero {
    padding: 22px 16px 18px;
    gap: 16px;
    grid-template-rows: auto auto auto;
  }

  .af-sticker {
    width: 64px;
    height: 64px;
    top: 8px;
    right: 10px;
  }
  .af-sticker-text { font-size: 12px; }

  .af-h1 {
    font-size: 50px;
    line-height: 0.86;
    max-width: 70%;
  }

  .af-mascot {
    width: 96px;
    right: -14px;
    top: 78px;
  }

  .af-deals {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 8px;
  }
  .af-deal {
    padding: 14px 16px;
    gap: 4px;
    box-shadow: 5px 5px 0 var(--af-ink);
    grid-template-rows: auto auto auto auto;
  }
  .af-deal-kicker { font-size: 9px; letter-spacing: 0.2em; }
  .af-deal-title { font-size: 38px; line-height: 0.9; }
  .af-deal-desc {
    font-size: 11.5px;
    max-width: none;
  }
  .af-deal-btn {
    font-size: 13px;
    padding: 7px 14px;
    margin-top: 4px;
  }
  .af-deal-stamp {
    top: -8px;
    right: -10px;
    font-size: 10px;
    padding: 6px 8px;
    border-width: 2px;
    box-shadow: 2px 2px 0 var(--af-ink);
  }

  .af-strap {
    font-size: 9px;
    letter-spacing: 0.18em;
    margin-top: 4px;
  }
}

/* ============================================================
   Showcase 002 — Tanning Studio BEFORE
   Classic UK "we've-bought-a-template" look. Orange/amber,
   stretched logos, stacked banners, raw URL socials.
   ============================================================ */
.tb-site {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #fff;
  color: #222;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10.5px;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
}
.tb-topbar {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  padding: 5px 10px;
  background: #fff;
  border-bottom: 1px solid #efe9dc;
  font-size: 9px;
  font-weight: 700;
  color: #2a2a2a;
}
.tb-topbar div { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tb-topbar div:last-child { text-align: right; }
.tb-topbar span { color: #f28c1d; margin-right: 3px; }

.tb-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 8px 12px 10px;
  background: #fff;
}
.tb-logo { display: flex; align-items: center; gap: 5px; }
.tb-logo-sun {
  font-size: 24px;
  color: #f6ad2e;
  text-shadow: 0 0 6px rgba(246, 173, 46, 0.5);
}
.tb-logo-text {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 16px;
  color: #111;
  line-height: 1;
}
.tb-logo-text em { font-style: italic; color: #111; }
.tb-logo-text small {
  font-family: 'Brush Script MT', cursive;
  font-size: 10px;
  color: #c8102e;
}
.tb-search {
  display: flex;
  align-items: stretch;
  border: 2px solid #c8102e;
  border-radius: 2px;
  overflow: hidden;
  font-size: 9.5px;
}
.tb-search input {
  flex: 1;
  border: 0;
  padding: 5px 8px;
  outline: none;
  font-size: 9.5px;
  color: #333;
  min-width: 0;
  background: #fff;
}
.tb-cat {
  padding: 5px 8px;
  border-left: 1px solid #e5e5e5;
  background: #fff;
  color: #222;
  font-weight: 600;
  white-space: nowrap;
}
.tb-searchbtn {
  background: #f28c1d;
  color: #fff;
  padding: 0 12px;
  font-size: 11px;
  border: 0;
  cursor: pointer;
}
.tb-user { font-size: 14px; color: #333; }

.tb-nav {
  display: flex;
  background: #f28c1d;
  color: #fff;
  overflow: hidden;
}
.tb-nav a {
  padding: 7px 9px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  border-right: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
}

.tb-hero {
  position: relative;
  min-height: 100px;
  background-size: cover;
  background-position: center;
  background-color: #3a2010;
  display: grid;
  place-items: center;
  padding: 16px 12px;
}
.tb-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.28);
}
.tb-hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(15px, 2.6vw, 26px);
  color: #2a2a2a;
  letter-spacing: -0.4px;
  text-align: center;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.4);
  opacity: 0.95;
}

.tb-centerlogo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px 10px;
  background: #000;
  color: #fff;
  margin: 12px 24px 0;
  border: 1px solid #222;
}
.tb-cl-sun {
  width: 24px; height: 24px;
  color: #f6ad2e;
  filter: drop-shadow(0 0 6px rgba(246, 173, 46, 0.7));
  flex-shrink: 0;
}
.tb-cl-text {
  font-family: 'Times New Roman', serif;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.tb-cl-text em {
  font-style: italic;
  background: linear-gradient(180deg, #f3c74d 0%, #b57e1c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Times New Roman', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.tb-cl-text small {
  font-family: 'Times New Roman', serif;
  font-size: 8.5px;
  letter-spacing: 0.32em;
  font-weight: 400;
  color: #fff;
  margin-top: 2px;
}

.tb-info {
  padding: 10px 18px 0;
  font-size: 9.5px;
  color: #0b5394;
  line-height: 1.55;
}
.tb-info p {
  margin: 0;
  text-decoration: underline;
  text-decoration-color: rgba(11, 83, 148, 0.35);
}

.tb-welcome { padding: 8px 18px 10px; }
.tb-welcome-h {
  font-family: 'Arial Black', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #111;
  margin: 4px 0 6px;
  line-height: 1.2;
}
.tb-welcome p {
  font-size: 9.5px;
  color: #333;
  margin: 0 0 5px;
  line-height: 1.5;
}
.tb-welcome strong { color: #111; }

.tb-cookie {
  margin-top: auto;
  background: #111;
  color: #fff;
  font-size: 8.5px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tb-cookie span {
  margin-left: auto;
  background: #fff;
  color: #111;
  padding: 3px 9px;
  font-weight: 700;
  font-size: 8.5px;
  cursor: pointer;
}
.tb-minimum {
  background: #f28c1d;
  color: #fff;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.tb-chat {
  position: absolute;
  right: 10px;
  bottom: 42px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #ffd84d;
  border-radius: 4px;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 3;
}

/* ============================================================
   Showcase 002 — Solene Tanning Studio AFTER
   Same sun+italic wordmark preserved from the before. Warm
   dark brown surface (not near-black), matte gold (no
   metallic gradient). Schedule-as-hero: today's slots in a
   3-column morning/afternoon/evening grid, each slot a
   tappable pill. Prices + visit strip beneath.
   ============================================================ */
.ta-site {
  --ta-bg:      #2a1e17;
  --ta-bg-2:    #1f1611;
  --ta-bg-3:    #34251c;
  --ta-bone:    #f2ead8;
  --ta-bone-m:  #a69e88;
  --ta-gold:    #c9a356;
  --ta-gold-d:  #a07f3b;
  --ta-gold-l:  #e2c482;
  --ta-line:    rgba(242, 234, 216, 0.10);
  --ta-line-2:  rgba(242, 234, 216, 0.18);

  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ta-bg);
  color: var(--ta-bone);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  container-type: inline-size;
  container-name: ta;
}

/* Nav — preserved sun + italic-serif + subtitle wordmark */
.ta-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--ta-line);
  background: var(--ta-bg);
}
.ta-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ta-logo-sun {
  width: 22px; height: 22px;
  color: var(--ta-gold);
  flex-shrink: 0;
}
.ta-logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.ta-logo-text em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  font-size: 19px;
  letter-spacing: 0.005em;
  color: var(--ta-gold-l);
}
.ta-logo-text small {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 7.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ta-bone-m);
  margin-top: 3px;
}
.ta-links {
  display: flex;
  gap: 18px;
  margin-left: 10px;
  font-size: 11.5px;
  color: var(--ta-bone-m);
}
.ta-links a { cursor: pointer; transition: color .25s ease; }
.ta-links a:hover { color: var(--ta-bone); }
.ta-book {
  margin-left: auto;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 16px;
  background: var(--ta-gold);
  color: var(--ta-bg);
  cursor: pointer;
  transition: background .25s ease;
}
.ta-book:hover { background: var(--ta-gold-l); }

/* Hero — schedule-led */
.ta-hero {
  padding: clamp(18px, 2.6vw, 28px) clamp(20px, 3vw, 32px) clamp(14px, 2vw, 20px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(14px, 2vw, 20px);
  min-height: 0;
}

.ta-hero-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 14px;
}
.ta-eyebrow {
  grid-column: 1 / -1;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ta-gold);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ta-eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--ta-gold);
}
.ta-h1 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  font-size: clamp(26px, 4.2vw, 50px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
  color: var(--ta-bone);
}
.ta-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ta-gold-l);
}
.ta-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ta-bone);
  padding: 6px 11px;
  background: rgba(201, 163, 86, 0.10);
  border: 1px solid rgba(201, 163, 86, 0.35);
  border-radius: 999px;
  justify-self: end;
  align-self: end;
  white-space: nowrap;
}
.ta-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4caf64;
  box-shadow: 0 0 0 2px rgba(76, 175, 100, 0.18);
}

/* Schedule — 3 shift columns */
.ta-schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
  min-height: 0;
}
.ta-shift {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  min-width: 0;
}
.ta-shift-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ta-bone-m);
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ta-line);
}
.ta-slots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: start;
}
.ta-slot {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ta-bone);
  padding: 7px 11px;
  border: 1px solid var(--ta-gold-d);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.ta-slot:hover {
  background: var(--ta-gold);
  color: var(--ta-bg);
  border-color: var(--ta-gold);
}
.ta-slot-taken {
  color: var(--ta-bone-m);
  border-color: var(--ta-line-2);
  border-style: dashed;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  cursor: not-allowed;
  opacity: 0.55;
}
.ta-slot-taken:hover {
  background: transparent;
  color: var(--ta-bone-m);
  border-color: var(--ta-line-2);
}

/* Prices row */
.ta-prices {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ta-line);
  background: var(--ta-bg-2);
}
.ta-price {
  position: relative;
  padding: 14px 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-right: 1px solid var(--ta-line);
}
.ta-price:last-child { border-right: none; }
.ta-price-feature {
  background: var(--ta-bg-3);
}
.ta-price-flag {
  position: absolute;
  top: -8px;
  left: 14px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--ta-gold);
  color: var(--ta-bg);
}
.ta-price-name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ta-bone);
  letter-spacing: 0.005em;
}
.ta-price-num {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1;
  color: var(--ta-gold-l);
  letter-spacing: -0.02em;
}
.ta-price-num small {
  font-size: 0.55em;
  vertical-align: top;
  margin-right: 2px;
  color: var(--ta-gold-d);
}

/* Visit strip */
.ta-visit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 18px;
  background: var(--ta-bg-2);
  border-top: 1px solid var(--ta-line);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ta-bone-m);
}
.ta-visit-sep { color: var(--ta-gold); opacity: 0.6; }

/* --- Solene mobile reflow ----------------------------------- */
@container ta (max-width: 480px) {
  .ta-site {
    font-size: 13px;
    grid-template-rows: auto auto auto auto;
  }

  .ta-nav { padding: 12px 14px; gap: 10px; }
  .ta-logo-text em { font-size: 17px; }
  .ta-logo-text small { font-size: 7px; }
  .ta-links { display: none; }
  .ta-book { font-size: 10px; padding: 8px 14px; letter-spacing: 0.12em; }

  .ta-hero { padding: 20px 16px 18px; gap: 16px; }
  .ta-hero-head { grid-template-columns: 1fr; gap: 10px; }
  .ta-eyebrow { font-size: 9px; letter-spacing: 0.18em; }
  .ta-h1 { font-size: 32px; line-height: 1; }
  .ta-status {
    justify-self: start;
    align-self: start;
    font-size: 9px;
    padding: 5px 9px;
  }

  /* Schedule: one shift per row, slots stay tappable */
  .ta-schedule { grid-template-columns: 1fr; gap: 16px; }
  .ta-shift { gap: 8px; }
  .ta-shift-label { font-size: 9px; padding-bottom: 7px; }
  .ta-slots { gap: 6px; }
  .ta-slot { font-size: 11px; padding: 7px 11px; }

  /* Prices: stacked rows */
  .ta-prices { grid-template-columns: 1fr; }
  .ta-price {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid var(--ta-line);
    padding: 14px 18px;
  }
  .ta-price:last-child { border-bottom: none; }
  .ta-price-flag { font-size: 7.5px; top: -7px; left: 14px; padding: 2px 6px; }
  .ta-price-name { font-size: 12px; }
  .ta-price-num { font-size: 22px; }

  .ta-visit { font-size: 9px; padding: 10px 16px; gap: 8px; letter-spacing: 0.14em; }
}

/* ============================================================
   Showcase 003 — Barber Shop BEFORE
   Dated template: vertical striped wallpaper, ornate ribbon
   logo, oversized award slider, red-underline "discerning
   gentleman" copy, decorative scissor/razor glyph row.
   ============================================================ */
.bb-site {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #f5f5f3;
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  color: #222;
  font-size: 12px;
  line-height: 1.4;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
}
.bb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 14px;
  background: #2a2a2a;
  color: #ccc;
  border-top: 3px solid #c52c2c;
  font-size: 10px;
}
.bb-topbar-left { display: flex; gap: 14px; flex-wrap: wrap; }
.bb-tb-item { display: inline-flex; align-items: center; gap: 5px; }
.bb-tb-ic { color: #c29a3c; font-size: 11px; }
.bb-topbar-right { display: flex; gap: 6px; }
.bb-tb-soc {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 11px;
  border-radius: 2px;
}
.bb-tb-fb { background: #1877f2; color: #fff; }
.bb-tb-tw { background: #1da1f2; color: #fff; }
.bb-tb-ig { background: #e4405f; color: #fff; }

.bb-hero {
  position: relative;
  background:
    repeating-linear-gradient(
      90deg,
      #222 0,
      #222 16px,
      #3a3a3a 16px,
      #3a3a3a 32px
    );
  overflow: hidden;
  min-height: 0;
}
.bb-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 3;
}
.bb-hero-arrow-l { left: 8px; }
.bb-hero-arrow-r { right: 8px; }
.bb-ribbon {
  position: absolute;
  left: 16px;
  top: 16px;
  display: flex;
  align-items: center;
  gap: 0;
  color: #fff;
  font-family: 'Times New Roman', Georgia, serif;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.35));
}
.bb-ribbon-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 14px;
  border: 1.5px solid #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  position: relative;
}
.bb-ribbon-body::before,
.bb-ribbon-body::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px;
  height: 1px;
  background: #fff;
}
.bb-ribbon-body::before { top: 3px; }
.bb-ribbon-body::after  { bottom: 3px; }
.bb-ribbon-top {
  font-size: 7px;
  letter-spacing: 0.25em;
  color: #c52c2c;
  text-transform: uppercase;
  font-weight: 700;
  font-family: Georgia, serif;
}
.bb-ribbon-main {
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-style: italic;
  margin-top: 1px;
}
.bb-ribbon-scroll {
  width: 20px; height: 22px;
  display: grid; place-items: center;
  font-family: Georgia, serif;
  font-size: 8.5px;
  font-weight: 700;
  color: #fff;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.12) 0%, transparent 60%);
  border: 1px solid #fff;
  border-radius: 50% 10% 50% 10%;
  position: relative;
  z-index: 2;
}
.bb-ribbon-scroll-l { margin-right: -6px; transform: rotate(-6deg); }
.bb-ribbon-scroll-r { margin-left: -6px; transform: rotate(6deg); }

.bb-award {
  position: absolute;
  right: 18%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  text-align: center;
  line-height: 1;
}
.bb-award-sub {
  font-size: 7px;
  letter-spacing: 0.18em;
  background: #fff;
  color: #111;
  padding: 2px 5px;
  border-radius: 1px;
  font-family: Arial, sans-serif;
  font-weight: 800;
}
.bb-award-sub sup { font-size: 0.6em; vertical-align: super; }
.bb-award-title {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-shadow: 0 1px 0 #000, 0 0 10px rgba(0,0,0,0.6);
}
.bb-award-title em {
  display: block;
  font-style: normal;
  font-size: 26px;
  letter-spacing: 0.02em;
  margin: 1px 0;
}
.bb-award-title small {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.bb-award-year {
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 4px;
  text-shadow: 0 1px 0 #000;
}
.bb-award-pole {
  position: absolute;
  right: -34px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 60px;
  border-radius: 9px;
  background:
    repeating-linear-gradient(
      30deg,
      #c52c2c 0,
      #c52c2c 4px,
      #ffffff 4px,
      #ffffff 8px,
      #1e4bb8 8px,
      #1e4bb8 12px,
      #ffffff 12px,
      #ffffff 16px
    );
  border: 1.5px solid #fff;
  box-shadow: 0 0 0 1px #000;
}

.bb-nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 10px 18px;
  background: #f5f5f3;
  border-bottom: 1px solid #e2e0db;
  color: #222;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.bb-nav a { cursor: pointer; }
.bb-nav-active {
  color: #c52c2c;
  border-bottom: 2px solid #c52c2c;
  padding-bottom: 2px;
}

.bb-welcome {
  padding: 14px 16px 6px;
  text-align: center;
  background: #fff;
}
.bb-welcome-h {
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.35;
  max-width: 32ch;
  margin-inline: auto;
}
.bb-welcome::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: #c52c2c;
  margin: 0 auto;
}
.bb-icons {
  display: flex;
  justify-content: space-around;
  padding: 14px 18px 18px;
  background: #fff;
  font-size: 22px;
  color: #555;
}

/* ============================================================
   Showcase 003 — Ember & Blade AFTER
   Same shop, same ribbon logo. The site reframes around what
   a customer actually needs: hours, address, book button,
   prices. Warm ivory surface, matte red accent (their brand
   red), no dark-luxe mood. Preserve — don't rebrand.
   ============================================================ */
.eb-site {
  --eb-bg:     #f6f1e7;
  --eb-panel:  #fbf7ec;
  --eb-ink:    #1c1a18;
  --eb-ink-m:  #6e665c;
  --eb-red:    #c52c2c;
  --eb-red-d:  #9a1f1f;
  --eb-line:   rgba(28, 26, 24, 0.10);
  --eb-rule:   rgba(28, 26, 24, 0.30);
  --eb-ok:     #3f8a4a;

  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--eb-bg);
  color: var(--eb-ink);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  display: grid;
  grid-template-rows: auto 1fr auto;
  container-type: inline-size;
  container-name: eb;
}

/* Nav — ribbon logo preserved, minimal links */
.eb-topbar {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 20px;
  background: var(--eb-bg);
  border-bottom: 1px solid var(--eb-line);
}
.eb-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--eb-ink);
  font-family: Georgia, 'Times New Roman', serif;
}
.eb-ribbon-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 12px;
  border: 1.2px solid var(--eb-ink);
  background: transparent;
  position: relative;
}
.eb-ribbon-body::before,
.eb-ribbon-body::after {
  content: '';
  position: absolute;
  left: 3px; right: 3px;
  height: 1px;
  background: var(--eb-ink);
}
.eb-ribbon-body::before { top: 2.5px; }
.eb-ribbon-body::after  { bottom: 2.5px; }
.eb-ribbon-top {
  font-size: 6.5px;
  letter-spacing: 0.28em;
  color: var(--eb-red);
  text-transform: uppercase;
  font-weight: 700;
  font-family: Georgia, serif;
}
.eb-ribbon-main {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-style: italic;
  color: var(--eb-ink);
  margin-top: 1px;
}
.eb-ribbon-scroll {
  width: 16px; height: 18px;
  display: grid; place-items: center;
  font-family: Georgia, serif;
  font-size: 7.5px;
  font-weight: 700;
  color: var(--eb-ink);
  border: 1px solid var(--eb-ink);
  border-radius: 50% 10% 50% 10%;
  position: relative;
  z-index: 2;
  background: var(--eb-bg);
}
.eb-ribbon-scroll-l { margin-right: -5px; transform: rotate(-6deg); }
.eb-ribbon-scroll-r { margin-left: -5px; transform: rotate(6deg); }

.eb-links {
  display: flex;
  gap: 20px;
  margin-left: 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--eb-ink-m);
  text-transform: uppercase;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 500;
}
.eb-links a { cursor: pointer; transition: color .25s ease; }
.eb-links a:hover { color: var(--eb-ink); }
.eb-book {
  margin-left: auto;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 9px 16px;
  color: #fff;
  background: var(--eb-red);
  cursor: pointer;
  transition: background .25s ease;
}
.eb-book:hover { background: var(--eb-red-d); }

/* Hero — info panel + single photo. The panel IS the booking card. */
.eb-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  min-height: 0;
}
.eb-panel {
  padding: clamp(18px, 2.8vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--eb-panel);
  border-right: 1px solid var(--eb-line);
}
.eb-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eb-ink);
  padding: 5px 9px 5px 8px;
  background: rgba(63, 138, 74, 0.08);
  border: 1px solid rgba(63, 138, 74, 0.28);
  border-radius: 999px;
  margin: 0;
}
.eb-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--eb-ok);
  box-shadow: 0 0 0 2px rgba(63, 138, 74, 0.18);
}
.eb-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.eb-hours-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-weight: 500;
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--eb-ink);
  border-bottom: 1px dashed var(--eb-line);
  padding: 6px 0;
}
.eb-hours-line:last-child { border-bottom: none; }
.eb-hours-line em {
  font-style: normal;
  font-weight: 500;
  color: var(--eb-red);
}
.eb-meta {
  display: grid;
  gap: 8px;
  margin: 0;
}
.eb-meta > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  align-items: baseline;
}
.eb-meta dt {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eb-ink-m);
}
.eb-meta dd {
  margin: 0;
  font-size: 12.5px;
  color: var(--eb-ink);
  line-height: 1.4;
}
.eb-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.eb-btn {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 11px 18px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  border: 1px solid transparent;
}
.eb-btn-red {
  background: var(--eb-red);
  color: #fff;
  border-color: var(--eb-red);
}
.eb-btn-red:hover { background: var(--eb-red-d); border-color: var(--eb-red-d); }
.eb-btn-ghost {
  background: transparent;
  color: var(--eb-ink);
  border-color: var(--eb-ink);
}
.eb-btn-ghost:hover { background: var(--eb-ink); color: var(--eb-bg); }

.eb-hero-image {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 100%;
}

/* Menu — single-column list, name, dotted leader, price, desc */
.eb-menu {
  padding: clamp(16px, 2.4vw, 26px) clamp(18px, 2.8vw, 34px) clamp(14px, 2vw, 22px);
  background: var(--eb-bg);
  border-top: 1px solid var(--eb-line);
}
.eb-menu-title {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eb-ink-m);
  margin: 0 0 8px;
}
.eb-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.eb-menu-list li {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  column-gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--eb-line);
}
.eb-menu-list li:last-child { border-bottom: none; }
.eb-menu-name {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-weight: 400;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1;
  color: var(--eb-ink);
  letter-spacing: -0.005em;
}
.eb-menu-rule {
  height: 1px;
  background-image:
    radial-gradient(circle, var(--eb-rule) 0.7px, transparent 0.8px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: 0 50%;
  align-self: center;
}
.eb-menu-price {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-weight: 500;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1;
  color: var(--eb-red);
  letter-spacing: -0.01em;
}
.eb-menu-price small {
  font-size: 0.58em;
  vertical-align: top;
  margin-right: 1px;
  color: var(--eb-red-d);
  font-weight: 500;
}
.eb-menu-desc {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eb-ink-m);
  min-width: 60px;
  text-align: right;
}
.eb-menu-foot {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eb-ink-m);
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--eb-line);
  text-align: center;
}

/* --- Ember & Blade mobile reflow ---------------------------- */
@container eb (max-width: 480px) {
  .eb-site {
    font-size: 13px;
    grid-template-rows: auto auto auto;
  }

  .eb-topbar { padding: 12px 14px; gap: 10px; }
  .eb-ribbon-main { font-size: 11px; }
  .eb-links { display: none; }
  .eb-book { font-size: 10px; padding: 8px 14px; letter-spacing: 0.12em; }

  /* Hero stacks: photo on top, info panel below */
  .eb-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 200px auto;
  }
  .eb-hero-image { min-height: 200px; order: -1; }
  .eb-panel {
    padding: 18px 16px;
    gap: 14px;
    border-right: none;
    border-top: 1px solid var(--eb-line);
  }
  .eb-status { font-size: 9px; padding: 5px 9px; }
  .eb-hours-line {
    font-size: 22px;
    padding: 5px 0;
  }
  .eb-meta > div { grid-template-columns: 56px 1fr; gap: 10px; }
  .eb-meta dt { font-size: 9px; }
  .eb-meta dd { font-size: 12px; }
  .eb-actions { gap: 8px; }
  .eb-btn { font-size: 10px; padding: 9px 14px; letter-spacing: 0.12em; }

  /* Menu: keep all items, drop the cut/style description column */
  .eb-menu { padding: 18px 16px 14px; }
  .eb-menu-title { font-size: 9px; letter-spacing: 0.18em; }
  .eb-menu-list li {
    grid-template-columns: auto 1fr auto;
    column-gap: 10px;
    padding: 10px 0;
  }
  .eb-menu-name { font-size: 16px; }
  .eb-menu-price { font-size: 16px; }
  .eb-menu-desc { display: none; }
  .eb-menu-foot { font-size: 9px; }
}

/* ============================================================
   Showcase 004 — Florist BEFORE
   Generic shopify-template florist: plain white, bordered
   mini-logo, grey all-caps nav, SEO wall, cookie modal
   overlaying a 4-col cart grid.
   ============================================================ */
.fb-site {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #ffffff;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.4;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
}
.fb-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
}
.fb-search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #888;
  border-bottom: 1px solid transparent;
  max-width: 180px;
}
.fb-search-label { border-bottom: 1px solid transparent; }
.fb-search-icon { color: #aaa; font-size: 13px; }

.fb-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #555;
}
.fb-logo-flower {
  width: 14px; height: 14px;
  position: relative;
  display: inline-block;
}
.fb-logo-petal {
  position: absolute;
  inset: 1px 3px 5px 3px;
  background: #e6621a;
  border-radius: 50%;
}
.fb-logo-leaf {
  position: absolute;
  left: 0; bottom: 0;
  width: 14px; height: 6px;
  background: #2e7a3a;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.fb-logo-text {
  font-size: 14px;
  color: #444;
  letter-spacing: 0.01em;
}

.fb-cart {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #555;
}
.fb-cart-n { color: #999; }
.fb-cart-icon { font-size: 14px; }

.fb-nav {
  display: flex;
  gap: 28px;
  padding: 12px 20px;
  background: #7a7a78;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.fb-nav a { cursor: pointer; }

.fb-banner {
  margin: 14px 18px 8px;
  padding: 18px 20px;
  border: 1px solid #c7c7c7;
  background: #fff;
}
.fb-h1 {
  font-size: 20px;
  font-weight: 400;
  color: #3a3a3a;
  margin: 0 0 8px;
  letter-spacing: 0.005em;
}
.fb-banner p {
  font-size: 11px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.fb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e8e8e8;
  margin: 8px 18px 0;
  border: 1px solid #e8e8e8;
}
.fb-product {
  background: #fff;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.fb-product-img {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  background-color: #fff;
}
.fb-product-name {
  font-size: 11px;
  color: #999;
  font-weight: 400;
  margin-top: 2px;
}
.fb-product-price {
  font-size: 12px;
  color: #444;
  font-weight: 700;
}
.fb-product-btn {
  margin-top: 4px;
  width: 100%;
  padding: 5px 6px;
  background: #fff;
  border: 1px solid #c7c7c7;
  color: #888;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.fb-cookie {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  width: min(60%, 260px);
  padding: 14px 16px 12px;
  background: #fff;
  border: 1px solid #c7c7c7;
  box-shadow: 0 2px 0 rgba(0,0,0,0.05);
  text-align: center;
  z-index: 5;
}
.fb-cookie p {
  font-size: 11px;
  color: #555;
  margin: 0 0 10px;
  line-height: 1.5;
}
.fb-cookie-ok {
  padding: 5px 18px;
  background: #bdbdbd;
  border: none;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.fb-cookie-more {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  color: #aaa;
  cursor: pointer;
}

/* ============================================================
   Showcase 004 — Fern & Fawn AFTER
   Editorial magazine layout. Sage sidebar (masthead) + cream
   content column. Lowercase thin Inter for display — no
   Fraunces. Offerings as a numbered contents list, not cards.
   Same bordered-box wordmark preserved.
   ============================================================ */
.ff-site {
  --ff-bg:    #f0ede3;
  --ff-panel: #f7f4ea;
  --ff-ink:   #1c2722;
  --ff-ink-m: #6e756d;
  --ff-sage:  #3a5141;
  --ff-sage-d:#233429;
  --ff-blush: #c99490;
  --ff-blush-d:#a77370;
  --ff-line:  rgba(28, 39, 34, 0.12);

  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ff-bg);
  color: var(--ff-ink);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  display: grid;
  grid-template-columns: clamp(180px, 22%, 240px) 1fr;
  container-type: inline-size;
  container-name: ff;
}

/* Sidebar — sage masthead column */
.ff-side {
  background: var(--ff-sage);
  color: var(--ff-bg);
  padding: 22px 18px 20px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 22px;
  overflow: hidden;
}
.ff-side .ff-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border: 1px solid var(--ff-bg);
  background: transparent;
  justify-self: start;
  align-self: start;
}
.ff-logo-flower {
  width: 13px; height: 13px;
  position: relative;
  display: inline-block;
}
.ff-logo-petal {
  position: absolute;
  inset: 1px 3px 5px 3px;
  background: var(--ff-blush);
  border-radius: 50%;
}
.ff-logo-leaf {
  position: absolute;
  left: 0; bottom: 0;
  width: 13px; height: 6px;
  background: var(--ff-sage);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.ff-side .ff-logo-leaf { background: var(--ff-bg); }
.ff-logo-text {
  font-size: 13.5px;
  letter-spacing: 0.005em;
  font-weight: 400;
}
.ff-side .ff-logo-text { color: var(--ff-bg); }

.ff-side-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  letter-spacing: 0.005em;
  color: var(--ff-bg);
}
.ff-side-nav a {
  cursor: pointer;
  position: relative;
  padding: 2px 0 2px 0;
  transition: padding .25s ease, color .25s ease;
}
.ff-side-nav a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0;
  height: 1px;
  background: var(--ff-blush);
  transition: width .25s ease;
}
.ff-side-nav a:hover {
  padding-left: 16px;
  color: var(--ff-blush);
}
.ff-side-nav a:hover::before { width: 10px; }

.ff-side-info {
  margin: 0;
  display: grid;
  gap: 14px;
  align-self: end;
}
.ff-side-info > div { display: grid; gap: 3px; }
.ff-side-info dt {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ff-blush);
}
.ff-side-info dd {
  margin: 0;
  font-size: 11.5px;
  color: var(--ff-bg);
  line-height: 1.45;
}

.ff-side .ff-order {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-blush);
  border-bottom: 1px solid var(--ff-blush);
  padding: 2px 0 4px;
  cursor: pointer;
  justify-self: start;
  transition: color .25s ease, border-color .25s ease;
}
.ff-side .ff-order:hover { color: var(--ff-bg); border-color: var(--ff-bg); }

/* Main column — compact copy + photo-led offer cards */
.ff-main {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--ff-bg);
  min-width: 0;
}

.ff-copy {
  padding: clamp(18px, 2.6vw, 28px) clamp(20px, 3vw, 32px) clamp(14px, 2vw, 20px);
  display: grid;
  gap: 10px;
  max-width: 60ch;
}
.ff-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ff-ink);
  background: var(--ff-panel);
  padding: 5px 10px;
  border: 1px solid var(--ff-line);
  margin: 0;
}
.ff-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ff-blush);
}
.ff-h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ff-ink);
  margin: 0;
}
.ff-lede {
  font-size: 12px;
  line-height: 1.55;
  color: var(--ff-ink-m);
  max-width: 50ch;
  margin: 0;
}

/* Offerings — 3 photo-led cards */
.ff-offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ff-line);
  border-top: 1px solid var(--ff-line);
  min-height: 0;
}
.ff-offer-card {
  background: var(--ff-bg);
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 0;
  cursor: pointer;
  transition: background .25s ease;
}
.ff-offer-card:hover { background: var(--ff-panel); }
.ff-offer-photo {
  background-size: cover;
  background-position: center;
  min-height: 0;
  width: 100%;
}
.ff-offer-body {
  padding: 12px 16px 16px;
  display: grid;
  gap: 6px;
}
.ff-offer-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 10px;
  align-items: baseline;
}
.ff-offer-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ff-blush-d);
  font-weight: 500;
}
.ff-offer-name {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.9vw, 20px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ff-ink);
}
.ff-offer-price {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.9vw, 20px);
  line-height: 1.15;
  color: var(--ff-sage);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.ff-offer-price small {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.5em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ff-ink-m);
  margin-right: 4px;
  vertical-align: 0.22em;
  font-weight: 500;
}
.ff-offer-desc {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ff-ink-m);
  margin: 0;
  max-width: 36ch;
}

/* --- Fern & Fawn mobile reflow ------------------------------ */
/* The .ff-site root layout change (drop the desktop sidebar grid)
   has to live in a viewport @media query rather than a container
   query, because container queries can't reliably override `display`
   on the container element itself (that property would change the
   layout box that the query was evaluated against).
   Descendants live in the @container block below. */
@media (max-width: 779px) {
  .ff-site {
    display: flex !important;
    flex-direction: column !important;
  }
}

@container ff (max-width: 480px) {
  /* Sage header bar: logo + Order CTA, explicit height so the
     framed logo can never be clipped by an inherited overflow. */
  .ff-side {
    padding: 12px 16px;
    gap: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    min-height: 56px;
  }
  .ff-side-nav { display: none; }
  .ff-side-info { display: none; }
  .ff-side .ff-logo { margin: 0; align-self: center; }
  .ff-side .ff-order {
    font-size: 10px;
    margin: 0;
    padding: 4px 0 5px;
    align-self: center;
  }

  /* Main column */
  .ff-main {
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  .ff-copy {
    padding: 20px 16px 14px;
    max-width: none;
    gap: 8px;
  }
  .ff-pill { font-size: 9px; padding: 5px 10px; letter-spacing: 0.14em; }
  .ff-h1 { font-size: 24px; line-height: 1.1; }
  .ff-lede { font-size: 12px; max-width: none; line-height: 1.5; }

  /* Compact horizontal cards: photo left, info right.
     Sized so ~3 cards fit in a phone viewport at once. */
  .ff-offerings {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--ff-line);
  }
  .ff-offer-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto;
    gap: 0;
    background: var(--ff-bg);
    border-bottom: 1px solid var(--ff-line);
    min-height: 120px;
  }
  .ff-offer-card:last-child { border-bottom: none; }
  .ff-offer-photo {
    min-height: 120px;
    width: 120px;
    height: 100%;
  }
  .ff-offer-body {
    padding: 12px 14px;
    gap: 5px;
    align-content: center;
  }
  .ff-offer-row {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    align-items: baseline;
  }
  .ff-offer-num { font-size: 9px; letter-spacing: 0.18em; }
  .ff-offer-name { font-size: 15px; line-height: 1.15; }
  .ff-offer-price { font-size: 15px; line-height: 1.15; }
  .ff-offer-desc {
    font-size: 11px;
    line-height: 1.4;
    max-width: none;
    margin: 0;
  }
}

/* ------------------------------------------------------------
   Showcase — responsive
   ------------------------------------------------------------ */
@media (max-width: 820px) {
  .ss-caption { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ss-viewport { aspect-ratio: 4 / 5; }
  .ss-badge { font-size: 0.62rem; padding: 5px 8px; }

  .bf-nav ul { display: none; }
  .bf-nav { padding: 6px 10px; gap: 6px; }
  .bf-row { grid-template-columns: 1fr; }
  .bf-welcome { padding: 8px 12px; }

  /* Pizza House mobile reflow lives in a container query
     near the .af-site rules. */

  .tb-topbar { grid-template-columns: 1fr; gap: 2px; padding: 5px 10px; font-size: 8.5px; }
  .tb-topbar div { text-align: left !important; }
  .tb-nav { overflow-x: auto; }
  .tb-nav a { padding: 6px 8px; font-size: 8.5px; }
  .tb-header { grid-template-columns: auto 1fr; gap: 8px; }
  .tb-user { display: none; }
  .tb-centerlogo { margin: 10px 14px 0; }

  /* Solene mobile reflow lives in a container query
     near the .ta-site rules. */

  .bb-topbar { padding: 6px 10px; font-size: 9px; gap: 8px; }
  .bb-topbar-left { gap: 8px; }
  .bb-tb-item:nth-child(n+3) { display: none; }
  .bb-nav { gap: 10px; padding: 8px 10px; overflow-x: auto; }
  .bb-ribbon { left: 8px; top: 8px; }
  .bb-ribbon-main { font-size: 11px; }
  .bb-award { right: 10%; }
  .bb-award-title em { font-size: 20px; }
  .bb-award-pole { right: -22px; height: 44px; width: 14px; }

  /* Ember & Blade mobile reflow lives in a container query
     near the .eb-site rules. */

  .fb-header { grid-template-columns: auto auto; padding: 10px 12px; gap: 8px; }
  .fb-search { display: none; }
  .fb-cart { font-size: 9.5px; }
  .fb-nav { gap: 10px; padding: 8px 12px; font-size: 9px; overflow-x: auto; }
  .fb-banner { margin: 10px 12px; padding: 12px 14px; }
  .fb-h1 { font-size: 15px; }
  .fb-banner p { font-size: 10px; }
  .fb-grid { grid-template-columns: repeat(2, 1fr); margin: 6px 12px 0; }
  .fb-product-img { font-size: 32px; }
  .fb-cookie { top: 62%; width: min(75%, 220px); }

  /* Fern & Fawn mobile reflow lives in a container query
     near the .ff-site rules. */
  .ff-offer-card:last-child { border-bottom: none; }
  .ff-offer-photo { aspect-ratio: 1; min-height: 0; }
  .ff-offer-body { padding: 8px 12px; gap: 3px; }
  .ff-offer-row { column-gap: 8px; }
  .ff-offer-num { font-size: 8.5px; }
  .ff-offer-name, .ff-offer-price { font-size: 13px; }
  .ff-offer-desc { font-size: 10px; line-height: 1.4; }
}

/* ============================================================
   Services
   ============================================================ */
.services {
  padding-top: var(--pad-y-top);
  padding-bottom: var(--pad-y);
  background: var(--bg-cream);
  border-top: 1px solid var(--line-soft);
}
.service-list {
  display: grid;
  gap: 0;
}
.service-list > li {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: baseline;
  padding: clamp(2.25rem, 4vw, 3.25rem) 0;
  border-top: 1px solid var(--line-soft);
}
.service-list > li:last-child { border-bottom: 1px solid var(--line-soft); }
.service-index {
  color: var(--moss);
  align-self: start;
}
.service-list h3 {
  margin-bottom: 0.85rem;
  max-width: 18ch;
}
.service-list p {
  color: var(--ink-muted);
  max-width: 52ch;
  font-size: 1.02rem;
}

/* ============================================================
   Process
   ============================================================ */
.process {
  padding-top: var(--pad-y-top);
  padding-bottom: var(--pad-y);
  position: relative;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.steps > li {
  position: relative;
  padding-top: 76px;
}
.step-num {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bg);
  padding-right: 1rem;
  color: var(--moss);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.step-num::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--moss);
  border-radius: 50%;
}
.steps h3 { margin-bottom: 0.7rem; }
.steps p { color: var(--ink-muted); max-width: 40ch; }

/* ============================================================
   Pricing
   ============================================================ */
/* --- Outcomes (what it does for you) ----------------------- */
.outcomes {
  padding-top: var(--pad-y-top);
  padding-bottom: var(--pad-y);
  border-top: 1px solid var(--line);
}
/* Three panels visible side-by-side on desktop, each styled like a
   proc-card slide. Below 780px the whole thing collapses into a single
   carousel card with prev/next arrows and segment indicators in the
   footer (same pattern as the How-we-work card). */
.outcome-deck {
  position: relative;
  outline: none;
}
.outcome-deck .proc-viewport {
  overflow: visible;
  touch-action: auto;
}
.outcome-deck .proc-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(var(--deck-cols, 3), 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  width: 100%;
  transform: none;
  transition: none;
}
.pricing-deck { --deck-cols: 2; }
.outcome-panel {
  flex: none;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 2.4vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.03),
    0 30px 60px -30px rgba(26, 58, 42, 0.18),
    0 14px 30px -16px rgba(26, 58, 42, 0.10);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
@media (hover: hover) {
  .outcome-panel:hover {
    transform: translateY(-4px);
    box-shadow:
      0 1px 0 rgba(0,0,0,0.03),
      0 36px 70px -30px rgba(26, 58, 42, 0.22),
      0 18px 36px -18px rgba(26, 58, 42, 0.14);
  }
}
.outcome-panel .proc-num { color: var(--gold); }
.outcome-panel .proc-title {
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  line-height: 1.2;
}
.outcome-panel .proc-copy { font-size: 0.98rem; }

/* Footer (only visible on mobile) */
.deck-foot {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .outcome-panel { transition: none; }
  .outcome-panel:hover { transform: none; box-shadow: none; }
}

/* Mobile: collapse to a single carousel card */
@media (max-width: 779px) {
  .outcome-deck {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 2.6vw, 2rem);
    display: grid;
    grid-template-rows: 1fr auto;
    gap: clamp(1.25rem, 2vw, 1.75rem);
    box-shadow:
      0 1px 0 rgba(0,0,0,0.03),
      0 30px 60px -30px rgba(26, 58, 42, 0.18),
      0 14px 30px -16px rgba(26, 58, 42, 0.10);
  }
  .outcome-deck:focus-visible {
    box-shadow:
      0 0 0 2px var(--bg),
      0 0 0 4px var(--moss),
      0 30px 60px -30px rgba(26, 58, 42, 0.18);
  }
  .outcome-deck .proc-viewport {
    overflow: hidden;
    touch-action: pan-y;
  }
  .outcome-deck .proc-track {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    transition: transform .42s var(--ease);
    will-change: transform;
  }
  .outcome-panel {
    flex: 0 0 100%;
    min-width: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .outcome-panel:hover {
    transform: none;
    box-shadow: none;
  }
  .deck-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .deck-segments {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 6px;
  }
}

.pricing {
  padding-top: var(--pad-y-top);
  padding-bottom: var(--pad-y);
  border-top: 1px solid var(--line);
}
/* Pricing panels reuse the .outcome-panel chrome (cream bg, border,
   shadow). Plan-specific tweaks: a bit more vertical breathing room
   for the price + list + Enquire button. */
.pricing-panel {
  position: relative;
  gap: 1.4rem;
}
@media (min-width: 780px) {
  .pricing-panel { padding: clamp(2rem, 3vw, 2.75rem); }
}
.plan-head h3 { margin-top: 0.5rem; }
.plan-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.price-figure {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 450;
  color: var(--ink);
}
.price-figure small {
  font-size: 0.45em;
  color: var(--ink-muted);
  font-weight: 400;
  margin-left: 2px;
}
.price-aux {
  font-family: var(--f-display);
  font-size: 0.95rem;
  color: var(--ink-muted);
  font-weight: 400;
}
.plan-desc {
  color: var(--ink-muted);
  max-width: 42ch;
}
.plan-list {
  display: grid;
  gap: 0.7rem;
  margin: 0.2rem 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}
.plan-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-size: 0.97rem;
}
.plan-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 8px; height: 1px;
  background: var(--moss);
}

.plan-flag {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 0.68rem;
  color: var(--gold);
  background: rgba(184, 153, 104, 0.14);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   Why
   ============================================================ */
.why {
  padding-top: var(--pad-y-top);
  padding-bottom: var(--pad-y);
}
.why-shell {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.why-list {
  display: grid;
  gap: 1.25rem;
  padding-top: 0.5rem;
}
.why-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-soft);
}
.why-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.why-list p {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.25;
  font-weight: 400;
  color: var(--ink);
}
.why-list span { color: var(--moss); }

/* ============================================================
   Enquiry
   ============================================================ */
.enquire {
  background: var(--bg-deep);
  color: var(--cream-ink);
  padding-top: var(--pad-y-top);
  padding-bottom: var(--pad-y);
  position: relative;
  overflow: hidden;
}
.enquire::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto auto;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(184,153,104,0.25), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.enquire-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  position: relative;
}
.enquire .eyebrow { color: var(--cream-muted); }
.enquire .display { color: var(--bg-cream); }
.enquire .display em { color: var(--gold-soft); }
.enquire .lede { color: var(--cream-muted); margin-top: 1.4rem; }

.contact-direct {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-direct .tiny { color: var(--gold); margin-bottom: 1rem; display: block; }
.contact-direct ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.contact-direct a {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--bg-cream);
  letter-spacing: -0.015em;
  display: inline-block;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.contact-direct a:hover { color: var(--gold-soft); transform: translateX(3px); }

/* form */
.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 1.4rem;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field-full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.optional {
  color: var(--moss-soft);
  letter-spacing: 0.1em;
  font-size: 0.64rem;
}
.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 0 0.85rem;
  color: var(--bg-cream);
  font-family: var(--f-body);
  font-size: 1.02rem;
  outline: none;
  transition: border-color .3s var(--ease);
  border-radius: 0;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(232,224,207,0.35);
}
.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; line-height: 1.5; min-height: 120px; }

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.form-note { color: var(--cream-muted); }

.form-consent { margin-top: 0.25rem; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--cream-muted);
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.consent-label a { color: var(--bg-cream); text-decoration: underline; }
.consent-label a:hover { color: var(--gold); }

.form-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(212, 184, 90, 0.15);
  border: 1px solid rgba(212, 184, 90, 0.4);
  color: var(--bg-cream);
  font-size: 0.9rem;
}
.form-error a { color: var(--gold); text-decoration: underline; }

.enquiry-form-wrap { position: relative; }
.enquiry-form[hidden] { display: none; }

.form-success {
  padding: clamp(2rem, 3.5vw, 3rem);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: var(--bg-cream);
  animation: form-success-in .45s var(--ease) both;
}
.form-success .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.form-success .display {
  margin: 0 0 1rem;
  color: var(--bg-cream);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.15;
}
.form-success .lede {
  margin: 0;
  color: var(--cream-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}
@keyframes form-success-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .form-success { animation: none; }
}

/* ============================================================
   Legal page (privacy policy etc.)
   ============================================================ */
.legal {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.legal .section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.legal .lede { color: var(--ink-soft); }
.legal-section {
  max-width: 720px;
  margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}
.legal-section h2 {
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  line-height: 1.2;
  margin: 0 0 0.85rem;
}
.legal-section p {
  margin: 0 0 0.85rem;
  line-height: 1.65;
  color: var(--ink);
}
.legal-section ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--ink);
  line-height: 1.65;
  list-style-type: '\00B7  ';
  list-style-position: outside;
}
.legal-section li { margin-bottom: 0.25rem; padding-left: 0.4rem; }
.legal-section a {
  color: var(--bg-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-section a:hover { color: var(--leaf); }
.legal-updated { color: var(--ink-soft); margin-top: 1rem; }
.legal-back {
  margin-top: clamp(2rem, 4vw, 3rem);
  font-family: var(--f-mono);
  font-size: 0.85rem;
}
.legal-back a {
  color: var(--bg-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color .2s var(--ease);
}
.legal-back a:hover { border-color: var(--bg-deep); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-wordmark { font-size: 1.1rem; }
.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}
.footer-meta a { transition: color .3s var(--ease); }
.footer-meta a:hover { color: var(--ink); }
.footer-meta .dot { color: var(--line); }
.copyright { color: var(--ink-soft); }

/* ============================================================
   Reveal motion
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Initial-load focus — until the user scrolls, the bottom of the
   viewport is veiled with a gradient that fades from transparent
   (top) to bg colour (bottom), so attention rests on the hero.
   The body class is added by JS on load and removed once
   scrollY > 20. Skipped under reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  body::before {
    content: "";
    position: fixed;
    inset: auto 0 0 0;
    height: 50vh;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      var(--bg) 80%
    );
    pointer-events: none;
    z-index: 30;
    opacity: 0;
    transition: opacity .9s var(--ease);
  }
  body.is-page-initial::before {
    opacity: 1;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-shell { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; margin-top: 1.5rem; }
  .why-shell { grid-template-columns: 1fr; }
  .enquire-shell { grid-template-columns: 1fr; }
  .service-list > li { grid-template-columns: 1fr; gap: 0.75rem; }
  .service-index { margin-bottom: 0.5rem; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .header-shell { height: 64px; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps::before { display: none; }
  .steps > li {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    border-top: 1px solid var(--line);
  }
  .steps > li:last-child { border-bottom: 1px solid var(--line); }
  .step-num { position: static; background: transparent; padding: 0; margin-bottom: 0.75rem; display: inline-flex; }
  .enquiry-form { grid-template-columns: 1fr; gap: 1.4rem; }
  .hero-visual { min-height: 440px; }
  .mockup-main { inset: 2% 4% 10% 4%; }
  .mockup-card { width: 52%; bottom: 0; }
}
