/* ==========================================================================
   Peck's Yard & Home Services — stylesheet

   Palette is sampled directly from the logo and yard sign artwork so the site
   matches the trucks, signs and shirts. The site deliberately commits to the
   one warm brand look rather than offering a dark mode: this is signage, and
   signage does not change colour.

   The recurring texture is topographic contour lines — grading and drainage
   are the work that sets this business apart, so the brand texture is a
   contour map.
   ========================================================================== */

:root {
  /* Brand — sampled from logo + sign */
  --forest:      #1C2A1D;
  --green:       #21482E;
  --green-deep:  #16321F;
  --moss:        #798F39;
  --moss-dark:   #62762C;
  --gold:        #D6BD8A;   /* decorative only: rules, hairlines, on dark */
  --gold-deep:   #83672D;   /* text-safe gold: 4.5:1 on paper and paper-warm */
  --cream:       #EFD3A4;

  /* Neutrals, biased green so they read as chosen */
  --paper:       #FAF6ED;
  --paper-warm:  #F3ECDB;
  --surface:     #FFFFFF;
  --ink:         #1C2A1D;
  --ink-soft:    #55604F;
  --ink-faint:   #666D60;
  --line:        #DFD7C4;
  --line-soft:   #EAE3D2;

  /* On dark bands */
  --band-ink:    #F3EDDD;
  --band-soft:   #B6C3AA;
  --band-line:   #35573D;
  --band-faint:  #879081;   /* 4.5:1 on forest, for footer fine print */

  --radius:      4px;
  --measure:     66ch;
  --shadow:      0 1px 2px rgba(28,42,29,.06), 0 8px 24px -12px rgba(28,42,29,.18);
  --shadow-lift: 0 2px 4px rgba(28,42,29,.08), 0 16px 40px -16px rgba(28,42,29,.28);

  --font-display: Bitter, Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; text-wrap: balance; letter-spacing: -.012em; line-height: 1.14; }
h1 { font-size: clamp(34px, 5.4vw, 60px); font-weight: 700; }
h2 { font-size: clamp(27px, 3.6vw, 40px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.2vw, 25px); font-weight: 600; line-height: 1.25; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.3; }
p  { margin: 0; }
img, svg { max-width: 100%; }
img { height: auto; display: block; }

a { color: var(--green); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--moss-dark); }
:focus-visible { outline: 3px solid var(--moss); outline-offset: 3px; border-radius: 2px; }

.icon { width: 1em; height: 1em; flex: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--green); color: #fff; padding: 12px 18px;
  border-radius: var(--radius); font-weight: 600; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- layout primitives ---------- */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 820px; }
.section { padding-block: 68px; }
.section-tight { padding-block: 46px; }
@media (min-width: 760px) { .section { padding-block: 88px; } }

.stack { display: flex; flex-direction: column; }
.stack-sm { gap: 10px; } .stack-md { gap: 18px; } .stack-lg { gap: 30px; }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-deep);
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::after { content: ""; height: 1px; flex: 1; background: var(--line); max-width: 90px; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { display: none; }
.on-dark .eyebrow, .band .eyebrow { color: var(--gold); }
.band .eyebrow::after { background: var(--band-line); }

.lede { font-size: clamp(18px, 2vw, 21px); color: var(--ink-soft); max-width: var(--measure); }
.band .lede, .on-dark .lede { color: var(--band-soft); }
.prose { max-width: var(--measure); }
.prose p + p { margin-top: 16px; }

/* ---------- contour texture ---------- */
.contours {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; opacity: .85;
}
.contours svg { position: absolute; width: 140%; height: 140%; left: -20%; top: -20%; }
.contours path { fill: none; stroke: var(--band-line); stroke-width: 1.25; }
.contours--light path { stroke: var(--line); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-size: 16.5px; font-weight: 700;
  padding: 13px 24px; border-radius: var(--radius);
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
  line-height: 1.2; text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn .icon { width: 1.05em; height: 1.05em; }

.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }

.btn-gold { background: var(--cream); color: var(--forest); border-color: var(--cream); }
.btn-gold:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }

