/* ============================================================
   Sapling & Kernel — site styles
   Mobile-first. Base = phone, media queries scale up.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand — cacao on cream. House palette only; the ten client
     style palettes live inside the Styles grid and nowhere else. */
  --cream:        #F2E4CE;  /* page ground, light logo field   */
  --warm-white:   #FAF9F7;  /* alternate light surface         */
  --cacao:        #2A1810;  /* primary ink, marks, dark bands  */
  --cacao-lift:   #3E2A1C;  /* hover state for cacao surfaces  */
  --cacao-soft:   #5C4B40;  /* secondary body text  (6.6:1)    */
  --cacao-muted:  #705F52;  /* meta and labels      (4.9:1)    */
  --olive:        #3C4A34;  /* secondary accent     (7.6:1)    */
  --moss:         #8B9A76;  /* quiet accent ONLY — rules, hover
                               underlines. Never text: 2.4:1.  */
  --cream-on-dark:#C0B19E;  /* muted text on a cacao band      */
  --line:         #DDCDB4;
  --line-strong:  #C9B79A;

  /* Type */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body:    'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Rhythm */
  --shell:      1180px;
  --gutter:     20px;
  --section-y:  72px;
  --radius:     14px;
  --radius-sm:  6px;

  --shadow-sm: 0 1px 2px rgba(42, 24, 16, 0.05);
  --shadow-md: 0 1px 2px rgba(42, 24, 16, 0.04), 0 10px 28px rgba(42, 24, 16, 0.08);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 640px)  { :root { --gutter: 32px; --section-y: 96px; } }
@media (min-width: 1024px) { :root { --gutter: 48px; --section-y: 128px; } }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }

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

body {
  background: var(--cream);
  color: var(--cacao);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Utilities ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--cacao);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

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

.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cacao-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--cacao); color: var(--cream); }
.btn-primary:hover { background: var(--cacao-lift); }

.btn-quiet { background: transparent; color: var(--cacao); border-color: var(--line); }
.btn-quiet:hover { border-color: var(--cacao); color: var(--cacao); }

.btn-block { width: 100%; }

