/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --sage:        #4A7C59;
  --sage-light:  #7BAE8A;
  --sage-pale:   #EDF4EF;
  --gold:        #C4963A;
  --gold-light:  #F0DFB8;
  --charcoal:    #1E2422;
  --mid:         #4A524D;
  --warm-white:  #FAF9F6;
  --white:       #FFFFFF;
  --border:      #D9E3DB;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --radius:  6px;
  --max-w:   1160px;
  --section: 96px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-body {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #d4a645; transform: translateY(-1px); }

.btn-sage {
  background: var(--sage);
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
  display: inline-block;
}
.btn-sage:hover { background: #3d6b4a; }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--sage);
  color: var(--sage);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--sage); color: white; }

.btn-ghost {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost svg { width: 16px; height: 16px; }

/* ─── ANNOUNCEMENT BAR ───────────────────────────────────── */
.announce {
  background: var(--sage);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px 16px;
}
.announce span { opacity: 0.6; margin: 0 12px; }

/* ─── HEADER ─────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
  /* Prevent the PNG background showing awkwardly on coloured header */
  mix-blend-mode: normal;
}
nav { display: flex; gap: 28px; align-items: center; }
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--sage); }
.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: #3d6b4a !important; }

/* ─── HAMBURGER ──────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.25s;
}
.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); }

/* ─── MOBILE NAV DRAWER ──────────────────────────────────── */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 99; }
.mobile-nav.open { display: block; }
.mobile-nav-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.mobile-nav-drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: var(--white);
  display: flex; flex-direction: column;
  padding: 24px;
  gap: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-close {
  align-self: flex-end;
  background: none; border: none;
  font-size: 22px; cursor: pointer;
  color: var(--mid); margin-bottom: 8px;
}
.mobile-nav-drawer a {
  display: block;
  padding: 14px 0;
  font-size: 17px; font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-drawer a.active { color: var(--sage); }
.mobile-nav-cta {
  margin-top: 16px;
  background: var(--sage);
  color: var(--white) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  border-bottom: none !important;
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--sage-pale);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sage);
}
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--sage); fill: none; }
.trust-divider { width: 1px; height: 28px; background: var(--border); }

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--charcoal);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e2422 60%, #2d3d33 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
}
.page-hero .eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--sage-light);
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 700px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  line-height: 1.7;
}
.page-hero-actions { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  background: var(--sage-pale);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mid);
}
.breadcrumb-inner a { color: var(--sage); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }

/* ─── SECTIONS ───────────────────────────────────────────── */
section { padding: var(--section) 0; }
section.bg-pale  { background: var(--sage-pale); }
section.bg-dark  { background: var(--charcoal); }
section.bg-sage  { background: var(--sage); }
section.bg-white { background: var(--white); }

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ─── IMAGE PLACEHOLDER ──────────────────────────────────── */
.img-placeholder {
  background: var(--sage-pale);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--sage);
  font-size: 13px;
  text-align: center;
  padding: 32px;
  border: 1px dashed var(--sage-light);
}
.img-placeholder svg { width: 36px; height: 36px; stroke: var(--sage); fill: none; opacity: 0.5; }

/* ─── STAT CARDS ─────────────────────────────────────────── */
.stat-card {
  background: var(--sage-pale);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--sage);
}
.stat-card strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card span { font-size: 13px; color: var(--mid); }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card blockquote {
  font-size: 15px; color: var(--mid);
  line-height: 1.75; margin-bottom: 24px;
}
.testi-card blockquote::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 48px; line-height: 0;
  color: var(--sage-pale);
  vertical-align: -18px; margin-right: 4px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 18px; font-weight: 600;
  color: var(--sage); flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.testi-source { font-size: 12px; color: var(--mid); }

/* ─── CONTACT FORM ───────────────────────────────────────── */
.form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border);
}
.form-wrap h3 { font-family: var(--ff-display); font-size: 26px; color: var(--charcoal); margin-bottom: 6px; }
.form-wrap p { font-size: 14px; color: var(--mid); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  background: var(--sage);
  color: white; border: none;
  padding: 14px; width: 100%;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: #3d6b4a; }
.form-note { font-size: 12px; color: var(--mid); text-align: center; margin-top: 12px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.footer-logo strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 20px; font-weight: 400;
  color: var(--white); margin-bottom: 12px;
}
.footer-logo p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-accreds { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.accred-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.55); letter-spacing: 0.05em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}
.footer-social { display: flex; gap: 12px; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.social-icon:hover { background: var(--sage); }
.social-icon svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); fill: none; }

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--sage);
  padding: 64px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.cta-band h2 em { font-style: italic; color: var(--gold-light); }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 16px; margin-top: 8px; }
.cta-band-btn {
  background: var(--white);
  color: var(--sage);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
  flex-shrink: 0;
}
.cta-band-btn:hover { background: var(--gold-light); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section: 64px; }
  .container { padding: 0 20px; }

  nav { display: none; }
  .nav-hamburger { display: flex; }
  .logo img { height: 38px; }
  .header-inner { height: 60px; }

  .announce { font-size: 12px; line-height: 1.5; }
  .announce span { display: none; }

  .trust-divider { display: none; }
  .trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; justify-items: start; }

  .card-grid-2,
  .card-grid-3 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }

  .cta-band-inner { flex-direction: column; align-items: flex-start; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .page-hero { padding: 48px 0 56px; }
}

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