.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }

.btn-ghost-light { background: transparent; color: var(--band-ink); border-color: rgba(243,237,221,.45); }
.btn-ghost-light:hover { background: rgba(243,237,221,.12); color: #fff; border-color: var(--band-ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,246,237,.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 18px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); flex: none; margin-right: auto; }
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brand-text { display: none; }
@media (min-width: 560px) { .brand-text { display: block; } }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.15; letter-spacing: -.01em; }
.brand-sub { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin-top: 2px; }

.nav { display: none; }
@media (min-width: 1060px) {
  .nav { display: flex; align-items: center; gap: 4px; }
  .nav > li { list-style: none; position: relative; }
  .nav-link {
    display: flex; align-items: center; gap: 5px;
    padding: 10px 13px; border-radius: var(--radius);
    font-size: 15.5px; font-weight: 600; color: var(--ink); text-decoration: none;
    white-space: nowrap;
  }
  .nav-link:hover, .nav > li:hover > .nav-link, .nav > li:focus-within > .nav-link { background: var(--paper-warm); color: var(--green); }
  .nav-link[aria-current="page"] { color: var(--green); box-shadow: inset 0 -2px 0 var(--gold); }
  .nav-caret { width: 9px; height: 9px; opacity: .5; }
  .submenu {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 310px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-lift); padding: 8px; margin: 0; list-style: none;
    display: flex; flex-direction: column; gap: 1px;
    opacity: 0; visibility: hidden; transform: translateY(-5px);
    transition: opacity .14s ease, transform .14s ease, visibility .14s;
  }
  .nav > li:hover > .submenu, .nav > li:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
  .submenu a {
    display: flex; align-items: center; gap: 10px; padding: 9px 12px;
    border-radius: 3px; font-size: 15px; color: var(--ink); text-decoration: none; line-height: 1.35;
  }
  .submenu a:hover { background: var(--paper-warm); color: var(--green); }
  .submenu .icon { color: var(--moss-dark); width: 17px; height: 17px; }
  .submenu-head {
    font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-faint); padding: 8px 12px 6px;
  }
}

.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.header-phone {
  display: none; align-items: center; gap: 8px; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--forest);
  letter-spacing: -.01em; white-space: nowrap;
}
.header-phone .icon { color: var(--moss-dark); width: 18px; height: 18px; }
.header-phone:hover { color: var(--green); }
@media (min-width: 700px) { .header-phone { display: flex; } }
.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 9px 14px; font-family: var(--font-body); font-size: 15px; font-weight: 700;
  color: var(--ink); cursor: pointer;
}
.menu-toggle:hover { border-color: var(--green); color: var(--green); }
@media (min-width: 1060px) { .menu-toggle { display: none; } }
.menu-toggle .bars { display: flex; flex-direction: column; gap: 3px; }
.menu-toggle .bars span { display: block; width: 17px; height: 2px; background: currentColor; border-radius: 2px; }

