/* =========================================================================
   T&T Carpentry & Handyman Services LLC — shared stylesheet
   Direction: grounded workshop editorial. Forest + Brick + Paper.
   Display: Bricolage Grotesque · Body: Inter
   ========================================================================= */

:root {
  --paper:    #f2efe7;   /* bone page */
  --paper-2:  #e9e4d8;   /* slightly deeper panel */
  --ink:      #1b1f1b;   /* warm near-black */
  --forest:   #21302a;   /* deep spruce — dark sections */
  --forest-2: #2c3f37;   /* spruce hover/elevated */
  --muted:    #5e635b;   /* secondary text on paper */
  --muted-2:  #aab3a6;   /* secondary text on forest */
  --line:     #d4cdba;   /* hairline on paper */
  --line-d:   #3a4b43;   /* hairline on forest */
  --accent:   #bf4f2e;   /* burnt brick — single accent */
  --accent-d: #a8401f;
  --paper-on-accent: #fbf6ee;

  --maxw: 1180px;
  --radius: 4px;
  --shadow: 0 18px 50px rgba(27, 31, 27, 0.14);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* ---- Accessibility: focus rings + skip link --------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  z-index: 200;
  transition: top 0.2s var(--ease);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

.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;
}

/* ---- Eyebrow / labels (rationed per taste rules) ---------------------- */
.eyebrow {
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 14px;
}
.on-forest .eyebrow { color: #e2a07f; }

/* =========================================================================
   Header / nav
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 239, 231, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.brand {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.18rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}
.brand .mark {
  width: 30px; height: 30px;
  flex: none;
  display: grid; place-items: center;
  background: var(--forest);
  color: var(--paper);
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand small {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 13px;
  border-radius: 3px;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.nav-links a:hover { background: var(--paper-2); }
.nav-links a[aria-current="page"] { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--paper-on-accent) !important;
  padding: 10px 18px !important;
  border-radius: 3px;
  font-weight: 600 !important;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s var(--ease), background 0.18s var(--ease);
}
.nav-cta:hover { background: var(--accent-d) !important; }
.nav-cta:active { transform: translateY(1px); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--paper-on-accent); }
.btn-primary:hover { background: var(--accent-d); }
.btn-primary:active { transform: translateY(1px); }

.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #0f120f; }
.btn-ink:active { transform: translateY(1px); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.on-forest .btn-ghost { color: var(--paper); border-color: var(--muted-2); }
.on-forest .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn svg { width: 18px; height: 18px; flex: none; }

/* =========================================================================
   Hero (home)
   ========================================================================= */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.hero-copy { padding: 84px 48px 84px 0; align-self: center; }
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.5rem);
  margin-bottom: 22px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-figure { position: relative; }
.hero-figure img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.stock-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(27, 31, 27, 0.82);
  color: var(--paper);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  padding: 6px 11px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

/* trust strip under hero */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.trust .stars { color: var(--accent); letter-spacing: 2px; font-size: 1.05rem; }
.trust b { font-family: var(--display); }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--muted);
}
.trust-item strong { color: var(--ink); }

/* =========================================================================
   Generic sections
   ========================================================================= */
.section { padding: 88px 0; }
.section.tight { padding: 60px 0; }
.section.forest {
  background: var(--forest);
  color: var(--paper);
}
.section.forest h1, .section.forest h2, .section.forest h3 { color: var(--paper); }
.section.paper-2 { background: var(--paper-2); }

.section-head { max-width: 60ch; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; color: var(--muted); }
.forest .section-head p { color: var(--muted-2); }

/* page hero (interior pages) */
.page-hero {
  background: var(--forest);
  color: var(--paper);
  padding: 76px 0 64px;
  border-bottom: 1px solid var(--line-d);
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 18px; max-width: 16ch; }
.page-hero p { color: var(--muted-2); font-size: 1.15rem; max-width: 52ch; }
.crumb {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e2a07f;
  margin-bottom: 16px;
  display: flex; gap: 8px;
}
.crumb a { text-decoration: none; color: var(--muted-2); }
.crumb a:hover { color: var(--paper); }

/* =========================================================================
   Services grid (home)
   ========================================================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc {
  background: var(--paper);
  padding: 34px 30px;
  transition: background 0.2s var(--ease);
}
.svc:hover { background: #fbf9f3; }
.svc .num {
  font-family: var(--display);
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}
.svc h3 { font-size: 1.45rem; margin: 10px 0 10px; }
.svc p { color: var(--muted); font-size: 0.98rem; }

/* =========================================================================
   Why-choose / value rows
   ========================================================================= */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value {
  border-top: 2px solid var(--accent);
  padding-top: 20px;
}
.value h3 { font-size: 1.25rem; margin-bottom: 10px; }
.value p { color: var(--muted-2); font-size: 0.98rem; }
.section:not(.forest) .value p { color: var(--muted); }

/* =========================================================================
   Free-estimate CTA band
   ========================================================================= */
.cta-band {
  background: var(--accent);
  color: var(--paper-on-accent);
  border-radius: var(--radius);
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 32px;
  align-items: center;
}
.cta-band h2 { color: var(--paper-on-accent); font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.cta-band p { margin-top: 12px; max-width: 46ch; opacity: 0.92; }
.cta-band .actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band .btn-ink { background: var(--ink); }
.cta-band .phone-xl {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.7rem;
  text-decoration: none;
  color: var(--paper-on-accent);
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 10px;
}
.cta-band .phone-xl:hover { text-decoration: underline; }

/* =========================================================================
   Reviews
   ========================================================================= */
.rep-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}
.rep-score {
  text-align: center;
  border: 1px solid var(--line-d);
  border-radius: var(--radius);
  padding: 26px 34px;
}
.rep-score .big {
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--paper);
}
.rep-score .stars { color: var(--accent); letter-spacing: 3px; font-size: 1.2rem; margin: 6px 0; }
.rep-score small { color: var(--muted-2); letter-spacing: 0.06em; }

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.quote .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.quote blockquote {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.22rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.quote figcaption {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--muted);
}
.quote figcaption b { color: var(--ink); font-weight: 600; }
.forest .quote { background: var(--forest-2); border-color: var(--line-d); }
.forest .quote blockquote { color: var(--paper); }
.forest .quote figcaption { color: var(--muted-2); }
.forest .quote figcaption b { color: var(--paper); }

