/* ==========================================================================
   GCA — Global Continuum Academy
   Palette sampled from client screenshots:
     cream page bg   #F5F1E6
     header bg       #FAF9F4
     navy            #0E2136   (panels, footer text bg)
     navy darker     #081923   (footer)
     gold            #C89A44   (accents, buttons, numerals)
     teal            #2F6E6C   (eyebrows, links, CTA band)
     beige panel     #EDE5D8   (FAQ section)
   ========================================================================== */

:root {
  --cream: #F5F1E6;
  --header-bg: #FAF9F4;
  --navy: #0E2136;
  --navy-deep: #081923;
  --gold: #C89A44;
  --gold-deep: #B4863A;
  --teal: #2F6E6C;
  --teal-deep: #275C5A;
  --beige: #EDE5D8;
  --ink: #17222D;
  --ink-soft: #4B5661;
  --line: rgba(14, 33, 54, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --white: #FFFFFF;

  --serif: "Lora", "Iowan Old Style", "Georgia", serif;
  --sans: "Inter", "Segoe UI", Arial, sans-serif;

  --shell: 1180px;
}

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 32px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: 40px; }
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.brand small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
nav.main-nav { display: flex; align-items: center; gap: 28px; }
nav.main-nav a {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
}
nav.main-nav a:hover { color: var(--teal); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}
.nav-cta:hover { background: #0A1928; }
.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.94rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, opacity .15s ease;
}
.button:active { transform: translateY(1px); }
.button.primary { background: var(--navy); color: var(--white); }
.button.primary:hover { background: #0A1928; }
.button.secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.button.secondary:hover { background: rgba(14,33,54,0.06); }
.button.gold { background: var(--gold); color: var(--navy-deep); }
.button.gold:hover { background: var(--gold-deep); }
.button.outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.button.outline-light:hover { background: rgba(255,255,255,0.08); }
.button.block { width: 100%; justify-content: center; }
.button.whatsapp { background: #25D366; color: #06331B; }
.button.whatsapp:hover { background: #1EBE59; }

/* ---------- Hero ---------- */
.hero { background: var(--cream); padding: 72px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  max-width: 14ch;
}
.hero-copy h1 em { color: var(--teal); font-style: italic; }
.hero-lead { font-size: 1.05rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin: 22px 0 16px; flex-wrap: wrap; }
.microcopy { font-size: 0.83rem; color: var(--ink-soft); opacity: 0.85; }

.hero-panel {
  background: var(--navy);
  border-radius: 14px;
  padding: 34px 30px 30px;
  color: var(--white);
  position: relative;
}
.orbit-mark {
  position: absolute;
  top: -26px; right: 26px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 0.95rem;
  border: 4px solid var(--cream);
}
.panel-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 6px 0 18px;
}
.hero-panel ol { display: flex; flex-direction: column; }
.hero-panel li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 4px 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-light);
}
.hero-panel li:first-child { border-top: none; padding-top: 0; }
.hero-panel li span { color: var(--gold); font-weight: 700; font-size: 0.85rem; }
.hero-panel li strong { display: block; font-family: var(--serif); font-size: 1.05rem; font-weight: 600; }
.hero-panel li small { display: block; color: rgba(255,255,255,0.72); font-size: 0.85rem; margin-top: 2px; }

/* ---------- Proof strip ---------- */
.proof-strip { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.proof-grid p {
  margin: 0; padding: 26px 32px;
  border-left: 1px solid var(--line);
}
.proof-grid p:first-child { border-left: none; padding-left: 0; }
.proof-grid strong { display: block; font-family: var(--serif); color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }
.proof-grid span { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Dark section (central goal) ---------- */
.section-dark { background: var(--navy); color: var(--white); padding: 76px 0; }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.78); }
.goal-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.goal-grid h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); max-width: 16ch; }
.goal-side { padding-top: 8px; }
.link-gold { color: var(--gold); font-weight: 600; display: inline-flex; gap: 6px; align-items: center; }
.link-gold:hover { text-decoration: underline; }