.inline-link {
  color: var(--cacao);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 24, 16, 0.28);
  padding-bottom: 1px;
  transition: border-color 0.2s var(--ease);
}
.inline-link:hover { border-color: var(--moss); color: var(--cacao-lift); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal, .reveal-off .reveal { opacity: 1; transform: none; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 228, 206, 0.9);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  flex-wrap: wrap;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  text-decoration: none;
}
/* Artwork is pre-tinted cacao, so both marks stay one colour by design. */
.wordmark-symbol {
  height: 30px;
  width: auto;
  flex: none;
}
.wordmark-type {
  height: 15px;
  width: auto;
  flex: none;
}
@media (min-width: 820px) {
  .wordmark-symbol { height: 36px; }
  .wordmark-type   { height: 18px; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.nav-toggle-bars { display: block; width: 15px; }
.nav-toggle-bars i {
  display: block;
  height: 1.5px;
  background: var(--cacao);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle-bars i:first-child { margin-bottom: 4px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:first-child { transform: translateY(2.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:last-child  { transform: translateY(-2.75px) rotate(-45deg); }

.site-nav {
  display: none;
  width: 100%;
  padding-bottom: 14px;
}
.site-nav.is-open { display: block; }
.site-nav ul { display: flex; flex-direction: column; gap: 2px; }
.site-nav a {
  display: block;
  padding: 11px 2px;
  color: var(--cacao-soft);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.site-nav a:hover { color: var(--cacao); }
.site-nav .nav-cta { color: var(--cacao); font-weight: 600; border-bottom: none; }

@media (min-width: 820px) {
  .header-inner { flex-wrap: nowrap; min-height: 76px; }
  .nav-toggle { display: none; }
  .site-nav { display: block; width: auto; padding-bottom: 0; }
  .site-nav ul { flex-direction: row; align-items: center; gap: 30px; }
  .site-nav a { padding: 6px 0; border-bottom: 1px solid transparent; font-size: 14.5px; }
  .site-nav a:hover { border-bottom-color: var(--cacao); }
  .site-nav .nav-cta {
    background: var(--cacao);
    color: var(--cream);
    padding: 10px 20px;
    border-radius: 999px;
    transition: background-color 0.2s var(--ease);
  }
  .site-nav .nav-cta:hover { background: var(--cacao-lift); border-bottom-color: transparent; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: 64px 0 56px; }
@media (min-width: 640px)  { .hero { padding: 104px 0 88px; } }
@media (min-width: 1024px) { .hero { padding: 136px 0 112px; } }

.hero-inner { max-width: 860px; }
.hero .eyebrow { margin-bottom: 20px; }

.hero-lockup {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0;
  font-size: inherit;
}
.hero-symbol {
  height: clamp(64px, 15vw, 116px);
  width: auto;
  flex: none;
}
.hero-type {
  height: clamp(30px, 7.2vw, 56px);
  width: auto;
  flex: none;
  min-width: 0;
}

/* Tagline: italic serif, smaller than the name, always beneath it. */
.hero-tagline {
  margin-top: 18px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.8vw, 25px);
  line-height: 1.3;
  color: var(--cacao);
}

.hero-lede {
  margin-top: 16px;
  max-width: 34em;
  font-size: clamp(16.5px, 2.2vw, 20px);
  line-height: 1.55;
  color: var(--cacao-soft);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
}
.hero-link {
  color: var(--cacao);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 24, 16, 0.28);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease);
}
.hero-link:hover { border-bottom-color: var(--moss); }

.hero-rule {
  margin-top: var(--section-y);
  height: 1px;
  background: linear-gradient(90deg, var(--moss), rgba(139, 154, 118, 0));
  opacity: 0.55;
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: var(--section-y) 0; }

.section-head { max-width: 720px; margin-bottom: 40px; }
@media (min-width: 640px) { .section-head { margin-bottom: 56px; } }

.section-index {
  font-family: 'Space Grotesk', var(--body);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--cacao-muted);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 5.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-lede {
  margin-top: 16px;
  font-size: clamp(15.5px, 1.8vw, 17.5px);
  line-height: 1.6;
  color: var(--cacao-soft);
  max-width: 40em;
}

/* ============================================================
   Work
   ============================================================ */
.section-work { background: var(--warm-white); }

.work-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  /* Cards take their own height rather than stretching to the tallest. A
     written-up build with a screenshot is far taller than the invite card
     beside it, and stretching leaves that one as a mostly empty box. */
  align-items: start;
}
@media (min-width: 720px) { .work-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

.work-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;            /* so a screenshot sits inside the rounded corner */
}
.work-card-link { display: block; color: inherit; text-decoration: none; }

/* A finished build leads with a picture of itself, the same way the demos do
   on the Work and Styles pages. A written-up card with no screenshot reads as
   a claim; the screenshot is the evidence, and it is what anyone scanning the
   page actually stops on. */
.work-shot {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--line);
}
.work-card-link:hover .work-shot,
.work-card-link:focus-visible .work-shot { opacity: 0.92; }

.work-card-body { display: block; padding: 28px 24px 30px; color: inherit; text-decoration: none; }
@media (min-width: 640px) { .work-card-body { padding: 34px 32px 36px; } }

.work-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cacao);
  background: rgba(139, 154, 118, 0.26);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.work-card-invite .work-status { color: var(--olive); background: rgba(60, 74, 52, 0.14); }

.work-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(21px, 3.2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.work-note {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cacao-soft);
  max-width: 34em;
}

.work-card .inline-link { display: inline-block; margin-top: 20px; }

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--cacao-muted);
}

.work-card-empty {
  background: transparent;
  border-style: dashed;
  box-shadow: none;
}

/* ============================================================
   Styles showcase
   ============================================================ */
