/* Cool Peaches site styles. Shared by every page the build writes; the homepage
   design's styles, moved here unchanged, with inner-page components below. */

:root {
  /* Colour roles, in the Lapel scheme. The names match palettes.html, so a
     block from its "Copy CSS" button pastes straight over this one. Every
     text pairing below passes WCAG AA at the size it is used; ratios are
     measured, not estimated. #FF50C5 stays in the brand's own places: the
     logo, the heart badge and the stars. */
  --field:         #FFFFFF;   /* hero and closing CTA */
  --field-heading: #0A0A0A;   /* 19.80 on field */
  --field-accent:  #C4007F;   /*  5.75 on field */
  --field-text:    #2A2A2A;   /* 14.35 on field */
  --cta:           #C4007F;
  --cta-text:      #FFFFFF;   /*  5.75 on cta */
  --page:          #FFFFFF;
  --soft:          #F3F3F3;   /* reviews band */
  --heading:       #0A0A0A;   /* 19.80 on page */
  --accent:        #C4007F;   /*  5.75 on page, 5.18 on soft */
  --ink:           #1A1A1A;
  --muted:         #5E5E5E;   /*  6.48 on page, 5.84 on soft */
  --deep:          #A80070;   /* announce bar, stat strip */
  --deep-text:     #FFFFFF;   /*  7.24 on deep */
  --deep-accent:   #FFD1EE;   /*  5.38 on deep */
  --night:         #0A0A0A;   /* founder band, footer */
  --night-accent:  #FF8CD9;   /*  9.43 on night */
  --leaf:          #C4007F;   /* check marks and leaf icon; decorative */
  --star:          #FF50C5;   /* decorative only */

  /* Derived, so a scheme is only the roles above. */
  --page-alt: color-mix(in srgb, var(--soft) 55%, var(--page));
  --tint:     color-mix(in srgb, var(--soft) 50%, #fff);
  --line:     color-mix(in srgb, var(--heading) 12%, var(--page));

  --serif:  "Gelasio", Georgia, serif;
  --sans:   "Poppins", system-ui, sans-serif;
  --script: "Caveat", cursive;

  --container: 1200px;
  --radius:    16px;
  --shadow-sm: 0 2px 8px color-mix(in srgb, var(--heading) 8%, transparent);
  --shadow-md: 0 16px 38px color-mix(in srgb, var(--heading) 14%, transparent);
  --shadow-cta: 0 2px 8px color-mix(in srgb, var(--cta) 28%, transparent);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 400 16px/1.65 var(--sans);
  color: var(--ink);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
figure, blockquote { margin: 0; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--cta); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) { .wrap { padding: 0 16px; } }

/* ---- Type ------------------------------------------------------------ */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; color: var(--heading); margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 5.2vw, 64px); line-height: 1.06; letter-spacing: -0.025em; }
h2 { font-size: clamp(32px, 3.4vw, 46px); line-height: 1.14; }
h3 { font-size: 22px; line-height: 1.25; }
h1 em, h2 em { font-style: italic; color: var(--accent); }
.eyebrow { font: 700 26px/1 var(--script); color: var(--accent); margin: 0 0 10px; }
.lede { font-size: 17px; color: var(--muted); max-width: 560px; margin: 14px 0 0; }