/* ---------- Pathway cards ---------- */
.pathways-section { padding: 64px 0 24px; }
.pathways-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--navy); }
.pathway-card {
  background: var(--navy);
  color: var(--white);
  padding: 34px 34px 30px;
  position: relative;
}
.pathway-card + .pathway-card { border-left: 1px solid var(--line-light); }
.pathway-card.highlighted { box-shadow: inset 0 3px 0 var(--gold); }
.pathway-badge {
  position: absolute; top: 26px; right: 26px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  font-weight: 700;
}
.pathway-card .eyebrow { color: var(--gold); }
.pathway-card h3 { color: var(--white); font-size: 1.5rem; max-width: 20ch; }
.pathway-price { font-family: var(--serif); color: var(--gold); font-size: 1.6rem; margin: 6px 0 14px; }
.pathway-desc { color: rgba(255,255,255,0.78); max-width: 42ch; }
.pathway-features { margin: 18px 0 24px; }
.pathway-features li {
  padding: 11px 0;
  border-top: 1px solid var(--line-light);
  color: rgba(255,255,255,0.9);
  font-size: 0.93rem;
  display: flex; gap: 10px;
}
.pathway-features li::before { content: "•"; color: var(--gold); }
.pathways-note {
  border-left: 3px solid var(--gold);
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 20px 26px;
  font-size: 0.9rem;
  margin-top: 0;
}
.pathways-note-wrap { border: 1px solid var(--navy); border-top: none; }

/* ---------- Outcome / testimonial ---------- */
.outcome-section { padding: 72px 0; }
.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.outcome-grid h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); max-width: 15ch; }
.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 28px 30px;
  position: relative;
  box-shadow: 0 1px 3px rgba(14,33,54,0.06);
}
.testimonial-card .quote-mark { font-family: var(--serif); font-size: 2.6rem; color: var(--line); position: absolute; top: 8px; right: 20px; }
.testimonial-card blockquote { margin: 0 0 14px; font-family: var(--serif); font-size: 1.15rem; color: var(--navy); font-style: italic; }
.testimonial-card cite { font-style: normal; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.testimonial-caveat { font-size: 0.82rem; color: var(--ink-soft); margin-top: 10px; }

.profiles-panel { background: var(--navy); color: var(--white); border-radius: 10px; padding: 26px 26px 8px; }
.profiles-panel .eyebrow { color: var(--teal); filter: brightness(1.6); }
.profiles-panel h3 { color: var(--white); font-size: 1.35rem; }
.profiles-panel > p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.profiles-list li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 4px;
  border-top: 1px solid var(--line-light);
  color: var(--white);
  font-size: 0.95rem;
}
.profiles-list li:last-child a { border-bottom: none; }
.profiles-list li a:hover { color: var(--gold); }

/* ---------- Wider continuum programme cards ---------- */
.continuum-section { padding: 72px 0; }
.continuum-head { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 40px; align-items: end; margin-bottom: 40px; }
.continuum-head h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); max-width: 16ch; }
.programme-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.programme-card { background: var(--white); padding: 32px; border: 1px solid var(--line); margin: -1px 0 0 -1px; }
.programme-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.programme-number { color: var(--teal); font-weight: 700; font-size: 0.85rem; }
.programme-price { font-weight: 700; font-size: 0.85rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.02em; }
.programme-card h3 { font-size: 1.3rem; }
.programme-features li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex; gap: 8px;
}
.programme-features li::before { content: "•"; color: var(--gold); }
.programme-card .cta-link { display: inline-flex; gap: 6px; align-items: center; margin-top: 20px; color: var(--teal); font-weight: 700; font-size: 0.92rem; }
.programme-card .cta-link:hover { text-decoration: underline; }

/* ---------- Our standard ---------- */
.standard-section { background: var(--navy); color: var(--white); padding: 0; }
.standard-grid { display: grid; grid-template-columns: 1fr 1fr; }
.standard-left { padding: 76px 48px 76px 0; }
.standard-left h2 { color: var(--white); font-size: clamp(2rem, 3.4vw, 2.6rem); }
.standard-left p { color: rgba(255,255,255,0.78); max-width: 40ch; }
.standard-right { border-left: 1px solid var(--line-light); }
.standard-item { padding: 30px 0 30px 40px; border-top: 1px solid var(--line-light); display: grid; grid-template-columns: 40px 1fr; gap: 6px; }
.standard-item:first-child { border-top: none; }
.standard-item .num { color: var(--gold); font-weight: 700; font-family: var(--serif); }
.standard-item h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.standard-item p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin: 0; max-width: 42ch; }