.styles-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px)  { .styles-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1080px) { .styles-grid { grid-template-columns: repeat(3, 1fr); } }

.style-item { display: flex; flex-direction: column; gap: 11px; }

.style-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  padding: 32px 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
@media (min-width: 400px) { .style-card { min-height: 420px; } }

.style-item:hover .style-card {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(42, 24, 16, 0.05), 0 18px 40px rgba(42, 24, 16, 0.12);
}

.style-card h2 { font-weight: inherit; }

.style-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 4px 14px;
  padding-inline: 4px;
}
.style-name { font-size: 13.5px; font-weight: 600; color: var(--cacao); }
.style-target { font-size: 12.5px; color: var(--cacao-muted); }

.styles-note {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 46em;
  font-size: 15px;
  color: var(--cacao-soft);
}

/* ---- 1. Bold & Industrial — trades / handyman ---- */
.trades {
  background: #1C2530;
  color: #F4F1EA;
  font-family: 'Oswald', sans-serif;
  justify-content: space-between;
}
.trades .grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(244, 241, 234, 0.05) 1px, transparent 1px);
  background-size: 100% 28px;
  pointer-events: none;
}
.trades .card-top { position: relative; }
.trades .tag {
  display: inline-block;
  background: #E8590C;
  color: #1C2530;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.trades h3 {
  font-size: clamp(29px, 5vw, 34px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}
.trades h3 span { color: #E8590C; }
.trades .footer-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #37424F;
  padding-top: 16px;
  font-family: var(--body);
}
.trades .btn-faux {
  background: #F4F1EA;
  color: #1C2530;
  font-weight: 600;
  font-size: 12.5px;
  padding: 10px 18px;
  border-radius: 3px;
  white-space: nowrap;
}
.trades .hrs { font-size: 11.5px; color: #7C8697; }

/* ---- 2. Warm & Handcrafted — artisan food ---- */
.cacao {
  background: #2A1810;
  background-image: radial-gradient(circle at 85% 15%, rgba(201, 161, 90, 0.14), transparent 55%);
  color: #F2E4CE;
  justify-content: center;
  align-items: flex-start;
}
.cacao .eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C9A15A;
  margin-bottom: 18px;
}
.cacao h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 4.6vw, 33px);
  line-height: 1.18;
}
.cacao .rule { width: 42px; height: 2px; background: #C9A15A; margin: 22px 0; }
.cacao .body {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #C7B8A4;
  max-width: 28em;
}
.cacao .price-tag {
  position: absolute;
  bottom: 26px;
  right: 28px;
  font-family: var(--display);
  font-size: 12px;
  color: #C9A15A;
  border: 1px solid #6B5333;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---- 3. Editorial & Minimal — boutique retail ---- */
.boutique {
  background: #FAF9F7;
  color: #16130F;
  padding: 0;
  justify-content: flex-end;
}
.boutique .top {
  flex: 1;
  min-height: 180px;
  background: linear-gradient(135deg, #E7D3CE, #F1E4DF);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.boutique .num {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 13px;
  color: #8B6A63;
}
.boutique .bottom { padding: 26px 28px 30px; }
.boutique h3 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(26px, 4.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.boutique .sub {
  margin-top: 12px;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8B6A63;
}

/* ---- 4. Soft & Organic — wellness / yoga ---- */
.wellness {
  background: #E7E4D6;
  color: #3C4A34;
  justify-content: center;
}
.wellness .blob {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #8B9A76;
  opacity: 0.35;
}
.wellness .eyebrow {
  position: relative;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: #6B7C58;
  margin-bottom: 6px;
}
.wellness h3 {
  position: relative;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(27px, 4.6vw, 32px);
  line-height: 1.2;
  max-width: 9em;
}
.wellness .body {
  position: relative;
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #5C6952;
  max-width: 22em;
}
.wellness .dot-row { position: relative; display: flex; gap: 6px; margin-top: 22px; }
.wellness .dot-row i { width: 7px; height: 7px; border-radius: 50%; background: #6B7C58; }
.wellness .dot-row i:nth-child(2) { opacity: 0.5; }
.wellness .dot-row i:nth-child(3) { opacity: 0.25; }

/* ---- 5. Structured & Refined — real estate ---- */
.estate {
  background: #14202E;
  color: #EDE7DA;
  padding: 0;
  justify-content: flex-end;
}
.estate .photo {
  flex: 1;
  min-height: 190px;
  background: linear-gradient(160deg, #2B3D52, #14202E 70%);
}
.estate .info { padding: 24px 28px 28px; border-top: 1px solid #2B3D52; }
.estate .eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: #B08D57;
  margin-bottom: 10px;
}
.estate h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(26px, 4.4vw, 30px);
  line-height: 1.15;
}
.estate .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  color: #8CA0B8;
}
.estate .meta b { color: #EDE7DA; font-weight: 500; }

/* ---- 6. Dark & Dramatic — fine dining ---- */
.dining {
  background: #17100F;
  background-image: radial-gradient(ellipse at 50% 0%, rgba(110, 20, 35, 0.35), transparent 60%);
  color: #EDE3D6;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.dining .eyebrow {
  font-family: 'Italiana', serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #B4855C;
  font-weight: 400;
  margin-bottom: 20px;
}
.dining h3 {
  font-family: 'Italiana', serif;
  font-weight: 400;
  font-size: clamp(31px, 5.4vw, 38px);
  line-height: 1.2;
}
.dining .rule { width: 26px; height: 1px; background: #6E1423; margin: 22px auto; }
.dining .body {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 14px;
  color: #C9B8A5;
}

/* ---- 7. Clean & Confident — professional services ---- */
.pro {
  background: #F5F3EE;
  color: #0F3D3E;
  font-family: 'Space Grotesk', sans-serif;
  justify-content: space-between;
}
.pro .top-row { display: flex; justify-content: space-between; align-items: flex-start; }
.pro .idx { font-size: 11px; color: #7A9A98; }
.pro h3 {
  margin-top: 26px;
  font-weight: 500;
  font-size: clamp(24px, 4vw, 27px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.pro .stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  border-top: 1px solid #D6D2C4;
  padding-top: 18px;
}
.pro .stat b { display: block; font-size: 20px; font-weight: 500; color: #0F3D3E; }
.pro .stat span {
  font-size: 10.5px;
  color: #6B8483;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- 8. Botanical & Handdrawn — florist ---- */
.florist {
  background: #F4ECE6;
  color: #4A3F35;
  justify-content: flex-end;
}
.florist .stem {
  position: absolute;
  top: -20px;
  left: 26px;
  width: 2px;
  height: 160px;
  background: #8CA07A;
  transform: rotate(8deg);
}
.florist .stem::before {
  content: '';
  position: absolute;
  top: 40px;
  left: -14px;
  width: 30px;
  height: 44px;
  background: #C98F84;
  border-radius: 0 100% 0 100%;
  opacity: 0.7;
}
.florist .eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  letter-spacing: 0;
  text-transform: none;
  color: #A9695E;
}
.florist h3 {
  margin-top: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(28px, 4.8vw, 32px);
  line-height: 1.15;
}
.florist .body {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: #7A6A5D;
  max-width: 22em;
}

/* ---- 9. High Energy & Bold — gyms ---- */
.fitness {
  background: #0C0C0C;
  color: #F4F1EA;
  justify-content: space-between;
}
.fitness .eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #E8432B;
}
.fitness h3 {
  margin-top: 16px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 6vw, 40px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.fitness h3 em { color: #E8432B; font-style: normal; }
.fitness .bar-row { display: flex; align-items: flex-end; gap: 4px; height: 30px; }
.fitness .bar-row i { width: 6px; background: #E8432B; }

/* ---- 10. Earthy & Considered — coffee roaster ---- */
.roaster {
  background: #F0E7D8;
  color: #3E2A1C;
  justify-content: space-between;
}
.roaster .top-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.roaster h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(27px, 4.8vw, 32px);
  line-height: 1.1;
  max-width: 8em;
}
.roaster .circle {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid #7A4A2E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 10px;
  line-height: 1.1;
  text-align: center;
  color: #7A4A2E;
}
.roaster .origin-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  border-top: 1px solid #D2BE9C;
  padding-top: 16px;
  font-size: 11px;
  color: #7A5B3E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   About
   ============================================================ */
.section-about { background: var(--cream); }

.about-inner {
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .about-inner { grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: start; }
}

.about-figure {
  margin: 0 0 28px;
  max-width: 240px;
}
.about-figure img {
  width: 100%;
  height: auto;
}
@media (min-width: 900px) {
  .about-figure { max-width: 200px; margin-bottom: 32px; }
}

.prose p {
  font-size: clamp(16.5px, 2vw, 19px);
  line-height: 1.65;
  color: var(--cacao-soft);
  max-width: 34em;
}
.prose p + p { margin-top: 20px; }
.prose a {
  color: var(--cacao);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 24, 16, 0.28);
}
.prose a:hover { border-bottom-color: var(--moss); }

.about-aside {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
@media (min-width: 640px) { .about-aside { padding: 34px 32px; } }

.aside-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.steps { counter-reset: step; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 34px;
  padding-bottom: 20px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(139, 154, 118, 0.30);
  color: var(--cacao);
  font-family: 'Space Grotesk', var(--body);
  font-size: 11.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps li::after {
  content: '';
  position: absolute;
  left: 10.5px;
  top: 28px;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }

.step-name { font-weight: 600; font-size: 15px; }
.step-note { margin-top: 3px; font-size: 14px; line-height: 1.55; color: var(--cacao-muted); }

.aside-foot {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--cacao-muted);
}

/* ============================================================
   Contact
   ============================================================ */
.contact-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .contact-inner { grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
}

.contact-copy .section-head { margin-bottom: 24px; }

.contact-direct { font-size: 15px; color: var(--cacao-soft); }
.contact-direct a {
  color: var(--cacao);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 24, 16, 0.28);
  word-break: break-word;
}
.contact-direct a:hover { border-bottom-color: var(--moss); }

.contact-form {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 28px;
}
@media (min-width: 640px) { .contact-form { padding: 34px 32px 36px; } }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 7px;
}
.field .optional { font-weight: 400; color: var(--cacao-muted); }

.field input,
.field textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15.5px;
  line-height: 1.5;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cacao);
  box-shadow: 0 0 0 3px rgba(42, 24, 16, 0.14);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #A6412C; }

.field-error { margin-top: 6px; font-size: 13px; color: #A6412C; }

.field-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.55;
  min-height: 1.55em;
}
.form-status.is-error { color: #A6412C; }
.form-status.is-ok { color: var(--cacao); font-weight: 600; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--cacao);
  color: var(--cream);
  padding: 48px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 760px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
  }
}

.footer-lockup {
  height: 46px;
  width: auto;
}
@media (min-width: 760px) { .footer-lockup { height: 54px; } }

.footer-nav ul { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.footer-nav a {
  color: rgba(242, 228, 206, 0.74);
  text-decoration: none;
  font-size: 14.5px;
}
.footer-nav a:hover { color: var(--cream); }

.footer-legal { font-size: 13px; color: var(--cream-on-dark); }

/* ============================================================
   Style cards link through to their demo sites
   ============================================================ */
.style-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
}
.style-link:focus-visible { outline: 2px solid var(--cacao); outline-offset: 4px; }

.style-go {
  flex-basis: 100%;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cacao);
  opacity: 0.55;
  transition: opacity 0.2s var(--ease);
}
.style-item:hover .style-go,
.style-link:focus-visible + .style-label .style-go { opacity: 1; }

/* ============================================================
   Services & pricing
   ============================================================ */
.section-services { background: var(--warm-white); }

.tiers {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px)  { .tiers { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.tier {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
}
.tier-lead { border-color: var(--cacao); border-width: 2px; }

.tier-flag {
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--cacao);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
}
.tier-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.tier-price {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 46px);
  line-height: 1.05;
  margin-top: 6px;
}
.tier-for {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cacao-soft);
}
.tier-list {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tier-list li {
  position: relative;
  padding-left: 20px;
  padding-block: 6px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--cacao-soft);
}
.tier-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--moss);
}

.extras {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.extras-head { max-width: 46em; margin-bottom: 30px; }

.extras-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .extras-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 40px; } }
@media (min-width: 1000px) { .extras-grid { grid-template-columns: repeat(3, 1fr); gap: 44px; } }

.extras-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.extras-sub {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--moss);
}
.extras-note { margin-top: 8px; font-size: 14.5px; line-height: 1.6; color: var(--cacao-muted); }
.extras-list { margin-top: 14px; }
.extras-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cacao-muted);
}
.extras-list li:last-child { border-bottom: 0; }
.extras-list b { color: var(--cacao); font-weight: 600; }