/* mobile drawer */
.mobile-nav {
  display: none; border-top: 1px solid var(--line);
  background: var(--paper); max-height: calc(100vh - 76px); overflow-y: auto;
}
.mobile-nav[data-open="true"] { display: block; }
@media (min-width: 1060px) { .mobile-nav { display: none !important; } }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav > .wrap > ul { padding: 14px 0 26px; display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a {
  display: block; padding: 11px 4px; text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a:hover { color: var(--green); }
.m-group-head {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep); padding: 18px 4px 6px;
}
.mobile-nav .m-sub a { padding-left: 16px; font-weight: 400; font-size: 16px; color: var(--ink-soft); }

/* fixed mobile call bar */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--band-line); border-top: 1px solid var(--green-deep);
  padding-bottom: env(safe-area-inset-bottom);
}
.call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px; text-decoration: none; font-weight: 700; font-size: 16px;
  background: var(--green); color: #fff;
}
.call-bar a:last-child { background: var(--forest); color: var(--cream); }
.call-bar a:hover { color: #fff; }
@media (min-width: 700px) { .call-bar { display: none; } }
@media (max-width: 699px) { body { padding-bottom: 60px; } }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--green-deep); color: var(--band-ink); overflow: hidden; }
.hero-inner { position: relative; z-index: 2; padding-block: 62px 58px; }
@media (min-width: 860px) { .hero-inner { padding-block: 96px 84px; } }
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 .accent { color: var(--cream); }
.hero-lede { max-width: 54ch; color: var(--band-soft); font-size: clamp(18px, 2vw, 21px); }
.hero-fork { display: grid; gap: 12px; margin-top: 6px; }
@media (min-width: 620px) { .hero-fork { grid-template-columns: repeat(2, minmax(0, 260px)); } }
.fork-card {
  display: flex; flex-direction: column; gap: 3px; padding: 18px 20px;
  color: var(--band-ink);
  border: 2px solid var(--band-line); border-radius: var(--radius);
  text-decoration: none; background: rgba(243,237,221,.05);
  transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}
.fork-card:hover { background: rgba(243,237,221,.12); border-color: var(--cream); transform: translateY(-2px); }
.fork-card .fc-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; }
.fork-card .fc-title .icon { color: var(--cream); width: 18px; height: 18px; }
.fork-card .fc-sub { font-size: 15px; color: var(--band-soft); line-height: 1.45; }

/* ---------- trust strip ---------- */
.trust {
  background: var(--forest); color: var(--cream);
  border-top: 1px solid var(--band-line);
}
.trust ul {
  list-style: none; margin: 0; padding: 15px 0; display: flex; flex-wrap: wrap;
  gap: 10px 34px; justify-content: center; align-items: center;
}
.trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.trust .icon { color: var(--moss); width: 15px; height: 15px; }

/* ---------- generic band ---------- */
.band { position: relative; background: var(--green); color: var(--band-ink); overflow: hidden; }
.band-deep { background: var(--green-deep); }
.band-forest { background: var(--forest); }
.band .band-inner { position: relative; z-index: 2; }
.band h2, .band h3 { color: #fff; }
.band .accent { color: var(--cream); }
.band p { color: var(--band-soft); }
.band strong { color: var(--band-ink); }
.band-warm {
  background: var(--paper-warm); color: var(--ink);
  position: relative; overflow: hidden;
}
.band-warm h2, .band-warm h3 { color: var(--ink); }
.band-warm p { color: var(--ink-soft); }
.band-warm .eyebrow { color: var(--gold-deep); }
.band-warm .eyebrow::after { background: var(--line); }

/* ---------- section heads ---------- */
.section-head { display: flex; flex-direction: column; gap: 14px; max-width: 62ch; }
.section-head.center { align-items: center; text-align: center; margin: 0 auto; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  display: flex; flex-direction: column; gap: 9px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 24px 26px; text-decoration: none; color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); opacity: 0; transition: opacity .16s ease;
}
.svc-card:hover { border-color: var(--moss); box-shadow: var(--shadow-lift); transform: translateY(-2px); color: var(--ink); }
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--paper-warm); color: var(--green);
  display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.svc-icon .icon { width: 23px; height: 23px; }
.svc-card h3 { font-size: 19px; font-weight: 600; }
.svc-card p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.5; }
.svc-more {
  margin-top: auto; padding-top: 10px; font-size: 14px; font-weight: 700;
  color: var(--green); display: flex; align-items: center; gap: 6px;
  letter-spacing: .02em;
}
.svc-more .icon { width: 15px; height: 15px; transition: transform .16s ease; }
.svc-card:hover .svc-more .icon { transform: translateX(3px); }