/* ---- Buttons: pills with a round glyph at the trailing end ----------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  min-height: 56px; padding: 6px 6px 6px 28px;
  border-radius: 999px; border: 0;
  font: 600 15px/1 var(--sans); text-decoration: none; cursor: pointer;
  background: var(--cta); color: var(--cta-text); box-shadow: var(--shadow-cta);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px color-mix(in srgb, var(--cta) 32%, transparent); }
.btn__glyph {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--cta-text); color: var(--cta);
}
.btn__glyph svg { width: 18px; height: 18px; }
.btn--light { background: #fff; color: var(--heading); box-shadow: var(--shadow-sm); }
.btn--light .btn__glyph { background: var(--cta); color: var(--cta-text); }
.btn--sm { min-height: 44px; padding: 4px 4px 4px 20px; font-size: 13px; gap: 10px; }
.btn--sm .btn__glyph { width: 36px; height: 36px; }
.btn--sm .btn__glyph svg { width: 15px; height: 15px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---- Announce + header ------------------------------------------------ */
.announce { background: var(--deep); color: var(--deep-text); font-size: 14px; text-align: center; padding: 9px 16px; }
.announce a { color: var(--deep-accent); font-weight: 600; }
@media (max-width: 600px) { .announce__long { display: none; } }
.header { position: sticky; top: 0; z-index: 20; background: #fff; border-bottom: 1px solid var(--line); }
.header__in { display: flex; align-items: center; gap: 28px; height: 78px; }
.logo { display: flex; align-items: center; flex: none; }
.logo img { height: 58px; width: auto; }
.nav { margin: 0 auto; }
.nav ul { list-style: none; margin: 0; padding: 0; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; display: flex; align-items: center; }
.nav a, .nav__more { font: 500 14.5px/1.3 var(--sans); color: inherit; text-decoration: none; padding: 8px 14px; border-radius: 8px; }
.nav a:hover, .nav__more:hover { background: var(--tint); }
.nav__more { display: inline-flex; align-items: center; gap: 4px; background: none; border: 0; cursor: pointer; }
.nav__more svg { width: 14px; height: 14px; flex: none; transition: transform .15s ease; }
.nav__item--menu > a { padding-right: 4px; }
.nav__item--menu > a + .nav__more { padding: 8px 8px 8px 2px; }
.nav__item--menu.is-open > .nav__more svg { transform: rotate(180deg); }
/* The section a page belongs to, and the page itself, in the accent. */
.nav__item.is-current > a, .nav a[aria-current="page"] { color: var(--accent); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--heading); }

/* Menus: a panel under the label on wide screens, opened by its button or by
   hover. Without the script, focus inside a menu opens it instead. */
@media (min-width: 961px) {
  .nav__menu {
    position: absolute; top: calc(100% + 12px); left: 0; z-index: 25; min-width: 230px; padding: 8px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md);
    visibility: hidden; opacity: 0; transform: translateY(-4px); transition: opacity .15s ease, transform .15s ease, visibility .15s;
  }
  .nav__menu::before { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 14px; }
  .nav__menu a { display: block; padding: 9px 12px; white-space: nowrap; }
  .nav__item--menu.is-open > .nav__menu,
  html:not(.js) .nav__item--menu:focus-within > .nav__menu { visibility: visible; opacity: 1; transform: none; }
}
/* Just above the collapse, seven items only fit on one line with tighter spacing. */
@media (min-width: 961px) and (max-width: 1080px) {
  .header__in { gap: 20px; }
  .nav__item > a, .nav__item > .nav__more { padding-left: 10px; padding-right: 10px; }
  .nav__item--menu > a { padding-right: 3px; }
  .nav__item--menu > a + .nav__more { padding: 8px 6px 8px 2px; }
}
@media (min-width: 961px) and (hover: hover) {
  .nav__item--menu:hover > .nav__menu { visibility: visible; opacity: 1; transform: none; }
}
@media (min-width: 961px) and (prefers-reduced-motion: reduce) { .nav__menu, .nav__more svg { transition: none; } }

/* Narrow screens: the menu button opens a panel under the header, and each
   menu opens in place beneath its label. */