/* ---------- How the pathway works ---------- */
.how-section { padding: 76px 0; }
.how-section .eyebrow { color: var(--teal); }
.how-section h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); max-width: 20ch; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; border-top: 1px solid var(--line); padding-top: 40px; }
.step-item .num {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; margin-bottom: 14px;
}
.step-item h3 { font-size: 1.1rem; }
.step-item p { font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--beige); padding: 76px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.faq-grid .eyebrow { color: var(--teal); }
.faq-grid h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 4px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { color: var(--teal); font-size: 1.3rem; font-family: var(--sans); flex-shrink: 0; margin-left: 16px; }
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 4px 22px; color: var(--ink-soft); max-width: 62ch; }
.faq-item .faq-answer a { color: var(--teal); font-weight: 600; text-decoration: underline; }

/* ---------- Next step / CTA band ---------- */
.cta-band { padding: 0 0 76px; }
.cta-inner {
  background: var(--teal);
  border-radius: 4px;
  padding: 48px 46px;
  display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
  color: var(--white);
}
.cta-inner .eyebrow { color: var(--gold); }
.cta-inner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.1rem); max-width: 26ch; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 36px; }
.footer-brand { display: flex; gap: 12px; align-items: flex-start; }
.footer-brand img { width: 34px; }
.footer-brand strong { display: block; font-family: var(--serif); color: var(--white); font-size: 1.05rem; }
.footer-brand span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 10px; font-family: var(--sans); font-weight: 700; }
.footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px; font-size: 0.82rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--white); }

/* ---------- Fees & Payment page ---------- */
.page-hero { background: var(--cream); padding: 56px 0 44px; }
.back-link { color: var(--teal); font-weight: 600; font-size: 0.9rem; display: inline-block; margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); max-width: 20ch; }
.page-hero p { max-width: 60ch; }

.fees-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; padding: 0 0 60px; align-items: start; }
.fee-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px 26px;
  margin-bottom: 16px;
  display: flex; justify-content: space-between; gap: 20px; align-items: flex-start;
}
.fee-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.fee-card p { font-size: 0.9rem; margin: 0; max-width: 56ch; }
.fee-price { color: var(--teal); font-weight: 700; white-space: nowrap; font-size: 0.95rem; }

.checkout-panel { background: var(--navy); color: var(--white); border-radius: 6px; padding: 30px 28px; position: sticky; top: 100px; }
.checkout-panel .eyebrow { color: var(--gold); }
.checkout-panel h2 { color: var(--white); font-size: 1.6rem; }
.checkout-panel > p { color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.checkout-steps { margin: 16px 0 20px; }
.checkout-steps li {
  padding: 9px 0 9px 26px;
  position: relative;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  border-top: 1px solid var(--line-light);
}
.checkout-steps li:first-child { border-top: none; }
.checkout-steps li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.checkout-warning {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 16px 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
  border-radius: 4px;
}
.checkout-panel .fineprint { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 12px; }

.payment-accounts { margin-top: 40px; }
.account-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  padding: 22px 26px;
  margin-bottom: 16px;
}
.account-card h4 { font-family: var(--sans); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.account-card .account-name { font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.account-card pre {
  white-space: pre-wrap; font-family: var(--sans); font-size: 0.92rem; color: var(--ink-soft);
  margin: 0 0 8px; background: none; padding: 0;
}
.account-card .note { font-size: 0.82rem; color: var(--teal); }

.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-bottom: 60px; }
.info-box { background: var(--beige); border-left: 3px solid var(--gold); padding: 22px 24px; }
.info-box h4 { font-family: var(--serif); color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.info-box p { font-size: 0.88rem; margin: 0; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  background: #25D366;
  color: #06331B;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 50;
  font-size: 1.6rem;
}
.wa-float:hover { transform: scale(1.05); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .goal-grid, .outcome-grid, .continuum-head, .standard-grid,
  .faq-grid, .fees-layout { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid p { border-left: none; border-top: 1px solid var(--line); padding-left: 0; }
  .proof-grid p:first-child { border-top: none; }
  .pathways-grid, .programme-grid { grid-template-columns: 1fr; }
  .pathway-card + .pathway-card { border-left: none; border-top: 1px solid var(--line-light); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .standard-left { padding: 56px 0; }
  .standard-right { border-left: none; border-top: 1px solid var(--line-light); }
  .standard-item { padding-left: 0; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .checkout-panel { position: static; }
}

@media (max-width: 680px) {
  .shell { padding: 0 20px; }
  nav.main-nav { display: none; }
  .nav-toggle { display: block; background: none; border: none; font-size: 1.4rem; color: var(--navy); }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .fee-card { flex-direction: column; }
}