/*
  The price sits on its own line rather than beside the name. In the
  three-column grid a name and a price on one row wrap against each other at
  the narrowest column width, and a price that has wrapped away from its item
  is worse than no price at all.
*/
.extras-price {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cacao);
  letter-spacing: 0.005em;
}
/* Olive, not moss: moss fails contrast for text. See BRAND.md. */
.extras-price.is-included { color: var(--olive); }

/* Two different claims, deliberately not one badge.
   .is-live  — the visitor can go and use it in a demo this minute.
   .is-built — the code is written and tested, but no demo runs it, so it is
               being taken on trust. Collapsing these into one label is how a
               page ends up promising something a visitor can catch it not
               doing, which costs more than the weaker claim ever would. */
.is-live {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  background: rgba(139, 154, 118, 0.26);
  padding: 2px 7px;
  border-radius: 999px;
  vertical-align: 1px;
  white-space: nowrap;
}

/* Quieter than .is-live on purpose — an outline rather than a fill, so the
   one you can actually try is the one that catches the eye. */
.is-built {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cacao-muted);
  border: 1px solid var(--line-strong);
  padding: 1px 6px;
  border-radius: 999px;
  vertical-align: 1px;
  white-space: nowrap;
}

.extras-live {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  max-width: 46em;
}

/* ============================================================
   Questions
   ============================================================ */
