/* ============================================================
   Yorkshire Lawn & Garden — Editorial Garden Journal
   ============================================================ */

:root {
  /* Palette */
  --cream:      #f4ede0;
  --cream-deep: #ece3cf;
  --bone:       #ebe3d2;
  --paper:      #fbf8f0;
  --ink:        #1a1813;
  --ink-soft:   #3a3530;
  --stone:      #8b8473;
  --stone-soft: #b8b1a0;
  --moss:       #2c3e1f;
  --moss-deep:  #1a2612;
  --moss-light: #475e36;
  --clay:       #c2410c;
  --clay-dark:  #9a3409;
  --clay-soft:  #e87b4a;

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --max:    1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;

  /* Motion */
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Grain applied selectively to sections (NOT globally, to keep modal clean) */
.has-grain {
  position: relative;
}
.has-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1, 0 0 0 0 0.09, 0 0 0 0 0.07, 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== Typography ===== */
.display {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--moss-deep);
}

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}

.lead {
  font-family: var(--display);
  font-weight: 300;
  font-variation-settings: "opsz" 24, "SOFT" 50;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink-soft);
  font-style: italic;
}

/* ===== Container ===== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== Top bar ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 237, 224, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 24, 19, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.brand-name {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 0;
  font-weight: 500;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--moss-deep);
}

.brand-name small {
  display: block;
  font-family: var(--body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 4px;
  font-weight: 500;
}

.topbar-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* Hamburger button — hidden on desktop, shown at ≤640px */
.topbar-menu {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.topbar-menu span {
  display: block;
  position: absolute;
  left: 9px;
  right: 9px;
  height: 1.8px;
  background: var(--moss-deep);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.topbar-menu span:nth-child(1) { top: 13px; }
.topbar-menu span:nth-child(2) { top: 19px; }
.topbar-menu span:nth-child(3) { top: 25px; }
.topbar-menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.topbar-menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar-menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Slide-down drawer — hidden on desktop, revealed on mobile when open */
.topbar-drawer {
  display: none;
  border-top: 1px solid rgba(26, 24, 19, 0.08);
  background: rgba(244, 237, 224, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.topbar-drawer a {
  display: block;
  padding: 16px 22px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--moss-deep);
  border-bottom: 1px solid rgba(26, 24, 19, 0.06);
}
.topbar-drawer a:last-child { border-bottom: 0; }
.topbar-drawer a:hover { background: rgba(26, 24, 19, 0.04); }

.topbar-cta a:hover { color: var(--clay); }

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-phone::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clay);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.15);
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(194, 65, 12, 0.05); }
}

/* ===== Hero ===== */
.hero {
  padding: clamp(60px, 9vw, 130px) 0 clamp(60px, 8vw, 110px);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
}

.hero-headline {
  font-size: clamp(3rem, 9.5vw, 8.5rem);
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 300;
  color: var(--clay);
  position: relative;
  display: inline-block;
}

/* hand-drawn underline under "garden" */
.hero-headline em::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -4%;
  bottom: -0.06em;
  height: 0.18em;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 12' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><path d='M2 8 Q 50 2 100 6 T 198 4' stroke='%23c2410c' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.hero-sub {
  max-width: 520px;
  margin-bottom: 40px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  line-height: 1.55;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 24, 19, 0.12);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.hero-meta span strong {
  display: block;
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--moss-deep);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

/* ===== Hero entry card ===== */
.entry {
  background: var(--paper);
  border: 1px solid rgba(26, 24, 19, 0.1);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow:
    0 1px 0 rgba(26, 24, 19, 0.04),
    0 30px 60px -30px rgba(26, 24, 19, 0.18),
    0 18px 36px -18px rgba(44, 62, 31, 0.12);
  position: relative;
}

.entry::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent 40%);
}

.entry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--moss-deep);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 99px;
  margin-bottom: 18px;
}

.entry-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clay-soft);
}

.entry-title {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--moss-deep);
}

.entry-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.55;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  background: var(--moss-deep);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--moss-light), var(--moss-deep));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.btn-primary span { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; }
.btn-primary svg { transition: transform 0.4s var(--ease); }

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -10px rgba(26, 38, 18, 0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover svg { transform: translateX(4px); }

.entry-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 18px;
  color: var(--stone);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.entry-divider::before, .entry-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26, 24, 19, 0.1);
}

/* ===== Skip-ahead lane (the stamped quick-quote box) ===== */
.skip-lane {
  background: var(--cream-deep);
  border: 1px dashed rgba(44, 62, 31, 0.3);
  padding: 20px;
  border-radius: var(--radius);
  position: relative;
}

.skip-lane::before {
  content: 'QUICK PATH';
  position: absolute;
  top: -8px;
  left: 16px;
  background: var(--cream);
  padding: 0 8px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--clay);
}

.skip-label {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 50;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.3;
}

.skip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.skip-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid rgba(26, 24, 19, 0.08);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 500;
  text-align: left;
  transition: all 0.25s var(--ease);
  color: var(--ink);
}

.skip-chip:hover {
  border-color: var(--moss-deep);
  background: var(--moss-deep);
  color: var(--cream);
  transform: translateY(-1px);
}

.skip-chip-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--moss-light);
  transition: color 0.25s var(--ease);
}

.skip-chip:hover .skip-chip-icon { color: var(--clay-soft); }

/* ===== Section base ===== */
.section {
  padding: clamp(80px, 11vw, 150px) 0;
  position: relative;
}

.section-num {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--clay);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.section-num::after {
  content: '';
  width: 80px;
  height: 1px;
  background: var(--clay);
  opacity: 0.5;
}

.section-title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  margin-bottom: 24px;
  max-width: 12ch;
}

.section-intro {
  max-width: 56ch;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--ink-soft);
  margin-bottom: 60px;
  line-height: 1.6;
}

/* ===== Services strip ===== */
.services {
  background: var(--moss-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(194, 65, 12, 0.08), transparent 50%);
  pointer-events: none;
}

.services .section-num { color: var(--clay-soft); }
.services .section-num::after { background: var(--clay-soft); }
.services .display { color: var(--cream); }
.services .section-intro { color: rgba(244, 237, 224, 0.75); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244, 237, 224, 0.15);
  border: 1px solid rgba(244, 237, 224, 0.15);
}

@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr 1fr; } }

.service-card {
  background: var(--moss-deep);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.35s var(--ease);
  cursor: pointer;
  position: relative;
  min-height: 240px;
}

