/* ===========================================================
   Louw Lubbe Personal Financial Advice
   Brand: Old Mutual (green / gold)
   =========================================================== */

:root {
  /* Old Mutual brand palette — refined to match the OM logo */
  --om-green:      #00A551;          /* OM signature green */
  --om-green-dk:   #007749;          /* OM darker green */
  --om-green-deep: #00432A;          /* OM deep green for backgrounds */
  --om-green-soft: #E6F4EC;          /* mint tint */
  --accent:        #B89968;          /* muted bronze from LL logo */
  --accent-soft:   #D8C49A;
  --om-gold:       var(--accent);    /* legacy alias */
  --om-gold-soft:  var(--accent-soft);
  --ink:           #14201B;
  --slate:         #4A5853;
  --mute:          #7A8580;
  --line:          #E4E8E6;
  --paper:         #FBFAF8;          /* matches LL logo background exactly */
  --cream:         #F4F1EA;
  --white:         #FFFFFF;

  --maxw: 1240px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(20,32,27,.06), 0 1px 1px rgba(20,32,27,.04);
  --shadow-md: 0 10px 30px -10px rgba(20,32,27,.18), 0 4px 12px -6px rgba(20,32,27,.08);
  --shadow-lg: 0 30px 60px -20px rgba(0,99,65,.25), 0 10px 24px -12px rgba(20,32,27,.12);

  --t-fast: 180ms ease;
  --t-med:  280ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--slate); }
a { color: var(--om-green-dk); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--om-green); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--om-green-dk);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--om-gold);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FBFAF8;            /* matches LL logo background exactly */
  border-bottom: 1px solid rgba(184,153,104,.25);
  box-shadow: 0 2px 16px rgba(20,32,27,.04);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 0;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  display: block;
  height: 110px;
  width: auto;
  transition: transform var(--t-fast);
}
.brand:hover img { transform: scale(1.03); }
@media (max-width: 768px) {
  .brand img { height: 96px; }
  .nav { padding: .25rem 0; }
}
@media (max-width: 480px) {
  .brand img { height: 84px; }
}
/* Footer keeps a compact stacked mark for legibility on dark bg */
.brand-stack {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--white);
}
.brand-stack .mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
}
.brand-stack .mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-stack span { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 500; color: var(--white); }
.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
@media (min-width: 880px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: .35rem 0;
}
.nav-links a.is-active { color: var(--om-green-dk); }
.nav-links a.is-active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--om-gold); border-radius: 2px;
}
.btn.nav-cta { display: none; }
@media (min-width: 880px) { .btn.nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  cursor: pointer;
}
@media (min-width: 880px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-drawer {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(600px 300px at 80% -10%, rgba(0,167,81,.10), transparent 60%),
    radial-gradient(500px 250px at -10% 110%, rgba(184,153,104,.10), transparent 60%),
    var(--paper);
  z-index: 60;
  padding: 6rem 1.75rem 2rem;
  transform: translateY(-100%);
  transition: transform var(--t-med);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer::before {
  content: '';
  position: absolute;
  top: 1.5rem; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 64px;
  background: url('../images/brand/bridge.png') center/contain no-repeat;
  opacity: .8;
}
.mobile-drawer a:not(.btn) {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--ink);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(184,153,104,.25);
  text-align: center;
  transition: color var(--t-fast), padding var(--t-fast);
  position: relative;
}
.mobile-drawer a:not(.btn):hover,
.mobile-drawer a:not(.btn).is-active {
  color: var(--om-green-dk);
}
.mobile-drawer a:not(.btn).is-active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 2px;
  background: var(--om-green-dk);
}
.mobile-drawer .btn {
  margin: 2rem auto 0;
  color: var(--white);
  font-size: 1rem;
  padding: 1rem 2rem;
  align-self: center;
}
.mobile-drawer .btn:hover { color: var(--white); }
.mobile-drawer .drawer-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184,153,104,.25);
  text-align: center;
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.8;
}
.mobile-drawer .drawer-contact a {
  color: var(--om-green-dk);
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  padding: .25rem 0 !important;
  border: none !important;
  text-align: center !important;
}
.mobile-drawer .drawer-contact .label {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: .35rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.mobile-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 50%; cursor: pointer;
  display: grid; place-items: center;
  color: var(--ink);
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-close:hover { background: var(--om-green-dk); color: var(--white); border-color: var(--om-green-dk); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--om-green-dk);
  color: var(--white);
}
.btn-primary:hover { background: var(--om-green); color: var(--white); box-shadow: var(--shadow-md); }
.btn-gold {
  background: var(--om-gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--om-gold-soft); color: var(--ink); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover { background: var(--white); color: var(--om-green-deep); }
.btn .ico { width: 16px; height: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(0,154,68,.10), transparent 60%),
    radial-gradient(800px 400px at -10% 110%, rgba(184,153,104,.14), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(.25rem, 1vw, 1rem) 0 clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 4rem; }
}
.hero h1 strong {
  color: var(--om-green-dk);
  font-weight: 500;
  font-style: italic;
}
.hero-lead {
  font-size: 1.13rem;
  max-width: 36em;
  color: var(--slate);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.hero-meta {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.hero-meta .stat strong {
  font-family: 'Fraunces', serif;
  display: block;
  font-size: 1.6rem;
  color: var(--om-green-dk);
  line-height: 1;
  margin-bottom: .25rem;
}
.hero-meta .stat span {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mute);
}
.hero-visual {
  position: relative;
}
.hero-visual .photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.hero-visual .photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-med) cubic-bezier(.2,.7,.2,1), filter var(--t-med);
}
.hero-visual:hover .photo {
  transform: translateY(-6px);
  box-shadow: 0 50px 90px -25px rgba(0,67,42,.35), 0 25px 50px -15px rgba(20,32,27,.18);
}
.hero-visual:hover .photo img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(1.02);
}
.hero-visual::before {
  transition: transform var(--t-med);
}
.hero-visual:hover::before {
  transform: translate(-6px, 6px);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -20px -20px auto auto;
  width: 70%;
  height: 70%;
  border: 1.5px solid var(--om-gold);
  border-radius: var(--r-lg);
  z-index: 0;
}
.hero-visual .badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: var(--white);
  padding: .8rem 1rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .75rem;
  max-width: 260px;
}
.hero-visual .badge .dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--om-green-dk);
  color: var(--white);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 1rem;
}
.hero-visual .badge small {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mute);
  display: block;
}
.hero-visual .badge strong { font-family: 'Fraunces', serif; font-weight: 500; color: var(--ink); font-size: .95rem; }

/* ---------- Trust strip (redesigned, sits flush under hero) ---------- */
.trust-strip {
  border: none;
  background: var(--white);
  padding: 0;
  margin: 0;
  width: 100%;
}
.trust-strip .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
@media (min-width: 640px) {
  .trust-strip .row { grid-template-columns: repeat(4, 1fr); }
}
.trust-strip .row .trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--line);
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  transition: background var(--t-fast);
  text-align: center;
}
.trust-strip .row .trust:last-child { border-right: none; }
.trust-strip .row .trust:hover { background: var(--paper); }
.trust-strip .row .trust .num {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--om-green-dk);
  letter-spacing: -.01em;
  font-weight: 600;
  text-transform: none;
  line-height: 1;
}
.trust-strip .row .trust .lbl { font-size: .72rem; color: var(--mute); }
.trust-strip .row .trust .mark {
  width: 38px; height: 38px;
  background: rgba(0,119,73,.08);
  color: var(--om-green-dk);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-strip .row .trust .mark svg { width: 20px; height: 20px; }
.trust-strip .row .trust .copy { text-align: left; }
.trust-strip .row .trust .copy strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -.01em;
  margin-bottom: .15rem;
}
.trust-strip .row .trust .copy small {
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--mute);
}
@media (max-width: 640px) {
  .trust-strip .row .trust { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-strip .row .trust:last-child { border-bottom: none; }
}

/* ---------- Section heading ---------- */
.s-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 880px) {
  .s-head { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; }
}
.s-head h2 { margin: 0; }
.s-head p { margin: 0; max-width: 38em; }

/* ---------- Services grid (home) ---------- */
.svc-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }

.svc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--om-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.svc-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-md); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card .ico-wrap {
  width: 52px; height: 52px;
  background: rgba(0,99,65,.08);
  color: var(--om-green-dk);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 1.1rem;
}
.svc-card h3 { font-size: 1.18rem; margin-bottom: .4rem; }
.svc-card p { font-size: .94rem; margin: 0 0 1.1rem; }
.svc-card .link {
  font-size: .85rem; font-weight: 600;
  color: var(--om-green-dk);
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: auto;
}
.svc-card .link::after {
  content: '→'; transition: transform var(--t-fast);
}
.svc-card:hover .link::after { transform: translateX(4px); }

