:root {
  --navy: #08203a;
  --navy-deep: #041526;
  --gold: #bd8734;
  --gold-soft: #d7ad62;
  --ink: #1c2834;
  --muted: #65717c;
  --paper: #ffffff;
  --soft: #f5f4f0;
  --soft-2: #fbfaf7;
  --line: #e4e1da;
  --green: #2f6f52;
  --red: #974343;
  --shadow: 0 18px 50px rgba(8, 32, 58, .08);
  --radius: 18px;
  --shell: 1140px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  transform: translateY(-170%);
  padding: 9px 13px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(8, 32, 58, .07);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 190px;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 9px 15px;
  border: 1px solid var(--navy);
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--navy);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -.025em;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(3rem, 5.6vw, 4.4rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 2.95rem);
  font-weight: 750;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
  font-weight: 750;
}

p {
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 790;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.button-primary {
  background: var(--navy);
  color: #fff;
}

.button-primary:hover {
  background: var(--gold);
}

.button-secondary {
  border-color: var(--navy);
  background: #fff;
  color: var(--navy);
}

.button-wide {
  width: 100%;
}

.text-link {
  color: var(--navy);
  font-weight: 760;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--gold);
}

.hero {
  padding: 82px 0 76px;
  background:
    radial-gradient(circle at 84% 20%, rgba(189, 135, 52, .10), transparent 28%),
    linear-gradient(180deg, #fff, var(--soft-2));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(310px, .87fr);
  gap: 68px;
  align-items: center;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: #465460;
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 29px;
}

.microcopy {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.hero-note {
  padding: 31px 33px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.note-kicker {
  margin-bottom: 11px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.note-main {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 720;
  line-height: 1.42;
}

.hero-note p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.situations-section {
  background: var(--soft);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 48px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.situations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.situation {
  min-height: 220px;
  padding: 28px 30px;
  background: #fff;
}

.situation > span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 850;
}

.situation p {
  margin-bottom: 0;
  color: var(--muted);
}

.situation-quote {
  display: flex;
  align-items: center;
  background: var(--navy);
}

.situation-quote p {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 720;
  line-height: 1.42;
}

.story-section {
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 88px;
  align-items: start;
}

.story-heading {
  position: sticky;
  top: 110px;
}

.story-copy p {
  color: #4f5d68;
  font-size: 1.03rem;
}

.story-copy .lead-paragraph {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 680;
}

.principles-section {
  padding-top: 22px;
  background: #fff;
}

.principle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.principle {
  min-height: 440px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-2);
}

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

.station-visual {
  display: flex;
  align-items: center;
  margin-top: 34px;
}

.station {
  display: grid;
  place-items: center;
  flex: 0 0 47px;
  width: 47px;
  height: 47px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--navy);
  font-weight: 820;
}

.station.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.station-visual i {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(189, 135, 52, .2));
}

.pitch {
  position: relative;
  margin-top: 32px;
  aspect-ratio: 2 / .8;
  border: 1px solid rgba(8, 32, 58, .22);
  border-radius: 8px;
  overflow: hidden;
}

.pitch-mid {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(8, 32, 58, .18);
}

.pitch-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(8, 32, 58, .18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pitch-box {
  position: absolute;
  top: 24%;
  width: 18%;
  height: 52%;
  border: 1px solid rgba(8, 32, 58, .18);
}

.pitch-left {
  left: -1px;
}

.pitch-right {
  right: -1px;
}

.people-section {
  background: var(--navy);
  color: rgba(255, 255, 255, .72);
}

.people-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 74px;
  align-items: start;
}

.people-main h2,
.people-note h3 {
  color: #fff;
}

.people-main .eyebrow,
.people-note .note-kicker {
  color: var(--gold-soft);
}

.people-main p {
  max-width: 760px;
}

.people-note {
  padding: 28px 30px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, .04);
}

.people-note p:last-child {
  margin-bottom: 0;
}

.organisation-section {
  background: #fff;
}

.organisation-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 86px;
}

.organisation-note {
  align-self: start;
}