.service-card:hover { background: var(--moss-light); }

.service-icon {
  width: 38px;
  height: 38px;
  color: var(--clay-soft);
}

.service-name {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.85rem;
  color: rgba(244, 237, 224, 0.7);
  line-height: 1.55;
  flex: 1;
}

.service-price {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--clay-soft);
  font-weight: 600;
  text-transform: uppercase;
}

/* ===== Process / how it works ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 50px);
}

@media (max-width: 880px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 24, 19, 0.18);
}

.step-num {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 0;
  font-style: italic;
  font-size: 3.4rem;
  font-weight: 300;
  color: var(--clay);
  line-height: 1;
  margin-bottom: 18px;
}

.step-title {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--moss-deep);
}

.step-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ===== Editorial / drop cap section ===== */
.editorial {
  background: var(--paper);
  border-top: 1px solid rgba(26, 24, 19, 0.08);
  border-bottom: 1px solid rgba(26, 24, 19, 0.08);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

@media (max-width: 880px) { .editorial-grid { grid-template-columns: 1fr; } }

.editorial-image {
  aspect-ratio: 4/5;
  background-image: url("/images/kenny-v8KJtySAi9k-unsplash.jpg");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(26, 24, 19, 0.35);
}

.editorial-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 38, 18, 0.4));
  border-radius: inherit;
}

.editorial-image-cap {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1;
  color: var(--cream);
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 50;
  font-size: 0.95rem;
  line-height: 1.35;
}

.editorial-text p {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.65;
  margin-bottom: 1.2em;
  color: var(--ink-soft);
}

.editorial-text p:first-of-type::first-letter {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 500;
  font-size: 4.6em;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.08em -0.05em 0;
  color: var(--clay);
}

/* ===== Gallery ===== */
.gallery {
  background: var(--paper);
  border-top: 1px solid rgba(26, 24, 19, 0.08);
  border-bottom: 1px solid rgba(26, 24, 19, 0.08);
  padding: clamp(70px, 9vw, 120px) 0 clamp(70px, 9vw, 120px);
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.gallery-head .section-title { margin-bottom: 0; max-width: 14ch; }

.gallery-sub {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 38ch;
  color: var(--ink-soft);
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bone);
  box-shadow: 0 20px 40px -20px rgba(26, 24, 19, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 38, 18, 0.35));
  pointer-events: none;
}

/* Mosaic layout on desktop: 12-col grid */
.gallery-item:nth-child(1) { grid-column: span 5; aspect-ratio: 5/6; }
.gallery-item:nth-child(2) { grid-column: span 7; aspect-ratio: 7/6; }
.gallery-item:nth-child(3) { grid-column: span 4; aspect-ratio: 4/5; }
.gallery-item:nth-child(4) { grid-column: span 4; aspect-ratio: 4/5; }
.gallery-item:nth-child(5) { grid-column: span 4; aspect-ratio: 4/5; }
.gallery-item:nth-child(6) { grid-column: span 12; aspect-ratio: 21/9; }

@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(n) { grid-column: span 1; aspect-ratio: 1/1; }
  .gallery-item:nth-child(6) { grid-column: span 2; aspect-ratio: 16/9; }
}

/* ===== Towns ===== */
.towns {
  background: var(--cream);
}

.towns-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

@media (max-width: 880px) { .towns-grid { grid-template-columns: 1fr; } }

.tier {
  margin-bottom: 36px;
}

.tier-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clay);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tier-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(194, 65, 12, 0.3);
}

.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  list-style: none;
}

.town-list li a {
  display: inline-block;
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid rgba(26, 24, 19, 0.1);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}

.town-list li.featured a {
  background: var(--moss-deep);
  color: var(--cream);
  border-color: var(--moss-deep);
}

.town-list li a:hover {
  background: var(--clay);
  color: var(--cream);
  border-color: var(--clay);
  transform: translateY(-1px);
}

/* ===== FAQ ===== */
.faq {
  background: var(--paper);
}

.faq-list {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 24, 19, 0.12);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  color: var(--moss-deep);
  cursor: pointer;
  list-style: none;
  gap: 24px;
  transition: color 0.25s var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--clay); }

.faq-item summary::after {
  content: '+';
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--clay);
  transition: transform 0.35s var(--ease);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item > div {
  padding: 4px 0 32px;
  max-width: 68ch;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 0.9em;
}

.faq-item p:last-child { margin-bottom: 0; }

/* Lead sentence — the short direct answer */
.faq-lead {
  font-size: 1.08rem !important;
  color: var(--ink) !important;
  font-weight: 500;
  line-height: 1.5 !important;
  margin-bottom: 18px !important;
}

/* Inline price range chip — makes numbers pop without cluttering the prose */
.faq-price {
  display: inline-block;
  padding: 2px 9px;
  background: var(--bone);
  border: 1px solid rgba(26, 24, 19, 0.1);
  border-radius: 4px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--moss-deep);
  white-space: nowrap;
}

/* Mini data table inside an FAQ (for prices, frequencies) */
.faq-table {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px;
  margin: 16px 0 8px;
  background: rgba(26, 24, 19, 0.08);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 19, 0.08);
}

.faq-table > * {
  background: var(--paper);
  padding: 12px 16px;
  font-size: 0.95rem;
}

.faq-table > *:nth-child(odd) { color: var(--ink); }
.faq-table > *:nth-child(even) {
  text-align: right;
  font-weight: 600;
  color: var(--moss-deep);
  font-variant-numeric: tabular-nums;
}

/* Two-column comparison (e.g. tidy vs clearance) */
.faq-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0 8px;
}

@media (max-width: 640px) { .faq-compare { grid-template-columns: 1fr; } }

.faq-compare > div {
  background: var(--paper);
  border: 1px solid rgba(26, 24, 19, 0.1);
  border-radius: 4px;
  padding: 16px 18px;
}

.faq-compare h4 {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--moss-deep);
  margin-bottom: 8px;
}

.faq-compare p {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  margin-bottom: 10px !important;
  color: var(--ink-soft);
}

.faq-compare .faq-price {
  font-size: 0.85rem;
  padding: 2px 8px;
}

/* Bullet list styling inside FAQ */
.faq-bullets {
  list-style: none;
  margin: 14px 0 8px;
  padding: 0;
}

.faq-bullets li {
  position: relative;
  padding: 0 0 10px 22px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.faq-bullets li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
}