.svc-card.flagship { border-color: var(--moss); background: linear-gradient(180deg, #fff 0%, var(--paper-warm) 100%); }
.svc-card.flagship::before { opacity: 1; }
.tag-flagship {
  align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--gold);
  border-radius: 100px; padding: 3px 9px; margin-bottom: 2px;
}

/* ---------- split feature ---------- */
.split { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.split-wide { gap: 28px; }
@media (min-width: 900px) { .split-wide { grid-template-columns: 1fr 1fr; } }

.panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 28px 30px;
}
.panel-warm { background: var(--paper-warm); border-color: var(--line); }
.band .panel {
  background: rgba(243,237,221,.06); border-color: var(--band-line);
}
.band .panel h3 { color: #fff; }
.band .panel li { color: var(--band-soft); }

/* ---------- checklist ---------- */
.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; font-size: 16.5px; line-height: 1.5; }
.checklist .icon { width: 18px; height: 18px; color: var(--moss-dark); margin-top: .28em; }
.band .checklist .icon { color: var(--cream); }
.checklist-2 { display: grid; gap: 11px; }
@media (min-width: 700px) { .checklist-2 { grid-template-columns: 1fr 1fr; gap: 11px 30px; } }

/* ---------- callout ---------- */
.callout {
  background: var(--paper-warm); border: 1px solid var(--line);
  border-left: 4px solid var(--gold); border-radius: var(--radius);
  padding: 22px 26px; display: flex; flex-direction: column; gap: 8px;
}
.callout .co-label { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-deep); }
.callout p { font-size: 16.5px; }