.organisation-copy p {
  color: #4f5d68;
  font-size: 1.03rem;
}

.expectations-section {
  background: var(--soft-2);
}

.expectations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.expectation {
  padding: 25px 22px;
  border-right: 1px solid var(--line);
}

.expectation:last-child {
  border-right: 0;
}

.expectation p {
  margin-bottom: 0;
  color: var(--muted);
}

.services-section {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 78px;
}

.services-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.services-intro p:not(.eyebrow) {
  color: var(--muted);
}

.services-list {
  border-top: 1px solid var(--line);
}

.service {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.service h3 {
  margin-bottom: 6px;
}

.service p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-tech {
  margin-top: 18px;
  padding: 25px 27px;
  border: 0;
  border-radius: 14px;
  background: var(--soft);
}

.about-section {
  background: var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 74px;
  align-items: start;
}

.about-copy p {
  color: #4f5d68;
  font-size: 1.02rem;
}

.personal-note {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.personal-item + .personal-item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.personal-item h3 {
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.personal-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.case-section {
  background: #fff;
}

.case-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.case-copy p {
  color: #4f5d68;
  font-size: 1.02rem;
}

.case-copy blockquote {
  margin: 29px 0 0;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: var(--soft);
  color: var(--navy);
  font-size: 1.13rem;
  font-weight: 700;
}

.talk-section {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .7);
}

.talk-wrap {
  max-width: 900px;
}

.talk-wrap .eyebrow {
  color: var(--gold-soft);
}

.talk-wrap h2 {
  color: #fff;
}

.talk-quote {
  margin-bottom: 23px;
  color: #fff;
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
  font-weight: 720;
  line-height: 1.28;
  letter-spacing: -.02em;
}

.talk-wrap > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
}

.booking-section {
  background: var(--soft-2);
}

.booking-head {
  max-width: 780px;
  margin-bottom: 40px;
}

.booking-head > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  align-items: start;
}

.availability-card,
.booking-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.availability-card {
  padding: 22px;
}

.availability-status {
  min-height: 0;
  color: var(--red);
  font-size: .8rem;
}

.availability-status:empty {
  display: none;
}

.availability-week + .availability-week {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.availability-week-head {
  margin-bottom: 10px;
}

.availability-week-head strong {
  color: var(--navy);
  font-size: .84rem;
}

.availability-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.availability-day {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.availability-day-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
}

.availability-day-head strong {
  color: var(--navy);
  font-size: .81rem;
  text-transform: capitalize;
}

.availability-day-head span {
  color: var(--muted);
  font-size: .72rem;
}

.availability-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.slot {
  min-width: 59px;
  min-height: 33px;
  padding: 0 9px;
  border: 1px solid rgba(8, 32, 58, .28);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: .73rem;
  font-weight: 770;
  cursor: pointer;
}

.slot:hover,
.slot.selected {
  border-color: var(--gold);
  background: #fbf5ea;
  color: #8e6424;
}

.no-slots {
  margin: 0;
  color: var(--muted);
}

.availability-contact {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .84rem;
}

.availability-contact a {
  color: var(--navy);
  font-weight: 720;
}

.booking-card {
  position: sticky;
  top: 92px;
  overflow: hidden;
}

.selection-summary {
  padding: 20px 22px;
  background: var(--navy);
  color: #fff;
}

.selection-summary span,
.selection-summary strong,
.selection-summary em {
  display: block;
}

.selection-summary span {
  margin-bottom: 4px;
  color: var(--gold-soft);
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.selection-summary strong {
  font-size: .95rem;
}

.selection-summary em {
  margin-top: 2px;
  color: rgba(255, 255, 255, .64);
  font-size: .77rem;
  font-style: normal;
}

.booking-form {
  padding: 22px;
}

.booking-form label {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: .81rem;
  font-weight: 760;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  margin-top: 5px;
  padding: 10px 11px;
  border: 1px solid #d4d9dc;
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: var(--ink);
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(189, 135, 52, .10);
}

.booking-form textarea {
  resize: vertical;
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.form-message {
  margin-top: 10px;
  font-size: .81rem;
}

.form-message.success {
  color: var(--green);
  font-weight: 700;
}

.form-message.error {
  color: var(--red);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.direct-section {
  padding: 68px 0;
  background: #fff;
}

.direct-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 76px;
}

.direct-grid h2 {
  margin-bottom: 0;
}

.direct-links {
  border-top: 1px solid var(--line);
}

.direct-links a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.direct-links span {
  color: var(--muted);
  font-size: .79rem;
}

.direct-links strong {
  color: var(--navy);
}

.direct-links a:hover strong {
  color: var(--gold);
}

.site-footer {
  padding: 42px 0;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .58);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr .8fr;
  gap: 48px;
  align-items: start;
}

.footer-brand img {
  width: 200px;
  margin-bottom: 12px;
}

.footer-brand p {
  margin-bottom: 0;
  font-size: .8rem;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 7px;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, .66);
  font-size: .8rem;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold-soft);
}