/* ---------- Value props (home) ---------- */
.values-section { background: var(--cream); }
.values-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 880px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-tile {
  padding: 1.8rem 1.4rem;
  background: var(--white);
  border-radius: var(--r-md);
  text-align: center;
  border-top: 3px solid var(--om-gold);
}
.value-tile .ico {
  width: 48px; height: 48px;
  background: var(--om-green-dk);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 1rem;
}
.value-tile h4 { font-size: 1.1rem; margin-bottom: .3rem; color: var(--om-green-deep); }
.value-tile p { font-size: .88rem; margin: 0; }

/* ---------- Split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 980px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split.reverse > :first-child { order: 2; }
}
.split-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 6;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img.wide { aspect-ratio: 4/3; }

.legacy-photo {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid;
  place-items: end center;
  aspect-ratio: 5/6;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.legacy-photo::before {
  content: '';
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(184,153,104,.18), transparent 70%);
}
.legacy-photo img {
  position: relative;
  max-width: 92%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}
.legacy-photo .caption {
  position: absolute;
  top: clamp(1.2rem, 2.5vw, 1.8rem);
  left: clamp(1.2rem, 2.5vw, 1.8rem);
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--om-green-dk);
}

.legacy-block {
  background: var(--om-green-deep);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
}
.legacy-block h2, .legacy-block h3 { color: var(--white); }
.legacy-block p { color: rgba(255,255,255,.85); }
.legacy-block .eyebrow { color: var(--om-gold); }
.legacy-block .eyebrow::before { background: var(--om-gold); }

/* ---------- CTA banner ---------- */
.cta-band {
  background:
    radial-gradient(600px 300px at 100% 50%, rgba(184,153,104,.22), transparent 70%),
    linear-gradient(120deg, var(--om-green-deep) 0%, var(--om-green-dk) 70%);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 880px) {
  .cta-band { grid-template-columns: 1.4fr 1fr; }
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  right: -40px; bottom: -60px;
  background: var(--om-gold);
  border-radius: 50%;
  opacity: .14;
}
.cta-band h2 { color: var(--white); margin-bottom: .4rem; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-start; }
@media (min-width: 880px) { .cta-band .actions { justify-content: flex-end; } }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card .ph {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--om-green-dk), var(--om-green));
  display: grid; place-items: center;
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.team-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.team-card .ph::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,63,46,.55) 100%);
}
.team-card .body { padding: 1.3rem 1.3rem 1.6rem; }
.team-card h3 { font-size: 1.15rem; margin-bottom: .15rem; }
.team-card .role {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--om-green-dk);
  margin-bottom: .8rem;
}
.team-card p { font-size: .9rem; margin: 0; }

/* ---------- Services detail (services page) ---------- */
.svc-detail {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}
.svc-detail:last-of-type { border-bottom: none; }
@media (min-width: 980px) {
  .svc-detail { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .svc-detail.alt > :first-child { order: 2; }
}
.svc-detail-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.svc-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail-img .tag {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--white);
  padding: .4rem .8rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--om-green-dk);
  box-shadow: var(--shadow-sm);
}
.svc-detail h2 { margin-bottom: .9rem; }
.svc-detail ul { list-style: none; padding: 0; margin: 1.2rem 0; }
.svc-detail ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .55rem;
  font-size: .95rem;
  color: var(--slate);
}
.svc-detail ul li::before {
  content: '';
  position: absolute; left: 0; top: .55em;
  width: 16px; height: 2px;
  background: var(--om-gold);
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--cream); }
.faq {
  display: grid;
  gap: .75rem;
  max-width: 880px;
  margin-inline: auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow var(--t-fast), border-color var(--t-fast);
}
.faq-item.is-open { border-color: var(--om-green); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.1rem 1.3rem;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-q .plus {
  flex: 0 0 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,99,65,.08);
  color: var(--om-green-dk);
  display: grid; place-items: center;
  font-size: 1.1rem;
  transition: transform var(--t-med), background var(--t-fast);
}
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); background: var(--om-green-dk); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
}
.faq-a > div { padding: 0 1.3rem 1.3rem; color: var(--slate); font-size: .96rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.contact-card:hover { border-color: var(--om-green); transform: translateY(-2px); }
.contact-card .ico {
  flex: 0 0 44px; height: 44px;
  background: rgba(0,99,65,.08);
  color: var(--om-green-dk);
  border-radius: 12px;
  display: grid; place-items: center;
}
.contact-card .lbl {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  display: block;
  margin-bottom: .15rem;
}
.contact-card .val { font-family: 'Fraunces', serif; font-size: 1.05rem; color: var(--ink); }
.contact-card a.val { color: var(--ink); }
.contact-card a.val:hover { color: var(--om-green-dk); }

.contact-stack { display: grid; gap: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--om-green-deep);
  color: rgba(255,255,255,.78);
  padding: 3.5rem 0 1.5rem;
}
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; font-family: 'Inter', sans-serif; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--om-gold); }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid .brand { color: var(--white); margin-bottom: 1rem; }
.footer-grid .brand-text small { color: rgba(255,255,255,.55); }
.footer-grid p { color: rgba(255,255,255,.7); font-size: .92rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-grid ul li { font-size: .92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.socials { display: flex; gap: .6rem; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.socials a:hover { background: var(--om-gold); border-color: var(--om-gold); color: var(--om-green-deep); }
.socials svg { width: 16px; height: 16px; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    linear-gradient(135deg, rgba(0,63,46,.92) 0%, rgba(0,99,65,.88) 100%),
    url('../images/about/louw-portrait.jpg') center/cover no-repeat;
  color: var(--white);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero.services-hero {
  background:
    linear-gradient(135deg, rgba(0,63,46,.94) 0%, rgba(0,99,65,.86) 100%),
    radial-gradient(circle at 80% 30%, rgba(184,153,104,.32), transparent 50%);
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border: 1.5px solid rgba(184,153,104,.4);
  border-radius: 50%;
  right: -120px; top: -120px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero .eyebrow { color: var(--om-gold); }
.page-hero .eyebrow::before { background: var(--om-gold); }
.page-hero p { color: rgba(255,255,255,.88); max-width: 42em; font-size: 1.1rem; }
.crumbs { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.crumbs a { color: rgba(255,255,255,.85); }
.crumbs span { margin: 0 .5rem; opacity: .5; }

/* ---------- About: Story / Qualifications ---------- */
.qual-block {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 880px) { .qual-block { grid-template-columns: 1fr 1.4fr; } }
.qual-block .seal {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
}
.qual-block .seal img { margin-inline: auto; max-width: 220px; }
.qual-block h2 { margin-bottom: .8rem; }
.qual-block .pill {
  display: inline-block;
  padding: .35rem .8rem;
  background: rgba(0,99,65,.08);
  color: var(--om-green-dk);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  margin-right: .4rem;
  margin-bottom: .4rem;
}

/* ---------- Modal (popup forms) ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,32,27,.55);
  backdrop-filter: blur(6px);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
  display: grid; place-items: center;
  padding: 1rem;
  overflow-y: auto;
}
.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--white);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 560px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  transform: translateY(20px) scale(.98);
  transition: transform var(--t-med);
  box-shadow: var(--shadow-lg);
  max-height: 92vh;
  overflow-y: auto;
}
.modal-backdrop.is-open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: .8rem; right: .8rem;
  width: 38px; height: 38px;
  border: none;
  background: var(--paper);
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  display: grid; place-items: center;
  transition: background var(--t-fast);
}
.modal-close:hover { background: var(--om-gold); }
.modal h3 {
  font-size: 1.6rem;
  margin-bottom: .35rem;
  color: var(--om-green-deep);
}
.modal .lead { font-size: .96rem; margin-bottom: 1.5rem; }

/* Interest chips */
.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.interest {
  position: relative;
  cursor: pointer;
}
.interest input {
  position: absolute; opacity: 0; pointer-events: none;
}
.interest .chip {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink);
  transition: all var(--t-fast);
}
.interest .chip .ico {
  width: 24px; height: 24px;
  color: var(--om-green-dk);
}
.interest:hover .chip { border-color: var(--om-green); }
.interest input:checked + .chip {
  background: var(--om-green-dk);
  border-color: var(--om-green-dk);
  color: var(--white);
}
.interest input:checked + .chip .ico { color: var(--om-gold); }

/* Form fields */
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .35rem;
  letter-spacing: .04em;
  color: var(--ink);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: .8rem .95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .94rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--om-green);
  box-shadow: 0 0 0 3px rgba(0,154,68,.15);
}
.field textarea { resize: vertical; min-height: 90px; }
.field .row2 { display: grid; gap: .8rem; }
@media (min-width: 540px) { .field .row2 { grid-template-columns: 1fr 1fr; } }
.fine-print { font-size: .78rem; color: var(--mute); margin: 0 0 1rem; }

.form-success {
  display: none;
  padding: 1.5rem;
  background: rgba(0,154,68,.08);
  border: 1.5px solid var(--om-green);
  border-radius: var(--r-md);
  text-align: center;
}
.form-success.is-visible { display: block; }
.form-success .check {
  width: 48px; height: 48px;
  background: var(--om-green-dk);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto .8rem;
}
.form-success h4 { color: var(--om-green-deep); margin-bottom: .4rem; }

/* ---------- Misc helpers ---------- */
.center { text-align: center; }
.muted { color: var(--mute); }
.shadow-soft { box-shadow: var(--shadow-md); }
.divider {
  width: 60px; height: 2px;
  background: var(--om-gold);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
.divider.center { margin-inline: auto; }

/* Floating CTA button (mobile) */
.float-cta {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 40;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 880px) { .float-cta { display: none; } }

/* ============================================================
   ===== REDESIGN OVERRIDES (v4) =================================
   ============================================================ */

/* Full-bleed utility — spans full viewport width inside a container */
.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ----- Page hero with image background ----- */
.page-hero {
  background: none;
  padding: 0;
  height: clamp(360px, 50vw, 520px);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.page-hero::after { display: none; }
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95);
}
.page-hero .hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,67,42,.45) 0%, rgba(0,67,42,.55) 50%, rgba(0,67,42,.85) 100%);
}
.page-hero .container { position: relative; z-index: 1; padding-block: 2.5rem; width: 100%; }
.page-hero h1 { color: var(--white); max-width: 22ch; }
.page-hero p { color: rgba(255,255,255,.92); max-width: 44em; font-size: 1.08rem; }
.page-hero .eyebrow { color: var(--accent-soft); }
.page-hero .eyebrow::before { background: var(--accent-soft); }
.page-hero .crumbs { color: rgba(255,255,255,.78); margin-bottom: 1rem; }
.page-hero .crumbs a { color: rgba(255,255,255,.92); }

