/* Beewise Handyman Services: main stylesheet
   One type system (system sans), mobile-first, no external dependencies. */

:root {
  /* REPLACEABLE IMAGES
     Swap a file in assets/ (same name) or point these at a new file.
     Paths are relative to this stylesheet. */
  --img-honeycomb: url("assets/honeycomb.webp"); /* decorative texture behind the call-to-action band */
  /* END REPLACEABLE IMAGES */

  /* Colour */
  --bee: #f4ce0f; /* sampled from the Beewise logo */
  --bee-soft: #fdf1c2;
  --ink: #17160f;
  --ink-2: #2c2a22;
  --text: #2e2c25;
  --muted: #5d5a4f;
  --paper: #fbf8f0;
  --paper-2: #f3eddc;
  --line: #e3dbc4;
  --white: #ffffff;
  --ok: #1d6b3a;
  --err: #a1261b;

  /* Type */
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.3125rem);
  --fs-h3: clamp(1.1875rem, 1.1rem + 0.4vw, 1.375rem);
  --fs-h2: clamp(1.75rem, 1.4rem + 1.6vw, 2.625rem);
  --fs-h1: clamp(2.25rem, 1.6rem + 3vw, 4rem);

  /* Space & shape */
  --gap: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --section: clamp(3.5rem, 2.5rem + 5vw, 7rem);
  --wrap: 72rem;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(23, 22, 15, 0.06), 0 8px 24px rgba(23, 22, 15, 0.08);
  --header-h: 4.25rem;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  padding-bottom: 4.5rem; /* room for the mobile call bar */
}
@media (min-width: 60em) { body { padding-bottom: 0; } }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration-thickness: 2px; text-underline-offset: 3px; text-decoration-color: var(--bee); }
a:hover { text-decoration-color: var(--ink); }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 4px; }
.cta-band :focus-visible, .contact-card :focus-visible, .callbar :focus-visible, .site-footer :focus-visible { outline-color: var(--bee); }

h1, h2, h3 { color: var(--ink); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 0.5em; text-wrap: balance; }
h1 { font-size: var(--fs-h1); letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.lead { font-size: var(--fs-lg); color: var(--ink-2); max-width: 38em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--tint { background: var(--paper-2); }
.section__head { max-width: 42rem; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2); margin: 0 0 1rem;
}
.eyebrow::before {
  content: ""; width: 0.8rem; height: 0.9rem; background: var(--bee);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--ink); color: var(--white); padding: 0.75rem 1rem; border-radius: var(--radius-sm); }
.skip-link:focus { top: 1rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Buttons (one vocabulary: "Call …" primary, "Request a free quote" secondary) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 3.25rem; padding: 0.8rem 1.4rem;
  font: inherit; font-weight: 700; font-size: 1rem; line-height: 1.2;
  border-radius: var(--radius-sm); border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.btn svg { width: 1.2em; height: 1.2em; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--bee); color: var(--ink); border-color: var(--bee); box-shadow: 0 2px 0 var(--ink); }
.btn--primary:hover { box-shadow: 0 4px 0 var(--ink); }
.btn--primary:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--dark:hover { background: var(--ink-2); }
.btn--on-dark.btn--ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.7); }
.btn--on-dark.btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--lg { min-height: 3.6rem; padding-inline: 1.7rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 240, 0.94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; margin-right: auto; padding-block: 0.5rem; }
.brand img { width: 9.5rem; height: auto; }
.header-call { display: none; }
.nav-toggle {
  display: none; align-items: center; gap: 0.5rem;
  min-height: 2.75rem; padding: 0.5rem 0.85rem;
  font: inherit; font-weight: 700; font-size: 0.9375rem; color: var(--ink);
  background: transparent; border: 2px solid var(--ink); border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle__icon, .nav-toggle__icon::before, .nav-toggle__icon::after {
  display: block; width: 1.1rem; height: 2px; background: currentColor; border-radius: 2px; position: relative; transition: transform 0.2s ease;
}
.nav-toggle__icon::before, .nav-toggle__icon::after { content: ""; position: absolute; left: 0; }
.nav-toggle__icon::before { top: -6px; }
.nav-toggle__icon::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after { transform: translateY(-6px) rotate(-45deg); }

.nav-toggle { order: 1; }
.site-nav { width: 100%; order: 2; }
.site-nav ul { list-style: none; margin: 0; padding: 0 0 0.75rem; display: flex; flex-wrap: wrap; gap: 0.25rem 1.25rem; }
.site-nav a {
  display: inline-block; padding: 0.4rem 0; font-weight: 600; color: var(--ink); text-decoration: none;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--bee); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--ink); }

