/* ==========================================================================
   Rhodes Park Supermarket & Take Aways - shared stylesheet
   Plain CSS, mobile-first, no build step.
   Sections: 1) Design tokens  2) Base  3) Layout  4) Header/nav
   5) Buttons  6) Hero  7) Sections & cards  8) Groceries  9) Menu
   10) Specials  11) Contact  12) Footer  13) Mobile action bar  14) Utilities
   ========================================================================== */

/* ------------------------------------------------------------------ */
/* 1) DESIGN TOKENS                                                    */
/* ------------------------------------------------------------------ */
:root {
  /* Brand greens (deep, muted pine) */
  --brand:        #2F5D3A;
  --brand-dark:   #244A2D;
  --brand-bright: #4F7E5E;   /* muted mid green for small tints */
  --brand-900:    #16301F;

  /* Muted warm accent + action colours */
  --accent:       #B07A2E;   /* muted honey, used sparingly */
  --accent-dark:  #916121;
  --whatsapp:     #2C8A54;    /* muted WhatsApp green */
  --whatsapp-dark:#20693F;

  /* Neutrals (low chroma, warm-neutral, chosen not defaulted) */
  --ink:      #1D2A21;
  --muted:    #5E665D;
  --paper:    #FFFFFF;
  --paper-2:  #FBFAF7;   /* warm off-white */
  --wash:     #EEF1EC;   /* faint sage-grey band */
  --wash-warm:#F4F1E9;   /* soft sand band */
  --line:     #E5E2D9;   /* warm hairline borders */
  --line-2:   #EEEBE3;

  /* Type */
  --font-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale */
  --fs-hero:   clamp(2.4rem, 7vw, 4.4rem);
  --fs-h2:     clamp(1.7rem, 4.2vw, 2.7rem);
  --fs-h3:     clamp(1.2rem, 2.6vw, 1.5rem);
  --fs-lead:   clamp(1.05rem, 2.4vw, 1.3rem);
  --fs-body:   1.0625rem;
  --fs-small:  0.9rem;
  --fs-label:  0.78rem;

  /* Spacing + shape */
  --wrap: 1140px;
  --gap: clamp(1rem, 3vw, 2rem);
  --section-y: clamp(3rem, 8vw, 6rem);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 3px rgba(22, 48, 31, 0.05);
  --shadow-md: 0 10px 26px rgba(22, 48, 31, 0.08);
  --shadow-lg: 0 20px 46px rgba(22, 48, 31, 0.11);
}

/* ------------------------------------------------------------------ */
/* 2) BASE / RESET                                                     */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

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

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--brand-dark); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--brand-900);
}

p { max-width: 68ch; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--brand); color: #fff; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand-900);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------------ */
/* 3) LAYOUT                                                           */
/* ------------------------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.section { padding-block: var(--section-y); }
.section--wash { background: var(--wash); }
.section--warm { background: var(--wash-warm); }
.section--tight { padding-block: clamp(2rem, 5vw, 3.5rem); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
  max-width: 60ch;
}
.section-head h2 { font-size: var(--fs-h2); }
.section-head p { font-size: var(--fs-lead); color: var(--muted); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--fs-label);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
}

/* ------------------------------------------------------------------ */
/* 4) HEADER / NAV                                                     */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--brand-900);
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--brand);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wash);
  color: var(--brand-900);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}
.nav-toggle .bars {
  width: 18px; height: 12px; position: relative; display: inline-block;
}
.nav-toggle .bars::before,
.nav-toggle .bars::after,
.nav-toggle .bars span {
  content: ""; position: absolute; left: 0; right: 0; height: 2px;
  background: currentColor; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle .bars::before { top: 0; }
.nav-toggle .bars span { top: 5px; }
.nav-toggle .bars::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars::after { transform: translateY(-5px) rotate(-45deg); }

.primary-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.primary-nav a {
  display: inline-block;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}
.primary-nav a:hover { background: var(--wash); color: var(--brand-dark); }
.primary-nav a[aria-current="page"] {
  background: var(--brand);
  color: #fff;
}

/* Mobile nav behaviour */
@media (max-width: 860px) {
  .primary-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    padding: 0.8rem clamp(1.1rem, 4vw, 2rem) 1.4rem;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .primary-nav a { padding: 0.85rem 1rem; font-size: 1.05rem; }
}
@media (min-width: 861px) {
  .nav-toggle { display: none; }
  .primary-nav { display: block !important; transform: none !important; }
}

/* ------------------------------------------------------------------ */
/* 5) BUTTONS                                                          */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.18s ease, background 0.18s ease;
  min-height: 52px; /* large tappable target */
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }

.btn-call { background: var(--accent); color: #fff; box-shadow: 0 6px 16px rgba(176, 122, 46, 0.26); }
.btn-call:hover { background: var(--accent-dark); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 6px 16px rgba(44, 138, 84, 0.24); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-solid { background: var(--brand); color: #fff; }
.btn-solid:hover { background: var(--brand-dark); }

.btn-ghost {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand);
}
.btn-ghost:hover { background: var(--wash); }

.btn-block { width: 100%; }
.btn-lg { font-size: 1.1rem; padding: 1.1rem 1.7rem; min-height: 58px; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ------------------------------------------------------------------ */
/* 6) HERO                                                             */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, var(--wash) 0%, var(--paper) 62%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding-block: clamp(2.4rem, 6vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero-copy .eyebrow { margin-bottom: 1rem; }
.hero h1 {
  font-size: var(--fs-hero);
  margin-bottom: 0.4rem;
}
.hero .accent-word { color: var(--brand); }
.hero .tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.hero .lead { font-size: var(--fs-lead); color: var(--muted); margin-bottom: 1.6rem; }
.hero .btn-row { margin-bottom: 1.4rem; }

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Hours pill */
.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  font-weight: 600;
}
.hours-pill .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(47, 93, 58, 0.16);
  flex: 0 0 auto;
}
.hours-pill strong { color: var(--brand-900); }
.hours-pill .muted { color: var(--muted); font-weight: 500; }

/* ------------------------------------------------------------------ */
/* 7) SECTIONS & TEASER CARDS                                          */
/* ------------------------------------------------------------------ */
.card-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.teaser {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.teaser:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.teaser .thumb { aspect-ratio: 3 / 2; background: var(--wash); }
.teaser .thumb img { width: 100%; height: 100%; object-fit: cover; }
.teaser .body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.teaser h3 { font-size: var(--fs-h3); }
.teaser p { color: var(--muted); font-size: 0.98rem; }
.teaser .more {
  margin-top: auto;
  font-weight: 700;
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.teaser .more::after { content: "\2192"; transition: transform 0.18s ease; }
.teaser:hover .more::after { transform: translateX(4px); }

/* Feature strip (icon rows) */
.feature-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature .ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--wash); color: var(--brand-dark);
}
.feature .ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.15rem; }
.feature p { color: var(--muted); font-size: 0.96rem; }

/* Generic content image */
.figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--wash);
}
.figure img { width: 100%; height: 100%; object-fit: cover; }

/* Two-column split (About) */
.split {
  display: grid;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } }
.split.media-first .figure { order: -1; }
.prose > * + * { margin-top: 1rem; }
.prose h2 { font-size: var(--fs-h2); }
.prose p { color: var(--ink); }
.prose .lead { font-size: var(--fs-lead); color: var(--muted); }

/* ------------------------------------------------------------------ */
/* 8) GROCERIES GRID                                                   */
/* ------------------------------------------------------------------ */
.cat-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
.cat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat .thumb { aspect-ratio: 1 / 1; background: var(--wash); }
.cat .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cat .label { padding: 0.85rem 0.9rem 1rem; }
.cat .label h3 { font-size: 1.02rem; }
.cat .label p { font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; }

/* ------------------------------------------------------------------ */
/* 9) TAKE-AWAY MENU                                                   */
/* ------------------------------------------------------------------ */
.menu-section { margin-top: clamp(2rem, 5vw, 3rem); }
.menu-section > h3 {
  font-size: var(--fs-h3);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--accent);
  margin-bottom: 1.2rem;
}
.menu-list { display: grid; gap: 0.4rem; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1rem;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .name { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--brand-900); }
.menu-item .desc { grid-column: 1 / 2; color: var(--muted); font-size: 0.94rem; }
.menu-item .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--accent-dark);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.menu-note {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--wash);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
}