.faq-bullets li:last-child { padding-bottom: 0; }

.faq-bullets li strong { color: var(--moss-deep); font-weight: 600; }

/* Small note row under structured blocks */
.faq-note {
  font-size: 0.88rem !important;
  color: var(--stone) !important;
  margin-top: 12px !important;
  font-style: italic;
}

/* ===== Footer ===== */
.footer {
  background: var(--moss-deep);
  color: var(--cream);
  padding: 80px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

.footer h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clay-soft);
  margin-bottom: 18px;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 0.92rem; opacity: 0.85; }
.footer li a:hover { color: var(--clay-soft); }

.footer-brand {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
}

.footer-tag {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 38ch;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(244, 237, 224, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  opacity: 0.6;
}

/* ============================================================
   ASSESSMENT MODAL
   ============================================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 24, 19, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.modal.open { display: flex; opacity: 1; }

.modal-card {
  background: var(--cream);
  width: 100%;
  max-width: 720px;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.45s var(--ease);
  overflow: hidden;
}

@media (min-width: 720px) {
  .modal { padding: 40px 20px; align-items: center; }
  .modal-card { max-height: 88vh; border-radius: 6px; box-shadow: 0 60px 120px -30px rgba(26, 24, 19, 0.6); }
}

.modal.open .modal-card { transform: translateY(0); }

.modal-header {
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(26, 24, 19, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--paper);
  flex-shrink: 0;
}

.modal-progress {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--stone);
}

.modal-progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(26, 24, 19, 0.08);
  border-radius: 99px;
  overflow: hidden;
  max-width: 200px;
}

.modal-progress-fill {
  height: 100%;
  background: var(--clay);
  width: 25%;
  transition: width 0.5s var(--ease);
}

.modal-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.25s var(--ease);
  color: var(--ink-soft);
}

.modal-close:hover { background: rgba(26, 24, 19, 0.08); }

.modal-body {
  padding: 32px 28px 28px;
  overflow-y: auto;
  flex: 1;
}

.modal-step {
  display: none;
  animation: fadeUp 0.4s var(--ease);
}

.modal-step.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clay);
  margin-bottom: 10px;
}

.step-q {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--moss-deep);
  margin-bottom: 8px;
}

.step-help {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 50ch;
}

/* Service cards inside modal */
.opt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.opt-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.opt-grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

@media (max-width: 540px) {
  .opt-grid { grid-template-columns: 1fr; }
  .opt-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .opt-grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ===== Optional lead-packet extras block ===== */
.extras {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px dashed rgba(26, 24, 19, 0.18);
}

.extras-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 10px;
}

.extras-heading {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--moss-deep);
  margin-bottom: 6px;
}

.extras-help {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.5;
  max-width: 48ch;
}

.field-hint {
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.55;
  font-weight: 400;
}

.opt {
  background: var(--paper);
  border: 1.5px solid rgba(26, 24, 19, 0.1);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.25s var(--ease);
  width: 100%;
}

.opt:hover { border-color: var(--moss-deep); background: var(--bone); }

.opt.selected {
  border-color: var(--moss-deep);
  background: var(--moss-deep);
  color: var(--cream);
}

.opt.selected .opt-icon { color: var(--clay-soft); }
.opt.selected .opt-title { color: var(--cream); }
.opt.selected .opt-desc { color: rgba(244, 237, 224, 0.7); }

.opt-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--moss-light);
  margin-top: 2px;
}

.opt-body { flex: 1; }

.opt-title {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.15;
  color: var(--moss-deep);
  margin-bottom: 4px;
}

.opt-desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* Form fields */
.field { margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }

.field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1.5px solid rgba(26, 24, 19, 0.12);
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.25s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--moss-deep);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.4;
  cursor: pointer;
}

.consent input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }

/* Modal footer */
.modal-footer {
  padding: 18px 28px;
  background: var(--paper);
  border-top: 1px solid rgba(26, 24, 19, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}

.estimate {
  font-size: 0.78rem;
  color: var(--stone);
  letter-spacing: 0.04em;
}

.estimate strong {
  display: block;
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--moss-deep);
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.modal-actions {
  display: flex;
  gap: 8px;
}

.btn-back {
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
}

.btn-back:hover { background: rgba(26, 24, 19, 0.06); }
.btn-back:disabled { opacity: 0.3; cursor: not-allowed; }

.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--moss-deep);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.btn-next:hover { background: var(--clay); transform: translateY(-1px); }
.btn-next:disabled { background: var(--stone-soft); cursor: not-allowed; transform: none; }

/* Step 4 success */
.success {
  text-align: center;
  padding: 30px 0;
}

.success-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--moss-deep);
  color: var(--clay-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}

.success h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 500;
  font-size: 2rem;
  color: var(--moss-deep);
  margin-bottom: 12px;
  line-height: 1;
}

