/*
 * ═══════════════════════════════════════════════════════════════
 *  SSDC WEBSITE — GLOBAL STYLES
 *  Shared reset, utilities, nav, footer, buttons, typography.
 *  Import order: fonts.css → tokens.css → global.css → page.css
 * ═══════════════════════════════════════════════════════════════
 */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 8px 16px;
  z-index: 9999;
  font-family: var(--font-mono);
  font-size: 12px;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Layout ── */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Typography helpers ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow.on-dark { color: var(--gold-soft); }

.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-hero);
  line-height: .96;
  letter-spacing: -.015em;
  color: var(--maroon);
  font-variant-numeric: lining-nums;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-2xl);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--maroon);
  font-variant-numeric: lining-nums;
}
.h-section.on-dark { color: var(--cream); }
.italic { font-style: italic; }
.accent { color: var(--saffron); font-style: italic; }
.gold   { color: var(--gold); }

/* ── SSDC triangle motif ── */
.tri-arrows { display: inline-flex; align-items: center; gap: 3px; flex-shrink: 0; }
.tri-arrows .ta {
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  display: block;
}
.tri-arrows.sm .ta  { border-width: 5px 0 5px 8px; }
.tri-arrows.lg .ta  { border-width: 11px 0 11px 18px; }
.tri-arrows.xl .ta  { border-width: 18px 0 18px 30px; }
.ta.maroon  { border-color: transparent transparent transparent var(--maroon); }
.ta.saffron { border-color: transparent transparent transparent var(--saffron); }
.ta.gold    { border-color: transparent transparent transparent var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: .03em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.btn:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; }
.arrow {
  display: inline-block;
  transition: transform var(--t-fast);
}
.btn:hover .arrow,
.inline-link:hover .arrow,
.course-card:hover .cc-link .arrow,
.class-tab-card:hover .ctab-cta .arrow,
.qc-item:hover::after {
  transform: translateX(3px);
}
.btn.primary { background: var(--maroon); border-color: var(--maroon); color: #fff; }
.btn.primary:hover { background: var(--maroon-deep); border-color: var(--maroon-deep); }
.btn.ghost { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn.ghost:hover { background: var(--maroon); color: #fff; }
.btn.ghost-dark { background: transparent; color: var(--cream); border-color: rgba(251,245,228,.5); }
.btn.ghost-dark:hover { background: rgba(251,245,228,.12); border-color: var(--cream); }
.btn.gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn.gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

/* ── Gold pill badge ── */
.gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.gold-pill::before { display: none; }

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,245,228,.94);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
  height: 72px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo { width: 46px; height: 46px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--maroon);
  letter-spacing: .02em;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(13,44,74,.75);
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
  padding: 6px 0;
  position: relative;
  transition: color var(--t-fast);
}
.nav-links a:hover,
.nav-links a.active { color: var(--maroon); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-chevron { font-size: 9px; opacity: .5; display: inline-block; vertical-align: middle; margin-left: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron { transform: rotate(180deg); opacity: .8; }
.nav-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  list-style: none;
  padding: 4px 0;
  min-width: 172px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  pointer-events: none;
  z-index: 200;
}
.nav-dropdown:hover .nav-sub,
.nav-dropdown:focus-within .nav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-sub li { width: 100%; }
.nav-sub a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-sub a:hover { color: var(--maroon); background: var(--paper); }
.nav-sub a::after { display: none !important; }

/* Mobile drawer sub-items */
.drawer-sub a {
  font-size: 15px !important;
  font-weight: 400 !important;
  padding: 9px 0 9px 20px !important;
  color: var(--muted) !important;
  border-bottom-color: var(--rule) !important;
}

/* Phone always visible */
.nav-phone {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--t-fast);
}
.nav-phone:hover { color: var(--maroon); }
.nav-phone::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a9a52;
  box-shadow: 0 0 0 3px rgba(58,154,82,.2);
  flex-shrink: 0;
}

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Mobile icon buttons (phone + WA) — hidden on desktop */
.nav-icon-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.nav-icon-btn.wa { color: #25d366; }
.nav-icon-btn:hover { opacity: .65; }
.nav-icon-btn svg { width: 18px; height: 18px; display: block; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: var(--cream);
  z-index: 99;
  padding: 32px var(--gutter) 40px;
  border-top: 1px solid var(--rule);
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  align-items: flex-start;
}
.nav-drawer .nav-links li { width: 100%; }
.nav-drawer .nav-links a {
  display: block;
  font-size: 17px;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--navy);
}
.nav-drawer .nav-links a:hover { color: var(--maroon); }
.nav-drawer .nav-links a.active::after { display: none; }
.nav-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.nav-drawer-phone {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--maroon);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .04em;
}