@media (max-width: 960px) {
  .nav { display: none; position: absolute; top: 78px; left: 0; right: 0; max-height: calc(100dvh - 78px); overflow-y: auto;
         background: #fff; padding: 12px 16px 20px; border-bottom: 1px solid var(--line); }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; }
  .nav__item { flex-wrap: wrap; }
  .nav__item > a { flex: 1; }
  .nav__item--menu > a + .nav__more { padding: 8px 14px; }
  .nav__menu { display: none; flex-basis: 100%; padding: 2px 0 8px 14px; }
  .nav__item--menu.is-open > .nav__menu { display: block; }
  .nav__menu a { display: block; font-size: 14px; }
  .nav-toggle { display: block; }
  .header .btn { display: none; }
}

/* ---- Hero: the pink field --------------------------------------------- */
.hero { background: var(--field); padding: 88px 0 96px; overflow: hidden; }
/* The estimate form runs down the right, beside the copy and the photo; on
   narrow screens it comes straight after the copy, ahead of the photo. */
.hero__in { display: grid; grid-template-columns: 1.05fr 1fr; grid-template-rows: auto 1fr; gap: 40px 56px;
  grid-template-areas: "text form" "art form"; }
.hero__text { grid-area: text; }
.hero__form { grid-area: form; scroll-margin-top: 96px; }
.hero h1 { color: var(--field-heading); }
.hero h1 em { color: var(--field-accent); }
.hero .lede { color: var(--field-text); max-width: 540px; }
.hero .lede strong { color: var(--field-heading); }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  background: #fff; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--heading);
  box-shadow: var(--shadow-sm);
}
.badge svg { width: 14px; height: 14px; flex: none; }
.hero__art { grid-area: art; position: relative; min-height: 400px; }
.hero__photo {
  position: absolute; inset: 0 0 0 48px; border-radius: 28px; overflow: hidden;
  border: 8px solid #fff; box-shadow: var(--shadow-md); background: var(--soft);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.chip {
  position: absolute; background: #fff; border-radius: 14px; padding: 14px 16px;
  box-shadow: var(--shadow-md); font-size: 13.5px; line-height: 1.45; color: var(--ink); max-width: 250px;
}
.chip cite { display: block; margin-top: 6px; font-style: normal; font-size: 12px; font-weight: 600; color: var(--muted); }
.chip--a { top: 36px; left: 0; }
.chip--b { bottom: 44px; left: 0; }
.chip--c { top: 50%; right: -12px; background: var(--deep); color: var(--deep-text); max-width: 190px; }
.chip--c strong { display: block; font: 700 30px/1 var(--serif); color: var(--deep-accent); margin-bottom: 4px; }
.stars { display: flex; gap: 2px; color: var(--star); margin-bottom: 6px; }
.stars svg { width: 14px; height: 14px; }
@media (max-width: 960px) {
  .hero { padding: 56px 0 64px; }
  .hero__in { grid-template-columns: 1fr; grid-template-rows: none; grid-template-areas: "text" "form" "art"; }
  .hero__art { min-height: 420px; }
  .hero__photo { inset: 0; }
  .chip--c { right: 12px; }
  .chip--a, .chip--b { left: 12px; }
}
@media (max-width: 600px) {
  .hero__art { min-height: 360px; }
  .chip--b { display: none; }
}

/* ---- Stat strip -------------------------------------------------------- */
.stats { background: var(--deep); color: var(--deep-text); padding: 40px 0 34px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); text-align: center; }
/* Tints follow --deep-text, so a scheme with a light strip and dark text works too. */
.stat + .stat { border-left: 1px solid color-mix(in srgb, var(--deep-text) 14%, transparent); }
/* Sized to the column, so a word ("Excellent") fits as well as a number does. */
.stat b { display: block; font: 700 min(40px, 3.6vw)/1.1 var(--serif); color: var(--deep-text); }
.stat span { font-size: 14px; color: color-mix(in srgb, var(--deep-text) 78%, var(--deep)); }
.towns { margin-top: 30px; padding-top: 22px; border-top: 1px solid color-mix(in srgb, var(--deep-text) 14%, transparent); text-align: center; }
.towns p { margin: 0 0 12px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--deep-accent); }
.towns ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.towns li { font-size: 13px; padding: 5px 12px; border-radius: 999px; background: color-mix(in srgb, var(--deep-text) 8%, transparent); border: 1px solid color-mix(in srgb, var(--deep-text) 14%, transparent); }
@media (max-width: 760px) {
  .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 24px; }
  .stat:nth-child(3) { border-left: 0; }
  .stat b { font-size: min(34px, 8.5vw); }
}

