/* ============================================================
   MAXIMUS ROOFING & BUILDING
   Design system: Professional navy + vivid red + bright blue on cool paper
   Type: Plus Jakarta Sans (display) / Inter (UI & body)
   ============================================================ */

:root {
  /* Brand */
  /* Dark base = professional navy (token names kept from prior theme) */
  --slate-900: #0b2545;
  --slate-850: #0e2a50;
  --slate-800: #143156;
  --slate-700: #1d3d63;
  --slate-600: #2c4d75;

  /* Primary pop accent = vivid red */
  --amber:      #e4141b;
  --amber-600:  #c8121a;
  --amber-700:  #b01016;
  --amber-soft: #fdeaeb;

  /* Secondary accent = bright professional blue */
  --blue:      #1273eb;
  --blue-600:  #0f63cf;
  --blue-700:  #0c56b4;
  --blue-soft: #e7f1fe;

  /* Review stars */
  --gold: #f6b40a;

  --paper:   #f2f6fb;
  --paper-2: #ffffff;
  --stone:   #e6edf5;
  --stone-2: #d3deeb;

  --ink:   #0d1f3a;
  --body:  #414d5e;
  --muted: #5c6878;
  --line:  #e2e9f2;
  --line-dark: rgba(255,255,255,.12);

  --white: #ffffff;

  /* Type */
  --f-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(20,22,28,.06), 0 2px 8px rgba(20,22,28,.05);
  --shadow: 0 6px 18px rgba(20,22,28,.08), 0 2px 6px rgba(20,22,28,.05);
  --shadow-lg: 0 24px 60px rgba(20,22,28,.16), 0 6px 18px rgba(20,22,28,.08);
  --shadow-amber: 0 10px 26px rgba(228,20,27,.30);

  --wrap: 1200px;
  --gap: clamp(1.5rem, 4vw, 4rem);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-sans);
  color: var(--body);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--f-display); color: var(--ink); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.i { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.eyebrow {
  font-family: var(--f-sans);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--amber-700);
  margin: 0 0 .9rem;
}
.eyebrow--light { color: var(--amber); }
.accent-text { color: var(--amber); }
.muted-light { color: rgba(255,255,255,.72); font-weight: 400; }
.stars { color: var(--gold); letter-spacing: .12em; font-size: 1rem; }
.stars--lg { font-size: 1.35rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--slate-900); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-sans); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .i { width: 1.05em; height: 1.05em; }
.btn--primary { --btn-bg: var(--amber); --btn-fg: #fff; box-shadow: var(--shadow-amber); }
.btn--primary:hover { --btn-bg: var(--amber-600); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--slate-900); background: var(--slate-900); color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--slate-900); }
.btn--outline:hover { background: var(--slate-900); color: #fff; }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn--light:hover { background: #fff; color: var(--slate-900); border-color: #fff; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--slate-900); color: rgba(255,255,255,.78); font-size: .82rem; border-bottom: 1px solid var(--line-dark); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 1rem; }
.topbar__facts { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar__facts li { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__facts .i { width: 15px; height: 15px; color: var(--amber); }
.topbar__right { display: flex; align-items: center; gap: 1.2rem; }
.topbar__area { opacity: .8; }
.topbar__call { display: inline-flex; align-items: center; gap: .4rem; color: #fff; font-weight: 600; }
.topbar__call .i { width: 15px; height: 15px; color: var(--amber); }
.topbar__call:hover { color: var(--amber); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242,246,251,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); background: rgba(255,255,255,.92); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__mark-bg { fill: var(--slate-900); }
.brand__mark-roof { stroke: var(--amber); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.brand__mark-house { stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--f-display); font-weight: 700; font-size: 1.28rem; letter-spacing: .02em; color: var(--ink); }
.brand__sub { font-family: var(--f-sans); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }

.nav { display: flex; gap: .3rem; }
.nav a { font-weight: 500; font-size: .95rem; color: var(--ink); padding: .5rem .8rem; border-radius: 999px; transition: background .2s, color .2s; position: relative; white-space: nowrap; }
.nav a:hover { background: rgba(11,37,69,.06); color: var(--amber-700); }

.header__actions { display: flex; align-items: center; gap: .7rem; }
.header__call { font-size: .95rem; }
.header__call .i { color: var(--amber-700); }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1.5px solid var(--line); background: #fff; border-radius: 12px; position: relative; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px); z-index: 200;
  background: var(--slate-900); color: #fff; padding: 6rem 1.6rem 2rem;
  transform: translateX(100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column; gap: 1.4rem; overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); box-shadow: -20px 0 60px rgba(0,0,0,.4); }
.mobile-nav__close { position: absolute; top: 1.1rem; right: 1.2rem; width: 46px; height: 46px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.06); color: #fff; border-radius: 12px; font-size: 1.9rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.mobile-nav__close:hover { background: rgba(255,255,255,.12); color: var(--amber); }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a { font-family: var(--f-display); font-size: 1.4rem; font-weight: 600; padding: .7rem 0; border-bottom: 1px solid var(--line-dark); color: #fff; }
.mobile-nav nav a:hover { color: var(--amber); }
.mobile-nav__cta { display: grid; gap: .7rem; margin-top: auto; }
.scrim-open { overflow: hidden; }
.mnav-scrim { position: fixed; inset: 0; background: rgba(10,11,14,.5); z-index: 150; opacity: 0; visibility: hidden; transition: opacity .3s; }
.mnav-scrim.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; min-height: min(88vh, 780px); display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(9,26,51,.93) 0%, rgba(9,26,51,.72) 42%, rgba(9,26,51,.16) 78%, rgba(9,26,51,.4) 100%),
    linear-gradient(0deg, rgba(9,26,51,.6), rgba(9,26,51,0) 45%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(3rem, 8vh, 6rem); }
.hero__content { max-width: 660px; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); color: #fff; font-weight: 600; letter-spacing: -.02em; margin-bottom: 1.3rem; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: rgba(255,255,255,.9); max-width: 560px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }
.hero__rating { display: inline-flex; align-items: center; gap: .7rem; font-size: .95rem; color: rgba(255,255,255,.92); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: .6rem 1rem; border-radius: 999px; backdrop-filter: blur(6px); }
.hero__rating .stars { font-size: 1.05rem; }

/* ---------- Trust strip ---------- */
.trust { background: var(--slate-900); color: #fff; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { display: flex; align-items: center; gap: .95rem; padding: 1.5rem clamp(1rem, 2vw, 2rem); }
.trust__item + .trust__item { border-left: 1px solid var(--line-dark); }
.trust__icon { width: 34px; height: 34px; color: var(--amber); fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.trust__item strong { display: block; font-family: var(--f-display); font-size: 1.06rem; font-weight: 600; }
.trust__item span { font-size: .84rem; color: rgba(255,255,255,.66); }

/* ---------- Section heads ---------- */
.section__head { max-width: 720px; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; }
.section__intro { margin-top: 1rem; font-size: 1.1rem; color: var(--muted); }
.section__intro a { color: var(--amber-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Services ---------- */
.services { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2vw, 1.8rem); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--stone-2); }
.card__media { aspect-ratio: 4/3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card__body h3 { font-size: 1.32rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem; }
.card__tag { font-family: var(--f-sans); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-700); background: var(--blue-soft); padding: .2rem .55rem; border-radius: 999px; }
.card__body p { color: var(--muted); font-size: .98rem; }
.card__link { margin-top: auto; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: .4rem; padding-top: .3rem; }
.card__link span { transition: transform .2s var(--ease); color: var(--amber-700); }
.card__link:hover span { transform: translateX(5px); }
.services__more { text-align: center; margin-top: 2.4rem; color: var(--muted); font-size: 1rem; }
.services__more a { color: var(--amber-700); font-weight: 600; }

/* ---------- Why us ---------- */
.why { background: var(--paper-2); }
.why__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.why__intro { position: sticky; top: 100px; }
.why__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.why__list { display: grid; gap: 1.1rem; }
.why__list li { display: flex; gap: 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s; }
.why__list li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why__icon { width: 40px; height: 40px; flex: none; color: var(--amber-700); background: var(--amber-soft); padding: 8px; border-radius: 12px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why__list h3 { font-size: 1.22rem; margin-bottom: .35rem; }
.why__list p { color: var(--muted); font-size: .96rem; }

/* ---------- Process ---------- */
.process { background: var(--slate-900); color: #fff; position: relative; }
.process .section__title { color: #fff; }
.process .eyebrow { color: var(--amber); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 1.8rem 1.5rem; background: var(--slate-800); border: 1px solid var(--line-dark); border-radius: var(--r-lg); }
.step__num { font-family: var(--f-display); font-size: 2.6rem; font-weight: 700; color: var(--amber); line-height: 1; display: block; margin-bottom: .8rem; }
.step h3 { color: #fff; font-size: 1.25rem; margin-bottom: .4rem; }
.step p { color: rgba(255,255,255,.68); font-size: .94rem; }

/* ---------- Work / before-after ---------- */
.work { background: var(--paper); }
.ba {
  position: relative; max-width: 960px; margin: 0 auto 2.6rem; aspect-ratio: 16/10;
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  user-select: none; touch-action: pan-y; cursor: ew-resize; background: var(--slate-800);
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba__before-wrap img { width: 100vw; max-width: 960px; height: 100%; object-fit: cover; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 44px; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; }
.ba__line { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.1); }
.ba__grip { width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--slate-900); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,.35); position: relative; z-index: 2; }
.ba__grip svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.ba__tag { position: absolute; top: 14px; font-family: var(--f-sans); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .32rem .7rem; border-radius: 999px; color: #fff; background: rgba(16,18,23,.72); backdrop-filter: blur(4px); }
.ba__tag--before { left: 14px; }
.ba__tag--after { right: 14px; background: var(--amber); color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 1rem; }
.gallery__item { margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }

/* ---------- Stats ---------- */
.stats { background: var(--blue-600); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat { padding: clamp(2.2rem, 5vw, 3.4rem) 1rem; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.22); }
.stat__num { font-family: var(--f-display); font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 700; line-height: 1; display: block; }
.stat__label { font-family: var(--f-sans); font-weight: 600; font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; margin-top: .5rem; color: #eaf1fb; }

/* ---------- Reviews ---------- */
.reviews { background: var(--paper-2); }
.reviews__rating { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.2rem; font-size: 1rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .9rem; position: relative; }
.review::before { content: "\201C"; position: absolute; top: .3rem; right: 1.3rem; font-family: var(--f-display); font-size: 4.5rem; color: var(--stone); line-height: 1; }
.review p { font-size: 1.02rem; color: var(--ink); font-style: italic; }
.review footer { margin-top: auto; }
.review footer strong { display: block; font-family: var(--f-display); font-size: 1.02rem; color: var(--ink); }
.review footer span { font-size: .85rem; color: var(--muted); }
.reviews__note { text-align: center; margin-top: 1.6rem; font-size: .82rem; color: var(--muted); font-style: italic; }

/* ---------- Areas ---------- */
.areas { background: var(--paper); }
.areas__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.areas__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.areas__list li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1rem; text-align: center; font-weight: 600; font-size: .92rem; color: var(--ink); transition: background .2s, color .2s, transform .2s, border-color .2s; }
.areas__list li:hover { background: var(--slate-900); color: #fff; transform: translateY(-2px); border-color: var(--slate-900); }

/* ---------- About ---------- */
.about { background: var(--paper-2); }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.about__badge { position: absolute; bottom: -22px; left: -22px; background: var(--amber); color: #fff; border-radius: var(--r-lg); padding: 1.1rem 1.3rem; display: flex; align-items: center; gap: .8rem; box-shadow: var(--shadow-lg); }
.about__badge-num { font-family: var(--f-display); font-size: 2.6rem; font-weight: 700; line-height: 1; }
.about__badge-txt { font-size: .8rem; font-weight: 600; line-height: 1.25; text-transform: uppercase; letter-spacing: .04em; }
.about__content p { color: var(--body); margin-top: 1rem; }
.about__content .section__title { margin-bottom: .4rem; }
.about__points { margin-top: 1.6rem; display: grid; gap: .7rem; }
.about__points li { display: flex; align-items: center; gap: .7rem; font-weight: 600; color: var(--ink); }
.about__points .i { color: #fff; background: var(--amber); border-radius: 50%; padding: 4px; width: 24px; height: 24px; stroke-width: 2.6; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq__grid { display: grid; grid-template-columns: .9fr 1.3fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.faq__list { display: grid; gap: .8rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq__item[open] { box-shadow: var(--shadow); border-color: var(--stone-2); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.25rem 1.4rem; font-family: var(--f-display); font-weight: 600; font-size: 1.12rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 20px; height: 20px; flex: none; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--amber-700); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__plus::before { top: 9px; left: 0; width: 20px; height: 2.5px; }
.faq__plus::after { left: 9px; top: 0; width: 2.5px; height: 20px; }
.faq__item[open] .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq__answer { padding: 0 1.4rem 1.3rem; }
.faq__answer p { color: var(--muted); }

/* ---------- CTA band ---------- */
.ctaband { background: var(--slate-900); color: #fff; position: relative; overflow: hidden; }
.ctaband::after { content: ""; position: absolute; top: -40%; right: -10%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(228,20,27,.26), transparent 65%); pointer-events: none; }
.ctaband__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(2.8rem, 6vw, 4.5rem); flex-wrap: wrap; }
.ctaband h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.6rem); max-width: 620px; }
.ctaband p { color: rgba(255,255,255,.78); margin-top: .7rem; max-width: 560px; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Contact ---------- */
.contact { background: var(--paper-2); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__details { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.contact__details li { display: flex; align-items: flex-start; gap: .9rem; }
.contact__details .i { width: 24px; height: 24px; color: var(--amber-700); flex: none; margin-top: 2px; }
.contact__details span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
.contact__details a, .contact__hours { font-size: 1.04rem; color: var(--ink); font-weight: 600; }
.contact__details a:hover { color: var(--amber-700); }
.contact__hours { text-transform: none; letter-spacing: 0; font-weight: 600; }
.contact__map { display: block; margin-top: 1.8rem; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; height: 240px; background: #e9ece4; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.contact__map:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.contact__map::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, rgba(11,37,69,.05), rgba(11,37,69,.05)),
    repeating-linear-gradient(35deg, #dfe3d8 0 2px, transparent 2px 26px),
    repeating-linear-gradient(-55deg, #dfe3d8 0 2px, transparent 2px 34px),
    repeating-linear-gradient(35deg, #e4e7dd 0 6px, transparent 6px 60px);
  opacity: .9;
}
.contact__map::after {
  content: ""; position: absolute; left: 12%; top: 58%; width: 42%; height: 12px;
  background: #cfd8c4; transform: rotate(-8deg); border-radius: 6px; box-shadow: 0 60px 0 -2px #d7ddce, -30px 90px 0 -3px #d7ddce;
}
.map-pin { position: absolute; left: 50%; top: 44%; transform: translate(-50%,-100%); z-index: 2; color: var(--amber); filter: drop-shadow(0 6px 8px rgba(0,0,0,.25)); }
.map-pin svg { width: 46px; height: 46px; fill: var(--amber); stroke: #fff; stroke-width: 1.4; }
.map-pin::after { content: ""; position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%); width: 20px; height: 6px; background: rgba(0,0,0,.18); border-radius: 50%; filter: blur(1px); }
.map-card__label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .85rem 1.1rem; background: rgba(255,255,255,.94); backdrop-filter: blur(4px); border-top: 1px solid var(--line); font-size: .92rem; color: var(--ink); font-weight: 600; }
.map-card__label b { color: var(--amber-700); white-space: nowrap; }

.contact__form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); position: relative; }
.quote-form__title { font-family: var(--f-display); font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-bottom: 1.3rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink); }
.field__opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--f-sans); font-size: 1rem; color: var(--ink);
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper-2); transition: border-color .2s, box-shadow .2s, background .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18,115,235,.20); background: #fff; }
.field textarea { resize: vertical; }
.field.is-invalid input, .field.is-invalid select { border-color: #d64545; box-shadow: 0 0 0 3px rgba(214,69,69,.14); }
.quote-form__reassure { display: flex; align-items: center; gap: .5rem; font-size: .84rem; color: var(--muted); margin-top: .9rem; }
.quote-form__reassure .i { width: 16px; height: 16px; color: var(--amber-700); }
.quote-form__status { margin-top: 1rem; font-weight: 600; font-size: .95rem; }
.quote-form__status.is-success { color: #1a7a44; }
.quote-form__status.is-error { color: var(--amber-700); }
.quote-form.is-sent { display: none; }
.quote-sent { text-align: center; padding: 2rem 1rem; }
.quote-sent svg { width: 56px; height: 56px; color: var(--amber); margin: 0 auto 1rem; }
.quote-sent h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.quote-sent p { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-900); color: rgba(255,255,255,.72); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__sub { color: rgba(255,255,255,.55); }
.brand--footer .brand__mark-bg { fill: rgba(255,255,255,.08); }
.footer__brand p { margin: 1.1rem 0; max-width: 320px; font-size: .95rem; }
.footer__ig { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 600; font-size: .92rem; }
.footer__ig .i { color: var(--amber); }
.footer__ig:hover { color: var(--amber); }
.footer__col h4 { font-family: var(--f-sans); color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.1rem; }
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a:hover { color: var(--amber); }
.footer__contact .btn { margin-top: 1.2rem; }
.footer__bar { border-top: 1px solid var(--line-dark); }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.3rem; font-size: .84rem; }
.footer__tags { color: rgba(255,255,255,.5); }

/* ---------- Sticky mobile call bar ---------- */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); box-shadow: 0 -6px 20px rgba(0,0,0,.14); }
.callbar__btn { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem; font-weight: 700; font-size: 1rem; }
.callbar__btn--call { background: var(--slate-900); color: #fff; }
.callbar__btn--quote { background: var(--amber); color: #fff; }
.callbar__btn .i { width: 19px; height: 19px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .header__call span { display: none; }
  .header__call { padding: .7rem; }
  .why__grid { grid-template-columns: 1fr; }
  .why__intro { position: static; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .contact__grid, .areas__grid, .about__grid, .faq__grid { grid-template-columns: 1fr; }
  .about__grid { gap: 3rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar__facts li:nth-child(n+2) { display: none; }
  .topbar__area { display: none; }
  .header__call { display: none; }
  .header__actions .btn--primary { display: none; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2) { border-left: 0; }
  .trust__item:nth-child(odd) { border-left: 0; }
  .trust__item { border-top: 1px solid var(--line-dark); padding: 1.2rem; }
  .trust__grid .trust__item:nth-child(-n+2) { border-top: 0; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__item--wide { grid-column: span 2; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.22); }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(3) { border-left: 0; }
  .areas__list { grid-template-columns: repeat(2, 1fr); }
  .ctaband__inner { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
  .ba { aspect-ratio: 4/3; }
  .callbar { display: grid; }
  body { padding-bottom: 60px; }
  .callbar { padding-bottom: env(safe-area-inset-bottom); }
}

@media (max-width: 420px) {
  .footer__grid { grid-template-columns: 1fr; }
  .about__badge { left: 12px; bottom: -18px; padding: .8rem 1rem; }
  .field-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   QUICK-QUOTE / CALLBACK BAR (floats just under the hero)
   ============================================================ */
.quickbar-section { position: relative; z-index: 5; margin-top: -3rem; padding: 0 0 clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 721px) and (max-height: 800px) { .quickbar-section { margin-top: -1.5rem; } }
.quickbar {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); padding: clamp(1.5rem, 3.2vw, 2.4rem) clamp(1.5rem, 4vw, 3rem);
  display: grid; grid-template-columns: minmax(0, 320px) 1fr; align-items: center; gap: clamp(1.6rem, 4vw, 3.2rem);
}
.quickbar__intro { position: relative; padding-right: clamp(1.4rem, 3vw, 2.6rem); }
.quickbar__intro .eyebrow { margin-bottom: .6rem; }
.quickbar__intro::after { content: ""; position: absolute; top: 4px; bottom: 4px; right: 0; width: 2px; border-radius: 2px; background: linear-gradient(180deg, var(--amber) 0%, var(--amber-700) 100%); }
.quickbar__title { font-family: var(--f-display); font-size: clamp(1.22rem, 2.1vw, 1.55rem); font-weight: 700; color: var(--ink); line-height: 1.16; letter-spacing: -.01em; }
.quickbar__form { min-width: 0; }
.quickbar__row { display: grid; grid-template-columns: 1fr 1fr 1.15fr auto; align-items: end; gap: .9rem; }
.quickbar__field { margin-bottom: 0; gap: .4rem; min-width: 0; }
.quickbar__field label { font-size: .78rem; letter-spacing: .01em; }
.quickbar__field input, .quickbar__field select { min-height: 48px; }
.quickbar__field select {
  appearance: none; -webkit-appearance: none; padding-right: 2.4rem; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23414d5e' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .95rem center;
}
.quickbar__submit { display: flex; flex-direction: column; justify-content: flex-end; }
.quickbar__submit .btn { min-height: 48px; height: 48px; padding-inline: 1.7rem; }
.quickbar__note { display: flex; align-items: center; gap: .5rem; margin-top: .95rem; font-size: .82rem; color: var(--muted); }
.quickbar__note .i { width: 15px; height: 15px; color: var(--amber-700); }
.quickbar__status { margin-top: .85rem; font-weight: 600; font-size: .92rem; }
.quickbar__status:empty { display: none; }
.quickbar__status.is-success { color: #1a7a44; }
.quickbar__status.is-error { color: var(--amber-700); }
.quickbar__form.is-sent { display: none; }
.quickbar__sent { display: flex; align-items: center; gap: .9rem; font-size: 1rem; color: var(--ink); }
.quickbar__sent svg { width: 34px; height: 34px; color: var(--amber); flex: none; }
.quickbar__sent strong { font-family: var(--f-display); font-weight: 700; }
@media (max-width: 920px) {
  .quickbar-section { margin-top: -3rem; }
  .quickbar { grid-template-columns: 1fr; gap: clamp(1.3rem, 3.5vw, 2rem); }
  .quickbar__intro { padding-right: 0; }
  .quickbar__intro::after { top: auto; bottom: -.6rem; left: 0; right: auto; width: 54px; height: 3px; background: linear-gradient(90deg, var(--amber) 0%, var(--amber-700) 100%); }
}
@media (max-width: 720px) {
  .quickbar-section { margin-top: -1.25rem; padding-bottom: clamp(2rem, 6vw, 3rem); }
  .quickbar__row { grid-template-columns: 1fr; gap: .85rem; }
  .quickbar__submit .btn { width: 100%; }
}

/* Keep the ElevenLabs voice widget clear of the sticky mobile call bar */
@media (max-width: 720px) {
  elevenlabs-convai { position: fixed; bottom: 66px; right: 0; z-index: 80; }
}

/* "Prefer to talk?" voice launcher inside the quote bar (revealed by voice.js) */
.quickbar__voice { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; background: none; border: 0; padding: 0; color: var(--blue-700); font-family: var(--f-sans); font-weight: 700; font-size: .92rem; cursor: pointer; transition: color .2s; }
.quickbar__voice .i { width: 18px; height: 18px; color: var(--amber); }
.quickbar__voice:hover { color: var(--amber); }
.quickbar__voice[hidden] { display: none; }

/* ============================================================
   SERVICE PAGES (pitched-roofing.html, flat-roofing.html, …)
   ============================================================ */

/* ---- Service hero ---- */
.svc-hero { position: relative; color: #fff; min-height: min(64vh, 560px); display: flex; align-items: center; overflow: hidden; }
.svc-hero__media { position: absolute; inset: 0; z-index: 0; }
.svc-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(9,26,51,.94) 0%, rgba(9,26,51,.74) 46%, rgba(9,26,51,.24) 82%, rgba(9,26,51,.5) 100%),
    linear-gradient(0deg, rgba(9,26,51,.66), rgba(9,26,51,0) 46%);
}
.svc-hero__inner { position: relative; z-index: 1; width: 100%; padding-block: clamp(2.6rem, 7vh, 5rem); }
.svc-hero__content { max-width: 720px; }
.svc-hero__title { font-size: clamp(2.1rem, 5vw, 3.7rem); color: #fff; font-weight: 600; letter-spacing: -.02em; margin-bottom: 1.1rem; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.svc-hero__lead { font-size: clamp(1.02rem, 1.9vw, 1.24rem); color: rgba(255,255,255,.9); max-width: 620px; margin-bottom: 1.9rem; }
.svc-hero .hero__actions { margin-bottom: 0; }

/* ---- Breadcrumb ---- */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.72); margin-bottom: 1.4rem; }
.crumbs a { color: rgba(255,255,255,.72); text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs span[aria-hidden] { color: rgba(255,255,255,.4); }
.crumbs [aria-current] { color: #fff; font-weight: 600; }

/* ---- Overview (two-column: image + copy + checklist) ---- */
.svc-overview { background: var(--paper-2); }
.svc-overview__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.svc-overview__media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.svc-overview__content .section__title { margin-bottom: .4rem; }
.svc-overview__content p { color: var(--body); margin-top: 1rem; }
.svc-checklist { margin-top: 1.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.4rem; }
.svc-checklist li { display: flex; align-items: center; gap: .65rem; font-weight: 600; color: var(--ink); font-size: .98rem; }
.svc-checklist .i { color: #fff; background: var(--amber); border-radius: 50%; padding: 4px; width: 24px; height: 24px; stroke-width: 2.6; flex: none; }
.svc-overview__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }

/* ---- What's included (feature grid) ---- */
.svc-cover { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.svc-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.svc-feature {
  display: flex; gap: .95rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.svc-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--stone-2); }
.svc-feature__tick { flex: none; width: 38px; height: 38px; border-radius: 11px; background: var(--amber-soft); color: var(--amber-700); display: flex; align-items: center; justify-content: center; }
.svc-feature__tick .i { width: 20px; height: 20px; stroke-width: 2.4; }
.svc-feature h3 { font-size: 1.14rem; margin-bottom: .3rem; }
.svc-feature p { color: var(--muted); font-size: .95rem; }

/* ---- Service-page FAQ (centred, single column) ---- */
.svc-faq__list { max-width: 780px; margin-inline: auto; }

@media (max-width: 1040px) {
  .svc-overview__grid { grid-template-columns: 1fr; }
  .svc-overview__media { max-width: 560px; }
  .svc-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .svc-hero { min-height: 0; padding-block: 1rem; }
  .svc-features { grid-template-columns: 1fr; }
  .svc-checklist { grid-template-columns: 1fr; }
}

/* ============================================================
   VOICE ASSISTANT SECTION ("Ask Maisie")
   ============================================================ */
.assistant { background: var(--slate-900); color: #fff; overflow: hidden; position: relative; }
.assistant::before { content: ""; position: absolute; top: -30%; left: 58%; width: 620px; height: 620px; background: radial-gradient(circle, rgba(228,20,27,.20), transparent 62%); pointer-events: none; }
.assistant__card { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.assistant__title { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.02em; }
.assistant__lead { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-top: 1rem; max-width: 560px; }
.assistant__points { display: grid; gap: .75rem; margin: 1.7rem 0; }
.assistant__points li { display: flex; align-items: center; gap: .75rem; font-weight: 600; color: #fff; }
.assistant__points .i { flex: none; width: 30px; height: 30px; padding: 6px; border-radius: 50%; color: var(--amber); background: rgba(228,20,27,.16); stroke-width: 2.3; }
.assistant__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.assistant__note { margin-top: 1.2rem; font-size: .85rem; color: rgba(255,255,255,.6); }

.assistant__visual { display: flex; justify-content: center; }
.orb { position: relative; width: min(320px, 72vw); aspect-ratio: 1; display: grid; place-items: center; }
.orb__ring { position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 1.5px solid rgba(228,20,27,.45); animation: orb-pulse 3.2s ease-out infinite; }
.orb__ring:nth-child(2) { animation-delay: 1.05s; }
.orb__ring:nth-child(3) { animation-delay: 2.1s; }
@keyframes orb-pulse { 0% { transform: scale(.48); opacity: .9; } 100% { transform: scale(1.08); opacity: 0; } }
.orb__core { position: relative; z-index: 2; width: 46%; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 32% 28%, #ff5b61, var(--amber) 46%, var(--amber-600) 100%);
  box-shadow: 0 0 70px rgba(228,20,27,.55), inset 0 -8px 26px rgba(0,0,0,.25), inset 0 6px 20px rgba(255,255,255,.22);
  animation: orb-breathe 3.5s ease-in-out infinite; }
@keyframes orb-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.orb__core svg { width: 42%; height: 42%; color: #fff; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 920px) {
  .assistant__card { grid-template-columns: 1fr; gap: 2.4rem; text-align: center; }
  .assistant__lead { margin-inline: auto; }
  .assistant__points { display: inline-grid; text-align: left; }
  .assistant__actions { justify-content: center; }
  .assistant__visual { order: -1; }
  .orb { width: min(220px, 56vw); }
}

/* ============================================================
   TOWN LANDING PAGES ("Roofers in <Town>")
   ============================================================ */
.crumbs { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.crumbs a { color: rgba(255,255,255,.85); font-weight: 600; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs span[aria-hidden] { margin: 0 .35rem; color: rgba(255,255,255,.4); }
.town-hero__note { margin-top: 1.1rem; font-size: .9rem; color: rgba(255,255,255,.78); font-weight: 600; }
.town-services-lead { margin-top: 1.4rem; margin-bottom: .7rem; color: var(--ink); }
.chip-links { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip-link { display: inline-block; background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: .5rem .95rem; font-size: .9rem; font-weight: 600; color: var(--ink); transition: background .2s, color .2s, border-color .2s, transform .2s; }
.chip-link:hover { background: var(--slate-900); color: #fff; border-color: var(--slate-900); transform: translateY(-2px); }
/* areas chips on the homepage that are now links */
.areas__list a { color: inherit; display: block; }
.footer__areas { border-top: 1px solid var(--line-dark); }
.footer__areas .wrap { padding-block: .9rem; font-size: .82rem; color: rgba(255,255,255,.55); }
.footer__areas-label { font-weight: 700; color: rgba(255,255,255,.75); margin-right: .5rem; }
.footer__areas a { color: rgba(255,255,255,.6); margin: 0 .55rem; white-space: nowrap; }
.footer__areas a:hover { color: var(--amber); }

/* Areas hub (areas.html) */
.areas-hub { background: var(--paper-2); }
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.area-card { display: flex; flex-direction: column; gap: .5rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s; }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--slate-900); }
.area-card__town { font-family: var(--f-display); font-size: 1.18rem; font-weight: 700; color: var(--ink); }
.area-card__blurb { font-size: .95rem; color: var(--muted); line-height: 1.5; }
.area-card__link { margin-top: auto; font-weight: 700; font-size: .9rem; color: var(--blue); }
.area-card:hover .area-card__link { color: var(--amber); }
.areas-hub__also { margin-top: 2rem; text-align: center; font-size: .95rem; color: var(--muted); }
.areas-hub__also a { color: var(--blue); font-weight: 600; }
/* Areas-we-cover link strip (service + town pages) */
.areas-strip { background: var(--paper-2); }
