/*
 * Savannah Medical Clinic — design system
 * Single source of truth for tokens, typography and core components.
 * Imported by every public page; page-specific overrides go inline.
 */

/* ===== Tokens ============================================================ */
:root {
  /* Sage scale (brand) */
  --sage-50:  #f5f7f3;
  --sage-100: #eef2e1;
  --sage-200: #d8e1c5;
  --sage-300: #b6cb88;
  --sage-400: #94b056;
  --sage-500: #7c9940;
  --sage-600: #5d7a2d;
  --sage-700: #4c5a21;
  --sage-800: #3a4318;
  --sage-900: #1a1f0c;

  /* Ink scale (greys + text) */
  --ink-50:  #f7f8f6;
  --ink-100: #eef0ec;
  --ink-200: #dde2d8;
  --ink-300: #b8bdb4;
  --ink-400: #8b918a;
  --ink-500: #5f6963;
  --ink-600: #404442;
  --ink-700: #2a2d2b;
  --ink-800: #1a1f1c;
  --ink-900: #0a0c0b;

  /* Warm accent */
  --warm-100: #fef4d6;
  --warm-300: #f4d987;
  --warm-500: #f4b000;
  --warm-700: #9b6b00;

  /* Status */
  --warning: #b8341a;
  --warning-soft: #fff5ed;
  --warning-line: #f3cdb6;

  /* Semantic */
  --primary:        var(--sage-600);
  --primary-soft:   var(--sage-300);
  --primary-tint:   var(--sage-100);
  --primary-ink:    var(--sage-800);
  --ink:            var(--ink-800);
  --muted:          var(--ink-500);
  --surface:        #ffffff;
  --surface-alt:    var(--sage-50);
  --border:         var(--ink-200);
  --accent:         var(--warm-500);

  /* Typography */
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial, sans-serif;
  --leading-tight: 1.15;
  --leading-snug:  1.35;
  --leading-body:  1.55;
  --leading-loose: 1.7;

  /* Type ramp — fluid */
  --t-xs:  0.78rem;
  --t-sm:  0.88rem;
  --t-base: 1rem;
  --t-md:  1.125rem;
  --t-lg:  clamp(1.18rem, 1.06rem + 0.4vw, 1.35rem);
  --t-xl:  clamp(1.45rem, 1.22rem + 0.8vw, 1.85rem);
  --t-2xl: clamp(1.85rem, 1.5rem + 1.4vw, 2.4rem);
  --t-3xl: clamp(2.2rem, 1.7rem + 2vw, 3.2rem);

  /* Space */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 0.5rem + 2vw, 1.6rem);

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 22px;
  --r-full: 999px;

  /* Shadow — quiet, Doctors Hospital-style */
  --shadow-1: 0 1px 2px rgba(20, 40, 15, 0.05);
  --shadow-2: 0 4px 12px rgba(20, 40, 15, 0.06), 0 1px 2px rgba(20, 40, 15, 0.04);
  --shadow-3: 0 12px 32px rgba(20, 40, 15, 0.08), 0 2px 6px rgba(20, 40, 15, 0.04);

  /* Focus */
  --focus-ring: 0 0 0 3px rgba(93, 122, 45, 0.45);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ===== Reset (minimal) =================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--t-base);
  line-height: var(--leading-body);
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

