:root {
  --ink: #172032;
  --muted: #5d687a;
  --paper: #f6f3ed;
  --white: #ffffff;
  --blue: #173e6b;
  --blue-2: #0f2f54;
  --gold: #d9a441;
  --red: #b9312d;
  --line: rgba(23, 32, 50, 0.14);
  --shadow: 0 20px 60px rgba(23, 32, 50, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img,
iframe {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: var(--blue);
  text-decoration: none;
  min-width: 0;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
  background: rgba(23, 62, 107, 0.08);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: 660px;
  display: grid;
  align-items: end;
  color: white;
  background:
    linear-gradient(90deg, rgba(12, 23, 39, 0.9), rgba(12, 23, 39, 0.58) 48%, rgba(12, 23, 39, 0.1)),
    url("assets/images/mathew-forshaw.jpg") center / cover;
}

.hero-inner,
.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 86px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 86px);
}

.hero-copy,
.page-hero p {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: white;
  background: var(--red);
}

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.button.light {
  color: var(--blue);
  background: var(--white);
  border-color: var(--line);
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.grid {
  display: grid;
  grid-template-columns: 0.85fr 1.55fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 34px rgba(23, 32, 50, 0.08);
}

.panel h2 {
  margin-bottom: 16px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.panel h3 {
  margin: 18px 0 8px;
  color: var(--blue);
  font-size: 18px;
}

.panel p {
  color: var(--muted);
}

.link-list,
.press-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.link-list a,
.press-list a {
  display: block;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.press-date {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stat {
  padding: 22px;
  background: var(--white);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 22px;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.page-hero {
  min-height: 660px;
  display: grid;
  align-items: end;
  padding: 86px 0;
  color: white;
  background:
    linear-gradient(90deg, rgba(12, 23, 39, 0.92), rgba(12, 23, 39, 0.48)),
    url("assets/images/mathew-forshaw.jpg") center / cover;
}

.form-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.form-frame iframe {
  display: block;
  width: 100%;
  min-height: var(--form-height, 1100px);
  border: 0;
}

.notice {
  border-left: 5px solid var(--gold);
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-2);
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner a {
  color: white;
}

@media (max-width: 1100px) {
  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .nav {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
    background: var(--white);
    border: 1px solid var(--line);
  }

  .grid,
  .content-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .about-panel {
    order: 1;
  }

  .press-panel {
    order: 2;
  }

  .links-panel {
    order: 3;
  }

  .hero {
    min-height: 620px;
    background-position: 58% center;
  }

  .page-hero {
    min-height: 620px;
    background-position: 58% center;
  }
}

@media (max-width: 720px) {
  .nav,
  .hero-inner,
  .wrap,
  .footer-inner {
    width: min(100% - 24px, 1160px);
  }

  .brand strong {
    max-width: 260px;
    font-size: 20px;
    line-height: 1.08;
  }

  .brand span {
    max-width: 230px;
    font-size: 12px;
    line-height: 1.2;
  }

  .hero {
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(12, 23, 39, 0.35), rgba(12, 23, 39, 0.94)),
      url("assets/images/mathew-forshaw.jpg") 56% center / cover;
  }

  .hero-inner {
    padding: 56px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-copy,
  .page-hero p {
    font-size: 17px;
  }

  .section {
    padding: 52px 0;
  }

  .page-hero {
    min-height: 560px;
    padding: 56px 0;
    background:
      linear-gradient(180deg, rgba(12, 23, 39, 0.45), rgba(12, 23, 39, 0.94)),
      url("assets/images/mathew-forshaw.jpg") 56% center / cover;
  }

  .panel {
    padding: 22px;
  }

  .panel h2 {
    font-size: 30px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

@media (max-width: 380px) {
  .brand strong {
    max-width: 210px;
    font-size: 18px;
  }

  .brand span {
    max-width: 200px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 36px;
  }
}
