/* ============================================================
   Mhangwana Commercial & Financial Accountants — Design System
   ============================================================ */

:root {
  /* Palette — neutral-first. Backgrounds are white/grey, text is a
     muted charcoal-slate, and the logo's orange (#ff8200) is used
     sparingly as the single accent (buttons, small icons, links). */
  --navy-950: #1c1e22;
  --navy-900: #24272c;
  --navy-800: #2f3238;
  --navy-700: #40444b;
  --navy-600: #565b63;
  --gold-600: #b85a12;
  --gold-500: #e66f00;
  --gold-400: #ff8200;
  --gold-100: #fdece0;
  --orange-600: #e66f00;
  --orange-500: #ff8200;
  --cream: #faf6f2;
  --white: #ffffff;
  --ink: #23262b;
  --gray-700: #454a52;
  --gray-600: #5c626b;
  --gray-400: #8a8f97;
  --gray-300: #d7dade;
  --gray-200: #e9e5e0;
  --gray-100: #f4f1ed;

  /* Type */
  --font-display: "Libre Franklin", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(11, 29, 51, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 29, 51, 0.10);
  --shadow-lg: 0 24px 64px rgba(11, 29, 51, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 15px; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
svg { display: block; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 900px) {
  .container { padding: 0 40px; }
}

section { position: relative; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
h4 { font-size: 1.05rem; }

/* Visual "mini heading" for captions/labels that shouldn't be document-outline
   headings (avoids skipping heading levels) — same look as h4, just a <p>. */
.mini-title {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  font-weight: 600;
  font-size: 1.05rem;
}

p { color: var(--gray-700); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600) !important;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.section-navy .eyebrow, .page-header .eyebrow, .hero-copy .eyebrow, .cta-banner .eyebrow { color: var(--gold-400) !important; }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 8px 20px rgba(255, 130, 0, 0.35);
}
.btn-gold:hover { box-shadow: 0 12px 28px rgba(255, 130, 0, 0.48); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--gray-300);
}
.btn-ghost:hover { border-color: var(--navy-900); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Icon tiles (warm, welcoming) ---------- */
.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--gold-100), #ffe0c2);
  border: 1px solid rgba(230,111,0,0.14);
  color: var(--gold-600);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.icon-tile svg { width: 22px; height: 22px; stroke-width: 1.6; }
.card:hover .icon-tile, .contact-card:hover .icon-tile { transform: scale(1.08) rotate(-4deg); }
/* used on dark sections — needs to stay visible against a dark background */
.icon-tile.gold {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: var(--orange-500);
}
.icon-tile.light {
  background: var(--gold-100);
  border-color: rgba(230,111,0,0.18);
  color: var(--gold-600);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(248, 245, 238, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(11, 29, 51, 0.08);
}

.topbar {
  background: var(--navy-950);
  color: var(--gray-300);
  font-size: 0.8rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-links { display: flex; gap: 20px; }
.topbar-links a, .topbar-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar-links a:hover { color: var(--gold-400); }
.topbar svg { width: 14px; height: 14px; color: var(--gold-400); }
.topbar-hide-mobile { display: none; }
@media (min-width: 720px) { .topbar-hide-mobile { display: inline-flex; } }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo-card {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand-logo-img { height: 38px; width: auto; display: block; border-radius: 3px; }
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--orange-500), var(--orange-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 24px; height: 24px; stroke-width: 1.7; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--navy-900);
}
.brand-text .tagline {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-800);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy-950); font-weight: 600; }

.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--white);
  border: none;
  flex-shrink: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-menu { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

@media (min-width: 980px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--navy-950);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-menu-close {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-close svg { width: 22px; height: 22px; }
.mobile-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.mobile-links a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.7rem;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-links a svg { width: 20px; height: 20px; color: var(--gold-400); }
.mobile-menu-contact { display: flex; flex-direction: column; gap: 14px; margin-top: auto; padding-top: 24px; }
.mobile-menu-contact a { display: flex; align-items: center; gap: 12px; color: var(--gray-300); font-size: 0.95rem; }
.mobile-menu-contact svg { width: 18px; height: 18px; color: var(--gold-400); }
body.menu-open { overflow: hidden; }

/* ---------- Hero (light, warm and welcoming) ---------- */
.hero {
  position: relative;
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,130,0,0.16) 0%, transparent 70%);
  top: -220px; right: -140px;
  filter: blur(6px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,130,0,0.10) 0%, transparent 70%);
  bottom: -180px; left: -120px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding-top: 56px;
  padding-bottom: 64px;
  display: grid;
  gap: 44px;
}
.hero-copy { max-width: 640px; }
.hero-copy h1 { color: var(--navy-950); margin-top: 10px; }
.hero-copy h1 em { font-style: normal; color: var(--gold-500); }
.hero-copy p { color: var(--gray-700); font-size: 1.1rem; margin-top: 20px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 40px;
  max-width: 560px;
}
@media (min-width: 720px) {
  .hero-badges { grid-template-columns: repeat(4, 1fr); max-width: none; gap: 10px; }
  .hero-badge { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; padding: 12px 12px; }
  .hero-badge span { font-size: 0.78rem; line-height: 1.3; }
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hero-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: rgba(230,111,0,0.25); }
.hero-badge svg { width: 20px; height: 20px; color: var(--gold-500); flex-shrink: 0; }
.hero-badge span { font-size: 0.84rem; color: var(--navy-900); font-weight: 500; }