.success p {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.success-callout {
  background: var(--cream);
  border: 1px dashed rgba(44, 62, 31, 0.3);
  padding: 20px;
  border-radius: var(--radius);
  max-width: 380px;
  margin: 0 auto;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.success-callout strong { color: var(--moss-deep); }

/* Hide scroll while modal open */
body.modal-open { overflow: hidden; }

/* ===== hero-proof line (small label under chips) ===== */
.hero-proof {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 24, 19, 0.1);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ===== mobile atmospheric image (hidden on desktop) ===== */
.mobile-image { display: none; }

/* ===== Town extras prose — scannable paragraphs, not walls ===== */
.town-extras-prose p {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1em;
}
.town-extras-prose p:last-child { margin-bottom: 0; }

/* ===== Hero chips (v4) — 2×2 icon grid inside the entry card ===== */
.hero-chips--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.hero-chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 108px;
  padding: 18px 14px;
  background: var(--paper);
  border: 1px solid rgba(26, 24, 19, 0.12);
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--body);
  color: var(--ink);
  transition: all 0.22s var(--ease);
  cursor: pointer;
  /* Elevated shadow so they read as pressable, not decorative */
  box-shadow:
    0 1px 0 rgba(26, 24, 19, 0.04),
    0 8px 18px -10px rgba(26, 24, 19, 0.18),
    0 2px 6px -2px rgba(44, 62, 31, 0.08);
}
/* Clay arrow in the bottom-right corner — clear "tap here" cue */
.hero-chip::after {
  content: '';
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23c2410c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='12 5 19 12 12 19'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.55;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}
.hero-chip:hover::after,
.hero-chip:focus-visible::after {
  opacity: 1;
  transform: translateX(2px);
}
.hero-chip:active {
  transform: translateY(1px);
  box-shadow:
    0 1px 0 rgba(26, 24, 19, 0.04),
    0 4px 8px -6px rgba(26, 24, 19, 0.18);
}
.hero-chip-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--moss-light);
  transition: color 0.25s var(--ease);
}
.hero-chip-label {
  display: block;
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.15;
  color: var(--moss-deep);
}
.hero-chip-desc {
  display: block;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--ink-soft);
  margin-top: 2px;
}
.hero-chip:hover,
.hero-chip:focus-visible {
  border-color: var(--moss-deep);
  background: var(--moss-deep);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(26, 24, 19, 0.04),
    0 14px 28px -12px rgba(26, 38, 18, 0.32),
    0 4px 10px -4px rgba(44, 62, 31, 0.14);
}
.hero-chip:hover::after,
.hero-chip:focus-visible::after {
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23f4ede0' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='12 5 19 12 12 19'/></svg>");
}
.hero-chip:hover .hero-chip-label,
.hero-chip:focus-visible .hero-chip-label { color: var(--cream); }
.hero-chip:hover .hero-chip-desc,
.hero-chip:focus-visible .hero-chip-desc { color: rgba(244, 237, 224, 0.72); }
.hero-chip:hover .hero-chip-icon,
.hero-chip:focus-visible .hero-chip-icon { color: var(--clay); }
.hero-chip--ghost {
  border-style: dashed;
  border-color: rgba(26, 38, 18, 0.35);
}
.hero-chip--ghost:hover,
.hero-chip--ghost:focus-visible {
  border-style: solid;
}

/* ===== Inline section CTA block ===== */
.section-cta {
  text-align: center;
  margin-top: clamp(36px, 5vw, 56px);
}
.section-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--moss-deep);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease);
}
.section-cta a:hover { transform: translateY(-1px); }
.section-cta a svg { width: 16px; height: 16px; }


/* ===== Mobile refinements (audit April 2026, v2) ===== */
@media (max-width: 640px) {
  /* Nav: hide subtitle, tighten spacing, drop tertiary link */
  .topbar-inner { padding: 14px 0; }
  .brand-name { font-size: 0.98rem; }
  .brand-name small { display: none; }
  .brand-mark { width: 32px; height: 32px; }
  /* Mobile nav simplified: only "Get a quote" + hamburger visible.
     Other links move into the drawer. */
  .topbar .wrap { padding: 0 18px 0 18px; }
  .topbar-cta { gap: 10px; font-size: 0.82rem; }
  .topbar-cta .topbar-link { display: none; }
  .topbar-menu { display: block; }
  .topbar[data-menu-open="true"] .topbar-drawer { display: block; }
  .topbar-phone { min-height: 44px; display: inline-flex; align-items: center; white-space: nowrap; }
  .brand-name { max-width: 140px; line-height: 1.05; }

  /* Hero reflow v2: estimate card becomes the hero. Old hero-left (editorial
     headline + prose + stats) reorders beneath it — still in DOM for SEO and
     scrollers, just not gating the conversion. */
  .hero { padding: 24px 0 36px; }
  .hero-grid { display: flex; flex-direction: column; gap: 40px; }
  .hero-right { order: 0; }
  .hero-left { order: 1; }

  /* On mobile: drop the card box entirely — chips float on the hero background.
     No border, no shadow, no background. Keeps the feel light + editorial. */
  .entry {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .entry::before { display: none; }
  .entry-title {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.005em;
    color: var(--moss-deep);
    text-align: center;
    font-family: var(--display);
    font-variation-settings: "opsz" 24, "SOFT" 30;
    font-weight: 500;
    text-transform: none;
  }
  .hero-chips--grid { margin-top: 16px; gap: 10px; }
  .hero-chip {
    min-height: 130px;
    padding: 16px 12px;
    /* Chips DO keep a soft background so they still feel tappable */
    background: var(--paper);
    border: 1px solid rgba(26, 24, 19, 0.1);
  }
  .hero-chip-icon { width: 26px; height: 26px; }
  .hero-chip-label { font-size: 0.96rem; }
  .hero-chip-desc { font-size: 0.74rem; line-height: 1.3; }
  .hero-proof {
    border-top: 0;
    margin-top: 16px;
    padding-top: 0;
  }

  /* Services grid: single column on mobile so the 4 cards get proper width
     and text stops waterfalling down a narrow 150px column. */
  .services-grid { grid-template-columns: 1fr !important; }

  /* Hero-left: only show the headline as a short tagline above the card.
     Order it first; hide the eyebrow, sub-paragraph, stats row. */
  .hero-left { display: block; order: 0; margin-bottom: 4px; }
  .hero-left .eyebrow,
  .hero-left .hero-sub,
  .hero-left .hero-meta { display: none; }
  .hero-right { order: 1; }
  .hero-headline {
    font-size: clamp(2.4rem, 9vw, 3.1rem) !important;
    line-height: 1;
    margin-bottom: 10px !important;
    letter-spacing: -0.02em;
  }
  .hero-headline br { display: none; }
  .hero-headline em::after { bottom: -0.04em; height: 0.12em; }
  .hero-grid { gap: 24px; }

  /* Mobile-only atmospheric image between hero and services. Desktop hides it. */
  .mobile-image { display: block; padding: 0; margin: 0; }
  .mobile-image img { width: 100%; height: auto; display: block; }

  /* Section padding tightened — default clamp(80px,11vw,150px) is way too
     airy on a 390px viewport and makes the page ~8000px tall mostly from
     whitespace. */
  .section { padding: 56px 0; }
  .section-title { font-size: clamp(1.9rem, 6.4vw, 2.4rem); line-height: 1.08; }

  /* Editorial section: also kill the big display H2 on mobile — lead
     paragraph alone is enough to convey tone. */
  .editorial .section-title,
  .editorial h2.display { display: none; }
  .editorial .eyebrow { margin-bottom: 10px; }

  /* Town page local-notes block: force single column at narrow widths so
     the 140px reading columns go away. */
  .town-extras .editorial-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .town-extras h2.display { display: block; font-size: 1.7rem !important; margin-bottom: 14px !important; }

  /* Services card accent price — old clay on dark moss fails WCAG AA
     contrast. Lift to a warm cream so it passes clearly. */
  .services .service-price { color: #f1d9ae; font-size: 0.82rem; }

  /* FAQ title shrink to match rest of mobile scale */
  .faq .section-title { font-size: 1.9rem; }

  /* Touch targets */
  .opt-card, .skip-chip { min-height: 48px; }
  .faq-item summary { min-height: 48px; padding-top: 14px; padding-bottom: 14px; }

  /* Editorial section: keep lead paragraph, collapse the rest on mobile so the
     services → how-it-works conversion path isn't broken by three scrolls of prose.
     Still in the DOM → Google indexes the full copy. */
  .editorial-text p:nth-of-type(n+2) { display: none; }
  .editorial-image { display: none; }
  .editorial-grid { grid-template-columns: 1fr; gap: 0; }
  .editorial.section { padding-top: 40px; padding-bottom: 40px; }
}

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

/* Service-card as anchor (town pages: links to service hubs with town anchor text) */
a.service-card { text-decoration: none; color: inherit; }
.service-link-cta {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--clay-soft);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
  border-top: 1px solid rgba(244, 237, 224, 0.12);
  padding-top: 12px;
}
a.service-card:hover .service-link-cta { color: var(--cream); }

/* ============================================================
   CONTENT PAGES LAYER — services / garden-design / blog
   Added 2026-06-06. Styles the agent-written page vocabularies
   in the same editorial brand language as the homepage.
   ============================================================ */

/* ---------- Generic containers ---------- */
.container, .contain {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.text-center { text-align: center; }

/* ---------- Headers (blog/services vocabulary) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 237, 224, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 24, 19, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.header-logo {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 0;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--moss-deep);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.88rem;
  font-weight: 500;
}
.header-nav a:hover { color: var(--clay); }
.header-nav a:last-child {
  background: var(--moss-deep);
  color: var(--cream);
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: background 0.3s var(--ease);
}
.header-nav a:last-child:hover { background: var(--moss); color: var(--cream); }
@media (max-width: 640px) {
  .header-nav { gap: 14px; }
  .header-nav a:not(:last-child) { display: none; }
}

/* Garden-design topbar variant (anchor-only .brand, .cta-nav) */
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
a.brand {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 0;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--moss-deep);
}
.cta-nav {
  background: var(--moss-deep);
  color: var(--cream);
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.3s var(--ease);
}
.cta-nav:hover { background: var(--moss); }

/* ---------- Heroes ---------- */
.hero-service, .service-hero {
  background: var(--moss-deep);
  color: var(--cream);
  padding: clamp(70px, 9vw, 130px) 0 clamp(56px, 7vw, 100px);
  position: relative;
}
.hero-service::before, .service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96, 0 0 0 0 0.93, 0 0 0 0 0.88, 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-service > *, .service-hero > * { position: relative; }
.hero-service h1, .service-hero h1, .service-hero .display {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 22ch;
  margin-bottom: 26px;
}
.service-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-soft);
  margin-bottom: 22px;
}
.hero-service .section-num { color: var(--clay-soft); }
.hero-service .section-num::after { background: var(--clay-soft); }
.hero-intro, .standfirst, .service-standfirst {
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.82);
  max-width: 56ch;
  margin-bottom: 30px;
}
.hero-service .btn-primary, .service-hero .btn-primary, .hero-service .btn, .service-hero .btn {
  display: inline-flex;
  width: auto;
  gap: 14px;
  background: var(--clay);
  color: var(--cream);
}
.hero-service .btn-primary:hover, .service-hero .btn:hover { background: var(--clay-dark); }

