:root {
  --ink: #121e2b;
  --muted: #53606a;
  --line: #e0e2df;
  --surface: #ffffff;
  --soft: #f4f5f1;
  --accent: #ed7850;
  --accent-deep: #9a513a;
  --max: 1180px;
  --gutter: clamp(22px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 160px;
}

.brand img {
  width: 300px;
}

.menu-toggle {
  display: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  content: "";
  position: relative;
}

.menu-button span::before,
.menu-button span::after {
  position: absolute;
}

.menu-button span::before {
  top: -7px;
}

.menu-button span::after {
  top: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 34px);
  color: #4b4d50;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--accent);
}

main {
  overflow: hidden;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 104px) var(--gutter);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(48px, 8vw, 96px);
}

.page-hero.visual-heavy {
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: stretch;
}

.page-hero.visual-heavy .photo-frame {
  min-height: 500px;
}

.page-hero.visual-heavy .photo-frame img {
  height: 100%;
  min-height: 500px;
  aspect-ratio: auto;
}

.page-hero.tight {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 5.8vw, 78px);
}

h2 {
  font-size: clamp(34px, 4.4vw, 58px);
}

h3 {
  font-size: clamp(23px, 2.2vw, 31px);
}

.lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #28333e;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
}

.body-copy p {
  max-width: 700px;
  margin: 0 0 20px;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.photo-frame {
  position: relative;
}

.photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: none;
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid rgba(237, 120, 80, 0.36);
  border-radius: 8px;
  z-index: 0;
  display: none;
}

.photo-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 30, 43, 0) 62%, rgba(18, 30, 43, 0.18)),
    repeating-linear-gradient(145deg, rgba(255,255,255,0.18) 0 1px, transparent 1px 36px);
  opacity: 0.24;
  mix-blend-mode: screen;
}

.photo-frame.route-overlay::after {
  background:
    radial-gradient(circle at 22% 28%, rgba(237, 120, 80, 0.54) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 44%, rgba(237, 120, 80, 0.46) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 70%, rgba(237, 120, 80, 0.42) 0 2px, transparent 3px),
    linear-gradient(128deg, transparent 22%, rgba(237, 120, 80, 0.24) 22.2%, rgba(237, 120, 80, 0.24) 22.8%, transparent 23% 51%, rgba(237, 120, 80, 0.2) 51.2%, rgba(237, 120, 80, 0.2) 51.8%, transparent 52%),
    repeating-linear-gradient(145deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 38px);
  opacity: 0.32;
}

.photo-frame.cinematic img {
  aspect-ratio: 16 / 9;
}

.photo-frame.clean::before,
.photo-frame.clean::after {
  display: none;
}

.photo-frame.clean img {
  box-shadow: none;
}

.photo-frame.nature img,
.visual-row.nature img,
.visual-stack.nature img {
  filter: saturate(0.88) contrast(1.02);
}

.photo-frame.portrait img {
  aspect-ratio: 4 / 5;
}

.visual-row {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.visual-row img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.visual-stack {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
}

.visual-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.rule {
  height: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}

.split.visual-heavy {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.split.visual-heavy > div:first-child,
.split.visual-heavy > img:first-child {
  min-height: 490px;
}

.split.visual-heavy img {
  width: 100%;
  height: 100%;
  min-height: 490px;
  object-fit: cover;
}

.feature-image {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(56px, 8vw, 88px);
}

.feature-image .photo-frame {
  min-height: 500px;
}

.feature-image .photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  aspect-ratio: auto;
  object-fit: cover;
}

.band {
  background: var(--soft);
}

.callout {
  padding: clamp(28px, 4vw, 44px);
  background: var(--ink);
  color: #fff;
}

.callout p {
  margin: 14px 0 0;
  color: #e1e7ea;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  min-height: 190px;
}

.card span,
.profile span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card p,
.profile p,
.contact-note p {
  margin: 14px 0 0;
  color: var(--muted);
}

.profile h3 a {
  border-bottom: 2px solid transparent;
}

.profile h3 a:hover {
  border-color: var(--accent);
}

.profile-link {
  display: inline-block;
  margin-top: auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
  padding-top: 22px;
  align-self: flex-start;
}

.bio-meta {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: var(--muted);
}

.bio-meta strong {
  color: var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.step {
  padding: 26px 22px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step b {
  color: var(--accent-deep);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.profiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.profiles.leadership {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profiles.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 28%;
  margin-bottom: 22px;
  filter: grayscale(1) contrast(1.06);
}

.profile-photo[alt="John Wilkinson"] {
  object-position: 50% 24%;
}

.profile-photo[alt="Inga Ludewig"] {
  object-position: 50% 22%;
}

.profile-photo[alt="Edwin Harland"] {
  object-position: 50% 24%;
}

.profile-photo[alt="Lord Garnier KC"] {
  object-position: 50% 26%;
}

.profile-photo[alt="Professor Michael Burleigh"] {
  object-position: 50% 25%;
}

.profile-photo[alt="John Deverell CBE"] {
  object-position: 50% 25%;
}

.profile-photo[alt="Rupert Wright"] {
  object-position: 50% 24%;
}

.bio-portrait {
  align-self: start;
}

.bio-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 24%;
  box-shadow: none;
  filter: grayscale(1) contrast(1.06);
}

.profile.lead-profile {
  grid-column: auto;
}

.quote {
  padding-left: 22px;
  border-left: 3px solid var(--accent);
  color: #3f4a55;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.contact-panel {
  padding: clamp(28px, 4vw, 44px);
  background: var(--ink);
  color: #fff;
}

.contact-panel a {
  display: inline-block;
  margin-top: 16px;
  color: #fff;
  border-bottom: 2px solid var(--accent);
  font-weight: 800;
}

.contact-note {
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.supporting-visual {
  display: grid;
  gap: 24px;
}

.photo-frame.compact img {
  aspect-ratio: 16 / 10;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #6b747c;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

@media (max-width: 980px) {
  .nav-wrap {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .page-hero,
  .page-hero.visual-heavy,
  .split,
  .split.visual-heavy,
  .contact-grid,
  .visual-row {
    grid-template-columns: 1fr;
  }

  .page-hero.visual-heavy,
  .split.visual-heavy {
    align-items: start;
  }

  .split.visual-heavy > div:first-child,
  .split.visual-heavy > img:first-child {
    order: 0;
  }

  .cards,
  .cards.two,
  .cards.four,
  .steps,
  .profiles,
  .profiles.leadership,
  .profiles.four {
    grid-template-columns: 1fr;
  }

  .profile.lead-profile {
    grid-column: auto;
  }

  .page-hero.visual-heavy .photo-frame,
  .split.visual-heavy > div:first-child,
  .split.visual-heavy > img:first-child,
  .feature-image .photo-frame {
    min-height: auto;
  }

  .page-hero.visual-heavy .photo-frame img,
  .split.visual-heavy img,
  .feature-image .photo-frame img {
    min-height: 320px;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 220px;
  }

  .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .photo-frame img {
    aspect-ratio: 4 / 3;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
    overflow-wrap: break-word;
  }

  .card,
  .profile,
  .step {
    padding: 22px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
