:root {
  --ink: #15221c;
  --forest: #13271f;
  --forest-2: #1f3a2e;
  --cream: #f7f2e7;
  --paper: #fffdf8;
  --gold: #c9933e;
  --gold-light: #e6c88e;
  --sage: #dfe8df;
  --muted: #5f6963;
  --line: rgba(21, 34, 28, 0.14);
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(19, 39, 31, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -60px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

.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: 1000;
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(19, 39, 31, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 2px rgba(230, 200, 142, 0.35);
}

.brand-name {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 650;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 17px;
  color: var(--cream);
  background: var(--forest);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 147, 62, 0.15), transparent 26%),
    linear-gradient(135deg, var(--cream) 0%, #fffdf8 52%, #edf2eb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image: radial-gradient(rgba(19, 39, 31, 0.2) 0.8px, transparent 0.8px);
  background-size: 22px 22px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #7b5a25;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(56px, 6.7vw, 88px);
}

h1 span {
  color: var(--forest-2);
  font-style: italic;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 64px);
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.25;
}

.hero-intro {
  max-width: 630px;
  margin-bottom: 34px;
  color: #425048;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--cream);
  background: var(--forest);
  box-shadow: 0 15px 28px rgba(19, 39, 31, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #1d3a2d;
  box-shadow: 0 18px 34px rgba(19, 39, 31, 0.23);
}

.button-secondary {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(19, 39, 31, 0.2);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: grid;
  gap: 2px;
}

.hero-proof strong {
  color: var(--forest);
  font-size: 17px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(19, 39, 31, 0.13);
  border-radius: 50% 50% 44% 56% / 44% 46% 54% 56%;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(19, 39, 31, 0.25);
  border-radius: 50%;
}

.orbit-one {
  inset: 11%;
}

.orbit-two {
  inset: 25%;
}

.visual-centre {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--forest);
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 54px rgba(19, 39, 31, 0.28), inset 0 0 0 3px rgba(230, 200, 142, 0.3);
}

.visual-centre span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
}

.visual-centre small {
  margin-top: 8px;
  color: var(--gold-light);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.visual-card {
  position: absolute;
  z-index: 2;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(19, 39, 31, 0.12);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.91);
  box-shadow: 0 16px 35px rgba(19, 39, 31, 0.14);
  backdrop-filter: blur(12px);
}

.card-one {
  left: -5%;
  top: 18%;
}

.card-two {
  right: -5%;
  top: 48%;
}

.card-three {
  left: 9%;
  bottom: 6%;
}

.card-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--forest);
  background: var(--sage);
  font-weight: 850;
}

.visual-card div {
  display: grid;
}

.visual-card small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.visual-card strong {
  font-size: 16px;
}

.intro-strip {
  color: var(--cream);
  background: var(--forest);
}

.intro-strip-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}

.intro-strip p {
  margin: 0;
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-strip span {
  position: relative;
}

.intro-strip span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -32px;
  color: var(--gold);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading > p:last-child,
.approach-copy > p,
.about-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.programme-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.programme-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.programme-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.programme-card.featured {
  color: var(--cream);
  background: var(--forest);
}

.programme-card.featured p,
.programme-card.featured li {
  color: rgba(247, 242, 231, 0.78);
}

.programme-card.featured::after {
  border-color: rgba(247, 242, 231, 0.15);
}

.programme-number {
  margin-bottom: 48px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.card-label {
  position: absolute;
  right: 26px;
  top: 24px;
  padding: 6px 11px;
  border: 1px solid rgba(230, 200, 142, 0.3);
  border-radius: 999px;
  color: var(--gold-light) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.programme-card > p {
  max-width: 520px;
  color: var(--muted);
}

.programme-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.programme-card li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #435048;
  font-size: 13px;
}

.programme-card.featured li {
  border-color: rgba(247, 242, 231, 0.18);
}

.approach {
  color: var(--cream);
  background: var(--forest);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 92px;
  align-items: start;
}

.approach .eyebrow {
  color: var(--gold-light);
}

.approach-copy {
  position: sticky;
  top: 130px;
}

.approach-copy > p {
  color: rgba(247, 242, 231, 0.72);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 18px;
  color: var(--gold-light);
  font-weight: 760;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 21px;
  padding: 28px;
  border: 1px solid rgba(247, 242, 231, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.step > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--gold-light);
  font-weight: 900;
}

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

.step p {
  margin: 0;
  color: rgba(247, 242, 231, 0.68);
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 90px;
  align-items: center;
}

.about-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 48% 52% 34% 66% / 50% 37% 63% 50%;
  background:
    radial-gradient(circle at 20% 25%, rgba(230, 200, 142, 0.26), transparent 25%),
    linear-gradient(145deg, #1c392c, #0e2119);
  box-shadow: var(--shadow);
}

.about-panel::before,
.about-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(230, 200, 142, 0.2);
  border-radius: 50%;
}

.about-panel::before {
  width: 330px;
  height: 330px;
}

.about-panel::after {
  width: 430px;
  height: 430px;
}

.about-monogram {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--cream);
  font-size: 118px;
  letter-spacing: -0.08em;
}