/* ----- Redesigned services cards (home) ----- */
.svc-grid-v2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .svc-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .svc-grid-v2 { grid-template-columns: repeat(4, 1fr); } }

.svc-card-v2 {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
  text-decoration: none;
  color: inherit;
  min-height: 380px;
}
.svc-card-v2:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card-v2 .img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.svc-card-v2 .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}
.svc-card-v2:hover .img img { transform: scale(1.06); }
.svc-card-v2 .img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,67,42,.65) 100%);
}
.svc-card-v2 .img .icn {
  position: absolute;
  bottom: -22px; right: 20px;
  width: 56px; height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--om-green-dk);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.svc-card-v2 .body { padding: 2rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.svc-card-v2 h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.svc-card-v2 p { font-size: .94rem; margin: 0 0 1.2rem; }
.svc-card-v2 .arrow {
  margin-top: auto;
  font-weight: 600;
  font-size: .9rem;
  color: var(--om-green-dk);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.svc-card-v2 .arrow::after {
  content: '→';
  transition: transform var(--t-fast);
}
.svc-card-v2:hover .arrow::after { transform: translateX(5px); }

/* ----- Redesigned services detail rows (services page) ----- */
.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  background: var(--white);
}
@media (min-width: 980px) {
  .svc-row { grid-template-columns: 1fr 1fr; }
  .svc-row.alt > :first-child { order: 2; }
}
.svc-row + .svc-row { border-top: 1px solid var(--line); }
.svc-row .visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.svc-row .visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.svc-row .visual .number {
  position: absolute;
  top: 1.5rem;
  left: clamp(1.5rem, 4vw, 3rem);
  z-index: 1;
  font-family: 'Fraunces', serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,67,42,.5);
  line-height: 1;
  letter-spacing: -.04em;
  opacity: .9;
}
.svc-row .visual .tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,.95);
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--om-green-dk);
  z-index: 1;
}
.svc-row .content {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.svc-row.tone-cream .content { background: var(--cream); }
.svc-row .content h2 { margin-bottom: .8rem; }
.svc-row .content ul { list-style: none; padding: 0; margin: 1.3rem 0 1.5rem; }
.svc-row .content ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .55rem;
  font-size: .95rem;
  color: var(--slate);
}
.svc-row .content ul li::before {
  content: '';
  position: absolute; left: 0; top: .65em;
  width: 18px; height: 2px;
  background: var(--om-green);
}

/* ----- Redesigned values band (full-bleed dark green pillars) ----- */
.values-section { background: transparent; padding: 0; }
.values-band {
  background:
    radial-gradient(800px 400px at 90% 110%, rgba(184,153,104,.18), transparent 60%),
    linear-gradient(135deg, var(--om-green-deep) 0%, var(--om-green-dk) 100%);
  color: var(--white);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.values-band .container { color: var(--white); }
.values-band .s-head h2,
.values-band .s-head p { color: var(--white); }
.values-band .s-head .eyebrow { color: var(--accent-soft); }
.values-band .s-head .eyebrow::before { background: var(--accent-soft); }
.values-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
@media (min-width: 720px) { .values-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .values-pillars { grid-template-columns: repeat(4, 1fr); } }
.values-pillar {
  padding: 2.5rem clamp(1.25rem, 2.5vw, 1.8rem) 2.5rem;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background var(--t-med);
  cursor: default;
  position: relative;
}
@media (min-width: 980px) {
  .values-pillar { border-bottom: none; }
  .values-pillar:last-child { border-right: none; }
}
.values-pillar:hover { background: rgba(255,255,255,.05); }
.values-pillar .num {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--accent-soft);
  letter-spacing: .12em;
  margin-bottom: 1.5rem;
  display: block;
}
.values-pillar h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: .6rem;
}
.values-pillar p {
  color: rgba(255,255,255,.78);
  font-size: .94rem;
  margin: 0;
}
.values-pillar .ico {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ----- Redesigned CTA band (full-bleed) ----- */
.cta-bleed {
  background:
    linear-gradient(135deg, rgba(0,67,42,.94) 0%, rgba(0,119,73,.92) 100%),
    url('../images/services/insurance-family.jpg') center/cover no-repeat;
  background-blend-mode: normal;
  color: var(--white);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-bleed::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  right: -120px; top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(184,153,104,.25), transparent 70%);
}
.cta-bleed .inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 880px) {
  .cta-bleed .inner { grid-template-columns: 1.5fr 1fr; gap: 3rem; }
  .cta-bleed .actions { justify-self: end; }
}
.cta-bleed .eyebrow { color: var(--accent-soft); }
.cta-bleed .eyebrow::before { background: var(--accent-soft); }
.cta-bleed h2 { color: var(--white); margin-bottom: .6rem; max-width: 18ch; }
.cta-bleed p { color: rgba(255,255,255,.86); margin: 0; max-width: 38em; }
.cta-bleed .actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ----- Legacy photo with hover effect ----- */
.legacy-photo {
  background: transparent;
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid;
  place-items: center;
  aspect-ratio: 5/6;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: default;
  transition: transform var(--t-med);
}
.legacy-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(184,153,104,.18) 0%, transparent 60%);
  opacity: .65;
  transition: opacity var(--t-med), transform var(--t-med);
}
.legacy-photo:hover::before {
  opacity: 1;
  transform: scale(1.08);
}
.legacy-photo img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: transform var(--t-med), filter var(--t-med);
  filter: drop-shadow(0 25px 40px rgba(20,32,27,.18));
}
.legacy-photo:hover img {
  transform: translateY(-6px) scale(1.03);
  filter: drop-shadow(0 35px 50px rgba(20,32,27,.28));
}
.legacy-photo .caption {
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  left: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--om-green-dk);
  z-index: 2;
}

/* ----- CFP section full-bleed ----- */
.cfp-bleed {
  background: var(--cream);
  padding: clamp(4rem, 7vw, 6rem) 0;
  position: relative;
}
.cfp-bleed .layout {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .cfp-bleed .layout { grid-template-columns: 1.05fr 1.4fr; }
}
.cfp-bleed .seal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.cfp-bleed .seal-card img {
  max-width: 100%;
  margin-inline: auto;
}
.cfp-bleed .content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.cfp-bleed .content p { font-size: 1rem; }
.cfp-bleed .pillstrip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.cfp-bleed .pillstrip .pill {
  display: inline-block;
  padding: .45rem 1rem;
  background: var(--white);
  border: 1px solid rgba(0,119,73,.2);
  color: var(--om-green-dk);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}