.section-faq { background: var(--warm-white); }

.faq {
  display: grid;
  gap: 4px 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .faq { grid-template-columns: repeat(2, 1fr); } }

.faq-item { padding: 20px 0; border-top: 1px solid var(--line); }
.faq-item h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18.5px;
  line-height: 1.3;
}
.faq-item p {
  margin-top: 9px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--cacao-soft);
  max-width: 34em;
}

/* ============================================================
   Multi-page chrome
   ============================================================ */

/* Current page in the nav */
.site-nav a[aria-current="page"] { color: var(--cacao); font-weight: 600; }
@media (min-width: 820px) {
  .site-nav a[aria-current="page"] { border-bottom-color: var(--moss); }
  .site-nav .nav-cta[aria-current="page"] {
    background: var(--cacao-lift);
    color: var(--cream);
    border-bottom-color: transparent;
  }
}

/* Home: the three-up teaser of what to read next */
.section-home-styles { background: var(--warm-white); }

.next-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .next-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.next-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
}
.next-card h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.next-card p {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cacao-soft);
  flex: 1;
}
.next-card .inline-link { align-self: flex-start; }

/* A page that is a single section should not double its top padding */
.section:first-child { padding-top: calc(var(--section-y) * 0.75); }

/* ============================================================
   404
   ============================================================ */