/* Article headers (blog vocabulary) — light editorial */
.article-header, .blog-header {
  padding: clamp(56px, 8vw, 110px) 0 clamp(30px, 4vw, 56px);
  border-bottom: 1px solid rgba(26, 24, 19, 0.1);
  margin-bottom: clamp(36px, 5vw, 64px);
}
.article-header h1, .blog-header h1 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--moss-deep);
  max-width: 24ch;
  margin-bottom: 20px;
}
.article-standfirst {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 50;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 18px;
}
.article-meta, .blog-meta, .last-reviewed, .meta, .breadcrumb, .author-date, .bio-date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 14px;
}
.article-meta a:hover, .breadcrumb a:hover { color: var(--clay); }

/* ---------- Page scaffolding / sections ---------- */
.service-body { padding: 0 0 clamp(56px, 8vw, 110px); }
.article, .article-body, .blog-post, .blog-body, .prose-wide {
  max-width: 820px;
  margin: 0 auto;
}
.article, .blog-post { padding: 0 var(--gutter); }
/* Service layout: left-aligned editorial column + sticky quote rail */
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  padding-top: clamp(36px, 5vw, 56px);
}
.service-layout:has(.service-panel) { grid-template-columns: minmax(0, 1fr) 330px; }
@media (max-width: 980px) {
  .service-layout:has(.service-panel) { grid-template-columns: minmax(0, 1fr); }
}
.service-copy { max-width: 74ch; }
.section-white { background: var(--paper); padding: clamp(48px, 7vw, 96px) 0; }
.section-alt   { background: var(--cream-deep); padding: clamp(48px, 7vw, 96px) 0; }
.service-copy > section, .service-copy > .cta-block { margin: clamp(40px, 6vw, 72px) 0; }
.service-body .container { padding-top: clamp(36px, 5vw, 60px); }