/* ----- Map full-bleed (touches footer) ----- */
.map-bleed {
  height: clamp(360px, 50vw, 480px);
  background: var(--cream);
  margin-bottom: 0;
}
.map-bleed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.9);
}

/* ----- Footer brand block (with OM logo card) ----- */
.brand-stack-v2 {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .75rem .9rem;
  background: var(--paper);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.brand-stack-v2 .ll-mark {
  height: 50px;
  width: auto;
  border-radius: 6px;
}
.om-credential {
  background: var(--white);
  border-radius: 10px;
  padding: .8rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1rem;
}
.om-credential .label {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.om-credential img {
  height: 30px;
  width: auto;
  display: block;
}

/* ============================================================
   ===== REDESIGN v5 (cleaner, no bg colours, new CTA & FAQ) ====
   ============================================================ */

/* Strip cream/grey backgrounds off content sections */
.faq-section { background: transparent; padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.cfp-bleed { background: transparent; padding: clamp(4rem, 7vw, 6rem) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cfp-bleed .seal-card { background: var(--paper); }
.svc-row.tone-cream .content { background: var(--white); }
.svc-row + .svc-row { border-top: none; }
.svc-row {
  border-top: 1px solid var(--line);
}
.services-rows > .svc-row:first-child { border-top: none; }

/* ----- Editorial services overview (home) ----- */
.svc-grid-v3 {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px)  { .svc-grid-v3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .svc-grid-v3 { grid-template-columns: repeat(4, 1fr); } }

.svc-tile {
  padding: 2.5rem 1.8rem 2.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--t-med);
  overflow: hidden;
}
@media (min-width: 720px) {
  .svc-tile:nth-child(2n) { border-right: none; }
  .svc-tile:nth-last-child(-n+2) { border-bottom: none; }
}
@media (min-width: 1080px) {
  .svc-tile { border-right: 1px solid var(--line); border-bottom: none; }
  .svc-tile:nth-child(2n) { border-right: 1px solid var(--line); }
  .svc-tile:last-child { border-right: none; }
}
.svc-tile::after {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--om-green-dk);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.svc-tile:hover { background: var(--paper); }
.svc-tile:hover::after { transform: scaleX(1); }
.svc-tile .num {
  font-family: 'Fraunces', serif;
  font-size: .85rem;
  color: var(--accent);
  letter-spacing: .14em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.svc-tile .icn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0,119,73,.08);
  color: var(--om-green-dk);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.svc-tile:hover .icn {
  background: var(--om-green-dk);
  color: var(--white);
  transform: scale(1.05);
}
.svc-tile h3 {
  font-size: 1.35rem;
  margin-bottom: .5rem;
  color: var(--ink);
}
.svc-tile p {
  font-size: .94rem;
  margin: 0 0 1.5rem;
  flex: 1;
  color: var(--slate);
}
.svc-tile .arrow {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--om-green-dk);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.svc-tile .arrow::after { content: '→'; transition: transform var(--t-fast); }
.svc-tile:hover .arrow::after { transform: translateX(5px); }

/* ----- CTA (clean white by default) ----- */
.cta-clean {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  position: relative;
}
.cta-clean::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 2px;
  background: var(--om-green-dk);
}
.cta-clean .inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 880px) {
  .cta-clean .inner { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
  .cta-clean .actions { justify-self: end; }
}
.cta-clean .eyebrow { color: var(--om-green-dk); }
.cta-clean .eyebrow::before { background: var(--om-green-dk); }
.cta-clean h2 { margin-bottom: .6rem; color: var(--ink); max-width: 22ch; }
.cta-clean p { margin: 0; max-width: 38em; color: var(--slate); }
.cta-clean .actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.cta-clean .phone-link {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--om-green-dk);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  transition: color var(--t-fast);
}
.cta-clean .phone-link:hover { color: var(--om-green); }
.cta-clean .phone-link .ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,119,73,.08);
  display: grid; place-items: center;
  transition: background var(--t-fast);
}
.cta-clean .phone-link:hover .ico { background: var(--om-green-dk); color: var(--white); }

/* ----- CTA — green variant (home only) ----- */
.cta-clean.is-green {
  border-top: none;
  border-bottom: none;
  background:
    radial-gradient(800px 400px at 90% 110%, rgba(184,153,104,.18), transparent 60%),
    linear-gradient(135deg, var(--om-green-deep) 0%, var(--om-green-dk) 100%);
  color: var(--white);
  overflow: hidden;
}
.cta-clean.is-green::before { display: none; }
.cta-clean.is-green .eyebrow { color: var(--accent-soft); }
.cta-clean.is-green .eyebrow::before { background: var(--accent-soft); }
.cta-clean.is-green h2 { color: var(--white); }
.cta-clean.is-green p { color: rgba(255,255,255,.88); }
.cta-clean.is-green .phone-link { color: var(--white); }
.cta-clean.is-green .phone-link:hover { color: var(--accent-soft); }
.cta-clean.is-green .phone-link .ico {
  background: rgba(255,255,255,.14);
  color: var(--white);
}
.cta-clean.is-green .phone-link:hover .ico {
  background: var(--accent);
  color: var(--om-green-deep);
}

/* ----- FAQ redesign (editorial 2-col) ----- */
.faq-v2 {
  display: grid;
  gap: 0 2rem;
  grid-template-columns: 1fr;
  max-width: 1120px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
@media (min-width: 880px) { .faq-v2 { grid-template-columns: repeat(2, 1fr); } }

.faq-v2 .faq-item-v2 {
  border-bottom: 1px solid var(--line);
  padding: 1.3rem 0;
  transition: padding var(--t-fast);
}
.faq-v2 .faq-q-v2 {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.faq-v2 .faq-q-v2:hover { color: var(--om-green-dk); }
.faq-v2 .plus-v2 {
  flex: 0 0 28px;
  height: 28px;
  display: grid; place-items: center;
  color: var(--om-green-dk);
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--t-med);
}
.faq-v2 .faq-item-v2.is-open .plus-v2 { transform: rotate(45deg); }
.faq-v2 .faq-a-v2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
}
.faq-v2 .faq-a-v2 > div {
  padding: 1rem 2rem 0 0;
  color: var(--slate);
  font-size: .94rem;
  line-height: 1.65;
}

/* ----- Footer redesign (light, both logos match) ----- */
.site-footer {
  background: var(--paper);
  color: var(--slate);
  padding: 0;
  border-top: 1px solid var(--line);
}
.site-footer h4 {
  color: var(--ink);
  font-size: .85rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  margin-bottom: 1rem;
}
.site-footer a { color: var(--slate); }
.site-footer a:hover { color: var(--om-green-dk); }
.site-footer p { color: var(--slate); }

.footer-top {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-top {
    grid-template-columns: auto 1px auto 1fr;
    justify-content: flex-start;
  }
}
.footer-top .ll-logo-mark img { height: 100px; width: auto; display: block; }
.footer-top .om-mark {
  display: flex; align-items: center; gap: 1rem;
}
.footer-top .om-mark img { height: 42px; width: auto; display: block; }
.footer-top .om-mark .label {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1.3;
  font-weight: 700;
}
.footer-top .v-divider {
  width: 1px;
  height: 60px;
  background: var(--line);
}
@media (max-width: 720px) {
  .footer-top .v-divider { display: none; }
  .footer-top { text-align: center; }
  .footer-top .ll-logo-mark { justify-self: center; }
  .footer-top .om-mark { justify-content: center; }
}
.footer-top .socials-inline {
  display: flex; gap: .5rem;
  justify-self: end;
}
@media (max-width: 720px) { .footer-top .socials-inline { justify-self: center; } }
.footer-top .socials-inline a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--slate);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.footer-top .socials-inline a:hover { background: var(--om-green-dk); color: var(--white); border-color: var(--om-green-dk); }
.footer-top .socials-inline svg { width: 16px; height: 16px; }