.hero-panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 30px 28px;
  box-shadow: 0 20px 48px rgba(230,111,0,0.10), var(--shadow-sm);
}
.hero-panel::before {
  content: "";
  position: absolute;
  top: -1px; left: 30px; right: 30px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
}
.hero-panel-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.hero-panel-row:last-child { border-bottom: none; }
.hero-panel-row .icon-tile { width: 44px; height: 44px; }
.hero-panel-row .icon-tile svg { width: 21px; height: 21px; }
.hero-panel-row h4, .hero-panel-row .mini-title { color: var(--navy-950); margin-bottom: 4px; }
.hero-panel-row p { color: var(--gray-600); font-size: 0.87rem; margin: 0; }

@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; align-items: center; padding-top: 96px; padding-bottom: 100px; }
}

/* ---------- Trusted-by carousel (auto-scrolling marquee) ---------- */
.strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 26px 0;
}
.strip-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}
.carousel {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.carousel-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: carousel-scroll 30s linear infinite;
}
.carousel:hover .carousel-track,
.carousel:focus-within .carousel-track { animation-play-state: paused; }
@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}
.client-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--navy-800);
  font-weight: 600;
  font-size: 0.84rem;
  border: 1px solid var(--gray-200);
  white-space: nowrap;
  flex-shrink: 0;
}
.client-chip svg { width: 15px; height: 15px; color: var(--gold-600); flex-shrink: 0; }

/* Static (non-scrolling) client row — wraps and centers, no animation */
.client-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.client-row .client-chip {
  padding: 12px 22px;
  font-size: 0.9rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.client-row .client-chip svg { width: 17px; height: 17px; }
@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; }
}

/* ---------- Generic sections ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 60px 0; }
.section-navy { background: var(--navy-950); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: var(--gray-300); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

/* ---------- Services grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.card .icon-tile { margin-bottom: 20px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; margin: 0; }
.card .tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.card-list { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.card-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gray-700); }
.card-list svg { width: 16px; height: 16px; color: var(--gold-600); flex-shrink: 0; margin-top: 3px; }

/* Feature row (icon left, text right) */
.feature-row { display: flex; gap: 18px; align-items: flex-start; }
.feature-row p { font-size: 0.92rem; margin-top: 6px; }

/* ---------- Split section ---------- */
.split {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse > *:first-child { order: 2; }
}

.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visual-card::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,130,0,0.14), transparent 70%);
  bottom: -140px; left: -100px;
}
.visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
.visual-stat { padding: 18px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.visual-stat svg { width: 22px; height: 22px; color: var(--gold-400); margin-bottom: 10px; }
.visual-stat strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--white); margin-bottom: 4px; }
.visual-stat span { font-size: 0.78rem; color: var(--gray-400); }

/* ---------- Values / process ---------- */
.value-item { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--gray-200); }
.value-item:last-child { border-bottom: none; }
.value-num { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-500); width: 46px; flex-shrink: 0; }

.timeline { display: flex; flex-direction: column; }
.timeline-item { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding-bottom: 34px; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-900); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.timeline-dot svg { width: 22px; height: 22px; }
.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 22px; top: 46px; bottom: -6px;
  width: 2px;
  background: var(--gray-300);
}

