/* --- Item 9: self-hosted fonts (latin subset, variable woff2), font-display:swap --- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('/fonts/fraunces.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   Arch City Property Care — site styles
   Stack: static HTML/CSS/JS, no framework, no build step.
   Palette (LOCKED): forest #0D3A1F / #144527, accent #245923,
   earth brown #553D1F, cream bg #F6E9DA, gold #D4AF37 (fine
   detail only), charcoal #1A1A1A.
   Type: Fraunces (crafted serif headlines) + Inter (grotesk body).
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:     #F6E9DA;
  --cream-2:   #FCF5EC;   /* lighter cream — cards on cream */
  --forest:    #0D3A1F;   /* darkest — hero/footer/headings */
  --forest-2:  #144527;
  --accent:    #245923;   /* action green */
  --accent-lt: #2f7430;
  --brown:     #553D1F;
  --gold:      #D4AF37;   /* fine decorative detail ONLY (low contrast) */
  --charcoal:  #1A1A1A;   /* body text */
  --ink-soft:  #4a3d2e;   /* muted brown-grey text (AA on cream) */
  --line:      rgba(13,58,31,.16);
  --line-soft: rgba(13,58,31,.10);
  --maxw:      1140px;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--forest); }
/* in-prose links must not rely on colour alone (a11y) */
p a, li a, .contact-line a { text-decoration: underline; text-underline-offset: .15em; }
p a.btn, li a.btn { text-decoration: none; }

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.nowrap { white-space: nowrap; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  line-height: 1.1; font-weight: 600; color: var(--forest); letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.45rem); }
p { max-width: 68ch; }
.section-lead, .lead { max-width: 640px; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(.72rem, 1.6vw, .82rem);
  font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .9rem;
}
.section-lead { color: var(--ink-soft); max-width: 640px; margin: .75rem auto 0; font-size: 1.08rem; }
.lead { color: var(--ink-soft); font-size: 1.12rem; }
.diamond { color: var(--gold); }
.gold-rule { width: 120px; height: 2px; margin: 1.2rem auto; background: var(--gold); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; cursor: pointer; border: 2px solid transparent;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: .92rem;
  letter-spacing: .04em; line-height: 1.2;
  padding: .85rem 1.7rem; border-radius: 6px;
  transition: transform .12s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--forest-2); border-color: var(--forest-2); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 18px -8px rgba(13,58,31,.55); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); transform: translateY(-1px); }
.btn-light { background: var(--cream); color: var(--forest); border-color: var(--cream); }
.btn-light:hover { background: #fff; color: var(--forest); transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(246,233,218,.55); }
.btn-ghost-light:hover { background: rgba(246,233,218,.12); color: #fff; border-color: var(--cream); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,233,218,.94);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 70px; gap: 1rem; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 46px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a { color: var(--forest); font-weight: 600; font-size: .96rem; }
.site-nav a:hover, .site-nav a.active { color: var(--accent); }
.nav-cta { color: #fff !important; }
.nav-cta:hover { color: #fff !important; }

.nav-toggle {
  display: none; background: none; border: none; color: var(--forest);
  font-size: 1.7rem; line-height: 1; cursor: pointer; padding: .25rem .4rem;
}
.nav-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream-2); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .site-nav.open { max-height: 460px; }
  .site-nav a { padding: 1rem 1.5rem; border-top: 1px solid var(--line-soft); }
  .nav-cta { margin: 1rem 1.5rem; text-align: center; border-radius: 6px; }
}

/* ---------- Sections ---------- */
section { padding: clamp(2.75rem, 6vw, 4.75rem) 0; }
.section-head { text-align: center; margin-bottom: 2.1rem; }
.bg-forest { background: var(--forest); color: var(--cream); }
.bg-forest h1, .bg-forest h2, .bg-forest h3 { color: var(--cream); }
.bg-forest .eyebrow { color: var(--gold); }
.bg-forest p, .bg-forest .section-lead, .bg-forest .lead { color: rgba(246,233,218,.85); }
.bg-cream2 { background: var(--cream-2); }

/* ---------- Hero ---------- */
.hero { background: var(--forest); color: var(--cream); position: relative; padding-bottom: clamp(2.4rem, 5vw, 3.5rem); }
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--brown));
}
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--cream); margin-bottom: 1rem; max-width: 16ch; }
.hero p.lead { color: rgba(246,233,218,.88); margin-bottom: 1.9rem; max-width: 52ch; }
.hero .section-lead { color: rgba(246,233,218,.88); }   /* readable lead on the forest hero */
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-trust { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .55rem 1.4rem; list-style: none; }
.hero-trust li { font-size: .92rem; font-weight: 600; color: rgba(246,233,218,.92); }
.hero-trust li .ti-mark { color: var(--gold); margin-right: .45rem; }