.lost { padding: calc(var(--section-y) * 1.1) 0; }
.lost h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 5.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.lost p {
  margin-top: 16px;
  max-width: 34em;
  font-size: 17px;
  line-height: 1.65;
  color: var(--cacao-soft);
}
.lost-links { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px 26px; }

/* Why each direction is the way it is — the judgement, not just the output */
.style-why {
  margin-top: 2px;
  padding-inline: 4px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--cacao-muted);
  max-width: 34em;
}

/* ============================================================
   Work — what a build involves, until real projects fill the page
   ============================================================ */
.build-steps { margin-bottom: 48px; }

.build-step {
  padding: 30px 0 34px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
}
.build-step:last-of-type { border-bottom: 1px solid var(--line); }
@media (min-width: 760px) {
  .build-step { grid-template-columns: 68px minmax(0, 1fr); column-gap: 8px; }
  .build-step > .preview-row,
  .build-step > .stat-row,
  .build-step > .build-links { grid-column: 2; }
}

.build-num {
  font-family: 'Space Grotesk', var(--body);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--cacao-muted);
  margin-bottom: 10px;
}
@media (min-width: 760px) { .build-num { margin-bottom: 0; padding-top: 6px; } }

.build-body h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(21px, 3.2vw, 27px);
  line-height: 1.22;
  letter-spacing: -0.015em;
}
.build-body p {
  margin-top: 11px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--cacao-soft);
  max-width: 40em;
}
.build-body .inline-link { display: inline-block; margin-top: 16px; }
.build-links { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 18px; }

