/* ============================================================
   K B S R & Co — Chartered Accountants | styles.css
   ============================================================ */

/* 1. CUSTOM PROPERTIES */
:root {
  --navy:        #0A2540;
  --navy-700:    #143A63;
  --teal:        #0E7C7B;
  --teal-bright: #1C8C86;
  --gold:        #C9A227;
  --gold-light:  #E3C766;
  --ink:         #1E2430;
  --muted:       #5B6675;
  --cream:       #F6F3EA;
  --mist:        #F4F7FA;
  --line:        #E4E8EE;
  --white:       #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Mulish', system-ui, sans-serif;
  --font-label:   'Jost', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-card: 0 2px 12px rgba(10,37,64,0.08);
  --shadow-hover: 0 8px 32px rgba(10,37,64,0.14);
  --shadow-soft: 0 1px 2px rgba(10,37,64,0.04), 0 4px 16px rgba(10,37,64,0.06);
  --shadow-lift: 0 12px 40px rgba(10,37,64,0.16), 0 2px 8px rgba(10,37,64,0.08);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.25s var(--ease-out);
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* 3. TYPOGRAPHY */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { max-width: 68ch; }

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

/* 4. LAYOUT HELPERS */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section { padding-block: 5rem; }
.section--sm { padding-block: 3rem; }
.section--lg { padding-block: 7rem; }

.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--muted); }

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* 5. GOLD RULE */
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 1rem;
}
.text-center .gold-rule { margin-inline: auto; }

/* 6. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
  will-change: transform;
}
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,39,0.08);
  transform: translateY(-2px);
}

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

/* 7. TOP UTILITY BAR */
.utility-bar {
  background: var(--navy-700);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-family: var(--font-label);
  letter-spacing: 0.03em;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.utility-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.utility-bar a { color: inherit; }
.utility-bar a:hover { color: var(--gold-light); }

.utility-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.utility-item svg { flex-shrink: 0; }

.utility-bar .spacer { flex: 1; }

/* 8. MAIN HEADER / NAV */
.site-header {
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow var(--transition), background var(--transition);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header { background: var(--white); }
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 24px rgba(10,37,64,0.12);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.site-logo img { height: 44px; width: auto; }
.site-logo .logo-white { display: none; }   /* shown only on mobile navy bar */

.main-nav { display: none; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  position: relative;
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--navy); background: var(--mist); }
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--teal); }

.header-cta { margin-left: auto; }

.hamburger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--mist); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(10,37,64,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: 0.03em;
  transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--mist); color: var(--navy); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 0.75rem; }

/* 8b. BOTTOM TAB BAR (native-app style, mobile only) */
.bottom-nav {
  position: fixed;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.6rem;
  z-index: 950;
  display: none;               /* shown < 768px via media query */
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(10,37,64,0.18), 0 2px 8px rgba(10,37,64,0.10);
  /* respect iOS home-indicator safe area */
  padding-bottom: env(safe-area-inset-bottom, 0);
  animation: bottomNavIn 0.5s var(--ease-out) both;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .bottom-nav { background: var(--white); }
}

@keyframes bottomNavIn {
  from { opacity: 0; transform: translateY(120%); }
  to   { opacity: 1; transform: translateY(0); }
}

.bottom-nav ul {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  padding: 0.3rem 0.25rem;
}

.bottom-nav li { flex: 1; display: flex; }

.bottom-nav a {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 54px;
  padding: 0.35rem 0.15rem;
  border-radius: 14px;
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition), background var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav a span { transition: opacity var(--transition), transform var(--transition); }

/* icon sits in a soft circle that fills with brand color when active */
.bottom-nav a svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.9;
  transition: transform var(--transition);
}
.bottom-nav a:active svg { transform: scale(0.86); }
.bottom-nav a:active { background: rgba(10,37,64,0.05); }

.bottom-nav a[aria-current="page"] {
  color: var(--navy);
  background: linear-gradient(180deg, rgba(201,162,39,0.16), rgba(201,162,39,0.06));
}
.bottom-nav a[aria-current="page"] svg {
  color: var(--teal);
  transform: translateY(-1px) scale(1.06);
}
.bottom-nav a[aria-current="page"] span { font-weight: 700; }
.bottom-nav a[aria-current="page"]::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* 8c. WHATSAPP FLOATING ACTION BUTTON */
.wa-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.4rem;
  z-index: 940;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 2px 6px rgba(0,0,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  -webkit-tap-highlight-color: transparent;
  animation: waPulse 2.6s ease-out infinite;
}
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab:hover,
.wa-fab:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37,211,102,0.5), 0 3px 8px rgba(0,0,0,0.18);
  animation-play-state: paused;
}
.wa-fab:active { transform: scale(0.96); }

