

:root {
  --cream:    #f9f8f3;
  --taupe:    #eae6db;
  --olive:    #90906e;
  --charcoal: #525252;
  --text:     #3d3d35;
  --text-mid: #8a8a7a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── SCROLL REVEAL ── */
/* Elements start hidden; .is-visible class triggers the transition */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays for grouped items */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.25s; }
.reveal-d3 { transition-delay: 0.4s; }
.reveal-d4 { transition-delay: 0.55s; }

/* Button entrance, scale up from slightly smaller */
.btn-olive.reveal,
.btn-charcoal.reveal,
.btn-taupe.reveal {
  transform: translateY(28px) scale(0.96);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.btn-olive.reveal.is-visible,
.btn-charcoal.reveal.is-visible,
.btn-taupe.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 1.3s ease;
}
.reveal-fade.is-visible {
  opacity: 1;
}

/* NAV, D) 120px height */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 68px;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
}
.nav-logo { flex-shrink: 0; line-height: 0; }
.nav-logo svg { height: 38px; width: auto; }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.nav-links li a {
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  padding: 4px 14px;
  transition: color 0.2s;
}
.nav-links li a:hover { color: #505151; }
.nav-sep { color: rgba(255,255,255,0.35); }
.nav-logo:hover svg path,
.nav-logo:hover svg rect { fill: #505151 !important; }
.nav-cta {
  flex-shrink: 0;
  background: var(--charcoal);
  color: rgba(255,255,255,0.9);
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  padding: 10px 24px;
  transition: background 0.15s, color 0.15s;
}
.nav-cta:hover { background: #ebe6dc; color: #505151; }

/* HERO, margin-top matches new nav height */
.hero {
  margin-top: 68px;
  position: relative;
  width: 100%;
  aspect-ratio: 1456 / 600;
  min-height: 400px;
  background: #111;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 130%;
  top: -15%;
  object-fit: cover;
  object-position: 50% 50%;
  will-change: transform;
}
.hero-text {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  left: max(40px, calc(50% - 580px));
  max-width: 560px;
  text-align: left;
}
/* B) Hero text colour #ebe6dc */
.hero-name {
  font-family: "commuters-sans", sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 3vw, 38px);
  color: #ebe6dc;
  line-height: 1.15;
  display: block;
  cursor: default;
  transition: color 0.3s ease;
}
.hero-name:hover { color: #91906e; }
.hero-sub {
  font-family: "commuters-sans", sans-serif;
  font-weight: 200;
  font-size: clamp(18px, 3vw, 38px);
  color: #ebe6dc;
  line-height: 1.15;
  display: block;
  margin-top: 4px;
  cursor: default;
  transition: color 0.3s ease;
}
.hero-sub:hover { color: #91906e; }

/* INTRO BAND */
.intro-band {
  background: var(--cream);
  padding: 72px 40px 68px;
}
.intro-main {
  font-family: "commuters-sans", sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
  color: var(--text);
}
.intro-founded {
  font-family: "commuters-sans", sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
  color: var(--olive);
  margin-top: 12px;
}
.intro-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 0;
}
.btn-olive {
  display: inline-block;
  width: 260px;
  text-align: center;
  background: var(--olive);
  color: rgba(255,255,255,0.92);
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  padding: 15px 0;
  transition: background 0.25s, color 0.25s;
}
.btn-olive:hover { background: var(--charcoal); color: #fff; }

/* WHY */
.why-section {
  background: var(--taupe);
  padding: 72px 40px;
}
.eyebrow {
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #91906e;
  margin-bottom: 18px;
}
.section-heading {
  font-family: "commuters-sans", sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 44px;
}
.why-body {
  max-width: 1160px;
  margin: 0;
}
.why-body p {
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 18px;
}
.why-body p.olive-line {
  color: var(--olive);
  margin-bottom: 0;
}

/* SERVICES */
.services-section {
  background: var(--taupe);
  padding: 72px 40px;
}
.services-section .section-heading { margin-bottom: 40px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 1160px;
  margin: 0 auto 36px;
}
.svc {
  background: var(--olive);
  padding: 28px 24px 26px;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.svc:hover {
  background: var(--charcoal);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.svc h3 {
  font-family: "commuters-sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ebe6dc;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s;
}
.svc:hover h3 { color: #fff; }
.svc p {
  font-family: "commuters-sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #505151;
  line-height: 1.6;
  transition: color 0.3s;
}
.svc:hover p { color: rgba(255,255,255,0.95); }
.btn-charcoal {
  display: inline-block;
  width: 260px;
  text-align: center;
  background: var(--charcoal);
  color: rgba(255,255,255,0.92);
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  padding: 15px 0;
  transition: background 0.25s, color 0.25s;
}
.btn-charcoal:hover { background: var(--olive); color: #fff; }

/* JIM */
.jim-section {
  background: var(--cream);
  padding: 72px 40px;
}
.jim-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.jim-text .eyebrow {
  text-align: left;
  color: #91906e;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.jim-text .section-heading {
  text-align: left;
  margin-bottom: 24px;
}
.jim-text p {
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 14px;
}
.jim-text .btn-olive { margin-top: 20px; display: inline-block; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(144,144,110,0.82);
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.play-btn:hover {
  background: rgba(144,144,110,1);
  border-color: rgba(255,255,255,0.95);
  transform: translate(-50%, -50%) scale(1.08);
}
.play-btn svg { margin-left: 6px; width: 26px; height: 28px; }

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(20,20,18,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.video-modal-inner {
  width: 100%;
  max-width: 960px;
}
.video-modal-inner video {
  width: 100%;
  height: auto;
  display: block;
}

/* INSIGHTS */
.insights-section {
  background: var(--taupe);
  padding: 72px 40px;
}
.insights-section .section-heading { margin-bottom: 44px; }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto 40px;
}
.insight-card {
  text-align: left;
  cursor: pointer;
}
.insight-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 24px;
  line-height: 0;
  background: #3a3a30;
  position: relative;
}
/* Olive overlay on image hover */
.insight-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(144, 144, 110, 0);
  transition: background 0.35s ease;
}
.insight-card:hover .insight-img::after {
  background: rgba(144, 144, 110, 0.28);
}
.insight-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.insight-card:hover .insight-img img {
  transform: scale(1.05);
}
/* Text colour shift on card hover */
.insight-card h3 {
  font-family: "commuters-sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 12px;
  transition: color 0.25s;
}
.insight-card:hover h3 { color: var(--olive); }
.insight-card p {
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--text);
  line-height: 1.75;
}
.read-link {
  display: inline-block;
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--text);
  margin-top: 12px;
  transition: color 0.2s;
}
.read-link:hover { color: var(--olive); }

/* Jim photo hover, zoom image, brighten play button */
.jim-photo {
  position: relative;
  width: 100%;
  line-height: 0;
  cursor: pointer;
  overflow: hidden;
}
.jim-photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.5s ease;
}
.jim-photo:hover img {
  transform: scale(1.04);
}

/* CTA BAND */
.cta-band {
  background: var(--charcoal);
  padding: 72px 40px;
}
.cta-band h2 {
  font-family: "commuters-sans", sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 14px;
  line-height: 1.15;
  text-align: left;
}
.cta-band p {
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 40px;
  text-align: left;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; }
.btn-taupe {
  display: inline-block;
  width: 260px;
  text-align: center;
  background: var(--taupe);
  color: var(--text);
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  padding: 15px 0;
  transition: background 0.25s, color 0.25s;
}
.btn-taupe:hover { background: #91906e; color: #fff; }

/* FOOTER */
footer {
  background: var(--olive);
  padding: 52px 40px 44px;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}
.footer-logo { line-height: 0; margin-bottom: 20px; display: inline-block; }
.footer-logo svg { height: 40px; width: auto; transition: opacity 0.25s; }
.footer-logo:hover svg { opacity: 0.7; }

/* Every text element in the footer, same size and leading */
.footer-grid p,
.footer-grid a,
.footer-grid li {
  font-family: "commuters-sans", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.9;
  color: #505151;
}
.footer-grid ul { list-style: none; }
.footer-grid a { transition: color 0.15s; display: block; }
.footer-grid a:hover { color: #fff; }
.footer-grid p { margin-bottom: 6px; }

/* Subheads, same size, semi-bold, light colour */
.footer-grid h4 {
  font-family: "commuters-sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.9;
  color: #ebe6dc;
  margin-top: 16px;
  margin-bottom: 0;
}
.footer-grid h4:first-child { margin-top: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .jim-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  nav, .intro-band, .why-section, .services-section,
  .jim-section, .insights-section, .cta-band, footer {
    padding-left: 20px; padding-right: 20px;
  }
  .hero { margin-top: 68px; }
  .hero-text { left: 20px; max-width: 52%; }
  .hero-name { font-size: clamp(15px, 4.5vw, 22px); }
  .hero-sub  { font-size: clamp(13px, 3.8vw, 20px); }
  .insights-grid { grid-template-columns: 1fr; }
  .intro-ctas, .cta-btns { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
}



/* === About === */
/* NAV */
nav { position: fixed; inset: 0 0 auto 0; z-index: 100; height: 68px; background: var(--olive); display: flex; align-items: center; }
.nav-logo:hover svg { opacity: 0.75; transition: opacity 0.25s; }
.nav-links li a:hover, .nav-links li a.active { color: #505151; }
/* PAGE HERO BAND */
.page-hero {
  margin-top: 68px;
  background: var(--charcoal);
  padding: 80px 40px;
  text-align: left;
}
.page-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.page-hero-left .eyebrow {
  color: #91906e;
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
}
.page-hero-left h1 {
  font-family: "commuters-sans", sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3.2vw, 42px);
  color: #ebe6dc;
  line-height: 1.15;
  margin: 0;
}
.page-hero-right p {
  font-family: "commuters-sans", sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin: 0;
  padding-top: 34px;
}
@media (max-width: 1240px) {
  .nav-inner { padding: 0 40px; }
}
@media (max-width: 768px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 24px; }
}



/* SECTION LAYOUT */
.section-cream { background: var(--cream); padding: 80px 40px; }
.section-taupe  { background: var(--taupe);  padding: 80px 40px; }
.section-charcoal { background: var(--charcoal); padding: 80px 40px; text-align: center; }
.container { max-width: 1160px; margin: 0 auto; }
.body-text { font-family: "commuters-sans", sans-serif; font-weight: 300; font-size: 15px; line-height: 1.85; color: var(--text); margin-bottom: 18px; }
.body-text.olive { color: var(--olive); font-style: italic; }
/* BUTTONS */
.btn-olive { display: inline-block; width: 260px; text-align: center; background: var(--olive); color: rgba(255,255,255,0.92); font-family: "commuters-sans", sans-serif; font-weight: 400; font-size: 13px; padding: 15px 0; transition: background 0.25s, color 0.25s; }
/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s ease, transform 1.1s ease; }
.reveal-d1 { transition-delay: 0.1s; }
.footer-grid p, .footer-grid a, .footer-grid li { font-family: "commuters-sans", sans-serif; font-weight: 300; font-size: 13px; line-height: 1.9; color: #505151; }
.footer-grid h4 { font-family: "commuters-sans", sans-serif; font-weight: 600; font-size: 13px; line-height: 1.9; color: #ebe6dc; margin-top: 16px; margin-bottom: 0; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
/* ── ABOUT-SPECIFIC ────────────────────────────────── */

/* Jim photo hover */
.jim-portrait {
  position: relative;
  overflow: hidden;
  line-height: 0;
  cursor: pointer;
}
.jim-portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  filter: grayscale(100%);
  transition: transform 0.5s ease, filter 0.4s ease;
  will-change: transform;
}
.jim-portrait:hover img {
  transform: scale(1.04);
  filter: grayscale(40%);
}
.jim-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(144,144,110,0);
  transition: background 0.4s ease;
  pointer-events: none;
}
.jim-portrait:hover::after {
  background: rgba(144,144,110,0.12);
}
/* ── EXPERIENCE TABLE ──────────────────────────────── */
.exp-table {
  width: 100%;
  border-collapse: collapse;
}
.exp-row {
  display: grid;
  grid-template-columns: 220px 1fr 52px;
  align-items: start;
  border-bottom: 1px solid rgba(144,144,110,0.2);
  padding: 20px 0;
  cursor: pointer;
  transition: background 0.2s;
}
.exp-row:first-child { border-top: 1px solid rgba(144,144,110,0.2); }
.exp-row:hover { background: rgba(144,144,110,0.06); }
.exp-area {
  font-family: "commuters-sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  padding-right: 24px;
  transition: color 0.2s;
}
.exp-row:hover .exp-area { color: var(--olive); }
.exp-summary {
  font-family: "commuters-sans", sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.7;
  padding-right: 24px;
}
.exp-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 3px;
  flex-shrink: 0;
}
.exp-plus {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: background 0.2s, color 0.2s, transform 0.35s ease;
  user-select: none;
}
.exp-row.open .exp-plus {
  background: var(--olive);
  color: #fff;
  transform: rotate(45deg);
}
.exp-detail {
  grid-column: 2 / 3;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.exp-detail-inner {
  font-family: "commuters-sans", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 14px 24px 6px 0;
  border-top: 1px solid rgba(144,144,110,0.15);
  margin-top: 12px;
}
.exp-row.open .exp-detail {
  max-height: 300px;
}
/* ── VALUES, numbered cards ───────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.value-card {
  background: var(--olive);
  padding: 32px 24px 28px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.value-card:hover {
  background: var(--charcoal);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.value-num {
  font-family: "commuters-sans", sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.value-card:hover .value-num {
  color: rgba(255,255,255,0.3);
}
.value-card h3 {
  font-family: "commuters-sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ebe6dc;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s;
}
.value-card:hover h3 { color: #fff; }
.value-card p {
  font-family: "commuters-sans", sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  color: #505151;
  line-height: 1.7;
  transition: color 0.3s;
}
.value-card:hover p { color: rgba(255,255,255,0.85); }
@media (max-width: 900px) {
  .exp-row { grid-template-columns: 160px 1fr 44px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
}


/* === Services === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
.nav-links li a:hover,.nav-links li a.active{color:#505151;}
/* PAGE HERO */

/* LAYOUT */
.section-cream{background:var(--cream);padding:80px 40px;}
.footer-grid p,.footer-grid a,.footer-grid li{font-family:"commuters-sans",sans-serif;font-weight:300;font-size:13px;line-height:1.9;color:#505151;}
/* ── SERVICE SECTIONS ─────────────────────────────── */
.svc-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--taupe);
}
.svc-section:last-child { border-bottom: none; }
.svc-left { position: sticky; top: 88px; }
.svc-num {
  font-family: "commuters-sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: rgba(144,144,110,0.18);
  line-height: 1;
  margin-bottom: 8px;
}
.svc-title {
  font-family: "commuters-sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 24px;
}
.svc-body p {
  font-family: "commuters-sans", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 18px;
}
/* Expandable detail trigger */
.svc-detail-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  margin-top: 28px;
  padding: 16px 0;
  border-top: 1px solid rgba(144,144,110,0.25);
  border-bottom: 1px solid rgba(144,144,110,0.25);
  user-select: none;
  transition: background 0.2s;
}
.svc-detail-trigger:hover { background: rgba(144,144,110,0.05); }
.svc-detail-trigger:hover .svc-trigger-label { color: var(--olive); }
.svc-trigger-label {
  font-family: "commuters-sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text);
  flex: 1;
  transition: color 0.2s;
}
.svc-plus {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.35s ease;
}
.svc-detail-trigger.open .svc-plus {
  background: var(--olive);
  color: #fff;
  transform: rotate(45deg);
}
/* Expandable detail panel */
.svc-detail-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.svc-detail-panel.open { max-height: 600px; }
.svc-detail-inner {
  padding: 24px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-detail-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(144,144,110,0.15);
  transition: background 0.15s;
}
.svc-detail-item:last-child { border-bottom: none; }
.svc-detail-item:hover { background: rgba(144,144,110,0.05); }
.svc-detail-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--olive);
  flex-shrink: 0;
  margin-top: 6px;
}
.svc-detail-item span {
  font-family: "commuters-sans", sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
}
@media(max-width:900px){
  .svc-section{grid-template-columns:1fr;gap:32px;}
  .svc-left{position:static;}
}
@media(max-width:1024px){.footer-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:680px){
  .nav-links{display:none;}
  .page-hero,.section-cream,.section-taupe,.cta-band,footer{padding-left:20px;padding-right:20px;}
  .footer-grid{grid-template-columns:1fr;}
  .cta-btns{flex-direction:column;align-items:center;}
}


/* === Contact/Map === */
nav{position:fixed;inset:0 0 auto 0;z-index:100;height:68px;background:var(--olive);display:flex;align-items:center;}
.section-cream{background:var(--cream);padding:80px 40px;}
.reveal{opacity:0;transform:translateY(28px);transition:opacity 1.1s ease,transform 1.1s ease;}
.cta-band{background:var(--charcoal);padding:80px 40px;text-align:center;}
footer{background:var(--olive);padding:52px 40px 44px;}
/* Article specific */
.article-hero{margin-top:68px;position:relative;width:100%;aspect-ratio:16/6;background:#111;overflow:hidden;}
.article-hero img{position:absolute;inset:0;width:100%;height:130%;top:-15%;object-fit:cover;will-change:transform;}
.article-hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.7) 100%);}
.article-hero-text{position:absolute;bottom:10%;left:50%;transform:translateX(-50%);width:100%;max-width:860px;padding:0 40px;text-align:center;}
.article-meta{font-family:"commuters-sans",sans-serif;font-weight:400;font-size:11px;color:#91906e;letter-spacing:0.08em;margin-bottom:14px;}
.article-hero-text h1{font-family:"commuters-sans",sans-serif;font-weight:700;font-size:clamp(24px,3.5vw,42px);color:#ebe6dc;line-height:1.15;}
.article-body{max-width:760px;margin:0 auto;padding:0 40px 72px;}
.article-body h2{font-family:"commuters-sans",sans-serif;font-weight:700;font-size:22px;color:var(--text);margin:40px 0 16px;line-height:1.25;}
.article-body p{font-family:"commuters-sans",sans-serif;font-weight:300;font-size:16px;color:var(--text);line-height:1.9;margin-bottom:22px;}
.article-body blockquote{border-left:3px solid var(--olive);padding:16px 24px;margin:32px 0;background:var(--taupe);}
.article-body blockquote p{font-size:15px;font-style:italic;color:var(--olive);margin-bottom:0;}
.article-body ul{font-family:"commuters-sans",sans-serif;font-weight:300;font-size:16px;color:var(--text);line-height:1.75;margin:0 0 22px;padding-left:22px;}
.article-body ul li{margin-bottom:10px;}
.author-bar{background:var(--taupe);padding:32px 40px;max-width:760px;margin:0 auto;display:flex;align-items:center;gap:24px;}
.author-bar img{width:72px;height:72px;border-radius:50%;object-fit:cover;filter:grayscale(100%);}
.author-bar-text p{font-family:"commuters-sans",sans-serif;font-weight:300;font-size:13px;color:var(--text);line-height:1.7;}
.author-bar-text strong{font-weight:600;}

input::placeholder, textarea::placeholder { color: rgba(61,61,53,0.4); }
button:hover { background: var(--charcoal) !important; }
/* MAP ROLLOVER */
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  filter: grayscale(100%) sepia(20%) hue-rotate(170deg) brightness(0.65) contrast(1.1);
  transition: filter 0.4s ease;
}
.map-wrap:hover {
  filter: grayscale(60%) sepia(30%) hue-rotate(30deg) brightness(0.75) contrast(1.05);
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(80,81,81,0.09);
  z-index: 1;
  transition: background 0.4s ease;
  pointer-events: none;
}
.map-wrap:hover .map-overlay {
  background: rgba(144,144,110,0.07);
}


/* === Articles === */
/* Two-column article layout */
.article-layout{max-width:1160px;margin:0 auto;padding:72px 40px;display:grid;grid-template-columns:280px 1fr;gap:72px;align-items:start;}
.article-left{position:sticky;top:88px;}
.article-left h1{font-family:"commuters-sans",sans-serif;font-weight:700;font-size:clamp(20px,2.2vw,28px);color:var(--text);line-height:1.25;margin-bottom:32px;text-align:left;}
/* Author details in left column */
.author-block{display:flex;flex-direction:column;gap:12px;}
.author-block img{width:72px;height:72px;border-radius:50%;object-fit:cover;filter:grayscale(100%);}
.author-block-text p{font-family:"commuters-sans",sans-serif;font-weight:300;font-size:13px;color:var(--text);line-height:1.75;}
.author-block-text strong{font-weight:600;}
/* Article body, right column */
.article-body h2{font-family:"commuters-sans",sans-serif;font-weight:700;font-size:20px;color:var(--text);margin:36px 0 14px;line-height:1.25;}

/* Legal page */
.legal-layout {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}
.legal-eyebrow {
  font-family: "commuters-sans", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
}
.legal-title {
  font-family: "commuters-sans", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 12px;
}
.legal-updated {
  font-family: "commuters-sans", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 52px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(144,144,110,0.25);
}
.legal-body h2 {
  font-family: "commuters-sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin: 44px 0 14px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  font-family: "commuters-sans", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 18px;
}
.legal-body ul {
  margin: 0 0 18px 0;
  padding-left: 20px;
}
.legal-body ul li {
  font-family: "commuters-sans", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 8px;
}
.legal-body a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body a:hover { color: var(--text); }
.legal-divider {
  border: none;
  border-top: 1px solid rgba(144,144,110,0.2);
  margin: 40px 0;
}
.legal-note {
  background: rgba(144,144,110,0.08);
  border-left: 3px solid var(--olive);
  padding: 20px 24px;
  margin: 32px 0;
}
.legal-note p {
  margin-bottom: 0;
  font-size: 14px;
}


/* ── Mobile nav ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#nav-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--olive);
  z-index: 99;
  padding: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
#nav-mobile-menu.open { display: block; }
#nav-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 8px 0 16px;
}
#nav-mobile-menu ul li a {
  display: block;
  font-family: "commuters-sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  padding: 14px 24px;
  transition: background 0.15s;
}
#nav-mobile-menu ul li a:hover { background: rgba(0,0,0,0.1); }
#nav-mobile-menu .mobile-cta {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-cta   { display: none !important; }
  .nav-hamburger { display: flex; }
  .intro-band, .why-section, .services-section,
  .jim-section, .insights-section, .cta-band, footer {
    padding-left: 24px; padding-right: 24px;
  }
  .intro-band > div, .why-section > div,
  .cta-band > div {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .svc-grid { grid-template-columns: repeat(2,1fr) !important; }
  .insights-grid { grid-template-columns: 1fr !important; }
}

/* ─── SPA Router ─── */
.nav-links a.nav-active { color: rgba(255,255,255,1); font-weight: 600; }