/* ---------- Prose ---------- */
.prose-wide h2, .service-copy h2, .article-body h2, .blog-body h2, .article h2, .town-section h2, .town-grid-region {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--moss-deep);
  max-width: 26ch;
  margin: 0 0 22px;
}
.prose-wide h3, .service-copy h3, .article-body h3, .blog-body h3, .article h3 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 40, "SOFT" 30;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.15;
  color: var(--moss-deep);
  margin: 34px 0 12px;
}
.prose-wide h4, .service-copy h4, .article-body h4, .blog-body h4 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--moss-deep);
  margin: 26px 0 10px;
}
.prose-wide p, .service-copy p, .article-body p, .blog-body p, .article p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 70ch;
  margin-bottom: 1.05em;
}
.prose-wide ul, .prose-wide ol, .service-copy ul, .service-copy ol,
.article-body ul, .article-body ol, .blog-body ul, .blog-body ol {
  margin: 0 0 1.2em 1.2em;
  color: var(--ink-soft);
  line-height: 1.65;
}
.prose-wide li, .service-copy li, .article-body li, .blog-body li { margin-bottom: 0.5em; }
.prose-wide a, .service-copy a, .article-body a, .blog-body a, .article a {
  color: var(--clay-dark);
  text-decoration: underline;
  text-decoration-color: rgba(194, 65, 12, 0.35);
  text-underline-offset: 2px;
  transition: color 0.25s var(--ease);
}
.prose-wide a:hover, .service-copy a:hover, .article-body a:hover, .blog-body a:hover { color: var(--clay); }
.prose-wide strong, .article-body strong, .blog-body strong, .service-copy strong { color: var(--ink); }
.prose-wide blockquote, .article-body blockquote, .blog-body blockquote {
  border-left: 3px solid var(--clay);
  padding: 6px 0 6px 22px;
  margin: 26px 0;
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 60;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

/* ---------- Tables ---------- */
.price-table, .pricing-table, .cost-table, .region-table, .calendar-table, .comparison-table,
.article-body table, .blog-body table, .service-copy table, .prose-wide table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  background: var(--paper);
  border: 1px solid rgba(26, 24, 19, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.95rem;
}
.price-table th, .pricing-table th, .cost-table th, .region-table th, .calendar-table th, .comparison-table th,
.article-body table th, .blog-body table th, .service-copy table th, .prose-wide table th {
  text-align: left;
  padding: 13px 18px;
  background: var(--moss-deep);
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-table td, .pricing-table td, .cost-table td, .region-table td, .calendar-table td, .comparison-table td,
.article-body table td, .blog-body table td, .service-copy table td, .prose-wide table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(26, 24, 19, 0.08);
  color: var(--ink-soft);
  vertical-align: top;
}
.price-table tr:last-child td, .article-body table tr:last-child td,
.blog-body table tr:last-child td, .service-copy table tr:last-child td { border-bottom: 0; }
.price-table td:last-child, .pricing-table td:last-child, .cost-table td:last-child {
  font-weight: 600;
  color: var(--moss-deep);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.pricing-table-wrap { overflow-x: auto; }
@media (max-width: 560px) {
  .price-table th, .price-table td, .pricing-table th, .pricing-table td,
  .article-body table th, .article-body table td { padding: 10px 12px; font-size: 0.88rem; }
}

/* Pricing rows (services vocabulary) */
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 24, 19, 0.1);
  max-width: 70ch;
}
.pricing-label { color: var(--ink-soft); }
.pricing-value {
  font-weight: 600;
  color: var(--moss-deep);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Cost / tier card grids */
.cost-grid, .town-grid, .plant-grid, .season-grid, .seasonal-grid, .quick-answer-grid, .month-jobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 26px 0;
}
.cost-card, .tier-card, .weed-card, .plant-card, .season-card, .seasonal-card,
.garden-card, .month-job-card, .panel-box, .quick-answer-item {
  background: var(--paper);
  border: 1px solid rgba(26, 24, 19, 0.12);
  border-radius: var(--radius);
  padding: 22px;
}
.cost-card p, .tier-card p, .weed-card p, .plant-card p, .season-card p,
.garden-card p, .month-job-card p, .panel-box p { margin-bottom: 0.6em; font-size: 0.95rem; }
.cost-label, .job-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.cost-figure, .tier-price {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "SOFT" 30;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--moss-deep);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.weed-latin { font-style: italic; color: var(--stone); font-size: 0.9rem; }
.weed-difficulty, .difficulty-hard, .difficulty-medium {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 99px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 4px 0 10px;
  background: var(--bone);
  color: var(--moss-deep);
}
.difficulty-hard { background: rgba(194, 65, 12, 0.12); color: var(--clay-dark); }
.difficulty-medium { background: rgba(232, 123, 74, 0.16); color: var(--clay-dark); }
.garden-meta { font-size: 0.85rem; color: var(--stone); margin-bottom: 10px; }

/* ---------- Callouts ---------- */
.callout, .yorkshire-note, .notice-box, .snippet-box, .eeat-note, .quick-answer, .price-callout {
  background: var(--bone);
  border-left: 3px solid var(--clay);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
  max-width: 70ch;
}
.callout p, .quick-answer p, .yorkshire-note p { margin-bottom: 0.6em; }
.callout p:last-child, .quick-answer p:last-child, .yorkshire-note p:last-child { margin-bottom: 0; }
.callout--warning, .warning-callout {
  background: rgba(194, 65, 12, 0.07);
  border-left-color: var(--clay-dark);
}
.quick-answer-note { font-size: 0.85rem; color: var(--stone); }

/* ---------- CTAs ---------- */
.cta-block, .cta-band, .cta-section, .cta-box, .article-cta {
  background: var(--moss-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  margin: clamp(36px, 5vw, 56px) 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before, .cta-band::before, .article-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96, 0 0 0 0 0.93, 0 0 0 0 0.88, 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.cta-block > *, .cta-band > *, .article-cta > * { position: relative; }
.cta-block h3, .cta-band h3, .cta-section h3, .article-cta h3, .cta-block h2, .cta-band h2 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--cream) !important;
  margin: 0 0 12px !important;
}
.cta-block p, .cta-band p, .cta-section p, .article-cta p, .article-cta-text {
  color: rgba(244, 237, 224, 0.82) !important;
  max-width: 56ch;
  margin-bottom: 1em;
}
.article-cta--inline { padding: 22px 26px; }
.article-cta--inline h3 { font-size: 1.25rem; }
.article-cta-chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-soft);
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn, .cta-btn, .form-submit, .article-cta a.btn {
  display: inline-block;
  background: var(--clay);
  color: var(--cream) !important;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  border: 0;
  cursor: pointer;
}
.btn:hover, .cta-btn:hover, .form-submit:hover { background: var(--clay-dark); transform: translateY(-1px); }
.btn.secondary, .secondary {
  background: transparent;
  border: 1px solid rgba(26, 24, 19, 0.25);
  color: var(--moss-deep) !important;
}
.cta-block .btn.secondary, .cta-band .secondary, .article-cta .secondary {
  border-color: rgba(244, 237, 224, 0.4);
  color: var(--cream) !important;
}
.btn.secondary:hover, .secondary:hover { background: rgba(26, 24, 19, 0.06); }
.service-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0; }