/* ─────────────────────────────────────────────
   TRIANGLE MARQUEE BAR
───────────────────────────────────────────── */
.tri-bar {
  background: var(--paper-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  overflow: hidden;
}
.tri-bar-track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--maroon);
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0 var(--gutter);
}
.tri-bar-track .dot {
  width: 5px;
  height: 5px;
  background: var(--saffron);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   SECTION SHARED
───────────────────────────────────────────── */
.section { padding: var(--space-3xl) 0; }
.section.dark { background: var(--navy); color: var(--cream); }
.section.alt  { background: var(--paper-alt); }
.section.gold-band { background: var(--gold); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  align-items: end;
}
.section-head .label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-head p {
  font-size: var(--text-md);
  color: var(--navy);
  line-height: 1.6;
  max-width: 52ch;
  opacity: .82;
}
.section-head.on-dark p { color: var(--cream); opacity: .78; }

/* ─────────────────────────────────────────────
   STAT STRIP (hero bottom / results)
───────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--maroon);
  padding-top: var(--space-md);
  position: relative;
}
.stat-strip::before {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  width: 72px; height: 2px;
  background: var(--maroon);
}
.stat-strip > div + div { border-left: 1px solid var(--rule); padding-left: 22px; }
.stat-n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--maroon);
  letter-spacing: -.02em;
  font-variant-numeric: lining-nums;
}
.stat-value { color: inherit; }
.stat-prefix,
.stat-suffix {
  color: var(--saffron);
  font-size: .6em;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(.04em);
}
.inline-stat {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}
.stat-strip > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.stat-strip > div > .stat-n { display: inline-flex; align-self: flex-start; margin-bottom: 6px; }
.stat-placeholder { color: rgba(13,44,74,.25) !important; letter-spacing: .05em; }
.stat-coming {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  color: var(--saffron);
  opacity: .7;
}
.stat-l {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--navy);
  line-height: 1.4;
  opacity: .72;
}

/* ─────────────────────────────────────────────
   PHOTO PLACEHOLDER
───────────────────────────────────────────── */
.photo-placeholder {
  background: var(--paper-alt);
  background-image: repeating-linear-gradient(135deg, var(--paper-alt) 0 14px, rgba(13,44,74,.04) 14px 15px);
  display: grid;
  place-items: center;
  position: relative;
  border-top: 6px solid var(--maroon);
}
.photo-placeholder .ph-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--maroon);
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--cream);
  padding: 8px 16px;
  border: 1px solid var(--maroon);
}

/* ─────────────────────────────────────────────
   TESTIMONIAL CAROUSEL
───────────────────────────────────────────── */
.carousel-wrap {
  overflow: hidden;
  position: relative;
  padding: 0 64px 32px;
}
.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-inline: 8px;
  transition: transform .38s var(--ease);
  will-change: transform;
}
.carousel-control {
  position: absolute;
  top: calc(50% - 18px);
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--navy);
  color: var(--gold);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(13,44,74,.28);
}
.carousel-control::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  display: block;
}
.carousel-control.prev::before { transform: translateX(2px) rotate(-135deg); }
.carousel-control.next::before { transform: translateX(-2px) rotate(45deg); }
.carousel-control.prev { left: 8px; }
.carousel-control.next { right: 8px; }
.carousel-control:hover,
.carousel-control:focus-visible {
  background: var(--gold);
  color: var(--navy);
  outline: none;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 10px;
}
.carousel-dot {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-dot::after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--maroon);
  background: transparent;
  transition: background 0.2s;
}
.carousel-dot[aria-current="true"]::after {
  background: var(--maroon);
}
.tcard {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--gold);
  padding: 28px;
  width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.tcard:nth-child(3n+2) { border-top-color: var(--saffron); }