/* gentle attention pulse ring */
@keyframes waPulse {
  0%   { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* optional label that shows on larger screens */
.wa-fab__label {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.wa-fab__label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}
.wa-fab:hover .wa-fab__label,
.wa-fab:focus-visible .wa-fab__label { opacity: 1; transform: translateX(0); }

/* lift the FAB above the floating bottom tab bar on mobile */
@media (max-width: 767px) {
  .wa-fab {
    width: 50px;
    height: 50px;
    right: 0.9rem;
    bottom: calc(80px + env(safe-area-inset-bottom, 0));
  }
  .wa-fab svg { width: 27px; height: 27px; }
  .wa-fab__label { display: none; }
}

/* 9. HERO SLIDER */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 60%, #0B3566 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.6) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.6) 40px);
  pointer-events: none;
}

.hero__accent {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.14) 0%, transparent 70%);
  right: -150px;
  top: -100px;
  pointer-events: none;
  animation: heroGlow 14s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
  50%      { transform: translate(-30px, 40px) scale(1.12); opacity: 1; }
}

.hero .container { position: relative; z-index: 1; padding-block: 5rem; }

.slider { position: relative; }

.slide {
  display: none;
  animation: fadeIn 0.6s ease;
}
.slide.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide__eyebrow {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.slide h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.slide__sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.25rem;
}

.slide__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all var(--transition);
  cursor: pointer;
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,39,0.1); }

/* 10. STATS BAND */
.stats-band {
  background: var(--gold);
  padding-block: 1.75rem;
}

.stats-band .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 3rem;
}

.stat-item {
  text-align: center;
  padding: 0.25rem 0.5rem;
  transition: transform var(--transition);
}
.stat-item:hover { transform: translateY(-3px); }
.stat-item__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-item__label {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-700);
  font-weight: 600;
}

/* 11. ABOUT INTRO */
.about-intro { background: var(--white); }
.about-intro .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about-intro__visual {
  position: relative;
}
.about-intro__visual .visual-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-intro__visual .visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  opacity: 0.85;
}
.visual-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
  text-align: center;
}
.visual-badge span { display: block; font-size: 0.7rem; font-family: var(--font-label); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }

.about-intro__text p { color: var(--muted); margin-bottom: 1.25rem; }
.about-intro__text .btn { margin-top: 0.5rem; }

/* 12. SERVICES GRID */
.services-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--mist);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.05) rotate(-3deg);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  max-width: none;
}

.service-card .link-arrow {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
  text-transform: uppercase;
}
.service-card:hover .link-arrow { gap: 0.6rem; }

/* 13. WHY CHOOSE US */
.why-us { background: var(--navy); }
.why-us h2, .why-us .eyebrow { color: var(--white); }
.why-us .section-header p { color: rgba(255,255,255,0.7); }
.why-us .gold-rule { background: var(--gold); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(201,162,39,0.08);
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(201,162,39,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover .why-card__icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.05) rotate(-3deg);
}

.why-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.6rem; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; max-width: none; }

/* 14. TEAM TEASER */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.partner-card {
  text-align: center;
}

.partner-card__photo {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
}

.partner-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: opacity 0.4s ease, transform 0.5s var(--ease-out);
}

.partner-card__photo .photo-color { opacity: 0; }
.partner-card__photo:hover .photo-color,
.partner-card:focus-within .photo-color { opacity: 1; }
.partner-card__photo:hover .photo-mono,
.partner-card:focus-within .photo-mono { opacity: 0; }
.partner-card:hover .partner-card__photo img { transform: scale(1.06); }

.partner-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.partner-card:hover .partner-card__photo::after { opacity: 1; }

.partner-card h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.partner-card__role {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 600;
}

.team-cta { text-align: center; margin-top: 3rem; }

/* 15. OFFICES */
.offices { background: var(--cream); }

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.office-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), transform var(--transition);
}
.office-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.office-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}
.office-card:hover::before { transform: scaleY(1); }

.office-card__tag {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.office-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.office-card p { font-size: 0.88rem; color: var(--muted); max-width: none; margin-bottom: 1.25rem; }
.office-card .directions-link {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--teal);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.office-card .directions-link:hover { color: var(--navy); }

/* 16. CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  padding-block: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px
  );
}

.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); max-width: 640px; margin-inline: auto; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 520px; margin-inline: auto; margin-bottom: 2rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* 17. FOOTER */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}

.footer-main {
  padding-block: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 3rem;
}