/* ---------- Previews of the demo sites ---------- */
.preview-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}
@media (min-width: 640px) { .preview-row { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.preview { display: block; text-decoration: none; color: inherit; }
.preview img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  /* Shots are of full pages, so crop to the part that carries the identity. */
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.preview:hover img {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(42, 24, 16, 0.14);
}
.preview:focus-visible img { outline: 2px solid var(--cacao); outline-offset: 3px; }

.preview-cap {
  display: block;
  margin-top: 11px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--cacao-muted);
}
.preview-cap b {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--cacao);
}

/* ---------- Measured claims ---------- */
.stat-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 26px;
}
@media (min-width: 620px) { .stat-row { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.stat-row li { border-left: 2px solid var(--moss); padding: 4px 0 4px 16px; }
.stat-row b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.stat-row abbr { font-size: 0.52em; text-decoration: none; letter-spacing: 0; margin-left: 1px; }
.stat-row span {
  display: block;
  margin-top: 7px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--cacao-muted);
}

/* Shown only when the form could not be delivered — a mailto link for
   people with a mail client, and a copy button for everyone on webmail. */
.form-fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.form-fallback .btn { flex: 1 1 auto; font-size: 14px; padding: 11px 18px; }

/* Only appears if copying to the clipboard was refused. */
.fallback-text {
  width: 100%;
  margin-top: 10px;
  background: var(--cream);
  color: var(--cacao);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.55;
  resize: vertical;
}


/* ---- 11. Fun & Playful — kids' play centre ---- */
.party {
  background: #FFF9F0;
  color: #2B1B47;
  justify-content: space-between;
  text-align: center;
}
.party .eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #FF4E8A;
}
.party h2 {
  margin-top: 14px;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(34px, 6.4vw, 43px);
  line-height: 1.04;
}
.party h2 em { font-style: normal; color: #FF4E8A; }
.party h2 b { font-weight: 800; color: #3DBBEF; }
.party .dot-row { display: flex; justify-content: center; gap: 9px; }
.party .dot-row i { width: 14px; height: 14px; border-radius: 50%; background: #FFC93C; }
.party .dot-row i:nth-child(2) { background: #3DBBEF; }
.party .dot-row i:nth-child(3) { background: #4ED6A8; }
.party .dot-row i:nth-child(4) { background: #FF4E8A; }

/* ---- 12. Loud & Punchy — food truck ---- */
.truck {
  background: #E62B1E;
  color: #FBF3E4;
  justify-content: space-between;
}
.truck .eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F5B324;
}
.truck h2 {
  margin-top: 14px;
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 7.6vw, 52px);
  line-height: 0.9;
  text-transform: uppercase;
}
/* Outlined, not filled — the same trick the demo hero uses. */
.truck h2 em {
  font-style: normal;
  -webkit-text-stroke: 1.5px #FBF3E4;
  color: transparent;
}
.truck .stamp-row span {
  display: inline-block;
  background: #F5B324;
  color: #141210;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  padding: 6px 13px;
  transform: rotate(-2.5deg);
}

/* ---- 13. Bright & Coastal — surf school ---- */
.surf {
  background: linear-gradient(168deg, #12B5CB 0%, #0E93A6 100%);
  color: #fff;
  justify-content: space-between;
}
.surf .script-line {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 25px;
  color: #FFD23F;
}
.surf h2 {
  margin-top: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 6vw, 41px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.surf .pill-row { display: flex; flex-wrap: wrap; gap: 7px; }
.surf .pill-row span {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 5px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
}

/* ---- 14. Hand-lettered & Cheerful — market grocer ---- */
.market {
  background: #1F3A2C;
  color: #F6F1E3;
  justify-content: space-between;
}
.market .eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F2C744;
}
.market h2 {
  margin-top: 14px;
  font-family: 'Patrick Hand', cursive;
  font-weight: 400;
  font-size: clamp(34px, 6.6vw, 46px);
  line-height: 1.06;
}
.market h2 em { font-style: normal; color: #F2C744; }
.market .tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.market .tag-row span {
  font-family: 'Patrick Hand', cursive;
  font-size: 15px;
  background: #F2C744;
  color: #1F3A2C;
  padding: 3px 11px;
  border-radius: 4px;
  transform: rotate(-1.2deg);
}
.market .tag-row span:nth-child(2) {
  background: #7FA65B;
  color: #fff;
  transform: rotate(1.4deg);
}

/* ---- 15. Clean & Reassuring — home cleaning ---- */
.cleaning {
  background: #FFFFFF;
  color: #16252C;
  border: 1px solid #E1EDED;
  font-family: 'Plus Jakarta Sans', sans-serif;
  justify-content: space-between;
}
.cleaning .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1F9E96;
}
.cleaning h2 {
  margin-top: 14px;
  font-weight: 700;
  font-size: clamp(27px, 5vw, 35px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}
.cleaning h2 em { font-style: normal; color: #1F9E96; }
.cleaning .tick-row { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.cleaning .tick-row span { font-size: 12.5px; font-weight: 500; color: #0D3B39; }
.cleaning .tick-row span::before { content: '✓'; color: #1F9E96; margin-right: 6px; }

/* ---- 16. Calm & Clinical — allied health ---- */
.physio {
  background: #1B3A31;
  color: #F7F5EF;
  justify-content: space-between;
}
.physio .eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7A9A88;
}
.physio h2 {
  margin-top: 16px;
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: clamp(27px, 5vw, 36px);
  line-height: 1.18;
}
.physio h2 em { color: #C2703D; font-style: italic; }
.physio .rule-row { display: grid; gap: 7px; }
.physio .rule-row span {
  font-family: 'Work Sans', sans-serif;
  font-size: 12.5px;
  color: #B7CCC0;
  border-left: 2px solid #C2703D;
  padding-left: 10px;
}

/* ---- 17. Warm & Characterful — music teacher ---- */
.music {
  background: #3B1E38;
  color: #FBF3E6;
  justify-content: space-between;
}
.music .eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #E0A32E;
}
.music h2 {
  margin-top: 14px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(29px, 5.4vw, 39px);
  line-height: 1.1;
}
.music h2 em { color: #C4657A; font-style: italic; }
.music .note-row { display: flex; flex-wrap: wrap; gap: 7px; }
.music .note-row span {
  background: rgba(251, 243, 230, 0.12);
  border-radius: 3px;
  padding: 5px 11px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
}