.tcard:nth-child(3n+3) { border-top-color: var(--maroon); }
.carousel-track:hover .tcard { transform: translateY(-2px); }
.tcard .quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: .35;
  color: var(--gold);
  font-weight: 600;
  height: 24px;
}
.tcard p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--navy);
  flex: 1;
}
.tcard .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.tcard .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--maroon);
  display: block;
  flex-shrink: 0;
}
.tcard .who b {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}
.tcard-cred {
  display: block;
  font-family: var(--font-mono);
  font-style: italic;
  font-size: 9.5px;
  font-weight: 400;
  color: var(--maroon);
  margin: 3px 0 2px;
  letter-spacing: .04em;
  opacity: .9;
}
.tcard .who small {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--maroon);
  display: block;
  margin-top: 2px;
}

/* ─────────────────────────────────────────────
   ENQUIRY FORM
───────────────────────────────────────────── */
.enquiry-form {
  background: var(--cream);
  border-top: 6px solid var(--maroon);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.enquiry-form h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--maroon);
  margin-bottom: 4px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  padding: 8px 0;
  background: transparent;
  color: var(--navy);
  border-radius: 0;
  outline: 0;
  transition: border-color var(--t-fast);
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--saffron); }
.field textarea { min-height: 80px; resize: vertical; }

/* Inline links on dark / navy backgrounds */
.section.dark .inline-link,
.cd-note .inline-link { color: var(--gold-soft); border-color: rgba(201,168,58,.5); }
.section.dark .inline-link:hover,
.cd-note .inline-link:hover { color: var(--cream); border-color: var(--gold); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon) 33.33%, var(--saffron) 33.33% 66.66%, var(--gold) 66.66%);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.8fr .8fr .8fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-grid h3 {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.foot-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-grid a {
  text-decoration: none;
  font-size: var(--text-sm);
  color: rgba(251,245,228,.8);
  transition: color var(--t-fast);
}
.foot-grid a:hover { color: var(--gold); }
.foot-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  max-width: 30ch;
  margin: 16px 0 0;
  color: var(--gold-soft);
}
.foot-socials { display: flex; gap: 8px; margin-top: 20px; }
.foot-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(251,245,228,.06);
  border: 1px solid rgba(201,168,58,.28);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 13px;
  transition: background var(--t-fast), color var(--t-fast);
}
.foot-socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(251,245,228,.1);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(251,245,228,.45);
  flex-wrap: wrap;
  gap: 8px;
}

/* ─────────────────────────────────────────────
   PHONE BAR (mobile sticky — always visible)
───────────────────────────────────────────── */
.phone-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--maroon);
  color: #fff;
  padding: 12px var(--gutter);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.phone-bar a.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--maroon);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  flex: 1;
  justify-content: center;
}
.phone-bar a.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section-head { grid-template-columns: 1fr; gap: 28px; }
  .foot-grid    { grid-template-columns: 1fr 1fr; }
  .stat-strip   { grid-template-columns: repeat(2, 1fr); }
  .stat-strip > div:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 768px) {
  .nav-inner {
    padding-left: 18px;
    padding-right: 18px;
    gap: 14px;
  }
  .nav-links    { display: none; }
  .nav-phone    { display: none; }
  .nav-actions .btn { display: none; }
  .nav-toggle   { display: flex; }
  .nav-actions  { margin-left: auto; gap: 8px; }
  .nav-icon-btn { display: flex; }
  .foot-grid    { grid-template-columns: 1fr 1fr; }
  .form-row     { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .carousel-wrap { padding: 0 48px 30px; }
  .carousel-control { width: 36px; height: 36px; }
  .carousel-control.prev { left: 6px; }
  .carousel-control.next { right: 6px; }
  .tcard { width: min(300px, calc(100vw - 112px)); }
  .nav-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .nav-icon-btn { width: 34px; height: 38px; }
  .nav-toggle { padding: 7px 4px; }
  .foot-grid    { grid-template-columns: 1fr 1fr; gap: 32px 22px; }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
  .stat-strip   { grid-template-columns: repeat(2, 1fr); }
  .section      { padding: 26px 0; }
  .enquiry-form { padding: 28px 20px; }
}
