:root {
  --bg: #0b0a08;
  --bg-raised: #13110e;
  --bg-card: #181511;
  --bg-inset: #100e0c;
  --gold: #c4a35a;
  --gold-bright: #e0c989;
  --gold-deep: #8c7038;
  --line: rgba(196, 163, 90, 0.28);
  --line-soft: rgba(243, 234, 215, 0.08);
  --cream: #f3ead7;
  --cream-soft: #d4c7b0;
  --muted: #9a8f7c;
  --dim: #6f675a;
  --danger: #c46a56;
  --ok: #8aaa74;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --max: 1180px;
  --wide: 1360px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--cream-soft);
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

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

a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--cream);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.2em;
}

#site-header,
#site-footer {
  min-height: 4rem;
}

.inline-error,
.cookie-error {
  margin: 0;
  padding: 0.85rem 1.2rem;
  background: rgba(196, 106, 86, 0.12);
  color: #efc2b6;
  border-bottom: 1px solid rgba(196, 106, 86, 0.35);
  font-size: 0.92rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--gold);
  color: var(--bg);
  padding: 0.4rem 0.8rem;
  z-index: 80;
}

.skip-link:focus {
  top: 0.6rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 10, 8, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 1.05rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--cream);
}

.wm-kicker {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.wm-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 500;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.45rem;
}

.site-nav a {
  color: var(--cream-soft);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 0.2rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.site-nav a[aria-current="page"] {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--line);
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.6rem;
}

.wrap-wide {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.6rem;
}

.kicker {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-masthead {
  padding: 5.5rem 0 2rem;
}

.hero-masthead h1 {
  font-size: clamp(2.8rem, 7vw, 6.1rem);
  font-weight: 500;
  max-width: 16ch;
  margin-bottom: 1.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: end;
}

.lede {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--cream-soft);
  max-width: 42ch;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
}

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

.hero-aside {
  border-left: 1px solid var(--line);
  padding-left: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-frame {
  margin: 3rem 0 0;
  position: relative;
}

.hero-frame img {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
}

.hero-caption {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  background: rgba(11, 10, 8, 0.78);
  border: 1px solid var(--line);
  padding: 0.85rem 1.1rem;
  max-width: 34rem;
  font-size: 0.88rem;
  color: var(--cream-soft);
}

.section {
  padding: 5.2rem 0;
}

.section-tight {
  padding: 3.2rem 0;
}

.section-goldline {
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.split-reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  max-width: 18ch;
}

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

.gold {
  color: var(--gold-bright);
}

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

.figure-item {
  padding: 2.2rem 1.4rem;
  border-right: 1px solid var(--line);
}

.figure-item:last-child {
  border-right: 0;
}

.figure-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 500;
  color: var(--gold-bright);
  margin-bottom: 0.35rem;
}

.figure-item span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}

.card img,
.media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.card:hover img {
  transform: scale(1.04);
  filter: saturate(0.95);
}

.card-body,
.media-body {
  padding: 1.4rem 1.35rem 1.55rem;
}

.card h3,
.media h3 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.meta {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.media {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
}

.media img {
  height: 280px;
}

.featured-programme {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
}

.featured-programme > img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1.3rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}

.btn-gold:hover {
  background: var(--gold-bright);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-bright);
}

.btn-ghost:hover {
  background: rgba(196, 163, 90, 0.12);
  color: var(--cream);
}

.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.4;
  color: var(--cream);
  border-left: 1px solid var(--gold);
  padding-left: 1.4rem;
}