.footer-contact span {
  font-size: .75rem;
}

.privacy-back {
  text-decoration: none;
}

.privacy-main {
  min-height: 100vh;
  padding: 86px 0;
  background: var(--soft-2);
}

.privacy-content {
  max-width: 800px;
}

.privacy-content h1 {
  font-size: clamp(2.7rem, 5vw, 4.1rem);
}

.privacy-lead {
  margin-bottom: 42px;
  color: #4f5d68;
  font-size: 1.08rem;
}

.privacy-content section {
  padding: 21px 0;
  border-top: 1px solid var(--line);
}

.privacy-content section h2 {
  margin-bottom: 7px;
  font-size: 1.4rem;
}

.privacy-content section p {
  color: var(--muted);
}

.admin-body {
  background: var(--soft-2);
}

.admin-main {
  min-height: 100vh;
  padding: 56px 0 86px;
}

.admin-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.admin-head h1 {
  margin-bottom: 9px;
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.admin-head p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
}

.admin-week {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-week + .admin-week {
  margin-top: 17px;
}

.admin-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.admin-day {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.admin-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.admin-slot {
  display: grid;
  gap: 1px;
  min-height: 43px;
  padding: 5px;
  border-radius: 8px;
  cursor: pointer;
}

.admin-slot strong {
  font-size: .71rem;
}

.admin-slot small {
  font-size: .61rem;
}

.admin-slot.open {
  border: 1px solid rgba(47, 111, 82, .35);
  background: #edf7f1;
  color: var(--green);
}

.admin-slot.closed {
  border: 1px solid rgba(151, 67, 67, .20);
  background: #f7eeee;
  color: var(--red);
}

.admin-slot.past {
  border-color: transparent;
  background: #eeeeec;
  color: #999da0;
  cursor: not-allowed;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .52s ease, transform .52s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1020px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 9px 8px;
  }

  .main-nav .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero-grid,
  .story-grid,
  .people-grid,
  .organisation-grid,
  .services-grid,
  .about-grid,
  .case-grid,
  .booking-grid,
  .direct-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .story-heading,
  .services-intro,
  .booking-card {
    position: static;
  }

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

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

  .expectation:nth-child(2) {
    border-right: 0;
  }

  .expectation:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .availability-days,
  .admin-days {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding: 68px 0;
  }

  .brand img {
    width: 165px;
  }

  .hero {
    padding: 60px 0 56px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.75rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .situations-grid,
  .expectations-grid {
    grid-template-columns: 1fr;
  }

  .situation {
    min-height: 0;
  }

  .expectation,
  .expectation:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .expectation:last-child {
    border-bottom: 0;
  }

  .availability-days,
  .admin-days {
    grid-template-columns: 1fr;
  }

  .availability-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .slot {
    min-width: 0;
  }

  .admin-slots {
    grid-template-columns: repeat(4, 1fr);
  }

  .availability-card {
    padding: 17px;
  }

  .form-two {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .admin-head {
    flex-direction: column;
    align-items: stretch;
  }
}