/* ---------- Process steps ---------- */
.process-steps, .steps-list {
  list-style: none;
  counter-reset: pstep;
  margin: 26px 0;
  padding: 0;
  max-width: 70ch;
}
.process-steps li, .steps-list li {
  counter-increment: pstep;
  position: relative;
  padding: 0 0 26px 56px;
  margin: 0;
}
.process-steps li::before, .steps-list li::before {
  content: counter(pstep, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "SOFT" 30;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--clay);
  font-variant-numeric: tabular-nums;
}
.process-steps li::after, .steps-list li::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 36px;
  bottom: 8px;
  width: 1px;
  background: rgba(194, 65, 12, 0.25);
}
.process-steps li:last-child::after, .steps-list li:last-child::after { display: none; }
.process-steps strong, .steps-list strong { color: var(--moss-deep); }

/* ---------- Checklists ---------- */
.checklist { list-style: none; margin: 22px 0; padding: 0; max-width: 70ch; }
.checklist li { padding: 9px 0 9px 34px; position: relative; border-bottom: 1px solid rgba(26, 24, 19, 0.07); }
.checklist li::before { content: '✓'; position: absolute; left: 4px; color: var(--moss-light); font-weight: 700; }
.ck-label { font-weight: 600; color: var(--moss-deep); }
.ck-yes { color: var(--moss-light); font-weight: 700; }
.ck-no { color: var(--clay-dark); font-weight: 700; }

/* ---------- Link chips (towns, related, further reading) ---------- */
.town-links, .nearby-links, .link-list, .related-services, .further-reading, .town-grid-list, .footer-links, .hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  list-style: none;
  padding: 0;
}
.town-links a, .nearby-links a, .link-list a, .related-services a, .further-reading a, .town-grid-list a, .hero-chips a {
  display: inline-block;
  background: var(--paper);
  border: 1px solid rgba(26, 24, 19, 0.13);
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none !important;
  transition: all 0.25s var(--ease);
}
.town-links a:hover, .nearby-links a:hover, .link-list a:hover, .related-services a:hover,
.further-reading a:hover, .town-grid-list a:hover {
  border-color: var(--clay);
  color: var(--clay-dark);
  background: var(--cream);
}
.town-desc { font-size: 0.92rem; color: var(--stone); margin: 4px 0 14px; }
.town-section, .town-grid-section { margin: 36px 0; }

/* ---------- FAQ (plain div/p vocabulary) ---------- */
.faq-section, .faq-block { margin: 30px 0; max-width: 760px; }
.faq-question {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--moss-deep);
  margin: 26px 0 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(26, 24, 19, 0.1);
}
div.faq-item { border-bottom: 0; }

/* ---------- Author bio ---------- */
.author-bio {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-top: 1px solid rgba(26, 24, 19, 0.12);
  margin: 48px 0 0;
  padding: 28px 0 0;
}
.author-bio-avatar, .author-bio-fallback {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--moss-deep);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.3rem;
  overflow: hidden;
}
.author-bio-text p, .author-bio p { font-size: 0.92rem; margin-bottom: 0.4em; }
.author-bio-name, .bio-name, .author-name { font-weight: 600; color: var(--moss-deep); font-size: 0.95rem; }
.author-bio-role, .bio-desc, .author-bio-meta { font-size: 0.85rem; color: var(--stone); }

/* ---------- Forms ---------- */
.lead-form {
  background: var(--paper);
  border: 1px solid rgba(26, 24, 19, 0.12);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  margin: 32px 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--moss-deep); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid rgba(26, 24, 19, 0.18);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--moss-light); border-color: transparent; }
.form-sub { font-size: 0.85rem; color: var(--stone); }

/* ---------- Footers (blog/services vocabulary) ---------- */
.site-footer {
  background: var(--moss-deep);
  color: var(--cream);
  padding: 64px 0 32px;
  margin-top: clamp(56px, 8vw, 100px);
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4, .footer-col h3 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clay-soft);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; font-size: 0.9rem; opacity: 0.85; }
.footer-col a:hover { color: var(--clay-soft); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; font-size: 0.9rem; opacity: 0.85; }
.footer-nav a:hover { color: var(--clay-soft); }
.footer-tagline {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  font-size: 1.05rem;
  opacity: 0.7;
  max-width: 38ch;
}
.footer-note {
  border-top: 1px solid rgba(244, 237, 224, 0.12);
  padding-top: 18px;
  font-size: 0.8rem;
  opacity: 0.55;
}
.site-footer .town-links a, .site-footer .footer-links a {
  background: rgba(244, 237, 224, 0.06);
  border-color: rgba(244, 237, 224, 0.18);
  color: rgba(244, 237, 224, 0.85);
}
.site-footer .town-links a:hover { border-color: var(--clay-soft); color: var(--cream); }

/* ---------- Misc ---------- */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: 6px; }

/* ---------- Editorial figures (added 2026-06-07, real-photo pool images/editorial/) ---------- */
.figure-editorial {
  margin: clamp(34px, 5vw, 54px) 0;
}
.figure-editorial img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}
.figure-editorial figcaption {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  font-size: 0.95rem;
  color: var(--stone);
  margin-top: 12px;
  padding-left: 14px;
  border-left: 2px solid var(--clay);
  line-height: 1.45;
}

/* ============================================================
   SERVICE PAGE REDESIGN — 2026-06-07 (Max feedback pass)
   Human top: split hero w/ photo + trust row + real buttons.
   Sticky quote rail. Depth buried in deep-dive accordions.
   ============================================================ */

/* --- Split hero --- */
.service-hero .wrap, .hero-service .wrap, .service-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) {
  .service-hero .wrap, .hero-service .wrap, .service-hero .container { grid-template-columns: 1fr; }
}
.hero-media { margin: 0; position: relative; }
.hero-media img {
  width: 100%;
  height: clamp(280px, 30vw, 420px);
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
}
@media (max-width: 880px) { .hero-media img { height: 240px; } }