.footer-brand__logo { height: 40px; margin-bottom: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.88rem; max-width: 280px; line-height: 1.8; }
.footer-brand__tagline {
  margin-top: 1rem;
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a {
  display: inline-block;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition), transform var(--transition);
}
.footer-col a:hover { color: var(--gold-light); transform: translateX(4px); }

.footer-offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.footer-office h5 {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.footer-office p { color: rgba(255,255,255,0.6); font-size: 0.8rem; max-width: none; line-height: 1.6; }

.footer-contact { margin-top: 1.5rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  padding: 0.3rem 0;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact a svg { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  padding-block: 1.25rem;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold-light); }

/* 18. PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  padding-block: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 40px),
              repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.03) 40px);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: inherit; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero .subtitle { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 580px; }

/* 19. ABOUT PAGE */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.mvv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.mvv-card h3 { margin-bottom: 0.75rem; }
.mvv-card p { color: var(--muted); max-width: none; font-size: 0.95rem; }

.founder-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
}

.founder-block__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.founder-block__photo img { width: 100%; height: 100%; object-fit: cover; }

.founder-block blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.founder-block blockquote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  max-width: none;
}
.founder-block cite {
  display: block;
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-top: 0.75rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.approach-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.approach-card__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.approach-card:hover .approach-card__num {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.08);
}
.approach-card h4 { margin-bottom: 0.4rem; }
.approach-card p { color: var(--muted); font-size: 0.9rem; max-width: none; }

/* 20. SERVICES PAGE */
.services-nav {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  padding-block: 0.75rem;
  overflow-x: auto;
  position: sticky;
  top: 65px;
  z-index: 80;
}

.services-nav ul {
  display: flex;
  gap: 0.25rem;
  flex-wrap: nowrap;
  min-width: max-content;
  padding-inline: 1.25rem;
  max-width: var(--max-w);
  margin-inline: auto;
}

.services-nav a {
  white-space: nowrap;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  transition: all var(--transition);
}
.services-nav a:hover,
.services-nav a:focus-visible { background: var(--white); color: var(--navy); box-shadow: var(--shadow-soft); }

.service-detail {
  padding-block: 5rem;
}
.service-detail:nth-child(even) { background: var(--mist); }

.service-detail .container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: flex-start;
}

.service-detail__label {
  position: sticky;
  top: 110px;
}
.service-detail__icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-detail__label h2 { margin-bottom: 0.5rem; font-size: 1.8rem; }

.service-detail__body p { color: var(--muted); margin-bottom: 1.5rem; }
.service-detail__body ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-detail__body li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--ink);
  font-size: 0.95rem;
}
.service-detail__body li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%230E7C7B' opacity='.15'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='%230E7C7B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 0.2em;
}

/* 21. TEAM PAGE */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.partner-full {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), transform var(--transition);
}
.partner-full:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }

.partner-full__photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy);
}
.partner-full__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: opacity 0.4s ease, transform 0.5s var(--ease-out);
}
.partner-full__photo .photo-color { opacity: 0; }
.partner-full:hover .photo-color { opacity: 1; }
.partner-full:hover .photo-mono { opacity: 0; }
.partner-full:hover .partner-full__photo img { transform: scale(1.05); }

.partner-full__body {
  padding: 2rem;
}

.partner-full__role {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.partner-full h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }

.partner-full__quals {
  font-size: 0.85rem;
  color: var(--gold);
  font-family: var(--font-label);
  font-weight: 600;
  margin-bottom: 1rem;
}