/* ---------- Team ---------- */
.team-card { text-align: center; padding: 36px 24px; }
.team-avatar {
  width: 92px; height: 92px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  border: 3px solid var(--gold-100);
}
.team-avatar svg { width: 40px; height: 40px; stroke-width: 1.5; }
.team-card h3 { margin-bottom: 4px; }
.team-role { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 12px; }
.team-contact { display: flex; flex-direction: column; gap: 6px; align-items: center; margin-top: 14px; }
.team-contact a { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--gray-600); }
.team-contact svg { width: 14px; height: 14px; color: var(--gold-600); }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,130,0,0.13), transparent 70%);
  top: -160px; right: -120px;
}
.cta-banner h2 { color: var(--white); max-width: 520px; position: relative; }
.cta-banner p { color: var(--gray-300); max-width: 480px; position: relative; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; position: relative; }
@media (min-width: 860px) {
  .cta-banner { flex-direction: row; align-items: center; justify-content: space-between; padding: 56px 56px; }
}

/* ---------- Testimonial ---------- */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-200);
  position: relative;
}
.quote-card svg.quote-mark { width: 34px; height: 34px; color: var(--gold-400); margin-bottom: 14px; }
.quote-card p.quote-text { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy-900); font-style: italic; margin-bottom: 20px; }
.quote-author { display: flex; align-items: center; gap: 12px; }
.quote-author-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-100); color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
}
.quote-author-mark svg { width: 20px; height: 20px; }
.quote-author strong { display: block; font-size: 0.9rem; color: var(--navy-900); }
.quote-author span { font-size: 0.78rem; color: var(--gray-500); }

/* ---------- Photo grid (real photography) ---------- */
.photo-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }

.photo-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  isolation: isolate;
  background: var(--gray-100);
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.photo-tile:hover img { transform: scale(1.06); }
.photo-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,30,34,0.02) 45%, rgba(28,30,34,0.82) 100%);
  pointer-events: none;
}
.photo-tile-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px; z-index: 1; }
.photo-tile-caption h4, .photo-tile-caption .mini-title { color: var(--white); margin-bottom: 2px; }
.photo-tile-caption span { font-size: 0.78rem; color: var(--gray-300); }

/* ---------- Contact ---------- */
.contact-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.contact-card h4, .contact-card .mini-title { margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--gray-600); }
.contact-card a:hover { color: var(--gold-600); }

.form-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--navy-800); }
.form-field input, .form-field textarea, .form-field select {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(255,130,0,0.18);
}
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.form-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.hours-table { display: flex; flex-direction: column; gap: 0; margin-top: 18px; }
.hours-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.9rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--navy-800); font-weight: 600; }
.hours-row span:last-child { color: var(--gray-600); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--gray-400); padding: 68px 0 0; }
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand .brand-text .name { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: 0.88rem; max-width: 280px; color: var(--gray-400); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; color: var(--gray-400); }
.footer-col a:hover { color: var(--gold-400); }
.footer-col .contact-line { display: flex; gap: 10px; align-items: flex-start; }
.footer-col .contact-line svg { width: 16px; height: 16px; color: var(--gold-400); margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--gold-500); color: var(--navy-950); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 32px;
  font-size: 0.8rem;
  text-align: center;
}
@media (min-width: 720px) { .footer-bottom { flex-direction: row; text-align: left; } }
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Breadcrumb / page header ---------- */
.page-header {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
  padding: 48px 0 52px;
  position: relative;
}
.page-header .eyebrow { position: relative; }
.page-header h1 { color: var(--navy-950); position: relative; max-width: 720px; margin-top: 8px; }
.page-header p { color: var(--gray-700); margin-top: 14px; max-width: 560px; position: relative; font-size: 1.03rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gray-400); margin-bottom: 18px; position: relative; }
.breadcrumb svg { width: 14px; height: 14px; }
.breadcrumb a:hover { color: var(--gold-600); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute;
  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-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   Layout patterns — split hero, bento grid, divided list.
   These give the homepage a distinct silhouette instead of the
   generic hero → card-grid → card-grid → CTA-box template shape.
   ============================================================ */

/* ---------- Split-screen hero (two colour blocks, no floating card) ---------- */
.hero-split { display: grid; grid-template-columns: 1fr; }
@media (min-width: 980px) { .hero-split { grid-template-columns: 58% 42%; } }

.hero-split-navy {
  background: radial-gradient(ellipse 140% 100% at 0% 0%, var(--navy-800) 0%, var(--navy-950) 68%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
}
.hero-split-navy::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,130,0,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,130,0,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 78%);
  pointer-events: none;
}
.hero-split-inner { position: relative; padding: 0 24px; max-width: 620px; }
@media (min-width: 980px) { .hero-split-inner { padding: 0 28px 0 40px; margin-left: auto; max-width: 560px; } }
@media (min-width: 900px) { .hero-split-inner { padding: 0 40px; } }

