/* ==========================================================================
   Woodlands Services LLC — site.css
   Earthwork & site development, Berrien County MI
   Palette: deep forest / excavated clay / equipment amber
   ========================================================================== */

:root {
  /* Brand */
  --forest:        #2C4023;
  --forest-dk:     #1B2A14;
  --forest-lt:     #4A6339;
  --amber:         #C9962E;
  --amber-dk:      #A0761B;
  --clay:          #8A6A4F;

  /* Neutrals */
  --ink:           #16211A;
  --body:          #4C574F;
  --muted:         #6E786F;
  --line:          #DFDACF;
  --surface:       #F4F1EA;
  --surface-2:     #EAE5DA;
  --white:         #FFFFFF;

  /* Type */
  --display: "Barlow Condensed", "Arial Narrow", Helvetica, sans-serif;
  --text:    "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Scale */
  --step--1: clamp(0.86rem, 0.84rem + 0.1vw, 0.92rem);
  --step-0:  clamp(1rem, 0.97rem + 0.15vw, 1.09rem);
  --step-1:  clamp(1.2rem, 1.13rem + 0.35vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.36rem + 0.7vw, 2rem);
  --step-3:  clamp(1.95rem, 1.7rem + 1.25vw, 2.9rem);
  --step-4:  clamp(2.5rem, 2rem + 2.5vw, 4.4rem);

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --sec-y: clamp(3.5rem, 7vw, 6.5rem);
  --radius: 3px;
  --header-h: 74px;

  --shadow-lift: 0 18px 40px -22px rgba(18, 41, 28, 0.45);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--text);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--amber-dk); }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.005em;
}
h1 { font-size: var(--step-4); font-weight: 700; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { margin: 0 0 1.1em; max-width: 70ch; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.15rem; }
li { margin-bottom: 0.4em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: min(var(--wrap), 100% - (var(--gutter) * 2)); margin-inline: auto; }
.wrap-narrow { width: min(var(--wrap-narrow), 100% - (var(--gutter) * 2)); margin-inline: auto; }
.section { padding-block: var(--sec-y); }
.section--tint { background: var(--surface); }
.section--dark { background: var(--forest-dk); color: #C9D6CD; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark a { color: var(--amber); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--amber); color: var(--forest-dk);
  padding: 0.75rem 1.25rem; font-weight: 600;
}
.skip-link:focus { left: 0; }

.sec-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head p { font-size: var(--step-1); color: var(--muted); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center p { margin-inline: auto; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--text); font-weight: 600; font-size: var(--step--1);
  color: var(--forest-lt); margin-bottom: 0.9rem; letter-spacing: 0.01em;
}
.kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--amber); flex: none;
}
.section--dark .kicker { color: var(--amber); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--text); font-weight: 600; font-size: var(--step-0);
  padding: 0.85rem 1.6rem; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  text-decoration: none; line-height: 1.2;
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.btn--primary { background: var(--amber); color: var(--forest-dk); border-color: var(--amber); }
.btn--primary:hover { background: var(--amber-dk); border-color: var(--amber-dk); color: var(--white); }
.btn--solid { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn--solid:hover { background: var(--forest-dk); border-color: var(--forest-dk); color: var(--white); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white); }
.btn--outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn--outline:hover { background: var(--forest); color: var(--white); }
.btn--lg { padding: 1.05rem 2rem; font-size: var(--step-1); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Header ---------- */
.brand__logo { height: 52px; width: auto; display: block; }
@media (max-width: 620px) { .brand__logo { height: 42px; } }
@media (max-width: 410px) { .brand__logo { height: 34px; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex: none; }
.brand__mark {
  width: 40px; height: 40px; flex: none;
  background: var(--forest); color: var(--amber);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.35rem;
  border-radius: var(--radius);
}
.brand__name {
  font-family: var(--display); font-weight: 700; font-size: 1.42rem;
  color: var(--ink); line-height: 1;
}
.brand__sub {
  display: block; font-family: var(--text); font-weight: 500;
  font-size: 0.72rem; color: var(--muted); line-height: 1.3; margin-top: 2px;
}
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav__list a {
  font-weight: 500; font-size: 0.97rem; color: var(--ink);
  text-decoration: none; padding: 0.4rem 0; display: block;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.nav__list a:hover, .nav__list a[aria-current="page"] {
  color: var(--forest); border-bottom-color: var(--amber);
}
.header-cta { display: flex; align-items: center; gap: 0.85rem; flex: none; }
.header-phone {
  font-family: var(--display); font-weight: 700; font-size: 1.32rem;
  color: var(--forest); text-decoration: none; white-space: nowrap; line-height: 1;
}
.header-phone:hover { color: var(--amber-dk); }
.nav-toggle {
  display: none; margin-left: auto;
  background: var(--forest); border: 0; color: var(--white);
  width: 46px; height: 42px; border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: currentColor; content: "";
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 1040px) {
  .nav__list { gap: 1rem; }
  .header-phone { font-size: 1.15rem; }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; order: 3; margin-left: 0; }
  .header-inner { gap: 0.75rem; }
  .header-cta { order: 2; margin-left: auto; }
  .brand { order: 1; min-width: 0; }
  .brand__name { font-size: 1.2rem; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    transform: translateY(-120%); transition: transform 0.22s ease;
    margin: 0; padding: 0.5rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow-lift);
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__list a { padding: 0.9rem 0; font-size: 1.05rem; border-bottom: 0; }
  .header-cta .btn { display: none; }
}
@media (max-width: 620px) {
  .brand__sub { display: none; }
  .brand__mark { width: 34px; height: 34px; font-size: 1.1rem; }
  .brand { gap: 0.5rem; }
  .brand__name {
    font-size: 1.02rem; display: block; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
  }
  .brand > span { min-width: 0; overflow: hidden; }
  .header-phone { font-size: 1rem; }
  .header-inner { gap: 0.5rem; }
  .nav-toggle { width: 42px; height: 38px; }
}
@media (max-width: 410px) {
  .brand__name { display: none; }
}
.nav__call { display: none; }
@media (max-width: 900px) {
  .nav__call { display: block; }
  .nav__call a { color: var(--forest); font-weight: 600; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--forest-dk); color: #D3DED7; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Placeholder terrain until Derek's footage lands */
.hero__placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 72% 12%, rgba(201,150,46,0.20), transparent 62%),
    linear-gradient(160deg, #2A3B20 0%, #1B2A14 48%, #131E0E 100%);
}
.hero__placeholder::after {
  content: ""; position: absolute; inset: 0; opacity: 0.16;
  background-image:
    repeating-linear-gradient(115deg, rgba(201,150,46,0.5) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(65deg, rgba(255,255,255,0.28) 0 1px, transparent 1px 96px);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(15,20,10,0.90) 0%, rgba(15,20,10,0.72) 48%, rgba(15,20,10,0.42) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding-block: clamp(3.5rem, 9vw, 7.5rem);
}
.hero__content { max-width: 46rem; }
.hero h1 { color: var(--white); margin-bottom: 0.35em; text-wrap: balance; }
.hero__lede { font-size: var(--step-1); color: #C6D3CB; max-width: 44ch; margin-bottom: 1.8rem; }
.hero .btn-row { margin-bottom: 1.6rem; }
.hero__note { font-size: var(--step--1); color: #9FB0A5; margin: 0; }

.pill-row { display: flex; flex-wrap: wrap; gap: 0.45rem; list-style: none; margin: 0 0 1.5rem; padding: 0; }
.pill {
  font-size: 0.82rem; font-weight: 500; color: #CBD8CF;
  border: 1px solid rgba(255,255,255,0.28); border-radius: 100px;
  padding: 0.3rem 0.8rem; white-space: nowrap;
}
.pill--light { color: var(--forest); border-color: var(--line); background: var(--white); }

/* ---------- Stat ticker ---------- */
.ticker { background: var(--forest); color: var(--white); }
.ticker__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.14);
}
.ticker__item {
  padding: 1.6rem 1.4rem;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.ticker__num {
  font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--amber); line-height: 1; display: block;
}
.ticker__label { font-size: var(--step--1); color: #BACBC0; margin: 0.4rem 0 0; }
@media (max-width: 760px) {
  .ticker__grid { grid-template-columns: repeat(2, 1fr); }
  .ticker__item { padding: 1.2rem 1rem; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.6rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.7rem 1.6rem 1.5rem;
  display: flex; flex-direction: column;
  border-top: 3px solid var(--forest);
}
.card h3 { font-size: var(--step-2); margin-bottom: 0.4rem; }
.card p { font-size: 0.98rem; margin-bottom: 1rem; }
.card__link {
  margin-top: auto; font-weight: 600; font-size: 0.95rem;
  color: var(--forest); text-decoration: none;
  border-bottom: 2px solid var(--amber); align-self: flex-start; padding-bottom: 2px;
}
.card__link:hover { color: var(--amber-dk); }
.card__icon { width: 34px; height: 34px; margin-bottom: 0.9rem; color: var(--forest-lt); }
.section--tint .card { background: var(--white); }

.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative; padding-left: 1.7rem; margin-bottom: 0.6rem;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 9px; height: 9px; background: var(--amber);
  transform: rotate(45deg);
}
.section--dark .checklist li::before { background: var(--amber); }

/* ---------- Split ---------- */
.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center;
}
.split--flip > *:first-child { order: 2; }
.split > * { min-width: 0; }
.grid > * { min-width: 0; }
.split--sidebar { grid-template-columns: 1.6fr 0.9fr; }
@media (max-width: 860px) { .split--sidebar { grid-template-columns: 1fr; } }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--flip > *:first-child { order: 0; }
}

/* ---------- Media placeholders (swap when creatives land) ---------- */
.ph {
  position: relative; background: var(--surface-2);
  border: 1px dashed #B9B0A0; border-radius: var(--radius);
  display: grid; place-items: center; text-align: center;
  color: #8A8172; font-size: 0.85rem; font-weight: 500;
  padding: 1rem; min-height: 200px;
}
.ph--4x3, .ph--16x9, .ph--1x1, .ph--portrait { min-height: 0; width: 100%; }
.ph--4x3 { aspect-ratio: 4 / 3; }
.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--1x1 { aspect-ratio: 1 / 1; }
.ph--portrait { aspect-ratio: 3 / 4; }

/* ---------- Project grid ---------- */
.project { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.project .ph { border: 0; border-radius: 0; min-height: 0; }
.project__meta { padding: 0.95rem 1.1rem 1.1rem; }
.project__title { font-family: var(--display); font-weight: 600; font-size: 1.28rem; color: var(--ink); margin: 0 0 0.1rem; }
.project__town { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ---------- Owner ---------- */
.owner__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.badge {
  font-size: 0.82rem; font-weight: 600; color: var(--forest);
  background: var(--surface); border: 1px solid var(--line);
  padding: 0.35rem 0.75rem; border-radius: 100px;
}

/* ---------- Areas ---------- */
.area-list { list-style: none; padding: 0; margin: 0; columns: 3; column-gap: 2rem; }
.area-list li { break-inside: avoid; margin-bottom: 0.55rem; }
.area-list a { font-weight: 500; text-decoration: none; }
.area-list a:hover { text-decoration: underline; }
@media (max-width: 760px) { .area-list { columns: 2; } }
@media (max-width: 420px) { .area-list { columns: 1; } }

/* ---------- FAQ accordion ---------- */
.faq { border-top: 1px solid var(--line); max-width: 62rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--display); font-size: var(--step-1); font-weight: 600; color: var(--ink);
  padding: 1.25rem 3rem 1.25rem 0; position: relative; line-height: 1.25;
}
.faq__q::after {
  content: ""; position: absolute; right: 0.4rem; top: 50%;
  width: 12px; height: 12px; margin-top: -8px;
  border-right: 2px solid var(--amber); border-bottom: 2px solid var(--amber);
  transform: rotate(45deg); transition: transform 0.2s ease;
}
.faq__q[aria-expanded="true"]::after { transform: rotate(-135deg); margin-top: -3px; }
.faq__q:hover { color: var(--forest); }
.faq__a { display: none; padding: 0 3rem 1.4rem 0; }
.faq__a > *:last-child { margin-bottom: 0; }
.faq__item[data-open="true"] .faq__a { display: block; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-top: 4px solid var(--amber);
  border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: 0.94rem; margin-bottom: 0.35rem; }
.field .req { color: var(--amber-dk); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--text); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid #C9C2B4; border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--forest); outline: 2px solid rgba(30,70,48,0.18); outline-offset: 0;
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { max-width: 100%; text-overflow: ellipsis; }
.field__hint { font-size: 0.83rem; color: var(--muted); margin: 0.35rem 0 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 1.2rem; }
.consent input { width: 18px; height: 18px; margin-top: 0.25rem; flex: none; }
.consent label { font-size: 0.85rem; line-height: 1.5; color: var(--muted); font-weight: 400; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { margin-top: 1rem; font-weight: 600; }
.form-status[data-state="error"] { color: #A22B2B; }
.form-status[data-state="ok"] { color: var(--forest); }

/* ---------- Contact strip ---------- */
.contact-lines { list-style: none; padding: 0; margin: 0; }
.contact-lines li { margin-bottom: 1rem; }
.contact-lines strong { display: block; font-family: var(--display); font-size: 1.15rem; color: var(--ink); }
.contact-lines a {
  font-size: var(--step-1); font-weight: 600; text-decoration: none;
  overflow-wrap: anywhere;
}
.site-footer a, .prose a { overflow-wrap: anywhere; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--forest); color: #C9D6CD; }
.cta-band h2 { color: var(--white); }
.cta-band__inner {
  display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between;
}
.cta-band__text { max-width: 46ch; }
.cta-band p { margin-bottom: 0; }

/* ---------- Blog ---------- */
.post-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; display: flex; flex-direction: column; }
.post-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.post-card h3 a { text-decoration: none; color: var(--ink); }
.post-card h3 a:hover { color: var(--forest); }
.post-card p { font-size: 0.94rem; }
.post-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.6rem; }
.prose { max-width: 68ch; }
.prose h2 { font-size: var(--step-2); margin-top: 2.2rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.8rem; }
.prose ul { padding-left: 1.2rem; }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: 0.85rem; color: var(--muted); padding-top: 1.4rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--forest); text-decoration: underline; }
.crumbs span { margin: 0 0.35rem; }

/* ---------- Page banner (interior pages) ---------- */
.banner { background: var(--forest-dk); color: #C6D3CB; position: relative; overflow: hidden; }
.banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(201,150,46,0.18), transparent 60%),
    linear-gradient(150deg, #2A3B20, #141F0F);
}
.banner__inner { position: relative; padding-block: clamp(2.5rem, 5.5vw, 4.5rem); }
.banner h1 { color: var(--white); margin-bottom: 0.3em; max-width: 20ch; }
.banner p { color: #B7C6BC; font-size: var(--step-1); max-width: 54ch; margin-bottom: 0; }
.banner .crumbs, .banner .crumbs a { color: #93A79A; }
.banner .crumbs a:hover { color: var(--amber); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-dk); color: #A9BBAF; padding-block: clamp(2.8rem, 5vw, 4rem) 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 3vw, 2.5rem);
  padding-bottom: 2.5rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--white); font-size: 1.12rem; margin-bottom: 0.9rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.14);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; font-size: 0.93rem; }
.site-footer a { color: #A9BBAF; text-decoration: none; }
.site-footer a:hover { color: var(--amber); text-decoration: underline; }
.footer-brand .brand__name { color: var(--white); }
.footer-brand p { font-size: 0.93rem; margin-top: 1rem; }
.footer-phone {
  font-family: var(--display); font-size: 1.55rem; font-weight: 700;
  color: var(--white) !important; text-decoration: none !important; display: block; line-height: 1.2;
}
.footer-phone:hover { color: var(--amber) !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-block: 1.3rem; display: flex; flex-wrap: wrap;
  gap: 0.6rem 1.5rem; justify-content: space-between; font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lede { font-size: var(--step-1); color: var(--muted); }
.tag {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  color: var(--amber-dk); background: rgba(201,150,46,0.12);
  padding: 0.2rem 0.6rem; border-radius: 2px; margin-bottom: 0.7rem;
}
.note-build {
  background: #FFF6E4; border: 1px solid #E8CE96; border-left: 4px solid var(--amber);
  padding: 0.9rem 1.1rem; font-size: 0.88rem; color: #6B5426; border-radius: var(--radius);
}