/* With JS on small screens: collapse nav behind the toggle */
.js .nav-toggle { display: inline-flex; }
.js .site-nav { display: none; }
.js .site-nav.is-open { display: block; }
.js .site-nav ul { flex-direction: column; gap: 0; padding-bottom: 1rem; }
.js .site-nav li + li { border-top: 1px solid var(--line); }
.js .site-nav a { display: block; padding: 0.85rem 0; font-size: 1.0625rem; border-bottom: 0; }
.js .site-nav a[aria-current="page"] { color: var(--ink); box-shadow: inset 4px 0 0 var(--bee); padding-left: 0.85rem; }

@media (min-width: 60em) {
  .site-header__bar { flex-wrap: nowrap; }
  .brand img { width: 10.5rem; }
  .js .nav-toggle { display: none; }
  .site-nav, .js .site-nav { display: block; width: auto; order: 0; }
  .header-call { order: 1; }
  .site-nav ul, .js .site-nav ul { flex-direction: row; padding: 0; gap: 1.75rem; }
  .js .site-nav li + li { border: 0; }
  .js .site-nav a { display: inline-block; padding: 0.4rem 0; font-size: 1rem; border-bottom: 3px solid transparent; }
  .js .site-nav a:hover { border-bottom-color: var(--bee); }
  .js .site-nav a[aria-current="page"] { box-shadow: none; padding-left: 0; border-bottom-color: var(--ink); }
  .header-call { display: inline-flex; min-height: 2.9rem; padding: 0.6rem 1.1rem; }
}