/* ------------------------------------------------------------------ */
/* 10) SPECIALS                                                        */
/* ------------------------------------------------------------------ */
.special-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .special-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .special-grid { grid-template-columns: repeat(3, 1fr); } }
.special {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.special .thumb { aspect-ratio: 4 / 3; background: var(--wash); position: relative; }
.special .thumb img { width: 100%; height: 100%; object-fit: cover; }
.special .badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.special .body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.special h3 { font-size: 1.2rem; }
.special .was-now { display: flex; align-items: baseline; gap: 0.6rem; margin-top: 0.2rem; }
.special .now { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--brand); }
.special .was { color: var(--muted); text-decoration: line-through; font-size: 0.95rem; }
.special p { color: var(--muted); font-size: 0.93rem; }
.special .valid { margin-top: auto; font-size: 0.8rem; color: var(--muted); padding-top: 0.4rem; }

.callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: var(--brand-900);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.callout h2 { color: #fff; font-size: var(--fs-h2); }
.callout p { color: rgba(255,255,255,0.85); }
.callout .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.6); }
.callout .btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ------------------------------------------------------------------ */
/* 11) CONTACT                                                         */
/* ------------------------------------------------------------------ */
.contact-grid {
  display: grid;
  gap: var(--gap);
}
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.info-list { list-style: none; padding: 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list .ic {
  width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px;
  display: grid; place-items: center; background: var(--wash); color: var(--brand-dark);
}
.info-list .ic svg { width: 22px; height: 22px; }
.info-list .k { font-family: var(--font-display); font-weight: 700; color: var(--brand-900); }
.info-list .v { color: var(--muted); }
.info-list a { color: var(--brand-dark); font-weight: 600; text-decoration: none; }
.info-list a:hover { text-decoration: underline; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--wash);
  border: 1px solid var(--line);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.4rem; }
.hours-table th, .hours-table td { text-align: left; padding: 0.55rem 0; border-bottom: 1px solid var(--line-2); }
.hours-table th { font-family: var(--font-display); font-weight: 700; color: var(--brand-900); }
.hours-table td { color: var(--muted); font-variant-numeric: tabular-nums; text-align: right; }

/* ------------------------------------------------------------------ */
/* 12) FOOTER                                                          */
/* ------------------------------------------------------------------ */
.site-footer {
  background: var(--brand-900);
  color: rgba(255,255,255,0.82);
  padding-block: clamp(2.6rem, 6vw, 4rem) 1.5rem;
  margin-bottom: 74px; /* room for mobile action bar */
}
.footer-grid {
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.6rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.6); }
.site-footer h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.9rem;
}
.site-footer p { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.footer-brand p { max-width: 34ch; margin-top: 0.9rem; }
.footer-nav, .footer-contact { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.footer-nav a, .footer-contact a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.95rem; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-contact .k { color: rgba(255,255,255,0.55); }

.socials { display: flex; gap: 0.6rem; margin-top: 1rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: #fff;
  transition: background 0.18s ease;
}
.socials a:hover { background: rgba(255,255,255,0.18); }
.socials svg { width: 20px; height: 20px; }

.footer-bottom {
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom .fineprint { max-width: 60ch; }
.footer-bottom a { color: rgba(255,255,255,0.85); }
.powered a { color: #fff; font-weight: 700; text-decoration: none; }
.powered a:hover { text-decoration: underline; }

/* ------------------------------------------------------------------ */
/* 13) MOBILE ACTION BAR (Call + WhatsApp, always reachable)           */
/* ------------------------------------------------------------------ */
.action-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(16,48,30,0.08);
}
.action-bar .btn { flex: 1; padding-inline: 0.6rem; font-size: 0.98rem; }
@media (min-width: 861px) {
  .action-bar { display: none; }
  .site-footer { margin-bottom: 0; }
}

/* ------------------------------------------------------------------ */
/* 14) UTILITIES                                                       */
/* ------------------------------------------------------------------ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-lg { margin-top: clamp(2rem, 5vw, 3rem); }
.lead { font-size: var(--fs-lead); color: var(--muted); }
.pill-tag {
  display: inline-block;
  background: var(--wash);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