/* ---- Sections --------------------------------------------------------- */
.section { padding: 104px 0; }
.section--alt { background: var(--page-alt); }
.section--soft { background: var(--soft); }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head--center .lede { margin-left: auto; margin-right: auto; }
@media (max-width: 600px) { .section { padding: 72px 0; } .section__head { margin-bottom: 40px; } }

/* ---- Services --------------------------------------------------------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 104px 28px; padding-top: 70px; }
.svc {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 104px 28px 28px; text-align: center; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.svc__img {
  position: absolute; top: -70px; left: 50%; transform: translateX(-50%);
  width: 156px; height: 156px; border-radius: 50%; overflow: hidden;
  border: 6px solid #fff; box-shadow: 0 0 0 2px var(--soft), var(--shadow-sm);
}
.svc__img img { width: 100%; height: 100%; object-fit: cover; }
.svc ul { list-style: none; margin: 16px 0 22px; padding: 0; text-align: left; font-size: 14.5px; color: var(--muted); }
.svc li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.svc li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--leaf) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat;
}
.svc__link { margin-top: auto; font-size: 14px; font-weight: 600; color: var(--accent); text-decoration: none; }
.svc__link:hover { text-decoration: underline; }
@media (max-width: 960px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services { grid-template-columns: 1fr; } }

/* ---- Founder band ----------------------------------------------------- */
.founder { background: var(--night); color: rgb(255 255 255 / .82); padding: 104px 0; }
.founder__in { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.founder h2 { color: #fff; }
.founder h2 em { color: var(--night-accent); }
.founder .eyebrow { color: var(--night-accent); }
.founder__art { position: relative; }
.founder__art > img { border-radius: 24px; aspect-ratio: 1; object-fit: cover; width: 100%; }
.founder__quote {
  position: relative; margin: -56px 24px 0 auto; max-width: 320px; background: #fff; color: var(--ink);
  border-radius: 16px; padding: 20px 22px; box-shadow: var(--shadow-md); font-size: 14.5px; line-height: 1.55;
}
.founder__quote::before { content: "\201C"; display: block; font: 700 44px/0.6 var(--serif); color: var(--accent); margin-bottom: 8px; }
.founder__quote cite { display: block; margin-top: 10px; font: 700 22px/1 var(--script); color: var(--accent); }
.pill-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px;
  background: color-mix(in srgb, var(--leaf) 18%, transparent); color: color-mix(in srgb, var(--leaf) 40%, #fff); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.founder p { font-size: 16.5px; max-width: 560px; }
.reasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.reason { padding: 16px 18px; border-radius: 12px; background: rgb(255 255 255 / .05); border: 1px solid rgb(255 255 255 / .12); }
.reason b { display: block; color: #fff; font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.reason span { font-size: 13.5px; color: rgb(255 255 255 / .7); line-height: 1.5; display: block; }
@media (max-width: 960px) {
  .founder__in { grid-template-columns: 1fr; gap: 64px; }
  .founder__art { max-width: 520px; }
}
@media (max-width: 600px) { .founder { padding: 72px 0; } .reasons { grid-template-columns: 1fr; } }

/* ---- How it works ----------------------------------------------------- */
.how__in { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { border-top: 3px solid var(--accent); padding-top: 20px; }
.step small { display: block; font: 700 15px/1 var(--sans); color: var(--accent); letter-spacing: .08em; margin-bottom: 12px; }
.step h3 { margin-bottom: 10px; }
.step p { margin: 0; font-size: 15px; color: var(--muted); }
@media (max-width: 960px) { .how__in { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 700px) { .steps { grid-template-columns: 1fr; } }

/* ---- Reviews ---------------------------------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: start; }
.review {
  background: #fff; border-radius: 18px; padding: 26px 24px; box-shadow: var(--shadow-md);
  font: 400 15.5px/1.6 var(--serif); color: var(--ink);
}
.review:nth-child(odd) { transform: rotate(-1.2deg); }
.review:nth-child(even) { transform: rotate(1.2deg) translateY(18px); }
.review p { margin: 0; }
.review cite { display: block; margin-top: 16px; font: 700 24px/1 var(--script); color: var(--accent); }
.review cite span { display: block; font: 500 12px/1.4 var(--sans); color: var(--muted); margin-top: 4px; }
.reviews__foot { margin-top: 56px; text-align: center; font-size: 15px; color: var(--muted); }
.reviews__foot a { color: var(--accent); font-weight: 600; }
@media (max-width: 1100px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .reviews { grid-template-columns: 1fr; }
  .review:nth-child(n) { transform: none; }
}

/* ---- FAQ -------------------------------------------------------------- */
.faq__in { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.faq__aside p { color: var(--muted); }
.faq__aside a { color: var(--accent); font-weight: 600; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 56px 18px 22px; position: relative;
  font-weight: 600; font-size: 15.5px; color: var(--heading);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--tint); color: var(--accent); font-size: 20px; font-weight: 500; line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; background: var(--cta); color: var(--cta-text); }
.faq details p { margin: 0; padding: 0 22px 20px; font-size: 15px; color: var(--muted); }
@media (max-width: 900px) { .faq__in { grid-template-columns: 1fr; gap: 32px; } }

/* ---- Closing CTA ------------------------------------------------------ */
.cta { background: var(--field); padding: 96px 0; text-align: center; }
.cta h2 { color: var(--field-heading); }
.cta h2 em { color: var(--field-accent); }
.cta .eyebrow { color: var(--field-heading); }
.cta .btn-row { justify-content: center; }
.cta__note { margin: 22px 0 0; font-size: 14px; font-weight: 500; color: var(--field-heading); }

/* ---- Footer ----------------------------------------------------------- */
.footer { background: var(--night); color: rgb(255 255 255 / .72); padding: 80px 0 32px; font-size: 14.5px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand { background: var(--page); border-radius: 18px; padding: 22px; color: var(--ink); max-width: 300px; }
.footer__brand img { height: 84px; width: auto; margin-bottom: 10px; }
.footer__brand p { margin: 0; font-size: 14px; color: var(--muted); }
.footer h4 { margin: 0 0 16px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--night-accent); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 9px; }
.footer a { text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__base { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgb(255 255 255 / .12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---- Floating CTA, shown once the hero's buttons are out of view ------ */
.float-cta { position: fixed; left: 50%; bottom: 20px; z-index: 30; transform: translate(-50%, 140%);
  transition: transform .25s ease; }
.float-cta.is-shown { transform: translate(-50%, 0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn, .float-cta { transition: none; } }

/* ======================================================================
   Inner pages. Everything below reuses the homepage's roles, type scale,
   buttons and cards, so a scheme change repaints every page at once.
   ====================================================================== */

.nav a[aria-current="page"] { background: var(--tint); color: var(--accent); }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 50; background: #fff; padding: 10px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }

/* ---- Page hero: the homepage hero, for any page ------------------------ */
.page-hero { background: var(--field); padding: 72px 0 80px; overflow: hidden; }
.page-hero__in { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.page-hero--plain .page-hero__in { grid-template-columns: 1fr; max-width: 820px; }
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__in { margin: 0 auto; }
.page-hero--center .lede, .page-hero--center .btn-row, .page-hero--center .badges { margin-left: auto; margin-right: auto; justify-content: center; }
.page-hero h1 { color: var(--field-heading); font-size: clamp(36px, 4.4vw, 56px); }
.page-hero h1 em { color: var(--field-accent); }
.page-hero .eyebrow { color: var(--field-accent); }
.page-hero .lede { color: var(--field-text); max-width: 600px; }
.page-hero .lede strong { color: var(--field-heading); }
.page-hero__photo { position: relative; aspect-ratio: 4 / 3; border-radius: 28px; overflow: hidden; border: 8px solid #fff;
  box-shadow: var(--shadow-md); background: var(--soft); }
.page-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__art { position: relative; }
.page-hero__art .chip--c { top: auto; bottom: 28px; right: -12px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 18px; padding: 0; list-style: none; font-size: 13px; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--line); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); text-decoration: underline; }
.page-hero--center .crumbs { justify-content: center; }
@media (max-width: 960px) {
  .page-hero { padding: 48px 0 56px; }
  .page-hero__in { grid-template-columns: 1fr; gap: 40px; }
  .page-hero__art .chip--c { right: 12px; }
}

/* ---- Split: copy beside a photo, alternating sides --------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--flip > :first-child { order: 2; }
.split__photo { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); background: var(--soft); aspect-ratio: 4 / 3; }
.split__photo img { width: 100%; height: 100%; object-fit: cover; }
.split .prose { max-width: none; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } .split--flip > :first-child { order: 0; } }
.stack > * + * { margin-top: 88px; }
@media (max-width: 600px) { .stack > * + * { margin-top: 64px; } }

/* ---- Prose: long-form copy from the content export -------------------- */
.prose { max-width: 760px; font-size: 16.5px; }
.prose--center { margin-left: auto; margin-right: auto; }
.prose > * + * { margin-top: 1em; }
.prose h2 { font-size: clamp(28px, 3vw, 38px); margin-top: 1.6em; }
.prose h3 { font-size: 23px; margin-top: 1.6em; }
.prose h4 { font: 600 17px/1.4 var(--sans); color: var(--heading); margin: 1.6em 0 0; }
.prose h2 + *, .prose h3 + *, .prose h4 + * { margin-top: .6em; }
.prose > :first-child { margin-top: 0; }
.prose p { margin-bottom: 0; }
.prose a { color: var(--accent); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--heading); font-weight: 600; }
.prose ul, .prose ol { padding-left: 0; margin-bottom: 0; }
.prose ul { list-style: none; }
.prose ul li { position: relative; padding-left: 28px; margin-top: 8px; }
.prose ul li::before, .ticks li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--leaf) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat;
}
.prose ol { padding-left: 1.3em; }
.prose ol li { margin-top: 8px; padding-left: 4px; }
.prose ol li::marker { color: var(--accent); font-weight: 600; }
.prose img { border-radius: 18px; height: auto; }
.prose figure { margin: 1.6em 0; }
.prose figcaption { font-size: 13px; color: var(--muted); margin-top: 8px; }
.prose blockquote { margin: 1.6em 0; padding: 22px 26px; background: var(--tint); border-radius: 16px;
  font: 400 18px/1.6 var(--serif); color: var(--ink); }
.prose blockquote p { margin: 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { color: var(--heading); font-weight: 600; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.prose .btn { color: var(--cta-text); font-weight: 600; text-decoration: none; }
.prose .btn--light { color: var(--heading); }

.ticks { list-style: none; margin: 18px 0 0; padding: 0; }
.ticks li { position: relative; padding-left: 28px; margin-top: 9px; }
.ticks--cols { columns: 2; column-gap: 32px; }
.ticks--cols li { break-inside: avoid; }
@media (max-width: 640px) { .ticks--cols { columns: 1; } }

/* ---- Cards -------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .cards, .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards, .cards--2, .cards--4 { grid-template-columns: 1fr; } }
.card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: var(--shadow-sm); }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.card p + p { margin-top: 10px; }
.card__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--tint); color: var(--accent); margin-bottom: 18px; }
.card__icon svg { width: 22px; height: 22px; }
.card__img { margin: -28px -28px 22px; aspect-ratio: 3 / 2; overflow: hidden; border-radius: 20px 20px 0 0; background: var(--soft); }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__link { display: inline-block; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--accent); text-decoration: none; }
.card__link:hover { text-decoration: underline; }
.card--link { display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .15s ease, box-shadow .15s ease; }
.card--link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card--link .card__link { margin-top: auto; padding-top: 16px; }
.section--night .card { background: rgb(255 255 255 / .05); border-color: rgb(255 255 255 / .12); box-shadow: none; }

/* ---- Bands on inner pages --------------------------------------------- */
.section--night { background: var(--night); color: rgb(255 255 255 / .82); }
.section--night h2, .section--night h3 { color: #fff; }
.section--night h2 em, .section--night .eyebrow { color: var(--night-accent); }
.section--night .lede, .section--night .card p { color: rgb(255 255 255 / .72); }

/* ---- Checklists: room cards, optionally behind tabs --------------------- */
.checklist { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; align-items: start; }
.checklist .card h3 { font-size: 20px; }
.checklist .card h4 { font: 600 12px/1.3 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin: 20px 0 0; }
.checklist .card h4:first-of-type { margin-top: 14px; }
.checklist .ticks { margin-top: 8px; font-size: 14.5px; color: var(--ink); }
.checklist .ticks li { margin-top: 7px; }
.tabs__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0 0 36px; padding: 0; }
.tabs__list button { font: 600 14px/1 var(--sans); padding: 13px 22px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--heading); cursor: pointer; }
.tabs__list button[aria-selected="true"] { background: var(--cta); border-color: var(--cta); color: var(--cta-text); }
.tabs__panel[hidden] { display: none; }

/* ---- Embedded forms and booking --------------------------------------- */
.embed { background: #fff; border-radius: 24px; box-shadow: var(--shadow-md); padding: 12px; }
.embed iframe { display: block; width: 100%; border: 0; border-radius: 16px; }
.embed--form iframe { min-height: 920px; }
.embed--booking iframe { min-height: 1000px; }
.form-split { display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: start; }
.form-split .prose { max-width: none; }
@media (max-width: 960px) { .form-split { grid-template-columns: 1fr; gap: 36px; } }
.contact-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.contact-list a { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; text-decoration: none; font-weight: 600; color: var(--heading); box-shadow: var(--shadow-sm); }
.contact-list a:hover { border-color: var(--accent); }
.contact-list .card__icon { margin: 0; width: 40px; height: 40px; border-radius: 12px; }
.contact-list small { display: block; font-weight: 400; font-size: 13px; color: var(--muted); }

/* ---- Town pages: neighbourhoods and map -------------------------------- */
.hoods { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hoods__list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.hoods__list li { font-size: 14px; padding: 7px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); }
.map { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); background: var(--soft); aspect-ratio: 4 / 3; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 900px) { .hoods { grid-template-columns: 1fr; } }
.nearby { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 28px auto 0; padding: 0; list-style: none; max-width: 860px; }
.nearby a { display: inline-block; font-size: 14px; font-weight: 500; padding: 8px 16px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); text-decoration: none; }
.nearby a:hover { border-color: var(--accent); color: var(--accent); }

/* ---- People ------------------------------------------------------------ */
.people { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.person { text-align: center; }
.person__img { width: 132px; height: 132px; margin: 0 auto 18px; border-radius: 50%; overflow: hidden; border: 5px solid #fff;
  box-shadow: 0 0 0 2px var(--soft), var(--shadow-sm); background: var(--soft); }
.person__img img { width: 100%; height: 100%; object-fit: cover; }
.person p { text-align: left; }
.video { aspect-ratio: 16 / 9; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); background: var(--night); }
.video iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---- Blog -------------------------------------------------------------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 960px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .posts { grid-template-columns: 1fr; } }
.post-card h3 { font-size: 20px; line-height: 1.3; }
.post-card time { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.article__meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; font-size: 14px; color: var(--muted); }
.page-hero--center .article__meta { justify-content: center; }
.article__photo { max-width: 1000px; margin: -48px auto 0; border-radius: 28px; overflow: hidden; border: 8px solid #fff;
  box-shadow: var(--shadow-md); background: var(--soft); aspect-ratio: 16 / 9; position: relative; }
.article__photo img { width: 100%; height: 100%; object-fit: cover; }
.aside-cta { margin-top: 56px; padding: 32px; border-radius: 24px; background: var(--tint); text-align: center; }
.aside-cta h2 { font-size: 28px; }
.aside-cta p { color: var(--muted); margin: 10px auto 0; max-width: 520px; }
.aside-cta .btn-row { justify-content: center; margin-top: 22px; }

/* ---- Footer: every town, linked, a row per county ------------------------- */
.footer__towns { margin-top: 48px; padding-top: 28px; border-top: 1px solid rgb(255 255 255 / .12); }
.footer__county { display: grid; grid-template-columns: 150px 1fr; gap: 6px 24px; padding: 14px 0; }
.footer__county + .footer__county { border-top: 1px solid rgb(255 255 255 / .08); }
.footer__county h5 { margin: 0; font-size: 14px; font-weight: 600; color: #fff; }
.footer__towns ul { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer__towns li { margin: 0; font-size: 14px; }
@media (max-width: 560px) { .footer__county { grid-template-columns: 1fr; gap: 10px; } }

/* ---- Areas: every town on one page with a finder, and a page per county ---- */
.town-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; }
.town-list a { display: flex; flex-direction: column; justify-content: center; height: 100%; padding: 12px 16px; border-radius: 14px;
               background: #fff; border: 1px solid var(--line); color: var(--ink); font-weight: 500; text-decoration: none; }
.town-list a:hover { border-color: var(--accent); color: var(--accent); }
.town-list small { display: block; margin-top: 2px; font-size: 12.5px; font-weight: 400; color: var(--muted); }
.area + .area { margin-top: 48px; }
.area h2 { font-size: 26px; margin: 0 0 16px; }
.area h2 a { color: inherit; text-decoration: none; }
.area h2 a:hover { color: var(--accent); }
.areas__more { margin: 28px 0 0; text-align: center; color: var(--muted); }
.town-finder { margin: 24px 0 8px; max-width: 460px; }
html:not(.js) .town-finder { display: none; }
.town-finder label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.town-finder input { width: 100%; padding: 14px 18px; font: inherit; font-size: 16px; color: var(--ink); background: #fff;
                     border: 1.5px solid var(--line); border-radius: 999px; }
.town-finder input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
.town-finder__status { margin: 8px 0 0 18px; min-height: 1.4em; font-size: 14px; color: var(--muted); }
.town-finder__none { margin: 0; padding: 22px; border-radius: 16px; background: var(--tint); text-align: center; }
.towns li a { color: inherit; text-decoration: none; }
.towns li:has(a:hover) { background: color-mix(in srgb, var(--deep-text) 16%, transparent); }
.prose .hoods__list li { padding-left: 14px; margin-top: 0; }
.prose .hoods__list li::before { content: none; }
.prose .hoods__list a { color: var(--ink); font-weight: 500; }
.prose .hoods__list li:has(a:hover) { border-color: var(--accent); }

/* Long words and links ("Organizing/Decluttering", pasted URLs) wrap instead of widening the page. */
h1, h2, h3, .prose { overflow-wrap: break-word; }
.prose a { overflow-wrap: anywhere; }
.page-hero__in > *, .split > *, .form-split > *, .hoods > *, .faq__in > * { min-width: 0; }