/* ---------- Mobile call bar ---------- */
.callbar {
  position: fixed; inset: auto 0 0 0; z-index: 60;
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 0.5rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  background: var(--ink); border-top: 3px solid var(--bee);
}
.callbar .btn { min-height: 3rem; padding: 0.6rem 0.75rem; font-size: 0.9375rem; box-shadow: none; }
@media (min-width: 60em) { .callbar { display: none; } }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.25rem, 1.5rem + 4vw, 5.5rem) var(--section); overflow: hidden; }
.hero__grid { display: grid; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .hl { background: linear-gradient(transparent 62%, var(--bee) 62%, var(--bee) 92%, transparent 92%); padding-inline: 0.05em; }
.hero .lead { margin-bottom: 1.75rem; }
.hero__note { margin: 1rem 0 0; font-size: var(--fs-sm); color: var(--muted); }
.hero__note a { font-weight: 600; }
.photo-frame { position: relative; margin: 0; }
.photo-frame::before {
  content: ""; position: absolute; inset: 1.25rem -1.25rem -1.25rem 1.25rem; z-index: -1;
  background: var(--bee); border-radius: var(--radius);
}
.photo-frame img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo-frame figcaption { margin-top: 1.9rem; font-size: var(--fs-sm); color: var(--muted); }
.hero__media { position: relative; isolation: isolate; margin-right: 1.25rem; }
@media (min-width: 60em) {
  .hero__grid { grid-template-columns: 1fr 1.05fr; }
}

/* Trust strip */
.trust { list-style: none; margin: clamp(2.5rem, 2rem + 2vw, 4rem) 0 0; padding: 0; display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.trust li {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 1rem 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-weight: 600; color: var(--ink); line-height: 1.3;
}
.trust svg { width: 1.75rem; height: 1.75rem; flex: none; color: var(--ink); }
.hex-badge {
  display: grid; place-items: center; flex: none; width: 2.6rem; height: 2.9rem; background: var(--bee);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.hex-badge svg { width: 1.3rem; height: 1.3rem; }

/* ---------- Services ---------- */
.service-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr)); counter-reset: svc; }
.service-card {
  counter-increment: svc; position: relative;
  padding: 1.35rem 1.35rem 1.35rem 4.1rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.service-card::before {
  content: counter(svc, decimal-leading-zero); position: absolute; left: 1.2rem; top: 1.25rem;
  display: grid; place-items: center; width: 2.1rem; height: 2.35rem;
  font-size: 0.75rem; font-weight: 800; color: var(--ink); background: var(--bee);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.service-card h3 { font-size: 1.0625rem; margin: 0.3rem 0 0.35rem; }
.service-card p { margin: 0; font-size: var(--fs-sm); color: var(--muted); }
.service-grid--compact .service-card { padding-block: 1.1rem; }
.service-grid--compact .service-card::before { top: 50%; transform: translateY(-50%); }
.service-grid--compact .service-card h3 { margin: 0; }
.more-note { margin-top: 1.5rem; font-weight: 600; color: var(--ink); }
.fine { font-size: var(--fs-sm); color: var(--muted); }

/* Feature pair (Home Remodeling / Skilled Technician) */
.split { display: grid; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
@media (min-width: 56em) { .split { grid-template-columns: 0.9fr 1.1fr; } }
.features { display: grid; gap: 1rem; }
.feature { display: flex; gap: 1rem; padding: 1.4rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.feature h3 { margin-bottom: 0.35rem; }
.feature p { margin: 0; color: var(--muted); }
.emblem { max-width: 22rem; margin-inline: auto; }
.emblem img { border-radius: var(--radius); }

/* ---------- Projects ---------- */
.gallery { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1rem, 0.75rem + 1vw, 1.75rem); grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); counter-reset: proj; }
.gallery--lg { grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); }
.project { counter-increment: proj; margin: 0; display: flex; flex-direction: column; }
.project img {
  width: 100%; height: auto; border-radius: var(--radius); background: var(--paper-2);
  box-shadow: var(--shadow); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.js .project img { cursor: zoom-in; }
.project img:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(23,22,15,.08), 0 16px 32px rgba(23,22,15,.14); }
.project figcaption { padding-top: 0.9rem; font-size: var(--fs-sm); color: var(--text); line-height: 1.5; }
.project figcaption::before {
  content: counter(proj, decimal-leading-zero); display: inline-block; margin-right: 0.55rem;
  padding: 0.1rem 0.45rem; font-weight: 800; font-size: 0.75rem; letter-spacing: 0.04em;
  background: var(--ink); color: var(--bee); border-radius: 4px; vertical-align: 0.1em;
}
.gallery-foot { margin-top: 2rem; }

/* Lightbox */
.lightbox { padding: 0; border: 0; background: transparent; max-width: min(92vw, 60rem); max-height: 92vh; }
.lightbox::backdrop { background: rgba(23, 22, 15, 0.86); }
.lightbox img { max-height: 82vh; width: auto; margin-inline: auto; border-radius: var(--radius-sm); }
.lightbox p { color: var(--white); text-align: center; margin: 0.75rem 0 0; font-size: var(--fs-sm); }
.lightbox__close {
  position: fixed; top: 1rem; right: 1rem; width: 3rem; height: 3rem; border-radius: 50%;
  border: 0; background: var(--bee); color: var(--ink); font-size: 1.6rem; line-height: 1; cursor: pointer;
}

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); }
.quote {
  position: relative; margin: 0; padding: 2.25rem 1.75rem 1.75rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column;
}
.quote::before {
  content: "\201C"; position: absolute; top: -0.9rem; left: 1.5rem;
  display: grid; place-items: center; width: 2.6rem; height: 2.9rem; padding-top: 0.9rem;
  font-size: 2.6rem; font-weight: 800; line-height: 1; color: var(--ink); background: var(--bee);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.quote blockquote { margin: 0 0 1.25rem; font-size: var(--fs-lg); line-height: 1.5; color: var(--ink); flex: 1; }
.quote figcaption { font-size: var(--fs-sm); color: var(--muted); }
.quote cite { font-style: normal; font-weight: 700; color: var(--ink); }
.stars { display: block; margin-bottom: 0.75rem; color: var(--ink); letter-spacing: 0.15em; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; background: var(--ink); color: var(--white); overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--img-honeycomb) center / cover no-repeat; opacity: 0.16; filter: grayscale(0.2);
}
.cta-band__inner { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); display: grid; gap: 1.75rem; align-items: center; }
.cta-band h2 { color: var(--bee); margin-bottom: 0.4rem; }
.cta-band p { color: rgba(255, 255, 255, 0.86); margin: 0; font-size: var(--fs-lg); max-width: 34em; }
@media (min-width: 56em) { .cta-band__inner { grid-template-columns: 1fr auto; } }