/* ---------- Cards / service grid ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.svc-card {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 1.5rem 1.6rem 1.6rem; display: flex; flex-direction: column;
  transition: transform .16s, border-color .2s, box-shadow .2s;
}
.svc-card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 14px 32px -18px rgba(13,58,31,.5); }
.svc-card h3 { margin-bottom: .5rem; }
.svc-card p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 1.1rem; }
.svc-card .card-cta { margin-top: auto; }
.svc-card .card-cta a { font-weight: 700; letter-spacing: .02em; }
.svc-card .card-cta a::after { content: " →"; }
.svc-icon { font-size: 1.5rem; color: var(--accent); margin-bottom: .6rem; line-height: 1; }

.badge {
  display: inline-block; font-size: .66rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .28rem .65rem; border-radius: 999px; margin-bottom: .7rem;
}
.badge-live { background: rgba(36,89,35,.14); color: var(--accent); border: 1px solid rgba(36,89,35,.35); }
.badge-soon { background: rgba(85,61,31,.12); color: var(--brown); border: 1px solid rgba(85,61,31,.3); }

/* ---------- Steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.3rem; counter-reset: step; }
.step { background: var(--cream-2); border: 1px solid var(--line); border-radius: 10px; padding: 1.5rem; }
.step .step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--forest); color: var(--cream); font-weight: 700;
  font-family: 'Fraunces', serif; margin-bottom: .8rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Why grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.3rem 2rem; }
.why-item h3 { font-size: 1.2rem; margin-bottom: .35rem; display: flex; align-items: center; gap: .5rem; }
.why-item h3 .diamond { font-size: .8rem; }
.why-item p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq summary {
  cursor: pointer; font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.2rem;
  color: var(--forest); list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; font-family: 'Inter', sans-serif; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); margin-top: .8rem; }

/* ---------- Lawn waitlist explainer ---------- */
.route-explainer { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.3rem; margin-top: 1rem; }
.route-note {
  background: rgba(36,89,35,.07); border: 1px dashed var(--line);
  border-radius: 10px; padding: 1.2rem 1.4rem; color: var(--ink-soft);
}
.route-note strong { color: var(--forest); }

/* ---------- Photo placeholder system (branded, no layout shift) ---------- */
.photo-placeholder {
  position: relative; width: 100%; overflow: hidden;
  background: var(--forest);
  border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--cream); padding: 1rem;
}
.photo-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(246,233,218,.04) 0 12px, transparent 12px 24px);
  pointer-events: none;
}
.photo-placeholder .pp-mark { color: var(--gold); font-size: 1.4rem; margin-bottom: .5rem; }
.photo-placeholder .pp-brand { font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .74rem; color: var(--cream); }
.photo-placeholder .pp-tag { font-family: 'Fraunces', serif; font-style: italic; font-size: .9rem; color: rgba(246,233,218,.8); margin: .25rem 0 .55rem; }
.photo-placeholder .pp-slot { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(246,233,218,.45); border-top: 1px solid rgba(246,233,218,.18); padding-top: .45rem; margin-top: .3rem; }
.ph-16x9 { aspect-ratio: 16 / 9; }
.ph-4x3  { aspect-ratio: 4 / 3; }

/* ---------- Hero media (stacked logo card) ---------- */
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.6rem; align-items: center; }
.hero-media { display: flex; justify-content: center; }
.hero-badge {
  background: var(--cream); border-radius: 16px; padding: 2rem;
  box-shadow: 0 20px 50px -24px rgba(0,0,0,.6); max-width: 360px; width: 100%;
}
.hero-badge img { width: 100%; height: auto; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-media { order: -1; }
  .hero-badge { max-width: 260px; padding: 1.4rem; }
}

/* ---------- Featured (coming soon) ---------- */
.featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; align-items: center;
  background: var(--cream-2); border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(1.6rem, 4vw, 3rem);
}
.featured h2, .featured h3 { margin-bottom: .7rem; }
.featured p { color: var(--ink-soft); margin-bottom: 1rem; }
@media (max-width: 760px) { .featured { grid-template-columns: 1fr; } }