.qualification-badge {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 28px;
  width: 130px;
  height: 130px;
  display: grid;
  align-content: center;
  justify-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--gold-light);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
  transform: rotate(-7deg);
}

.qualification-badge span,
.qualification-badge small {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qualification-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.credentials span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 700;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-note {
  display: grid;
  gap: 2px;
  margin-top: 32px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.contact-note span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 19px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(19, 39, 31, 0.08);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  font-size: 13px;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(21, 34, 28, 0.2);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fffefa;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
  min-height: 51px;
  padding: 0 14px;
}

textarea {
  min-height: 136px;
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 147, 62, 0.13);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-small,
.form-status {
  margin: -5px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  color: var(--forest);
  font-weight: 700;
}

.site-footer {
  padding: 48px 0 28px;
  color: rgba(247, 242, 231, 0.78);
  background: #0e1c16;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: start;
  gap: 30px;
}

.footer-brand {
  color: var(--cream);
}

.footer-grid > div > p {
  margin: 16px 0 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.copyright {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 242, 231, 0.13);
  font-size: 12px;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(201, 147, 62, 0.6);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 980px) {
  .section {
    padding: 88px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-grid,
  .approach-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 520px;
    margin-inline: auto;
  }

  .approach-copy,
  .contact-copy {
    position: static;
  }

  .about-panel {
    min-height: 480px;
  }

  .about-copy {
    max-width: 760px;
  }

  .intro-strip-inner {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-block: 24px;
  }

  .intro-strip span:not(:last-child)::after {
    display: none;
  }
}

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

  .nav-wrap {
    min-height: 70px;
  }

  .brand-name {
    font-size: 15px;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 20px 18px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 30px rgba(19, 39, 31, 0.1);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 10px;
  }

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

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero-intro {
    font-size: 18px;
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .visual-card {
    min-width: 175px;
    padding: 13px;
  }

  .card-one {
    left: -1%;
    top: 8%;
  }

  .card-two {
    right: -1%;
    top: 54%;
  }

  .card-three {
    left: 5%;
    bottom: 3%;
  }

  .visual-centre {
    width: 145px;
    height: 145px;
  }

  .visual-centre span {
    font-size: 38px;
  }

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

  .programme-card {
    min-height: auto;
    padding: 28px;
  }

  .programme-number {
    margin-bottom: 32px;
  }

  .step {
    grid-template-columns: 46px 1fr;
    padding: 22px;
  }

  .about-panel {
    min-height: 390px;
  }

  .about-monogram {
    font-size: 94px;
  }

  .qualification-badge {
    width: 112px;
    height: 112px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 25px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 440px) {
  .brand-name {
    max-width: 170px;
    white-space: normal;
    line-height: 1.15;
  }

  .hero-visual {
    min-height: 385px;
  }

  .visual-card {
    min-width: 156px;
  }

  .visual-card strong {
    font-size: 14px;
  }

  .visual-card small {
    font-size: 10px;
  }

  .card-three {
    display: none;
  }
}