/* ---------- Page intro ---------- */
.page-intro { padding-block: clamp(2.5rem, 1.75rem + 3.5vw, 5rem) clamp(2rem, 1.5rem + 2vw, 3rem); border-bottom: 1px solid var(--line); }
.page-intro .lead { margin-bottom: 1.5rem; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; gap: clamp(2rem, 1rem + 3vw, 3.5rem); align-items: start; }
@media (min-width: 60em) { .contact-layout { grid-template-columns: 0.85fr 1.15fr; } }
.contact-card { padding: clamp(1.5rem, 1rem + 2vw, 2.25rem); background: var(--ink); color: rgba(255, 255, 255, 0.86); border-radius: var(--radius); }
.contact-card h2 { color: var(--white); font-size: var(--fs-h3); }
.contact-card .btn { width: 100%; }
.contact-card .btn + .btn { margin-top: 0.75rem; }
.contact-list { list-style: none; margin: 1.5rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid rgba(255, 255, 255, 0.16); display: grid; gap: 1rem; }
.contact-list li { display: grid; grid-template-columns: 1.5rem 1fr; gap: 0.75rem; align-items: start; }
.contact-list svg { width: 1.3rem; height: 1.3rem; margin-top: 0.2rem; color: var(--bee); }
.contact-list strong { display: block; color: var(--white); font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-card a:not(.btn) { color: var(--white); text-decoration-color: var(--bee); }
.contact-card .social { margin-top: 1.5rem; }
.contact-card .social a { color: var(--white); border-color: rgba(255, 255, 255, 0.3); }

/* ---------- Forms ---------- */
.form-card { padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-card h2 { font-size: var(--fs-h3); margin-bottom: 0.35rem; }
.form-card > p { color: var(--muted); }
.form-grid { display: grid; gap: 1.1rem; margin-top: 1.5rem; }
@media (min-width: 40em) { .form-grid { grid-template-columns: 1fr 1fr; } .field--full { grid-column: 1 / -1; } }
.field { display: grid; gap: 0.4rem; }
.field label, .field legend { font-weight: 700; font-size: 0.9375rem; color: var(--ink); padding: 0; }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; min-height: 3.1rem; padding: 0.75rem 0.9rem;
  font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid #cfc6ab; border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:hover, .field textarea:hover { border-color: var(--ink-2); }
.field input:focus, .field textarea:focus { outline: none; background: var(--white); border-color: var(--ink); box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.55); }
fieldset.field { border: 0; margin: 0; padding: 0; }
.choice-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.choice { display: inline-flex; align-items: center; gap: 0.55rem; min-height: 3rem; padding: 0.5rem 1.1rem; border: 1.5px solid #cfc6ab; border-radius: var(--radius-sm); background: var(--paper); cursor: pointer; font-weight: 600; }
.choice input { width: 1.15rem; height: 1.15rem; accent-color: var(--ink); margin: 0; }
.choice:has(input:checked) { border-color: var(--ink); background: var(--bee-soft); }
.choice:has(input:focus-visible) { outline: 3px solid var(--ink); outline-offset: 2px; }
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { min-height: 65px; }
.form-foot { display: grid; gap: 1rem; margin-top: 1.25rem; }
.form-status { margin: 0; padding: 0.9rem 1rem; border-radius: var(--radius-sm); font-weight: 600; }
.form-status:empty { display: none; }
.form-status--ok { background: #e6f3ea; color: var(--ok); border: 1px solid #b9dcc4; }
.form-status--err { background: #fbeae8; color: var(--err); border: 1px solid #efc2bd; }
.form-status--err a { color: var(--err); }
.form-status--busy { background: var(--paper-2); color: var(--ink-2); }

/* ---------- Social ---------- */
.social { display: flex; gap: 0.6rem; list-style: none; margin: 0; padding: 0; }
.social a {
  display: grid; place-items: center; width: 2.75rem; height: 2.75rem;
  border: 1.5px solid currentColor; border-radius: 50%; color: inherit; text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.social a:hover { background: var(--bee); color: var(--ink); border-color: var(--bee); }
.social svg { width: 1.2rem; height: 1.2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.78); font-size: var(--fs-sm); }
.site-footer a { color: var(--white); text-decoration-color: rgba(245, 197, 24, 0.7); }
.site-footer a:hover { text-decoration-color: var(--bee); }
.footer-grid { display: grid; gap: 2.25rem; padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 2.5rem; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.footer-brand img { width: 10rem; margin-bottom: 1rem; }
.footer-brand p { max-width: 22rem; }
.footer-title { color: var(--bee); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 1rem; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-phone { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.01em; }
.site-footer .social a { color: var(--white); border-color: rgba(255, 255, 255, 0.35); }
.site-footer .social a:hover { color: var(--ink); border-color: var(--bee); }
.footer-fine { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-block: 1.25rem 1.75rem; display: grid; gap: 0.35rem; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.6); }
.footer-fine p { margin: 0; }
.footer-fine a { color: rgba(255, 255, 255, 0.78); text-decoration-color: rgba(255, 255, 255, 0.3); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