/* ---------- steps ---------- */
.steps { display: grid; gap: 2px; counter-reset: step; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.step { display: flex; flex-direction: column; gap: 8px; padding: 24px 0; border-top: 2px solid var(--band-line); }
.step-num {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
}
.step h3 { font-size: 21px; }
.step p { font-size: 16px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--forest); color: var(--band-ink); overflow: hidden; }
.cta-inner { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 22px; align-items: center; text-align: center; padding-block: 62px; }
.cta-inner h2 { color: #fff; max-width: 20ch; }
.cta-inner p { max-width: 56ch; color: var(--band-soft); font-size: 18.5px; }
.cta-phone {
  font-family: var(--font-display); font-size: clamp(30px, 5vw, 44px); font-weight: 700;
  color: var(--cream); text-decoration: none; letter-spacing: -.02em;
  display: inline-flex; align-items: center; gap: 12px;
}
.cta-phone:hover { color: #fff; }
.cta-phone .icon { width: .75em; height: .75em; opacity: .7; }

/* ---------- page header (interior) ---------- */
.page-head { position: relative; background: var(--green-deep); color: var(--band-ink); overflow: hidden; }
.page-head-inner { position: relative; z-index: 2; padding-block: 40px 46px; display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 760px) { .page-head-inner { padding-block: 56px 62px; } }
.page-head h1 { color: #fff; max-width: 20ch; font-size: clamp(30px, 4.6vw, 50px); }
.page-head .lede { color: var(--band-soft); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13.5px; color: var(--band-soft); }
.breadcrumb a { color: var(--band-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--cream); text-decoration: underline; }
.breadcrumb .sep { opacity: .45; }
.page-head .head-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  border: 1px solid var(--band-line); background: rgba(243,237,221,.07);
  display: flex; align-items: center; justify-content: center; color: var(--cream);
}
.page-head .head-icon .icon { width: 27px; height: 27px; }

/* ---------- forms ---------- */
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 14px; font-weight: 700; letter-spacing: .03em; color: var(--ink); }
.field .req { color: var(--gold-deep); }
.field .hint { font-size: 13.5px; color: var(--ink-faint); line-height: 1.4; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16.5px; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 12px 14px; width: 100%; transition: border-color .14s ease, box-shadow .14s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--moss); box-shadow: 0 0 0 3px rgba(121,143,57,.18);
}
.field textarea { min-height: 118px; resize: vertical; }
.field-row { display: grid; gap: 16px; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: 14px; color: var(--ink-faint); line-height: 1.45; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.radio-row label { display: flex; align-items: center; gap: 8px; font-weight: 400; font-size: 16.5px; }
.radio-row input { width: auto; }

/* ---------- area lists ---------- */
.area-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.area-list li {
  font-size: 15px; padding: 6px 13px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft);
}
.area-list li.primary { border-color: var(--moss); background: var(--paper-warm); color: var(--ink); font-weight: 600; }
.band .area-list li { border-color: var(--band-line); background: rgba(243,237,221,.06); color: var(--band-soft); }
.band .area-list li.primary { border-color: var(--cream); color: #fff; background: rgba(239,211,164,.12); }

/* ---------- related ---------- */
.related-grid { display: grid; gap: 12px; }
@media (min-width: 700px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 16px; line-height: 1.35;
  transition: border-color .16s ease, background-color .16s ease;
}
.related-card:hover { border-color: var(--moss); background: var(--paper-warm); color: var(--green); }
.related-card .icon { width: 20px; height: 20px; color: var(--moss-dark); }

/* ---------- footer ---------- */
.site-footer { background: var(--forest); color: var(--band-soft); padding: 56px 0 0; margin-top: 0; }
.footer-grid { display: grid; gap: 34px; padding-bottom: 40px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; } }
@media (min-width: 1040px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand img { width: 92px; }
.footer-brand .fb-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: #fff; line-height: 1.2; }
.footer-phone {
  font-family: var(--font-display); font-size: 25px; font-weight: 700; color: var(--cream);
  text-decoration: none; letter-spacing: -.015em; display: inline-flex; align-items: center; gap: 9px;
}
.footer-phone:hover { color: #fff; }
.footer-phone .icon { width: 19px; height: 19px; opacity: .65; }
.footer-col h4 {
  font-size: 11.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: var(--band-soft); text-decoration: none; font-size: 15.5px; line-height: 1.4; }
.footer-col a:hover { color: var(--cream); text-decoration: underline; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--band-soft); }
.footer-bottom {
  border-top: 1px solid var(--band-line); padding: 20px 0 28px;
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  font-size: 14px; color: var(--band-faint);
}
.footer-bottom a { color: var(--band-faint); }

/* ---------- misc utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.notice {
  background: var(--paper-warm); border: 1px dashed var(--line);
  border-radius: var(--radius); padding: 26px 28px; text-align: center;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.notice h3 { font-size: 21px; }
.notice p { color: var(--ink-soft); max-width: 52ch; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); max-width: 82ch; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 19px 2px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 19px; font-weight: 600;
  line-height: 1.35; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green); }
.faq-mark { position: relative; width: 15px; height: 15px; flex: none; margin-top: .34em; }
.faq-mark::before, .faq-mark::after {
  content: ""; position: absolute; background: var(--gold-deep); border-radius: 2px;
  transition: transform .18s ease, opacity .18s ease;
}
.faq-mark::before { left: 0; top: 6.5px; width: 15px; height: 2px; }
.faq-mark::after  { left: 6.5px; top: 0; width: 2px; height: 15px; }
.faq-item[open] .faq-mark::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 2px 22px; max-width: 68ch; }
.faq-a p { color: var(--ink-soft); font-size: 16.5px; }

/* ---------- city page ---------- */
.city-facts {
  display: flex; flex-wrap: wrap; gap: 10px 12px; list-style: none; margin: 0; padding: 0;
}
.city-facts li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 600; color: var(--band-soft);
  border: 1px solid var(--band-line); border-radius: 100px; padding: 6px 14px;
}
.city-facts .icon { width: 15px; height: 15px; color: var(--cream); }
.area-list li a:hover { color: var(--green) !important; text-decoration: underline !important; }

.footer-email {
  color: var(--band-soft); text-decoration: none; font-size: 15.5px;
  word-break: break-word;
}
.footer-email:hover { color: var(--cream); text-decoration: underline; }
