:root {
  --gold: #fbaf40;
  --gold-dark: #f27115;
  --gold-soft: #fef3e0;
  --ink: #211e1e;
  --ink-soft: #5f5b5b;
  --surface: #ffffff;
  --surface-alt: #f5f4f0;
  --surface-dark: #1b1717;
  --border: #e8e5de;
  --max: 1160px;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(33, 30, 30, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
code {
  background: rgba(33, 30, 30, 0.06);
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  font-size: 0.95em;
}
.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}
.narrow-center,
.cta-center {
  text-align: center;
}

.info-card ul,
.feature-list {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
  text-align: left;
}

.info-card li,
.feature-list li {
  text-align: left;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img,
.footer-logo {
  width: auto;
  height: 58px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.site-nav a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--gold-dark); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
}
.btn-outline {
  border-color: var(--border);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover { border-color: #fff; }

.hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(90deg, var(--surface-alt) 0%, var(--surface-alt) 58%, var(--gold) 58%, var(--gold) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}
.hero-copy {
  padding: 2.5rem 0;
}
.eyebrow,
.section-label,
.on-dark.section-label {
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.eyebrow,
.section-label { color: var(--gold-dark); }
.on-dark.section-label { color: var(--gold); }
h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}
.lead,
.section-intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* default intro spacing */
.section-intro {
  margin: 0;
}

/* SERVICES */
#services .section-intro {
  max-width: 120ch;
  text-align: left;
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  margin-top: 0.5rem;
}

/* WHO WE SERVE */
#audience .section-intro {
  max-width: 120ch;
  text-align: left;
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  margin-top: 0.5rem;
}

/* LEADERSHIP */
#team .section-intro {
  max-width: 120ch;
  text-align: left;
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  margin-top: 0.5rem;
}
.on-dark,
.on-dark a,
.on-dark p { color: #fff; }
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}
.pill-row span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-actions.center { justify-content: center; }
.hero-panel {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.stat {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 1.2rem;
}
.stat + .stat { margin-top: 1rem; }
.stat strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}
.quote-card p { margin: 0; font-style: italic; }

.proof-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 1rem 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.proof-grid strong { color: var(--gold); }

.section { padding: 5rem 0; }
.section.light { background: var(--surface-alt); }
.section.highlight { background: var(--surface-dark); }
.cta-band { background: var(--ink); }
.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.info-card,
.audience-card,
.team-card,
.resource-card,
.booking-card,
.form-shell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.info-card ul,
.feature-list {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}
.card-number {
  margin: 0 0 0.5rem;
  color: var(--gold-dark);
  font-weight: 800;
}
.audience-grid h3 { font-size: 1.2rem; }
.team-card .role,
.resource-type {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.steps-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  background: #fff;
}
.steps-grid span {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: start;
}
.booking-grid {
  display: grid;
  gap: 1rem;
}
.booking-card p,
.note-box p,
.form-note { color: var(--ink-soft); }
.note-box {
  margin-top: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  color: #fff;
}
.feature-list.on-dark,
.feature-list.on-dark li,
.note-box p { color: rgba(255, 255, 255, 0.88); }

.contact-grid { align-items: start; }
.contact-details a { color: var(--gold-dark); }
.contact-form {
  display: grid;
  gap: 0.7rem;
}
.contact-form label {
  font-weight: 700;
  font-size: 0.96rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(242, 113, 21, 0.18);
  border-color: var(--gold-dark);
}
.form-note { margin: 0; font-size: 0.92rem; }
.bot-field-wrapper {
  display: none !important;
  visibility: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-footer {
  background: #141210;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #fff;
}
.site-footer a {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
.site-footer a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* TESTIMONIALS */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testimonial-quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: -0.5rem;
  user-select: none;
}
.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  border: none;
}
.testimonial-card blockquote p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
  margin: 0;
}
.testimonial-card cite {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  font-style: normal;
  margin-top: auto;
}

@media (max-width: 980px) {
  .hero {
    background: linear-gradient(180deg, var(--surface-alt) 0%, var(--surface-alt) 62%, var(--gold) 62%, var(--gold) 100%);
  }
  .hero-grid,
  .split-grid,
  .three-up,
  .four-up,
  .two-up,
  .steps-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .site-nav {
    gap: 0.75rem;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: auto;
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }
  .brand img,
  .footer-logo {
    height: 52px;
  }
  .section {
    padding: 4rem 0;
  }
}