.partner-full__spec {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.tag {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-family: var(--font-label);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.partner-full p { color: var(--muted); font-size: 0.92rem; max-width: none; }

/* 22. CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.form-card h2 { margin-bottom: 0.5rem; }
.form-card .sub { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.form-group label .req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,124,123,0.12);
}

.form-group textarea { min-height: 130px; resize: vertical; }
.form-group .error-msg { color: #c0392b; font-size: 0.8rem; margin-top: 0.3rem; display: none; }
.form-group.invalid .error-msg { display: block; }
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: #c0392b; }

.form-submit { width: 100%; justify-content: center; padding: 0.9rem; font-size: 1rem; }

.form-notice { font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; text-align: center; }
.form-notice a { color: var(--teal); }

.form-success,
.form-error-msg {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-error-msg { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.contact-info-card h3 { font-size: 1.05rem; margin-bottom: 1rem; }

.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.contact-links a:hover { color: var(--teal); }
.contact-links .ci-icon {
  width: 36px;
  height: 36px;
  background: var(--mist);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  transition: background var(--transition), color var(--transition);
}
.contact-links a:hover .ci-icon { background: var(--teal); color: var(--white); }
.wa-btn:hover { transform: translateY(-2px); }

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25d366;
  color: white;
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  font-weight: 700;
  font-family: var(--font-label);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.wa-btn:hover { background: #1da851; }

.office-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* 23. SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* 24. RESPONSIVE */
@media (min-width: 768px) {
  .about-intro .container { grid-template-columns: 1fr 1fr; }
  .main-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
  .hamburger { display: none; }
  .header-cta { margin-left: 0; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.6fr; }
}

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

@media (max-width: 767px) {
  .utility-bar .hide-mobile { display: none; }
  .header-cta { display: none; }
  .bottom-nav { display: block; }
  /* clear space so the floating bar never overlaps the footer */
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0)); }
  .story-grid { grid-template-columns: 1fr; }
  .founder-block { grid-template-columns: 1fr; padding: 2rem; }
  .founder-block__photo { display: none; }
  .service-detail .container { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail__label { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .office-cards-grid { grid-template-columns: 1fr; }

  /* ---- Mobile footer: centered, sectioned, touch-friendly ---- */
  .footer-main { padding-block: 2.75rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }

  /* brand block centers, tagline + logo aligned */
  .footer-brand__logo { margin-inline: auto; }
  .footer-brand p { max-width: 340px; margin-inline: auto; }

  /* each link column becomes a card-like section with a divider above */
  .footer-col { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.10); }
  .footer-col h4 { margin-bottom: 1rem; }

  /* quick-links / services as a centered two-column wrap for compactness */
  .footer-col ul { align-items: center; gap: 0.15rem; }
  .footer-col ul a {
    display: block;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    font-size: 0.92rem;
  }
  .footer-col a:hover { transform: none; background: rgba(255,255,255,0.06); }

  /* offices stay in 2 compact columns, left-aligned text inside each */
  .footer-offices-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem 1rem; text-align: left; }
  .footer-office h5 { font-size: 0.72rem; }
  .footer-office p { font-size: 0.78rem; }

  /* contact links become full-width tappable pills */
  .footer-contact { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-contact a {
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-weight: 600;
  }
  .footer-contact a:hover { background: rgba(201,162,39,0.12); border-color: rgba(201,162,39,0.4); }

  /* copyright row: stacked + centered */
  .footer-bottom { text-align: center; }
  .footer-bottom .container { justify-content: center; flex-direction: column; gap: 0.4rem; }

  /* ============================================================
     MOBILE — NATIVE APP HEADER (solid navy app bar)
     ============================================================ */

  /* hide the thin utility strip; its phone link lives in the drawer */
  .utility-bar { display: none; }

  /* solid navy bar, compact height, logo left + menu button right */
  .site-header {
    background: var(--navy);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: 0 2px 16px rgba(10,37,64,0.25);
  }
  .site-header.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 20px rgba(10,37,64,0.35);
  }
  .site-header .container {
    gap: 0.75rem;
    padding-block: 0.7rem;
    min-height: 56px;            /* native app-bar height */
  }
  /* swap to the white logo on the navy bar */
  .site-logo .logo-primary { display: none; }
  .site-logo .logo-white { display: block; height: 34px; }

  /* gold menu button — solid, high-contrast, clearly tappable */
  .hamburger {
    width: 44px;
    height: 44px;
    padding: 11px;
    border-radius: 12px;
    background: var(--gold);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  .hamburger:hover,
  .hamburger.open { background: var(--gold-light); }
  .hamburger span { background: var(--navy); transition: transform 0.3s, opacity 0.3s; }

  /* drawer: roomy native list, sits flush under the navy bar */
  .mobile-nav {
    padding: 0.5rem 0.75rem 1.25rem;
    border-top: none;
  }
  .mobile-nav ul { gap: 0; }
  .mobile-nav a {
    font-size: 1rem;
    padding: 0.95rem 1rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .mobile-nav li:last-child a { border-bottom: none; }
  .mobile-nav a[aria-current="page"] {
    color: var(--teal);
    background: var(--mist);
    border-radius: 8px;
  }
  .mobile-nav .btn { margin-top: 1rem; padding-block: 0.9rem; }

  /* contact row inside the drawer (replaces the removed utility strip) */
  .mobile-nav__contact {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }
  .mobile-nav__contact a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: var(--font-label);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav__contact a svg { color: var(--teal); }
  .mobile-nav__contact a:hover { background: var(--mist); }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .slide h1 { font-size: 1.8rem; }
  .stats-band .container { gap: 1.5rem 2rem; }
}

/* 25. UTILITY */
.bg-mist { background: var(--mist); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* 26. REDUCED MOTION — respect user preference */
@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;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__accent { animation: none; }
  .bottom-nav { animation: none; }
  .wa-fab { animation: none; }
}