.hero-split-navy h1 { color: var(--white); margin-top: 14px; }
.hero-split-navy h1 em { font-style: normal; color: var(--orange-500); }
.hero-split-navy p.lead { color: var(--gray-300); font-size: 1.08rem; margin-top: 20px; max-width: 520px; }
.hero-split-navy .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-badge-rail { display: flex; flex-direction: column; margin-top: 38px; border-top: 1px solid rgba(255,255,255,0.14); position: relative; }
.hero-badge-rail-item { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.hero-badge-rail-item svg { width: 19px; height: 19px; color: var(--orange-500); flex-shrink: 0; }
.hero-badge-rail-item span { font-size: 0.86rem; color: var(--gray-200); font-weight: 500; }

.hero-split-orange {
  background: linear-gradient(155deg, var(--orange-500), var(--orange-600));
  color: var(--navy-950);
  position: relative;
  padding: 48px 0;
  display: flex;
  align-items: center;
}
.hero-split-orange-inner { padding: 0 24px; width: 100%; }
@media (min-width: 980px) { .hero-split-orange-inner { padding: 0 40px 0 32px; max-width: 480px; } }
@media (min-width: 900px) and (max-width: 979px) { .hero-split-orange-inner { padding: 0 40px; } }

.hero-split-orange .eyebrow-inv {
  display: inline-block;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(21,13,52,0.65);
  margin-bottom: 18px;
}
.hero-service-list { display: flex; flex-direction: column; }
.hero-service-item { display: flex; gap: 15px; align-items: flex-start; padding: 17px 0; border-bottom: 1px solid rgba(21,13,52,0.18); }
.hero-service-item:last-child { border-bottom: none; }
.hero-service-item .icon-tile { background: var(--navy-950); color: var(--orange-500); width: 42px; height: 42px; }
.hero-service-item .icon-tile svg { width: 21px; height: 21px; }
.hero-service-item h4 { color: var(--navy-950); margin-bottom: 3px; font-size: 0.98rem; }
.hero-service-item p { color: rgba(21,13,52,0.78); font-size: 0.84rem; margin: 0; }

/* ---------- Bento mosaic grid (replaces uniform card grids) ---------- */
.bento-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    grid-template-areas:
      "a a b c"
      "a a d e"
      "f f d e";
    gap: 20px;
  }
  .bento-a { grid-area: a; }
  .bento-b { grid-area: b; }
  .bento-c { grid-area: c; }
  .bento-d { grid-area: d; }
  .bento-e { grid-area: e; }
  .bento-f { grid-area: f; }
}
.bento-grid .card { height: 100%; display: flex; flex-direction: column; justify-content: flex-start; }
.bento-grid .bento-a {
  padding: 34px 30px;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  border-color: transparent;
}
.bento-grid .bento-a h3 { color: var(--white); font-size: 1.5rem; }
.bento-grid .bento-a p { color: var(--gray-300); font-size: 1rem; }
.bento-grid .bento-a .icon-tile { background: linear-gradient(150deg, var(--orange-500), var(--orange-600)); color: var(--white); }
.bento-grid .bento-a .tag { color: var(--orange-500); }
@media (min-width: 980px) { .bento-grid .bento-a { justify-content: center; } }

.bento-grid .card:not(.bento-a) { padding: 20px; }
.bento-grid .card:not(.bento-a) .icon-tile { width: 40px; height: 40px; margin-bottom: 10px; }
.bento-grid .card:not(.bento-a) .icon-tile svg { width: 19px; height: 19px; }
.bento-grid .card:not(.bento-a) h3 { font-size: 1rem; margin-bottom: 4px; }
.bento-grid .card:not(.bento-a) p { font-size: 0.82rem; line-height: 1.4; }
.bento-grid .card:not(.bento-a) .tag { display: none; }
@media (min-width: 980px) { .bento-grid .card:not(.bento-a) { justify-content: center; } }

/* ---------- Divided list (horizontal rule-separated items, not boxed cards) ---------- */
.divided-list { display: flex; flex-direction: column; }
@media (min-width: 900px) { .divided-list { flex-direction: row; } }
.divided-item { display: flex; gap: 16px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.divided-item:last-child { border-bottom: none; }
@media (min-width: 900px) {
  .divided-item { flex: 1; flex-direction: column; gap: 14px; padding: 6px 30px; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.12); }
  .divided-item:last-child { border-right: none; }
}
.divided-item h3 { font-size: 1.05rem; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