.footer-mid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}
@media (min-width: 720px) { .footer-mid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-mid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-mid ul li { font-size: .92rem; }
.footer-mid p { font-size: .92rem; max-width: 32em; }

.footer-base {
  background: var(--om-green-deep);
  color: rgba(255,255,255,.78);
  padding: 1rem 0;
  font-size: .8rem;
}
.footer-base a { color: rgba(255,255,255,.78); }
.footer-base a:hover { color: var(--accent-soft); }
.footer-base .row {
  display: flex; flex-direction: column; gap: .4rem;
}
@media (min-width: 720px) {
  .footer-base .row { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* Remove old footer-grid styling for safety */
.site-footer .footer-grid { display: none; }
.site-footer .footer-bottom { display: none; }

/* Page hero — bring a touch more reasonable height on the page intros */
.page-hero { height: clamp(320px, 42vw, 460px); }

/* ============================================================
   ===== REDESIGN v6 (full-width hero banner, fades, etc) =======
   ============================================================ */

/* ----- Full-width hero banner (home) — bigger, stronger overlay ----- */
.hero-banner {
  position: relative;
  width: 100%;
  height: clamp(580px, 78vh, 780px);
  overflow: hidden;
}
.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 12s linear;
}
.hero-banner:hover img { transform: scale(1.04); }
.hero-banner::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,67,42,.4) 0%, rgba(0,67,42,.35) 40%, rgba(0,67,42,.85) 100%),
    linear-gradient(110deg, rgba(0,67,42,.75) 0%, rgba(0,67,42,.35) 45%, rgba(0,67,42,.2) 100%);
}
.hero-banner .inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  color: var(--white);
  max-width: 720px;
}
.hero-banner h1 {
  text-shadow: 0 2px 24px rgba(0,40,25,.45);
}
.hero-banner p {
  text-shadow: 0 1px 14px rgba(0,40,25,.55);
}
.hero-banner .eyebrow { color: var(--accent-soft); }
.hero-banner .eyebrow::before { background: var(--accent-soft); }
.hero-banner h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  max-width: 18ch;
  margin-bottom: .8rem;
}
.hero-banner h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-soft);
}
.hero-banner p {
  color: rgba(255,255,255,.92);
  max-width: 42em;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.hero-banner .actions {
  display: flex; flex-wrap: wrap; gap: .8rem;
}

/* ----- Light green hover for clickable tiles/sections (NOT buttons) ----- */
/* Cards and tiles fade to a light mint green on hover */
.svc-tile:hover,
.audience-tile:hover,
.trust-strip .row .trust:hover,
.svc-card-v2:hover,
.team-card:hover,
.contact-card:hover {
  background: var(--om-green-soft);
}
.svc-tile:hover .icn,
.audience-tile:hover .ico-circle {
  background: var(--om-green-dk);
  color: var(--white);
}

/* Buttons: simpler natural hover (back to original) */
.btn-primary:hover { background: var(--om-green); color: var(--white); border-color: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--om-green-deep); border-color: var(--white); }
.btn-gold:hover { background: var(--accent-soft); color: var(--ink); }

/* ----- Bridge image marker straddling top of green sections ----- */
.values-band { overflow: visible; position: relative; }
.values-section { overflow: visible; position: relative; }
.bridge-mark {
  width: 130px;
  height: 130px;
  display: block;
  position: absolute;
  top: -65px;                  /* half above, half below the green section boundary */
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 5;
  filter: drop-shadow(0 12px 24px rgba(0, 40, 25, .25));
}
.bridge-mark img { width: 100%; height: 100%; display: block; border-radius: 50%; }
.bridge-mark svg { display: none; }
/* Add extra top padding so the section heading sits below the bridge */
.values-band .container { padding-top: clamp(3rem, 5vw, 4.5rem); }
@media (max-width: 640px) {
  .bridge-mark { width: 100px; height: 100px; top: -50px; }
  .values-band .container { padding-top: clamp(2rem, 4vw, 3rem); }
}

/* ----- "What we do" spacing (close to Louw, but breathing room) ----- */
section.what-we-do { padding-top: clamp(1.5rem, 3vw, 2.5rem); padding-bottom: clamp(2rem, 3.5vw, 3rem); }
section.what-we-do .s-head { margin-bottom: 1.5rem; }
.hero.trusted-intro .hero-inner { padding-bottom: clamp(.5rem, 1.5vw, 1.25rem); padding-top: clamp(.5rem, 1.5vw, 1.25rem); }
.hero.trusted-intro { padding-bottom: 0; }

/* Tighter gap between bridge mark and How we work eyebrow */
.values-band .container { padding-top: clamp(1.5rem, 3vw, 2.25rem); }
.values-band .s-head { margin-bottom: 2rem; }

/* ----- Inner page trust strip wrapper (no margin, just full width) ----- */
.trust-strip + .trust-strip { display: none; }

/* ----- Bronze offset frame around all framed images ----- */
.split-img,
.team-card .ph,
.svc-feature .img,
.legacy-photo {
  position: relative;
}
.split-img::before,
.svc-feature .img::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--accent);
  border-radius: var(--r-lg);
  z-index: -1;
  transition: transform var(--t-med);
  pointer-events: none;
}
.split-img.reverse-frame::before,
.split.reverse .split-img::before {
  inset: 18px 18px -18px -18px;
}
.split-img:hover::before,
.svc-feature:hover .img::before {
  transform: translate(-6px, 6px);
}
.split-img { isolation: auto; }
.split-img img { position: relative; z-index: 1; }

/* ----- Services REDESIGN v6: large feature panels ----- */
.svc-features {
  padding: clamp(2.5rem, 4vw, 4rem) 0;
}
.svc-features .container > .s-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.svc-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  border-top: 1px solid var(--line);
}
.svc-features > .container > .svc-feature:first-of-type { border-top: none; padding-top: 0; }
@media (min-width: 880px) {
  .svc-feature { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .svc-feature.alt > :first-child { order: 2; }
}
.svc-feature .img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible;
  aspect-ratio: 4/3;
}
.svc-feature .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.svc-feature .img .num-badge {
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: 2;
  width: 64px;
  height: 64px;
  background: var(--om-green-dk);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}
.svc-feature.alt .img .num-badge { left: auto; right: -18px; }
.svc-feature .img .tag-pill {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  background: rgba(255,255,255,.95);
  padding: .4rem .9rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--om-green-dk);
  box-shadow: var(--shadow-sm);
}

.svc-feature .body { display: flex; flex-direction: column; }
.svc-feature .body .eyebrow { margin-bottom: 1rem; }
.svc-feature .body h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  letter-spacing: -.015em;
  margin-bottom: 1rem;
  max-width: 14ch;
}
.svc-feature .body > p {
  font-size: 1rem;
  color: var(--slate);
  margin: 0 0 1.5rem;
  max-width: 38em;
}
.svc-feature .body .checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  display: grid;
  gap: .7rem;
}
.svc-feature .body .checklist li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .94rem;
  color: var(--slate);
}
.svc-feature .body .checklist li .tick {
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--om-green-soft);
  color: var(--om-green-dk);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.svc-feature .body .checklist li .tick svg { width: 12px; height: 12px; }

/* ----- Trusted intro (the Louw section, kept format but redesigned a touch) ----- */
.trusted-intro {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

/* ----- Inner-page banner (clean image-background overlay) ----- */
.page-banner {
  position: relative;
  width: 100%;
  height: clamp(360px, 48vw, 480px);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
}
.page-banner .pb-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner .pb-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 12s linear;
}
.page-banner:hover .pb-visual img { transform: scale(1.03); }
.page-banner .pb-visual::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,67,42,.45) 0%, rgba(0,67,42,.55) 50%, rgba(0,67,42,.85) 100%),
    linear-gradient(110deg, rgba(0,67,42,.7) 0%, rgba(0,67,42,.35) 60%);
}
.page-banner .pb-visual .badge { display: none; }
.page-banner .pb-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
  display: block;
  background: transparent;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .page-banner .pb-content { padding-inline: 2rem; }
}
.page-banner .pb-content::before { display: none; }
.page-banner .crumbs {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
  letter-spacing: .04em;
}
.page-banner .crumbs a { color: rgba(255,255,255,.9); }
.page-banner .crumbs a:hover { color: var(--accent-soft); }
.page-banner .crumbs span { margin: 0 .5rem; opacity: .5; }
.page-banner h1 {
  color: var(--white);
  max-width: 22ch;
  margin-bottom: .8rem;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-shadow: 0 2px 24px rgba(0,40,25,.45);
}
.page-banner p {
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  max-width: 42em;
  margin: 0;
  text-shadow: 0 1px 14px rgba(0,40,25,.55);
}
.page-banner .eyebrow { color: var(--accent-soft); margin-bottom: 1rem; }
.page-banner .eyebrow::before { background: var(--accent-soft); }

/* Hide the old page-hero for backwards-compat */
.page-hero { display: none; }

/* ----- "Who we work with" redesign (segmented audience cards) ----- */
.audience-section { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 2.5rem;
}
@media (min-width: 720px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .audience-grid { grid-template-columns: repeat(4, 1fr); } }
.audience-tile {
  padding: 2.2rem 1.6rem 2.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--white);
  transition: background var(--t-med);
}
@media (min-width: 720px) {
  .audience-tile:nth-child(2n) { border-right: 1px solid var(--line); }
  .audience-tile:last-child { border-right: none; }
}
@media (min-width: 1080px) {
  .audience-tile:nth-child(4) { border-right: none; }
}
.audience-tile::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0; right: 0;
  height: 3px;
  background: var(--om-green-dk);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.audience-tile:hover { background: var(--paper); }
