:root {
  --navy: #00264b;
  --navy-mid: #1b5c85;
  --sky: #1ab7ea;
  --grey-bg: #f6f6f6;
  --heading: #232323;
  --text: #5c5b5b;
  --line: #e4e4e4;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Open Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: #fff;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--heading);
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }
a { color: var(--navy-mid); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 780px; }
.center { text-align: center; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.8em;
}
.eyebrow.light { color: rgba(255, 255, 255, 0.8); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: #fff;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; color: var(--navy); }
.logo-small { font-family: var(--serif); font-style: italic; font-size: 0.85rem; }
.logo-big { font-family: var(--serif); font-size: 1.7rem; letter-spacing: 0.04em; text-transform: uppercase; }
.site-nav { display: flex; gap: 34px; }
.site-nav a {
  text-decoration: none; color: var(--heading);
  text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.1em; font-weight: 500;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--sky); }
.nav-toggle { display: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; text-transform: uppercase;
  font-size: 0.8rem; letter-spacing: 0.1em; font-weight: 600;
  padding: 13px 22px; border: 1.5px solid; border-radius: 2px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn span { transition: transform 0.15s; }
.btn:hover span { transform: translateX(4px); }
.btn-solid { background: var(--sky); border-color: var(--sky); color: #fff; }
.btn-solid:hover { background: #0f9dcb; border-color: #0f9dcb; }
.btn-outline-light { color: #fff; border-color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-outline-dark { color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: flex-end;
  padding: 120px 0 90px;
  color: #fff;
  background: url("images/hero.jpg") center / cover no-repeat, var(--navy);
}
.hero { overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 20, 40, 0.55) 0%, rgba(0, 20, 40, 0) 70%),
    linear-gradient(180deg, rgba(0, 20, 40, 0.15) 0%, rgba(0, 20, 40, 0.75) 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 16ch; }

/* Respect users who turn off motion: show the still frame instead */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero-sub { font-size: 1.15rem; max-width: 46ch; color: rgba(255, 255, 255, 0.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* Mission band */
.mission { background: var(--navy); color: #fff; padding: 70px 0; }
.mission-quote { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.4; margin: 0; }

/* Split about */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.split-photo { position: relative; background: #f2f2f2; }
.split-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Keep Carol in frame: she sits just left of centre in the studio photo */
.photo-studio img { object-position: 45% 50%; }
.split-text { padding: 90px 8% 90px 70px; align-self: center; max-width: 680px; }

/* Sections */
.section { padding: 96px 0; }
.section-grey { background: var(--grey-bg); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.card {
  background: #fff; padding: 36px 28px; border-top: 3px solid var(--navy);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-top-color: var(--sky); transform: translateY(-3px); }
.card-icon { width: 46px; height: 46px; margin-bottom: 18px; }
.card-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--navy-mid); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.card p { margin: 0; font-size: 0.95rem; }
.card .card-lead { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--navy); line-height: 1.5; margin-bottom: 12px; }

/* Stats */
.stats { background: var(--navy); color: #fff; padding: 80px 0; }
.stats h2 { color: #fff; margin-bottom: 1.4em; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stats-grid > div { display: flex; flex-direction: column; }
.stat-num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; }
.stat-label { font-family: var(--serif); font-size: 1.05rem; color: rgba(255, 255, 255, 0.8); }

/* Experience */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { display: flex; flex-direction: column; padding: 14px 0 14px 22px; border-left: 2px solid var(--sky); }
.timeline strong { color: var(--heading); font-weight: 600; }
.when { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy-mid); font-weight: 600; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding: 14px 0 14px 30px; border-bottom: 1px solid var(--line); position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--sky); font-weight: 700; }
.checklist + .btn { margin-top: 28px; }
.speaking-photo { aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 36px; }
.speaking-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 45% 30%; display: block; }

/* Contact */
.contact { background: #fff; padding: 96px 0; }
.contact-panel { background: var(--grey-bg); border-radius: 24px; padding: 56px 40px; }
.contact-panel + .contact-panel { margin-top: 20px; }
.contact-top { text-align: center; }
.pill {
  display: inline-block; margin: 0 0 22px; padding: 8px 22px;
  border: 1.5px solid var(--heading); border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; font-weight: 500; color: var(--heading);
}
.contact-top h2 { max-width: 30ch; margin: 0 auto 40px; text-wrap: balance; }
.info-cards { display: grid; grid-template-columns: 1fr 1fr; max-width: 900px; margin: 0 auto; gap: 20px; text-align: left; }
.info-card {
  display: flex; align-items: center; gap: 16px; padding: 22px;
  background: #fff; border-radius: 18px; text-decoration: none; color: var(--heading);
  transition: box-shadow 0.2s;
}
.info-card:hover { box-shadow: 0 6px 20px rgba(0, 38, 75, 0.08); }
.info-icon { flex-shrink: 0; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--navy); }
.info-icon svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.info-text { display: flex; flex-direction: column; min-width: 0; }
.info-label { font-size: 0.85rem; color: var(--text); }
.info-value { font-size: 0.98rem; line-height: 1.4; overflow-wrap: anywhere; }

.contact-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.map { border-radius: 18px; overflow: hidden; min-height: 460px; background: #e5e5e5; }
.map { z-index: 0; }
.office-pin { display: grid; place-items: center; border-radius: 50%; background: rgba(0, 38, 75, 0.22); }
.office-pin span { width: 18px; height: 18px; border-radius: 50%; background: var(--navy); border: 3px solid #fff; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: flex; flex-direction: column; gap: 10px; font-weight: 600; color: var(--heading); font-size: 0.95rem; }
.contact-form input, .contact-form textarea {
  font: inherit; font-weight: 400; color: var(--heading);
  background: #fff; border: 1.5px solid transparent; border-radius: 999px; padding: 15px 22px;
  outline: none; transition: border-color 0.15s;
}
.contact-form textarea { border-radius: 20px; resize: vertical; min-height: 180px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--sky); }
.contact-form ::placeholder { color: #a9a9a9; }
.submit-btn {
  font: inherit; font-weight: 600; color: #fff; background: var(--navy);
  border: 0; border-radius: 999px; padding: 16px; cursor: pointer; transition: background 0.15s;
}
.submit-btn:hover { background: var(--navy-mid); }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0; font-size: 0.92rem; color: var(--navy-mid); min-height: 1.4em; }

/* Footer */
.site-footer { background: #232323; color: #a5a5a5; padding: 36px 0; font-size: 0.82rem; }
.site-footer p { margin: 0 0 0.6em; }
.disclosure { max-width: 90ch; }
.site-footer a { color: #d0d0d0; }

/* Tablet */
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-photo { min-height: 0; aspect-ratio: 1170 / 843; }
  .split-text { padding: 64px 20px; max-width: none; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .info-cards, .contact-bottom { grid-template-columns: 1fr; }
  .map { min-height: 320px; }
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

/* Phone */
@media (max-width: 700px) {
  .section, .contact { padding: 64px 0; }
  .hero { min-height: 70vh; padding: 80px 0 56px; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .header-inner { height: 68px; }
  .logo-big { font-size: 1.4rem; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 0 9px; background: none; border: none; cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2px; background: var(--navy); }
  .site-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: #fff; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 16px 20px; border-bottom: 1px solid var(--line); }
  .cards { grid-template-columns: 1fr; }
  .contact-panel { padding: 36px 20px; border-radius: 18px; }
  .form-row { grid-template-columns: 1fr; }
}
