
:root {
  --bg: #f7f3ec;
  --surface: #ffffff;
  --surface-soft: #fcfaf6;
  --surface-alt: #f2ece2;
  --text: #171411;
  --muted: #605750;
  --border: #e4d9c7;
  --gold: #b88a2f;
  --gold-deep: #926d23;
  --gold-soft: #efe4cf;
  --black: #181512;
  --black-soft: #27221d;
  --shadow: 0 18px 46px rgba(23, 20, 17, 0.08);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a { color: inherit; }

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

.narrow { width: min(820px, calc(100% - 40px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 236, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand-wrap,
.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  font-size: 1.03rem;
}

.brand-sub {
  margin: 0;
  font-size: .84rem;
  color: var(--muted);
}

.hero {
  padding: 92px 0 74px;
  background:
    radial-gradient(circle at top left, rgba(184,138,47,0.12), transparent 34%),
    linear-gradient(180deg, #fcfaf6 0%, #f7f3ec 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--gold-deep);
  margin: 0 0 12px;
}

h1, h2, h3 {
  line-height: 1.12;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.55rem, 5.5vw, 4.9rem);
  letter-spacing: -.045em;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.95rem, 3.8vw, 3.05rem);
  letter-spacing: -.03em;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.hero-subhead,
.lead {
  font-size: 1.16rem;
  max-width: 740px;
  color: var(--muted);
  margin-bottom: 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.trust-item strong {
  display: block;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-deep);
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: .97rem;
}

.button {
  display: inline-block;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--black);
  padding: 15px 24px;
  box-shadow: 0 10px 24px rgba(184,138,47,0.18);
}

.button-primary:hover {
  background: #c59636;
}

.button-small {
  background: var(--black);
  color: #fff;
  padding: 10px 16px;
  font-size: .9rem;
}

.button-wide {
  width: 100%;
  text-align: center;
}

.microcopy {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 12px;
}

.offer-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.offer-card > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.offer-card strong {
  display: block;
  font-size: 1.55rem;
  margin: 4px 0;
}

.offer-label {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-deep);
}

.offer-card span:last-child {
  color: var(--muted);
  font-size: .9rem;
}

.hero-panel {
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.panel-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.panel-kicker {
  margin: 0 0 4px;
  color: #dcb96b;
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.hero-panel h2 {
  font-size: 1.56rem;
  margin-bottom: 0;
}

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

.check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: #f5f0e8;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e5be68;
  font-weight: 900;
}

.section { padding: 78px 0; }

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-warm {
  background: linear-gradient(180deg, #f2ece2 0%, #ede4d6 100%);
}

.intro-values { padding-top: 38px; }

.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.two-col { grid-template-columns: repeat(2, 1fr); }

.card,
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(23,20,17,0.03);
}

.card p,
.trust-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.section-heading { max-width: 760px; }

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

.topics-grid ul {
  margin: 0;
  padding-left: 22px;
}

.topics-grid li { margin: 10px 0; }

.supporting-copy {
  margin-top: 26px;
  color: var(--muted);
  max-width: 760px;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

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

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.step > span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-weight: 800;
  border: 1px solid var(--border);
}

.step p { color: var(--muted); margin-top: 0; }

.trust-section {
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.brand-card {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f1e4 100%);
}

.trust-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 12px;
}

.faq {
  border-top: 1px solid var(--border);
  margin-top: 30px;
}

details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

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

.reserve-section {
  background: linear-gradient(180deg, #1f1a16 0%, #171411 100%);
  color: #fff;
}

.reserve-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  padding: 34px;
  border-radius: var(--radius);
}

.reserve-section .eyebrow {
  color: #dcb96b;
}

.class-details p {
  margin: 8px 0;
  color: #eee5d9;
}

.reserve-action {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--border);
}

.reserve-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 8px;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
}

.price-note {
  color: var(--muted);
  margin: 8px 0 20px;
}

.site-footer {
  background: #161310;
  color: #f1e9dc;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  align-items: flex-start;
}

.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-brand {
  font-weight: 800;
  margin: 0 0 4px;
}

.footer-copy {
  color: #d2c6b4;
  margin: 0;
  max-width: 340px;
}

.footer-legal {
  max-width: 720px;
}

.legal {
  max-width: 720px;
  font-size: .84rem;
  color: #cdbfa9;
  margin: 8px 0 0;
}

@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero-grid,
  .split,
  .reserve-card,
  .topics-grid,
  .two-col,
  .trust-strip,
  .offer-card {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 58px; }

  .brand-wrap,
  .footer-brand-wrap {
    align-items: flex-start;
  }

  .logo {
    width: 52px;
    height: 52px;
  }

  .brand { font-size: .95rem; }
  .brand-sub { font-size: .78rem; }

  .button-small { display: none; }

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


/* Included resource pack */
.included-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(184,138,47,0.10);
  border: 1px solid rgba(184,138,47,0.25);
  color: var(--muted);
  font-size: .9rem;
}

.included-note span {
  color: var(--gold-deep);
  font-weight: 800;
}

.resource-pack-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(184,138,47,0.12), transparent 28%),
    var(--surface-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.resource-pack-heading {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 40px;
  align-items: center;
  margin-bottom: 34px;
}

.resource-intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.resource-pack-badge {
  width: 160px;
  min-height: 160px;
  justify-self: end;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow);
  text-align: center;
}

.resource-pack-badge span {
  color: #ddbd75;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}

.resource-pack-badge strong {
  font-size: 1.55rem;
  line-height: 1.2;
  margin: 4px 0;
}

.resource-pack-badge small {
  color: #ddd2c2;
  font-size: .82rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: 0 10px 26px rgba(23,20,17,.045);
}

.resource-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--gold);
}

.resource-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
  border: 1px solid var(--border);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.resource-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.resource-card p {
  color: var(--muted);
  margin: 0;
}

.resource-footer-note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
}

.resource-footer-note img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.resource-footer-note p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 820px) {
  .included-note {
    display: flex;
    width: fit-content;
    margin: 8px 0 0;
  }

  .resource-pack-heading,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-pack-badge {
    justify-self: start;
    width: 132px;
    min-height: 132px;
  }

  .resource-card {
    min-height: 0;
  }
}


/* Static FAQ — answers always visible */
.faq-static {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 8px 20px rgba(23,20,17,0.03);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.3;
}

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

@media (max-width: 820px) {
  .faq-static {
    grid-template-columns: 1fr;
  }
}