.audience-tile:hover::after { transform: scaleX(1); }
.audience-tile .ico-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0,119,73,.08);
  color: var(--om-green-dk);
  display: grid; place-items: center;
  margin-bottom: 1.3rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.audience-tile:hover .ico-circle {
  background: var(--om-green-dk);
  color: var(--white);
}
.audience-tile h3 {
  font-size: 1.15rem;
  margin-bottom: .4rem;
  color: var(--ink);
}
.audience-tile p {
  font-size: .9rem;
  margin: 0;
  color: var(--slate);
}

/* Audience redesign: 2x2 horizontal cards (icon left, content right) */
.audience-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 720px) {
  .audience-list { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
.audience-card {
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: var(--om-green-dk);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t-med);
}
.audience-card:hover {
  background: var(--om-green-soft);
  border-color: rgba(0,119,73,.18);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.audience-card:hover::before { transform: scaleY(1); }
.audience-card .ico-large {
  flex: 0 0 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--om-green-soft);
  color: var(--om-green-dk);
  display: grid;
  place-items: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.audience-card:hover .ico-large {
  background: var(--om-green-dk);
  color: var(--white);
}
.audience-card .ico-large svg { width: 28px; height: 28px; }
.audience-card .body { flex: 1; min-width: 0; }
.audience-card h3 {
  font-size: 1.25rem;
  margin-bottom: .35rem;
  color: var(--ink);
}
.audience-card h3 em {
  font-style: italic;
  color: var(--om-green-dk);
  font-weight: 500;
}
.audience-card p {
  font-size: .94rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.55;
}

/* ----- Bigger CFP seal ----- */
.cfp-bleed .layout { grid-template-columns: 1fr; }
@media (min-width: 880px) {
  .cfp-bleed .layout { grid-template-columns: 1.2fr 1.2fr; }
}
.cfp-bleed .seal-card {
  padding: clamp(1rem, 2vw, 1.5rem);
}
.cfp-bleed .seal-card img {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* ----- Section heading format (consistent across pages) ----- */
.s-head { grid-template-columns: 1fr; gap: 1.2rem; margin-bottom: 2.5rem; }
@media (min-width: 880px) {
  .s-head { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 3rem; align-items: end; }
}
.s-head .lead {
  font-size: 1.02rem;
  color: var(--slate);
  max-width: 38em;
  margin: 0;
}
.s-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -.015em;
  max-width: 18ch;
  margin: 0;
}

/* ----- Services page step-up (more cinematic rows) ----- */
.svc-row { background: var(--white); }
.svc-row + .svc-row { border-top: none; }
.svc-row .visual {
  min-height: 420px;
  position: relative;
}
.svc-row .visual::before {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,67,42,.25), transparent 60%);
  pointer-events: none;
}
.svc-row .visual img { transition: transform 6s linear; }
.svc-row:hover .visual img { transform: scale(1.05); }
.svc-row .visual .number {
  font-size: clamp(5rem, 10vw, 8rem);
  z-index: 3;
  opacity: 1;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,67,42,.6);
  top: clamp(1.2rem, 3vw, 2.2rem);
  left: clamp(1.2rem, 3vw, 2.2rem);
}
.svc-row .visual .tag {
  z-index: 3;
}
.svc-row .visual .accent-line {
  position: absolute;
  z-index: 3;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: clamp(1.5rem, 3vw, 2.5rem);
  width: 60px;
  height: 2px;
  background: var(--accent);
}
.svc-row .content {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  position: relative;
}
.svc-row .content::before {
  content: '';
  position: absolute;
  top: clamp(3rem, 6vw, 5rem);
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--om-green-dk);
}
.svc-row .content h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  letter-spacing: -.015em;
  margin-bottom: 1rem;
  max-width: 16ch;
}
.svc-row .content > p {
  font-size: 1.02rem;
  color: var(--slate);
  margin: 0 0 1.5rem;
  max-width: 36em;
}
.svc-row .checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: .8rem;
}
.svc-row .checklist li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding-left: 0;
  font-size: .95rem;
  color: var(--slate);
  line-height: 1.55;
}
.svc-row .checklist li::before {
  content: '';
  display: none;
}
.svc-row .checklist li .tick {
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,119,73,.1);
  color: var(--om-green-dk);
  display: grid;
  place-items: center;
  margin-top: 2px;
  transition: background var(--t-fast), color var(--t-fast);
}
.svc-row .checklist li:hover .tick { background: var(--om-green-dk); color: var(--white); }
.svc-row .checklist li .tick svg { width: 12px; height: 12px; }

/* ============================================================
   ===== Feature-intro (mirrors home page Louw section) =========
   ============================================================ */

.feature-intro {
  position: relative;
  background:
    radial-gradient(900px 450px at 100% 0%, rgba(0,167,81,.06), transparent 60%),
    radial-gradient(700px 350px at 0% 100%, rgba(184,153,104,.08), transparent 60%),
    var(--white);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  overflow: hidden;
}
.feature-intro + .feature-intro { border-top: 1px solid var(--line); }

.feature-intro .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 980px) {
  .feature-intro .inner { grid-template-columns: 1.05fr .95fr; gap: 4rem; }
  .feature-intro.reverse .inner > :first-child { order: 2; }
}

.feature-intro .body { display: flex; flex-direction: column; }
.feature-intro .body h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -.015em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.feature-intro .body h2 em,
.feature-intro .body h2 strong {
  color: var(--om-green-dk);
  font-weight: 500;
  font-style: italic;
}
.feature-intro .body .lead {
  font-size: 1.05rem;
  color: var(--slate);
  margin: 0 0 1rem;
  max-width: 38em;
}
.feature-intro .body p { color: var(--slate); margin: 0 0 1rem; max-width: 38em; }
.feature-intro .body .actions {
  display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem;
}
.feature-intro .body .checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: .7rem;
}
.feature-intro .body .checklist li {
  display: flex; align-items: flex-start; gap: .8rem;
  font-size: .95rem; color: var(--slate);
}
.feature-intro .body .checklist li .tick {
  flex: 0 0 22px; height: 22px;
  border-radius: 50%;
  background: var(--om-green-soft);
  color: var(--om-green-dk);
  display: grid; place-items: center;
  margin-top: 3px;
}
.feature-intro .body .checklist li .tick svg { width: 12px; height: 12px; }
.feature-intro .body .pillstrip {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem;
}
.feature-intro .body .pillstrip .pill {
  display: inline-block;
  padding: .4rem .9rem;
  background: var(--om-green-soft);
  color: var(--om-green-dk);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}
.feature-intro .body .meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.feature-intro .body .meta-row .stat strong {
  font-family: 'Fraunces', serif;
  display: block;
  font-size: 1.5rem;
  color: var(--om-green-dk);
  line-height: 1;
  margin-bottom: .25rem;
}
.feature-intro .body .meta-row .stat span {
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Visual side — photo with bronze offset frame + optional badge */
.feature-intro .visual {
  position: relative;
}
.feature-intro .visual .photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  z-index: 1;
}
.feature-intro .visual .photo.wide { aspect-ratio: 4/3; }
.feature-intro .visual .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}
.feature-intro .visual:hover .photo img { transform: scale(1.03); }

.feature-intro .visual::before {
  content: '';
  position: absolute;
  inset: -20px -20px auto auto;
  width: 70%;
  height: 70%;
  border: 1.5px solid var(--accent);
  border-radius: var(--r-lg);
  z-index: 0;
  transition: transform var(--t-med);
}
.feature-intro.reverse .visual::before {
  inset: -20px auto auto -20px;
}
.feature-intro:hover .visual::before {
  transform: translate(6px, -6px);
}
.feature-intro.reverse:hover .visual::before {
  transform: translate(-6px, -6px);
}

.feature-intro .visual .badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: var(--white);
  padding: .8rem 1rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: 260px;
  z-index: 2;
}
.feature-intro.reverse .visual .badge { left: auto; right: -18px; }
.feature-intro .visual .badge .dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--om-green-dk);
  color: var(--white);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  flex-shrink: 0;
}
.feature-intro .visual .badge small {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mute); display: block;
}
.feature-intro .visual .badge strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--ink);
  font-size: .95rem;
}

/* Hide the older .svc-feature & .split-img specific frames when feature-intro is used */

/* ============================================================
   ===== FAQ as green band (services page) ======================
   ============================================================ */