/* Accessibility */
.skip-link {
  position: absolute; left: -10000px; top: 0;
  background: var(--ink-800); color: #fff; padding: var(--s-3) var(--s-4);
  border-radius: 0 0 var(--r-md) 0; z-index: 200;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
[tabindex="0"]:focus-visible {
  outline: none; box-shadow: var(--focus-ring); border-radius: var(--r-md);
}

/* ===== Layout primitives ================================================= */
.container { max-width: var(--container-max); margin: 0 auto; padding-inline: var(--container-pad); }
.section { padding-block: clamp(var(--s-10), 6vw, var(--s-20)); }
.section--alt { background: var(--surface-alt); }
.section--tint { background: var(--primary-tint); }
.section--ink  { background: var(--ink-800); color: #fff; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.stack > * + * { margin-top: var(--s-4); }
.stack-sm > * + * { margin-top: var(--s-2); }
.stack-lg > * + * { margin-top: var(--s-6); }

.grid { display: grid; gap: var(--s-6); }
.grid--2  { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3  { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4  { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--32 { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); }

/* ===== Typography ======================================================== */
.h1, h1 { font-size: var(--t-3xl); line-height: var(--leading-tight); color: var(--ink); letter-spacing: -0.02em; font-weight: 800; }
.h2, h2 { font-size: var(--t-2xl); line-height: var(--leading-tight); color: var(--ink); letter-spacing: -0.015em; font-weight: 800; }
.h3, h3 { font-size: var(--t-xl); line-height: var(--leading-snug); color: var(--ink); font-weight: 700; }
.h4, h4 { font-size: var(--t-lg); line-height: var(--leading-snug); color: var(--ink); font-weight: 700; }
.h5, h5 { font-size: var(--t-md); line-height: var(--leading-snug); color: var(--ink); font-weight: 700; }

.lede { font-size: var(--t-md); color: var(--muted); max-width: 56ch; }
.kicker {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: var(--s-2);
}
.tag {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-ink);
  background: var(--primary-tint);
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-full);
}
.muted { color: var(--muted); }
.text-sm { font-size: var(--t-sm); }
.text-xs { font-size: var(--t-xs); }

/* ===== Section header ==================================================== */
.section-header { max-width: 720px; margin-bottom: var(--s-8); }
.section-header.is-centered { margin-inline: auto; text-align: center; }
.section-header p { color: var(--muted); margin-top: var(--s-2); }

/* ===== Buttons =========================================================== */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: #fff;
  --btn-border: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: 0.7rem 1.3rem;
  border-radius: var(--r-full);
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s var(--ease), box-shadow 0.12s var(--ease), background 0.15s var(--ease), border-color 0.15s var(--ease);
  white-space: nowrap;
  box-shadow: var(--shadow-1);
}
.btn:hover { box-shadow: var(--shadow-2); transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

.btn--primary { --btn-bg: var(--primary); --btn-border: var(--primary); --btn-fg: #fff; }
.btn--primary:hover { background: var(--sage-700); border-color: var(--sage-700); }
.btn--outline { --btn-bg: #fff; --btn-border: var(--border); --btn-fg: var(--ink); }
.btn--outline:hover { background: var(--sage-50); border-color: var(--primary-soft); }
.btn--ghost { --btn-bg: transparent; --btn-border: transparent; --btn-fg: var(--ink); box-shadow: none; }
.btn--ghost:hover { background: var(--surface-alt); }
.btn--dark { --btn-bg: var(--ink-800); --btn-border: var(--ink-800); --btn-fg: #fff; }
.btn--dark:hover { background: var(--ink-900); border-color: var(--ink-900); }
.btn--warning { --btn-bg: var(--warning); --btn-border: var(--warning); --btn-fg: #fff; }
.btn--warning:hover { background: #99260e; border-color: #99260e; }
.btn--sm { min-height: 40px; padding: 0.5rem 1rem; font-size: 0.88rem; }
.btn--lg { min-height: 54px; padding: 0.9rem 1.6rem; font-size: 1rem; }
.btn--block { width: 100%; }

@media (hover: none) {
  .btn:hover { transform: none; }
}

/* Button row */
.actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* ===== Cards ============================================================= */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.15s var(--ease), border-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.card:hover { box-shadow: var(--shadow-2); border-color: var(--sage-200); }
.card h3 { margin-bottom: var(--s-2); }
.card > p { color: var(--muted); }
.card .actions { margin-top: var(--s-4); }

.card--soft { background: var(--surface-alt); }
.card--tint { background: var(--primary-tint); border-color: var(--sage-200); }
.card--flat { box-shadow: none; }
.card--interactive { cursor: pointer; }
.card--interactive:hover { transform: translateY(-2px); }

/* Service card with icon */
.service-card { display: flex; flex-direction: column; gap: var(--s-3); }
.service-card .icon {
  width: 48px; height: 48px;
  background: var(--primary-tint);
  color: var(--primary-ink);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-card .icon svg { width: 26px; height: 26px; stroke-width: 1.8; }
.service-card .learn-more {
  margin-top: auto;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.service-card:hover .learn-more::after { transform: translateX(2px); }
.service-card .learn-more::after { content: "→"; transition: transform 0.15s var(--ease); }

/* Staff card */
.staff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-5) var(--s-5);
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  transition: box-shadow 0.15s var(--ease), border-color 0.15s var(--ease);
}
.staff-card:hover { box-shadow: var(--shadow-2); border-color: var(--sage-200); }
.staff-photo {
  width: 160px; height: 160px;
  border-radius: var(--r-full);
  overflow: hidden;
  background: var(--sage-100);
  margin-bottom: var(--s-3);
  position: relative;
}
.staff-photo picture,
.staff-photo img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.staff-photo .initials {
  display: none;
}
.staff-card .name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.staff-card .role {
  font-size: 0.92rem;
  color: var(--primary);
  font-weight: 600;
}
.staff-card .role-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}
.staff-card .licence {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.staff-card .dept-pill {
  margin-top: var(--s-3);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-ink);
  background: var(--primary-tint);
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-full);
}

/* Filter chip bar */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  margin-bottom: var(--s-8);
}
.filter-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 0.5rem 1rem;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s var(--ease), border-color 0.12s var(--ease), color 0.12s var(--ease);
}
.filter-chip:hover { background: var(--surface-alt); border-color: var(--sage-200); }
.filter-chip[aria-pressed="true"] {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Dept group label */
.dept-label {
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--border);
}

/* ===== Header / nav ====================================================== */
.top-strip {
  background: var(--ink-800);
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  padding: 0.4rem var(--container-pad);
  display: flex; justify-content: center; gap: 0.5rem 1.4rem;
  flex-wrap: wrap;
}
.top-strip a { color: #fff; text-decoration: underline; text-underline-offset: 2px; padding: 0.15rem 0; }
.top-strip a:hover { color: var(--sage-300); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-nav {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.6rem var(--container-pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
}
.brand { display: flex; align-items: center; gap: var(--s-3); text-decoration: none; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-logo {
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-2);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-size: 1rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 0.72rem; color: var(--muted);
}

.nav-links {
  display: flex; align-items: center; gap: 0.1rem;
  font-size: 0.95rem;
}
.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-md);
  color: var(--ink);
  font-weight: 500;
}
.nav-links a:hover { background: var(--surface-alt); text-decoration: none; }
.nav-links a[aria-current="page"] {
  color: var(--primary-ink);
  background: var(--primary-tint);
}
.nav-cta { display: flex; align-items: center; gap: var(--s-2); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav.is-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: var(--s-2) var(--container-pad) var(--s-4);
    gap: var(--s-1);
    box-shadow: var(--shadow-2);
  }
  .site-nav.is-open .nav-links a {
    width: 100%;
    padding: 0.75rem 1rem;
  }
  .site-nav.is-open .nav-cta {
    display: flex; flex-direction: column;
    position: absolute; left: 0; right: 0; top: 100%;
    padding: 0 var(--container-pad) var(--s-4);
    gap: var(--s-2);
    background: #fff;
    margin-top: 200px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-2);
  }
  .site-nav.is-open .nav-cta .btn { width: 100%; }
}

/* ===== Hero ============================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 0%, var(--primary-tint) 0%, transparent 55%),
    radial-gradient(circle at 0% 100%, var(--sage-50) 0%, transparent 50%),
    var(--surface);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(var(--s-10), 5vw, var(--s-16));
}
.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--s-10);
  align-items: center;
}
.hero h1 { margin-bottom: var(--s-3); }
.hero .lede { margin-bottom: var(--s-5); font-size: var(--t-md); }
.hero .actions { margin-bottom: var(--s-5); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
  font-size: 0.9rem; color: var(--muted);
}
.hero-trust span { display: flex; align-items: center; gap: 0.35rem; }
.hero-trust strong { color: var(--ink); }
.hero-media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  background: var(--surface-alt);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero-media { order: -1; }
}

/* ===== Footer ============================================================ */
.site-footer {
  background: var(--ink-800);
  color: rgba(255,255,255,0.85);
  padding: var(--s-12) var(--container-pad) var(--s-5);
  font-size: 0.92rem;
}
.site-footer h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--s-3);
}
.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.site-footer a:hover { color: var(--sage-300); text-decoration: underline; text-underline-offset: 2px; }
.footer-grid {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; gap: var(--s-8);
  grid-template-columns: 1.4fr repeat(3, 1fr);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: rgba(255,255,255,0.6); }
