:root {
  --bg: #0c0b0a;
  --bg-raise: #141210;
  --bg-card: #1b1916;
  --ink: #efe8dc;
  --muted: #a39a8d;
  --gold: #c4a574;
  --gold-deep: #9a7b4a;
  --line: rgba(196, 165, 116, 0.22);
  --danger: #d7a39a;
  --ok: #b7c9a8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Figtree", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  min-height: 100vh;
}

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

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.runtime-error {
  margin: 0;
  padding: 0.75rem 1.25rem;
  background: #3a1f1c;
  color: #f3d5cf;
  font-size: 0.95rem;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
}

.logo-mark {
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid var(--gold);
  background:
    linear-gradient(var(--gold), var(--gold)) top right / 46% 46% no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom left / 46% 46% no-repeat;
}

.logo-word {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

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

.nav-enquire {
  border: 1px solid var(--gold);
  padding: 0.35rem 0.8rem;
  color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.4rem 0.75rem;
  font: inherit;
  cursor: pointer;
}

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid var(--line);
  background: var(--bg-raise);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-heading {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.8rem;
}

.footer-address,
.footer-blurb {
  font-style: normal;
  color: var(--muted);
  margin: 0 0 0.8rem;
}

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

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-base {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin: 0 0 0.75rem;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.45rem 1.15rem;
  border: 1px solid transparent;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: #1a140c;
}

.btn-gold:hover {
  background: var(--ink);
  text-decoration: none;
}

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

.btn-ghost:hover {
  background: rgba(196, 165, 116, 0.12);
  text-decoration: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.text-link::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.text-link:hover::after {
  width: 3.2rem;
}

.hero-spread {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 86vh;
  border-bottom: 1px solid var(--line);
}

.hero-rail {
  padding: 4.5rem 0 3rem 6vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.hero-rail h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  margin: 0.4rem 0 1rem;
}

.hero-photo {
  position: relative;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 86vh;
  filter: saturate(0.75) contrast(1.05);
}

.hero-caption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  background: rgba(12, 11, 10, 0.82);
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
  max-width: 18rem;
  animation: rise 0.9s ease both;
}

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

.proof-item {
  padding: 1.6rem 1.2rem;
  border-right: 1px solid var(--line);
}

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

.proof-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
}

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.card-grid,
.course-grid,
.blog-grid,
.tier-grid,
.review-grid {
  display: grid;
  gap: 1.4rem;
}

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

.course-grid,
.blog-grid,
.review-grid {
  grid-template-columns: repeat(2, 1fr);
}

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

.panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.panel:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 165, 116, 0.5);
}

.panel img,
.media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.quote-slab {
  background:
    linear-gradient(180deg, rgba(196, 165, 116, 0.08), transparent),
    var(--bg-raise);
  border-block: 1px solid var(--line);
  padding: 4.5rem 0;
}

.quote-slab blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.25;
}

.cta-band {
  margin: 2rem 0 0;
  padding: 3rem;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, #171410, #221c16);
}

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

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  max-width: 16ch;
  margin-top: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.modules {
  counter-reset: module;
}

.modules li {
  list-style: none;
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

.modules {
  padding: 0;
}

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

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

form {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: #100e0c;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.75rem 0.85rem;
  font: inherit;
}

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

.field-error {
  min-height: 1.2rem;
  color: var(--danger);
  font-size: 0.88rem;
  margin: 0.25rem 0 0;
}

.form-status {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
}

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

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

.legal {
  max-width: 46rem;
}

.legal h2 {
  margin-top: 2.2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

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

th {
  color: var(--gold);
  font-weight: 600;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: flex;
  gap: 1.2rem;
  justify-content: space-between;
  align-items: center;
  background: #171410;
  border: 1px solid var(--gold);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow);
}

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

.avatar {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

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

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

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

.not-found h1 {
  font-size: 6rem;
  margin: 0;
  color: var(--gold);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-spread,
  .proof-strip,
  .card-grid,
  .course-grid,
  .blog-grid,
  .tier-grid,
  .review-grid,
  .feature-band,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-rail {
    padding: 2.5rem 1.25rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-photo img {
    min-height: 52vh;
  }

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

  .site-nav {
    display: none;
    position: absolute;
    inset: 4.4rem 0 auto;
    background: #12100e;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.4rem;
  }

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

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