.faq-section.is-green {
  background: transparent;
  padding: 0;
  position: relative;
  overflow: visible;
}
.faq-section.is-green .faq-band {
  background:
    radial-gradient(800px 400px at 90% 110%, rgba(184,153,104,.18), transparent 60%),
    linear-gradient(135deg, var(--om-green-deep) 0%, var(--om-green-dk) 100%);
  color: var(--white);
  padding: clamp(4.5rem, 7vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  position: relative;
}
.faq-section.is-green .faq-band .container { padding-top: clamp(2.5rem, 4vw, 3.5rem); }
.faq-section.is-green .s-head h2,
.faq-section.is-green .s-head p { color: var(--white); }
.faq-section.is-green .s-head .eyebrow { color: var(--accent-soft); }
.faq-section.is-green .s-head .eyebrow::before { background: var(--accent-soft); }

/* FAQ v2 items on green */
.faq-section.is-green .faq-v2 {
  border-top: 1px solid rgba(255,255,255,.18);
}
.faq-section.is-green .faq-item-v2 {
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.faq-section.is-green .faq-q-v2 {
  color: var(--white);
}
.faq-section.is-green .faq-q-v2:hover {
  color: var(--accent-soft);
}
.faq-section.is-green .plus-v2 {
  color: var(--accent-soft);
}
.faq-section.is-green .faq-a-v2 > div,
.faq-section.is-green .faq-a-v2 > div p {
  color: rgba(255,255,255,.94) !important;
}
.faq-section.is-green .faq-a-v2 > div a {
  color: var(--accent-soft) !important;
  text-decoration: underline;
}
.faq-section.is-green .faq-a-v2 > div strong { color: var(--white) !important; }

/* ----- Professional Qualifications (redesigned) ----- */
.cfp-bleed { padding: clamp(4rem, 7vw, 6rem) 0 0; border-bottom: none; border-top: 1px solid var(--line); }
.cfp-bleed .layout { display: block !important; grid-template-columns: none !important; }
.cfp-bleed .seal-card,
.cfp-bleed .content { display: none; }   /* hide the old two-column layout */

.cfp-display {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: clamp(2.5rem, 4.5vw, 3.5rem) auto 0;
  max-width: 980px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.cfp-display::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--accent);
  border-radius: var(--r-lg);
  z-index: -1;
  pointer-events: none;
  transition: transform var(--t-med);
}
.cfp-display::after {
  content: '';
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(closest-side, rgba(0,167,81,.22), transparent 75%);
  z-index: -2;
  opacity: .85;          /* always visible, not just on hover */
  transition: opacity var(--t-med);
  pointer-events: none;
}
.cfp-display:hover { box-shadow: var(--shadow-md); }
.cfp-display:hover::before { transform: translate(6px, -6px); }
.cfp-display:hover::after { opacity: 1; }
.cfp-display img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-sm);
}

.cfp-text {
  max-width: 1040px;
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  text-align: center;
}
.cfp-text h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: -.01em;
  margin-bottom: .6rem;
  color: var(--ink);
}
.cfp-text h3 em {
  font-style: italic;
  color: var(--om-green-dk);
  font-weight: 500;
}
.cfp-text .divider {
  margin: .5rem auto 1.5rem;
}
.cfp-text p {
  color: var(--slate);
  font-size: 1.02rem;
  margin-inline: auto;
  max-width: 86ch;
}

/* ----- Section separator: hairline + centered bridge dot ----- */
.section-divider {
  max-width: 920px;
  margin: clamp(3rem, 5vw, 4rem) auto clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.25rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 50%, transparent);
}
.section-divider .mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--om-green-dk);
  position: relative;
  overflow: hidden;
}
.section-divider .mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- Team section enhancement (centered heading with green/bronze accents) ----- */
.team-section { padding: clamp(2.5rem, 4.5vw, 4rem) 0 clamp(4rem, 6vw, 5.5rem); }
.team-section .s-head.centered {
  text-align: center;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.team-section .s-head.centered .eyebrow { justify-content: center; color: var(--om-green-dk); }
.team-section .s-head.centered .eyebrow::before { background: var(--om-green-dk); }
.team-section .s-head.centered h2 {
  margin-inline: auto;
  max-width: none;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}
.team-section .s-head.centered h2 em {
  font-style: italic;
  color: var(--om-green-dk);
  font-weight: 500;
}
.team-section .s-head.centered .lead { margin-inline: auto; }

/* CFP credentials — centered grid of small badges (not full-bleed) */
.credentials-grid {
  max-width: 980px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 880px) { .credentials-grid { grid-template-columns: repeat(4, 1fr); } }
.credential {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.4rem 1.1rem 1.5rem;
  text-align: center;
  position: relative;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  overflow: hidden;
}
.credential::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--om-green-dk);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.credential:hover {
  background: var(--om-green-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.credential:hover::before { transform: scaleX(1); }
.credential .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--om-green-soft);
  color: var(--om-green-dk);
  display: grid; place-items: center;
  margin: 0 auto 1rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.credential:hover .ico { background: var(--om-green-dk); color: var(--white); }
.credential .ico svg { width: 22px; height: 22px; }
.credential strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  color: var(--om-green-dk);
  line-height: 1.1;
  margin-bottom: .35rem;
}
.credential span {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  line-height: 1.3;
}

/* Hide the old trust-strip variant if it's there */
.cfp-credentials { display: none; }

/* ----- Photo "ground" line: bottom-aligns the subject and draws a line beneath them ----- */
.feature-intro .visual .photo.has-ground {
  position: relative;
  aspect-ratio: 5 / 4;   /* shorter than default 4/5 — closer fit for chest-up portrait */
}
.feature-intro .visual .photo.has-ground img {
  object-position: center bottom !important;
  padding: 1rem 1.5rem 0 !important;   /* tighter top, no bottom padding */
}
.feature-intro .visual .photo.has-ground::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: var(--om-green-dk);
  z-index: 2;
}

/* ----- Quick Start card (contact sidebar) ----- */
.quick-start {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.quick-start::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--om-green-dk);
}
.quick-start::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  right: -60px; bottom: -60px;
  background: radial-gradient(closest-side, rgba(184,153,104,.18), transparent 70%);
  pointer-events: none;
}
.quick-start .eyebrow { color: var(--om-green-dk); margin-bottom: 1rem; }
.quick-start h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  margin-bottom: .6rem;
  color: var(--ink);
}
.quick-start p {
  font-size: .94rem;
  color: var(--slate);
  margin: 0 0 1.4rem;
  position: relative;
  z-index: 1;
}
.quick-start .btn { align-self: flex-start; position: relative; z-index: 1; }
.quick-start .meta {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  gap: .55rem;
  align-items: center;
  font-size: .8rem;
  color: var(--mute);
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
}
.quick-start .meta svg { width: 14px; height: 14px; color: var(--om-green-dk); flex-shrink: 0; }

/* ============================================================
   ===== MOBILE PASS — centered content + responsive blocks =====
   ============================================================ */