/* --- Hero CTAs: every action is a real button --- */
.service-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 0; }
.service-actions a {
  display: inline-block;
  background: var(--clay);
  color: var(--cream) !important;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-actions a:hover { background: var(--clay-dark); transform: translateY(-1px); }
.service-actions a.secondary {
  background: transparent;
  border: 1px solid rgba(244, 237, 224, 0.35);
  color: var(--cream) !important;
}
.service-actions a.secondary:hover { background: rgba(244, 237, 224, 0.08); }

/* --- Trust row under hero CTAs --- */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}
.hero-trust li {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(244, 237, 224, 0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust li::before { content: '✓'; color: var(--clay-soft); font-weight: 700; }

/* --- Sticky quote rail --- */
.service-panel {
  position: sticky;
  top: 90px;
  background: var(--paper);
  border: 1px solid rgba(26, 24, 19, 0.12);
  border-top: 3px solid var(--clay);
  border-radius: var(--radius);
  padding: 26px;
}
.service-panel h2, .service-panel h3 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 40, "SOFT" 30;
  font-size: 1.25rem;
  color: var(--moss-deep);
  margin: 0 0 12px;
}
.service-panel p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: 12px; }
.service-panel ul { list-style: none; margin: 0 0 18px; padding: 0; }
.service-panel li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 7px 0 7px 24px;
  position: relative;
  border-bottom: 1px solid rgba(26, 24, 19, 0.06);
}
.service-panel li:last-child { border-bottom: 0; }
.service-panel li::before { content: '✓'; position: absolute; left: 2px; color: var(--moss-light); font-weight: 700; }
.service-panel > a, .service-panel .btn {
  display: block;
  text-align: center;
  background: var(--clay);
  color: var(--cream) !important;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: background 0.3s var(--ease);
}
.service-panel > a:hover { background: var(--clay-dark); }
.panel-links { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(26, 24, 19, 0.1); }
.panel-links p { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; }
.panel-links a {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--moss-deep);
  padding: 6px 0;
  text-decoration: none;
}
.panel-links a:hover { color: var(--clay); }
@media (max-width: 980px) { .service-panel { position: static; } }

/* --- Deep-dive accordions (the buried SEO depth) --- */
.deep-dive-intro {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 48px 0 6px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.deep-dive-intro::after { content: ''; flex: 1; height: 1px; background: rgba(194, 65, 12, 0.3); }
details.deep-dive { border-bottom: 1px solid rgba(26, 24, 19, 0.12); }
details.deep-dive summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 40, "SOFT" 30;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  color: var(--moss-deep);
  transition: color 0.25s var(--ease);
}
details.deep-dive summary::-webkit-details-marker { display: none; }
details.deep-dive summary:hover { color: var(--clay); }
details.deep-dive summary::after {
  content: '+';
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--clay);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
details.deep-dive[open] summary::after { transform: rotate(45deg); }
details.deep-dive > div { padding: 2px 0 28px; }
details.deep-dive h3 { margin-top: 22px !important; }

/* tables never overflow their column */
.service-copy table, .price-table, .pricing-table, .cost-table { max-width: 100%; table-layout: auto; }

/* further reading: plain chips, no grey slab */
.further-reading { background: none; padding: 0; margin: 40px 0 0; }
.further-reading h3 {
  font-size: 0.74rem !important;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  font-family: var(--body) !important;
  margin: 0 0 12px !important;
}
.further-reading ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.further-reading li { margin: 0; }
.further-reading a {
  display: inline-block;
  background: var(--paper);
  border: 1px solid rgba(26, 24, 19, 0.13);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none !important;
  transition: all 0.25s var(--ease);
}
.further-reading a:hover { border-color: var(--clay); color: var(--clay-dark); }

.hero-copy { position: relative; }
/* plain anchors inside dark CTA bands become buttons */
.cta-block a:not(.secondary):not(.btn), .cta-band a:not(.secondary):not(.btn),
.cta-section a:not(.secondary):not(.btn), .article-cta a:not(.secondary):not(.btn) {
  display: inline-block;
  background: var(--clay);
  color: var(--cream) !important;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none !important;
  margin-top: 6px;
  transition: background 0.3s var(--ease);
}
.cta-block a:not(.secondary):hover, .cta-band a:not(.secondary):hover { background: var(--clay-dark); }

/* ---------- Hub grids (services + blog indexes, added 2026-06-07 audit) ---------- */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
}
.hub-card {
  display: block;
  background: var(--paper);
  border: 1px solid rgba(26, 24, 19, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.hub-card:hover { border-color: var(--clay); transform: translateY(-2px); }
.hub-card h2 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 40, "SOFT" 30;
  font-size: 1.25rem;
  color: var(--moss-deep);
  margin: 0 0 8px;
}
.hub-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 14px; }
.hub-card-cta { font-size: 0.85rem; font-weight: 600; color: var(--clay); }
.blog-hub-section { margin: 0 0 44px; }
.blog-hub-section h2 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--moss-deep);
  margin-bottom: 16px;
}
.blog-hub-list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 48px; }
@media (max-width: 720px) { .blog-hub-list { columns: 1; } }
.blog-hub-list li { margin: 0 0 1px; break-inside: avoid; }
.blog-hub-list a {
  display: block;
  padding: 9px 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(26, 24, 19, 0.07);
  transition: color 0.2s var(--ease);
}
.blog-hub-list a:hover { color: var(--clay-dark); }

/* ---------- Form trust signals (2026-06-09) ---------- */
.form-trust {
  font-size: 0.85rem;
  color: var(--clay);
  text-align: center;
  margin: 0.5rem 0;
  opacity: 0.85;
}

/* ---------- Blog quote rail (2026-06-07, "nail the blogs" pass) ---------- */
.article-body:has(> .blog-rail), .blog-post:has(> .blog-rail), .blog-body:has(> .blog-rail) {
  max-width: 1180px;
  position: relative;
  padding-right: 360px;
}
.blog-rail {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
}
.blog-rail-inner {
  position: sticky;
  top: 90px;
  background: var(--paper);
  border: 1px solid rgba(26, 24, 19, 0.12);
  border-top: 3px solid var(--clay);
  border-radius: var(--radius);
  padding: 24px;
}
.blog-rail-inner h2 {
  font-family: var(--display) !important;
  font-weight: 500 !important;
  font-variation-settings: "opsz" 40, "SOFT" 30;
  font-size: 1.2rem !important;
  color: var(--moss-deep);
  margin: 0 0 10px !important;
  max-width: none !important;
}
.blog-rail-inner p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: 14px; max-width: none; }
.blog-rail-inner > a {
  display: block;
  text-align: center;
  background: var(--clay);
  color: var(--cream) !important;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none !important;
  transition: background 0.3s var(--ease);
}
.blog-rail-inner > a:hover { background: var(--clay-dark); }
@media (max-width: 1080px) {
  .article-body:has(> .blog-rail), .blog-post:has(> .blog-rail), .blog-body:has(> .blog-rail) { padding-right: 0; max-width: 820px; }
  .blog-rail { display: none; }
}