/* =========================================================================
   Service area
   ========================================================================= */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.area-list { columns: 2; column-gap: 30px; list-style: none; }
.area-list li {
  break-inside: avoid;
  padding: 11px 0 11px 22px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 1rem;
}
.area-list li::before {
  content: "";
  position: absolute; left: 0; top: 19px;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 1px;
}
.forest .area-list li { border-color: var(--line-d); }

.county-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--paper);
  margin-bottom: 16px;
}
.county-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.county-card p { color: var(--muted); font-size: 0.96rem; }
.county-card .badge {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
}

/* =========================================================================
   Services menu (services.html)
   ========================================================================= */
.menu-group { margin-bottom: 56px; }
.menu-group > h2 {
  font-size: 1.9rem;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 8px;
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.menu-row h3 { font-size: 1.22rem; margin-bottom: 5px; }
.menu-row p { color: var(--muted); font-size: 0.96rem; max-width: 60ch; }
.menu-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
  text-align: right;
}
.menu-price small {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.note-card {
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  padding: 22px 26px;
  border-radius: 3px;
  font-size: 0.98rem;
  color: var(--muted);
}
.note-card strong { color: var(--ink); }

/* =========================================================================
   About
   ========================================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.about-figure img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-figure .stock-note {
  font-size: 0.78rem; color: var(--muted); margin-top: 10px;
}
.prose p { margin-bottom: 18px; font-size: 1.08rem; }
.prose p:first-of-type { font-size: 1.22rem; color: var(--ink); }
.cred-list { list-style: none; margin-top: 26px; display: grid; gap: 0; }
.cred-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.cred-list li svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 2px; }
.cred-list b { font-family: var(--display); }

/* pull quote */
.pull {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.pull .accent { color: var(--accent); }

/* =========================================================================
   Contact + form
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-detail { display: grid; gap: 4px; }
.contact-detail .row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.contact-detail .row svg { width: 24px; height: 24px; color: var(--accent); flex: none; margin-top: 2px; }
.contact-detail .row .label {
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.contact-detail .row a, .contact-detail .row p {
  font-size: 1.12rem; text-decoration: none; font-weight: 500;
}
.contact-detail .row a:hover { color: var(--accent); }

.phone-hero {
  background: var(--forest);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin-bottom: 24px;
}
.phone-hero .label { color: var(--muted-2); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.phone-hero a {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 12px;
  margin: 6px 0 4px;
}
.phone-hero a:hover { color: #e2a07f; }
.phone-hero small { color: var(--muted-2); }

form .field { display: grid; gap: 7px; margin-bottom: 18px; }
form label { font-weight: 600; font-size: 0.92rem; }
form .req { color: var(--accent); }
form input, form textarea, form select {
  font-family: var(--body);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
}
form input::placeholder, form textarea::placeholder { color: #8c9088; }
form input:focus, form textarea:focus, form select:focus { border-color: var(--accent); }
form .help { font-size: 0.82rem; color: var(--muted); }
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
}
.form-success {
  display: none;
  background: var(--forest);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 30px 32px;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--paper); margin-bottom: 8px; }
.form-success p { color: var(--muted-2); }
.form-success .btn { margin-top: 18px; }

/* =========================================================================
   404
   ========================================================================= */
.notfound {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 0;
}
.notfound .code {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.notfound h1 { font-size: 2rem; margin: 14px 0 12px; }
.notfound p { color: var(--muted); max-width: 44ch; margin: 0 auto 28px; }
.notfound .links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid #33372f;
}
.footer-grid h4 {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9aa091;
  margin-bottom: 16px;
}
.footer-brand .brand { color: var(--paper); margin-bottom: 14px; }
.footer-brand .brand .mark { background: var(--accent); }
.footer-brand p { color: #9aa091; font-size: 0.95rem; max-width: 32ch; }
.footer-links { list-style: none; display: grid; gap: 9px; }
.footer-links a { text-decoration: none; color: #d4d6cd; font-size: 0.96rem; }
.footer-links a:hover { color: var(--accent); }
.footer-contact a { color: #d4d6cd; text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }
.footer-contact .big {
  font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--paper);
  display: inline-block; margin-bottom: 6px;
}
.footer-bottom {
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #82877a;
}
.footer-bottom a { color: #82877a; text-decoration: none; }
.footer-bottom a:hover { color: var(--paper); }

/* =========================================================================
   Reveal-on-scroll (motion, reduced-motion safe)
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

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

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 64px 0 40px; }
  .hero-figure img { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-figure { max-width: 420px; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 14px 24px 22px;
    gap: 4px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px; font-size: 1.05rem; }
  .nav-links .nav-cta { justify-content: center; margin-top: 6px; }
  .nav-toggle { display: inline-flex; }

  .svc-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; gap: 22px; }
  .quotes { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-band { grid-template-columns: 1fr; padding: 40px 32px; }
  .rep-banner { grid-template-columns: 1fr; gap: 24px; }
  .menu-row { grid-template-columns: 1fr; gap: 8px; }
  .menu-price { text-align: left; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .wrap { padding-inline: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .area-list { columns: 1; }
  .cta-band { padding: 32px 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