.footer-brand p { color: rgba(255,255,255,0.75); margin-top: var(--s-3); max-width: 28ch; font-size: 0.92rem; }
.footer-list { display: flex; flex-direction: column; gap: var(--s-2); font-size: 0.9rem; }
.footer-bottom {
  max-width: var(--container-max); margin: var(--s-10) auto 0;
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3);
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
}
.footer-disclaimer { max-width: 56ch; }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Callouts / banners ================================================ */
.callout {
  background: var(--primary-tint);
  border: 1px solid var(--sage-200);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-6);
  color: var(--ink);
}
.callout--warning {
  background: var(--warning-soft);
  border-color: var(--warning-line);
}
.callout--warning strong { color: var(--warning); }

/* ===== Forms ============================================================= */
.field { display: flex; flex-direction: column; gap: var(--s-2); margin-bottom: var(--s-4); }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.7rem 0.9rem;
  background: #fff;
  color: var(--ink);
  min-height: 48px;
  transition: border-color 0.12s var(--ease), box-shadow 0.12s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--focus-ring);
}

/* ===== Contact block ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: var(--s-8);
  align-items: start;
}
.contact-list { display: flex; flex-direction: column; gap: var(--s-5); }
.contact-row { display: flex; gap: var(--s-3); align-items: flex-start; }
.contact-row .icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--primary-tint);
  color: var(--primary-ink);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .icon svg { width: 20px; height: 20px; }
.contact-row .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.contact-row .value { font-size: 1rem; color: var(--ink); }
.contact-row a { color: var(--primary); font-weight: 600; }

.map-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--sage-50);
  aspect-ratio: 4 / 3;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Hours list ======================================================== */
.hours-list { display: flex; flex-direction: column; gap: var(--s-2); }
.hours-list li {
  display: flex; justify-content: space-between; gap: var(--s-4);
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--muted); font-weight: 500; }
.hours-list .time { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ===== 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-2 { margin-top: var(--s-2); }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }

/* ===== Responsive tweaks ================================================= */
@media (max-width: 540px) {
  .hero { padding-block: var(--s-8); }
  .section { padding-block: var(--s-10); }
  .hero-trust { flex-direction: column; gap: var(--s-2); }
  .staff-photo { width: 130px; height: 130px; }
}

@media (max-width: 360px) {
  .top-strip { font-size: 0.78rem; }
  .brand-name { font-size: 0.92rem; }
  .brand-tag { display: none; }
}

/* Disable hover lift on touch — already wrapped, but the staff card uses translateY */
@media (hover: none) {
  .staff-card:hover, .card:hover { transform: none; }
}