.quote cite {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.voices {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.2rem;
}

.voice {
  background: var(--bg-raised);
  border: 1px solid var(--line-soft);
  padding: 1.6rem 1.45rem;
}

.voice p {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.55;
}

.voice.long {
  grid-row: span 1;
}

.voice footer {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
}

.page-hero {
  padding: 4.5rem 0 2.2rem;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.prose {
  max-width: 68ch;
}

.prose h2 {
  font-size: 2rem;
  margin-top: 2.2rem;
}

.prose h3 {
  font-size: 1.4rem;
  margin-top: 1.6rem;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.gold-rule {
  width: 4.2rem;
  height: 1px;
  background: var(--gold);
  margin: 0 0 1.6rem;
  border: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  padding: 2rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--gold);
  background:
    linear-gradient(180deg, rgba(196, 163, 90, 0.08), transparent 38%),
    var(--bg-card);
}

.price-card h2 {
  font-size: 2rem;
}

.price {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold-bright);
  margin: 0.4rem 0 1rem;
}

.price small {
  font-size: 1rem;
  color: var(--muted);
}

.price-card ul {
  padding-left: 1rem;
  color: var(--cream-soft);
  flex: 1;
}

.price-card .btn {
  margin-top: 1.4rem;
}

.module-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-list li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.module-list .num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.4rem;
}

.instructor {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.6rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  padding: 1.2rem;
}

.instructor img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.75);
}

.faq details {
  border-bottom: 1px solid var(--line-soft);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.form {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  padding: 1.8rem 1.6rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-inset);
  border: 1px solid var(--line-soft);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  outline: none;
  transition: border-color 0.25s var(--ease);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field-error {
  min-height: 1.1rem;
  color: var(--danger);
  font-size: 0.82rem;
  margin-top: 0.3rem;
}

.form-status {
  margin-top: 0.9rem;
  min-height: 1.3rem;
}

.form-status.is-success {
  color: var(--ok);
}

.form-status.is-error {
  color: var(--danger);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2.4rem;
}

.address-block {
  border: 1px solid var(--line);
  padding: 1.6rem;
  background: var(--bg-raised);
}

.blog-article {
  max-width: 74ch;
  margin: 0 auto;
  padding: 3.4rem 1.6rem 5rem;
}

.blog-article .cover {
  width: 100%;
  height: min(52vh, 460px);
  object-fit: cover;
  margin: 1.8rem 0 2.2rem;
  filter: saturate(0.8);
}

.legal table,
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1.2rem 0 2rem;
}

.legal th,
.legal td,
.cookie-table th,
.cookie-table td {
  border: 1px solid var(--line-soft);
  padding: 0.7rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.legal th,
.cookie-table th {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.2rem 0 1.6rem;
  background: var(--bg-raised);
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.6rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-heading {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a,
.site-footer a {
  color: var(--cream-soft);
}

.footer-links a:hover,
.site-footer a:hover {
  color: var(--gold-bright);
}

.footer-wordmark {
  margin-bottom: 0.9rem;
}

.footer-blurb {
  color: var(--muted);
  max-width: 34ch;
}

.copyright {
  max-width: var(--wide);
  margin: 2.4rem auto 0;
  padding: 1.2rem 1.6rem 0;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-size: 0.82rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(19, 17, 14, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.cookie-banner-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 1.1rem 1.6rem;
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  margin: 0;
  color: var(--cream-soft);
  font-size: 0.92rem;
  max-width: 70ch;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.4rem;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.atlas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}

.atlas-item {
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
}

.atlas-item h3 {
  font-size: 1.7rem;
}

.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-soft);
  margin: 1.5rem 0 2.2rem;
}

.case-study img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(0.75);
}

.case-copy {
  padding: 2rem 1.8rem;
  background: var(--bg-card);
}

.person-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.person-row img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(0.8);
}

.note-panel {
  background: var(--bg-raised);
  border-left: 1px solid var(--gold);
  padding: 1.3rem 1.4rem;
  color: var(--cream-soft);
}

.journal-list .card img {
  height: 200px;
}

.noscript-note {
  margin: 0;
  padding: 0.7rem 1.6rem;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split-reverse,
  .card-grid,
  .card-grid-2,
  .figure-strip,
  .voices,
  .price-grid,
  .contact-grid,
  .footer-inner,
  .atlas-grid,
  .case-study,
  .instructor,
  .featured-programme {
    grid-template-columns: 1fr;
  }

  .figure-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(11, 10, 8, 0.97);
    flex-direction: column;
    padding: 1rem 1.6rem 1.4rem;
    border-bottom: 1px solid var(--line);
    gap: 0.85rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-aside {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 1.3rem 0 0;
  }

  .header-inner {
    position: relative;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