/* ---------- Services detail rows ---------- */
.svc-group { margin-bottom: 2.6rem; }
.svc-group > h2 { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-bottom: .4rem; }
.svc-group .group-note { color: var(--ink-soft); margin-bottom: 1.4rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.4rem; align-items: start; }
.about-grid p { color: var(--charcoal); margin-bottom: 1.1rem; }
.about-grid p strong { color: var(--forest); }
.about-media { display: grid; gap: 1.2rem; position: sticky; top: 92px; }
.cred-list { list-style: none; padding: 0; margin: .4rem 0 1.2rem; }
.cred-list li { margin-bottom: .55rem; color: var(--charcoal); display: flex; gap: .55rem; align-items: baseline; }
.cred-list li .ck { color: var(--accent); font-weight: 700; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .about-media { position: static; } }

/* ---------- Forms ---------- */
.form-card {
  max-width: 640px; margin: 0 auto;
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: 12px; padding: clamp(1.4rem, 4vw, 2.4rem);
}
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; margin-bottom: .4rem; font-size: .95rem; color: var(--forest); }
.field label .req { color: var(--accent); }
.field input, .field textarea, .field select {
  width: 100%; min-height: 50px; padding: .8rem 1rem;
  background: #fff; border: 1px solid var(--line); border-radius: 7px;
  color: var(--charcoal); font-family: inherit; font-size: 1rem; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #8a8275; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(36,89,35,.15);
}
.field-hint { font-size: .82rem; color: var(--ink-soft); margin-top: .35rem; }
.consent-row { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: 1.15rem; }
.consent-row input[type="checkbox"] { width: 1.15rem; height: 1.15rem; min-height: 0; margin-top: .25rem; flex: none; accent-color: var(--accent); }
.consent-row label { font-weight: 400; font-size: .86rem; color: var(--ink-soft); margin: 0; }
.form-reassurance { text-align: center; color: var(--ink-soft); font-family: 'Fraunces', serif; font-style: italic; font-size: 1.08rem; margin-bottom: 1.6rem; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success .fs-mark { color: var(--accent); font-size: 2.6rem; line-height: 1; }
.form-success h3 { margin: .6rem 0 .4rem; }
.form-success p { color: var(--ink-soft); margin: 0 auto; }
.form-error { display: none; color: #9a2020; text-align: center; padding: .7rem; font-size: .94rem; font-weight: 600; }
/* off-screen honeypot — never visible, never focusable in normal flow */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; align-items: start; }
.contact-block { background: var(--cream-2); border: 1px solid var(--line); border-radius: 10px; padding: 1.6rem 1.8rem; }
.contact-block h3 { margin-bottom: 1rem; }
.contact-line { display: flex; flex-wrap: wrap; align-items: baseline; gap: .3rem .7rem; margin-bottom: .9rem; font-size: 1.05rem; }
.contact-line .cl-label { color: var(--ink-soft); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; min-width: 56px; font-weight: 600; }
.contact-line a { color: var(--charcoal); font-weight: 600; overflow-wrap: anywhere; }
.contact-line a:hover { color: var(--accent); }
.hours-row { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--line-soft); }
.hours-row:last-child { border-bottom: none; }
.hours-row .closed { color: var(--ink-soft); }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- CTA strip ---------- */
.cta-strip { text-align: center; background: var(--forest); color: var(--cream); }
.cta-strip h2 { color: var(--cream); margin-bottom: .6rem; }
.cta-strip p { color: rgba(246,233,218,.85); margin: 0 auto 1.5rem; }
.cta-strip .gold-text { color: var(--gold); }
.cta-phone { display: inline-block; margin-top: 1.1rem; color: var(--cream); font-weight: 700; }
.cta-phone:hover { color: #fff; }

/* ---------- Legal page ---------- */
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { margin: 2.4rem 0 .8rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.legal-body h2:first-of-type { border-top: none; padding-top: 0; }
.legal-body h3 { margin: 1.4rem 0 .5rem; color: var(--accent); }
.legal-body p, .legal-body li { color: var(--charcoal); margin-bottom: .9rem; }
.legal-body ul { padding-left: 1.3rem; }
.legal-meta { color: var(--ink-soft); font-size: .85rem; }


/* ---------- Trust Band ---------- */
.trust-band {
  background: var(--forest-2); text-align: center;
  padding: .7rem 1rem; border-bottom: 2px solid var(--gold);
}
.trust-band p {
  color: var(--cream); font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; max-width: none; margin: 0;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: var(--cream); padding: 2.8rem 0 1.8rem; text-align: center; }
.footer-logo { height: 50px; width: auto; margin: 0 auto 1.3rem; }
.footer-contact { margin: 0 auto 1.1rem; max-width: none; }
.footer-contact a { color: var(--cream); font-weight: 600; }
.footer-contact a:hover { color: #fff; }
.footer-contact .sep { color: var(--gold); padding: 0 .6rem; }
.footer-legal { color: rgba(246,233,218,.75); font-size: .85rem; letter-spacing: .03em; max-width: none; }
.footer-sub { margin: .9rem auto 0; font-size: .78rem; max-width: none; }
.footer-sub a { color: rgba(246,233,218,.7); }
.footer-sub a:hover { color: var(--cream); }
.footer-sub .sep { color: rgba(246,233,218,.3); padding: 0 .5rem; }

@media (max-width: 540px) {
  body { font-size: 17px; }
  .footer-contact .sep { display: none; }
  .footer-contact a, .footer-contact span { display: block; margin: .2rem 0; }
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* --- Typography: prevent orphaned/widowed words (2026-06-25) --- */
h1, h2, h3 { text-wrap: balance; }
p, li      { text-wrap: pretty; }

/* --- Service card diamond inline + homepage service list (2026-06-25) --- */
.svc-card h3 { display: flex; align-items: baseline; gap: .5rem; }
.svc-card h3 .svc-icon-inline { color: var(--accent); font-size: .9rem; flex: 0 0 auto; }
.svc-list { list-style: none; margin: 0 auto; max-width: 720px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 2rem; }
.svc-list li { display: flex; align-items: baseline; gap: .6rem; font-size: 1.08rem; font-weight: 600; }
.svc-list .svc-icon-inline { color: var(--accent); font-size: .9rem; flex: 0 0 auto; }
@media (max-width: 640px) { .svc-list { grid-template-columns: 1fr; } }

/* --- Service checkboxes (2026-06-26) --- */
.chip-group { display:flex; flex-direction:column; gap:.55rem; margin-top:.5rem; }
.chip { display:flex; align-items:flex-start; gap:.9rem; font-weight:600; cursor:pointer; }
.chip input[type="checkbox"] { width:1.15rem; height:1.15rem; min-height:0; flex:none; margin:.2rem 0 0; accent-color:var(--accent); cursor:pointer; }
.chip span { font-weight:600; }
.chip span em { font-style:normal; opacity:.7; font-weight:500; }

/* --- Item 1: hero CTA hierarchy (2026-06-27) --- */
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.02rem; }
.hero-actions { align-items: center; }
.hero-textlink { color: rgba(246,233,218,.9); font-weight: 600; text-decoration: underline; text-underline-offset: .2em; }
.hero-textlink:hover { color: var(--cream); }

/* --- Item 2: mobile tap-to-call bar (2026-06-27) --- */
.call-bar { display: none; }
@media (max-width: 760px) {
  .call-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: flex; gap: .5rem; align-items: stretch;
    background: var(--forest); border-top: 2px solid var(--gold);
    padding: .5rem .75rem calc(.5rem + env(safe-area-inset-bottom));
  }
  .call-bar-btn { display: flex; align-items: center; justify-content: center;
    padding: .7rem .6rem; border-radius: 6px; font-weight: 700; font-size: .95rem; border: 2px solid transparent; }
  .call-bar-primary { flex: 1 1 auto; background: var(--accent); color: #fff; }
  .call-bar-btn:not(.call-bar-primary) { flex: 0 0 auto; min-width: 84px; background: transparent; color: var(--cream); border-color: rgba(246,233,218,.5); }
  body { padding-bottom: 4.5rem; }   /* keep footer + form submit clear of the fixed bar */
}

/* --- Item 3: form reassurance note (2026-06-27) --- */
.form-note { text-align: center; color: var(--ink-soft); font-size: .9rem; margin: .9rem 0 .8rem; }
.cta-strip .form-note, .bg-cream2 .form-note { margin-top: 1rem; }

/* --- Item 6: skip link (2026-06-27) --- */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--forest); color: var(--cream); padding: .7rem 1.1rem; font-weight: 700;
  border-radius: 0 0 6px 0; }
.skip-link:focus { left: 0; color: var(--cream); outline: 3px solid var(--gold); outline-offset: -3px; }

/* --- Item 7: service-area suburb list (2026-06-27) --- */
.area-block { text-align: center; max-width: 820px; margin: 0 auto; }
.area-block p { margin: 0 auto; color: var(--ink-soft); }
.area-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem .7rem; }
.area-list li { background: var(--cream-2); border: 1px solid var(--line); border-radius: 999px; padding: .35rem .85rem; font-weight: 600; font-size: .92rem; }