@media (max-width: 720px) {

  /* Center most content on mobile */
  .hero-banner .inner,
  .hero-inner > div,
  .feature-intro .body,
  .audience-section .container > .s-head,
  .what-we-do .s-head,
  .cta-clean .inner > div,
  .cta-clean .actions,
  .quick-start,
  .s-head,
  .page-banner .pb-content {
    text-align: center;
  }

  /* Eyebrows centered */
  .hero-banner .eyebrow,
  .hero-inner .eyebrow,
  .feature-intro .body .eyebrow,
  .audience-section .eyebrow,
  .what-we-do .eyebrow,
  .cta-clean .eyebrow,
  .quick-start .eyebrow,
  .page-banner .eyebrow,
  .cfp-text .eyebrow {
    justify-content: center;
  }

  /* CTA actions centered */
  .hero-banner .actions,
  .hero-cta,
  .feature-intro .body .actions,
  .cta-clean .actions,
  .page-banner .pb-content > div:last-child {
    justify-content: center;
  }

  /* Hero meta / stat-row: smaller and balanced */
  .hero-meta,
  .feature-intro .body .meta-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
  .hero-meta .stat strong,
  .feature-intro .body .meta-row .stat strong { font-size: 1.2rem; }
  .hero-meta .stat span,
  .feature-intro .body .meta-row .stat span { font-size: .65rem; }

  /* Hero banner: shorter on mobile */
  .hero-banner { height: clamp(420px, 70vh, 560px); }
  .hero-banner h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-banner p { font-size: 1rem; }
  .hero-banner .inner { max-width: none; }

  /* Page banner — stacked on mobile: image on top, content below */
  .page-banner {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 !important;
    display: block !important;
    overflow: visible !important;
    background: var(--om-green-deep);
    color: var(--white);
  }
  .page-banner .pb-visual {
    position: relative !important;
    inset: auto !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    width: 100%;
    height: 200px;
    z-index: 0;
    overflow: hidden;
  }
  .page-banner .pb-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }
  .page-banner .pb-visual::after {
    background: linear-gradient(180deg, rgba(0,67,42,.25), rgba(0,67,42,.55));
  }
  .page-banner .pb-content {
    position: relative !important;
    inset: auto !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    padding: 1.8rem 1.25rem 2.25rem !important;
    width: 100%;
    text-align: center;
    background: var(--om-green-deep);
    max-width: none !important;
  }
  .page-banner h1 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
    max-width: 24ch;
    margin-inline: auto;
    margin-bottom: .6rem;
  }
  .page-banner p {
    font-size: .92rem;
    max-width: 38em;
    margin-inline: auto;
  }
  .page-banner .eyebrow { margin-bottom: .7rem; font-size: .65rem; }
  .page-banner .crumbs { font-size: .72rem; margin-bottom: .7rem; }
  .page-banner .pb-content > div:last-child { justify-content: center; }

  /* Hero photo visual centered */
  .hero-visual { margin-inline: auto; max-width: 380px; }
  .hero-visual .badge { left: 0 !important; right: 0 !important; margin-inline: auto; max-width: 240px; }

  /* Feature intro visual + frame */
  .feature-intro .visual { margin-inline: auto; max-width: 460px; }
  .feature-intro .visual .badge,
  .feature-intro.reverse .visual .badge { left: 0 !important; right: 0 !important; margin-inline: auto; max-width: 240px; }
  .feature-intro .visual::before,
  .feature-intro.reverse .visual::before {
    inset: -14px -14px auto auto;
    width: 70%; height: 70%;
  }

  /* Service feature image frame on mobile */
  .svc-feature .img::before { inset: 14px -14px -14px 14px; }

  /* Checklists left-aligned in centered cards */
  .feature-intro .body .checklist { text-align: left; max-width: 28em; margin-inline: auto; }
  .feature-intro .body p { margin-inline: auto; }

  /* Pillstrip + meta-row centered */
  .feature-intro .body .pillstrip { justify-content: center; }

  /* Mobile 4-up blocks: 2-column compact grids */

  /* Audience: 2 columns, tiny cards */
  .audience-list { grid-template-columns: repeat(2, 1fr) !important; gap: .6rem; }
  .audience-card { flex-direction: column; align-items: center; text-align: center; padding: .9rem .6rem 1rem; gap: .5rem; }
  .audience-card .ico-large { width: 40px; height: 40px; }
  .audience-card .ico-large svg { width: 20px; height: 20px; }
  .audience-card h3 { font-size: .95rem; margin-bottom: .2rem; }
  .audience-card p { font-size: .76rem; line-height: 1.4; }

  /* Services overview tiles: 2 cols, compact */
  .svc-grid-v3 { grid-template-columns: repeat(2, 1fr) !important; }
  .svc-tile { padding: 1.1rem .85rem 1.2rem; }
  .svc-tile::before, .svc-tile::after { display: none; }
  .svc-tile { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .svc-tile:nth-child(2n) { border-right: 1px solid var(--line); }
  .svc-tile:nth-last-child(-n+2) { border-bottom: none; }
  .svc-tile .num { margin-bottom: .55rem; font-size: .68rem; letter-spacing: .1em; }
  .svc-tile .icn { width: 36px; height: 36px; margin-bottom: .55rem; }
  .svc-tile .icn svg { width: 18px; height: 18px; }
  .svc-tile h3 { font-size: 1rem; margin-bottom: .25rem; }
  .svc-tile p { font-size: .78rem; margin-bottom: .65rem; line-height: 1.4; }
  .svc-tile .arrow { font-size: .68rem; }

  /* Values pillars: 2 cols, compact */
  .values-pillars { grid-template-columns: repeat(2, 1fr) !important; }
  .values-pillar { padding: 1.1rem .85rem; border-right: 1px solid rgba(255,255,255,.15) !important; border-bottom: 1px solid rgba(255,255,255,.15) !important; }
  .values-pillar:nth-child(2n) { border-right: none !important; }
  .values-pillar:nth-last-child(-n+2) { border-bottom: none !important; }
  .values-pillar .num { font-size: .72rem; margin-bottom: .55rem; letter-spacing: .1em; }
  .values-pillar .ico { width: 26px; height: 26px; margin-bottom: .45rem; }
  .values-pillar .ico svg { width: 18px; height: 18px; }
  .values-pillar h3 { font-size: 1rem; margin-bottom: .25rem; }
  .values-pillar p { font-size: .78rem; line-height: 1.4; }

  /* Trust strip: 2 cols on mobile (not 1) */
  .trust-strip .row { grid-template-columns: repeat(2, 1fr) !important; }
  .trust-strip .row .trust { padding: .75rem .6rem; flex-direction: column; gap: .35rem; border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; }
  .trust-strip .row .trust:nth-child(2n) { border-right: none !important; }
  .trust-strip .row .trust:nth-last-child(-n+2) { border-bottom: none !important; }
  .trust-strip .row .trust .mark { width: 26px; height: 26px; }
  .trust-strip .row .trust .mark svg { width: 14px; height: 14px; }
  .trust-strip .row .trust .copy strong { font-size: .82rem; }
  .trust-strip .row .trust .copy small { font-size: .55rem; }

  /* Credentials grid: 2 cols, compact */
  .credentials-grid { grid-template-columns: repeat(2, 1fr) !important; gap: .6rem; }
  .credential { padding: .75rem .55rem .9rem; }
  .credential .ico { width: 30px; height: 30px; margin-bottom: .45rem; }
  .credential .ico svg { width: 16px; height: 16px; }
  .credential strong { font-size: .95rem; margin-bottom: .15rem; }
  .credential span { font-size: .55rem; letter-spacing: .12em; }

  /* Service rows: image scale and frame */
  .svc-row .visual { min-height: 240px; }
  .svc-row .visual .number { font-size: 4rem; }
  .svc-row .content { padding: 2rem 1.25rem; }

  /* Section heads centered */
  .s-head { gap: 1rem; margin-bottom: 2rem; }
  .s-head h2 { max-width: none; margin-inline: auto; }
  .s-head p,
  .s-head .lead { margin-inline: auto; }

  /* Trust strip rows stack neatly */
  .trust-strip .row .trust { padding: 1.25rem 1rem; flex-direction: column; gap: .55rem; text-align: center; }
  .trust-strip .row .trust .copy { text-align: center; }

  /* CTA band actions centered */
  .cta-clean .actions { justify-self: center !important; }

  /* Quick start centered */
  .quick-start .btn { align-self: center; }
  .quick-start .meta { justify-content: center; }

  /* Contact stack centered */
  .contact-stack .contact-card { text-align: left; }    /* keep contact cards left-readable */

  /* Bridge mark a bit smaller on mobile */
  .bridge-mark { width: 110px; height: 110px; top: -55px; }

  /* CFP image card padding tighter */
  .cfp-display { padding: 1rem; }

  /* Footer centred */
  .site-footer { text-align: center; }
  .site-footer h4 { text-align: center; }
  .footer-top {
    justify-items: center;
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .footer-top .ll-logo-mark img { height: 90px; }
  .footer-top .om-mark { justify-content: center; }
  .footer-top .om-mark .label { text-align: left; }
  .footer-top .v-divider { display: none; }
  .footer-top .socials-inline { justify-self: center; }
  .footer-mid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem;
    text-align: center;
  }
  .footer-mid ul { justify-items: center; }
  .footer-mid p { margin-inline: auto; max-width: 30em; }
  .footer-base .row { text-align: center; align-items: center; }

  /* Page hero crumbs centered */
  .page-banner .crumbs { text-align: center; }

  /* Modal: full screen on mobile */
  .modal { max-width: 100%; }
  .interest-grid { grid-template-columns: 1fr; }

  /* Cta-bleed / cta-band content centered */
  .cta-bleed .inner { text-align: center; }
  .cta-bleed .actions { justify-self: center; }

  /* Hide the brand-mark fallback dot in stat-row on mobile if needed */
}

/* Smaller mobile */
@media (max-width: 480px) {
  .hero-banner { height: clamp(380px, 75vh, 500px); }
  .hero-banner h1 { font-size: clamp(1.7rem, 8vw, 2.3rem); }
  .page-banner { height: clamp(280px, 60vw, 360px); }
  .nav-toggle { width: 42px; height: 42px; }
  .footer-top .ll-logo-mark img { height: 80px; }
}

/* Print friendliness */
@media print {
  .site-header, .site-footer, .float-cta, .modal-backdrop { display: none; }
}
