/* ============================================================
   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;
}
@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);
}
.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 h3 { 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 {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
@media (min-width: 760px) { .extras { grid-template-columns: repeat(2, 1fr); gap: 56px; } }

.extras-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
}
.extras-note { margin-top: 7px; font-size: 14px; color: var(--cacao-muted); }
.extras-list { margin-top: 16px; }
.extras-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cacao-soft);
}
.extras-list li:last-child { border-bottom: 0; }
.extras-list b { color: var(--cacao); font-weight: 600; }

/* ============================================================
   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;
}
