/* =========================================================
   Proven Path Academy — site stylesheet
   Brand: NAVY #15355C  GOLD #D4A43C  GOLD_PALE #F6E8C2
          CREAM #F4F1EA  BODY #1F2A37  MUTED #5C6776
   Single Arial-friendly system stack, mobile-first.
   ========================================================= */

:root {
  --navy:        #15355C;
  --navy-deep:   #0E2643;
  --navy-soft:   #234A78;
  --gold:        #D4A43C;
  --gold-deep:   #B8862A;
  --gold-pale:   #F6E8C2;
  --cream:       #F4F1EA;
  --body:        #1F2A37;
  --muted:       #5C6776;
  --line:        #E8EAEE;
  --white:       #FFFFFF;
  --shadow-sm:   0 1px 2px rgba(15, 32, 56, 0.06);
  --shadow-md:   0 6px 18px rgba(15, 32, 56, 0.10);
  --shadow-lg:   0 18px 48px rgba(15, 32, 56, 0.14);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --max:         1180px;
  --max-text:    720px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: Arial, "Helvetica Neue", Helvetica, "Segoe UI", Roboto, sans-serif;
  background: var(--white);
  color: var(--body);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em 0;
}
h1 { font-size: 2.2rem; letter-spacing: -0.02em; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-deep); margin-bottom: 0.4em; }
p  { margin: 0 0 1em 0; }

a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold);
}
a:hover { color: var(--gold-deep); }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.6em 0;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3.5rem 0; }
.section-tight { padding: 2rem 0; }
.section-cream { background: var(--cream); }
.section-navy  { background: var(--navy); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy a { color: var(--gold-pale); text-decoration-color: var(--gold); }
.section-navy a:hover { color: var(--white); }
.section-gold  { background: var(--gold-pale); }

.center { text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
}
.brand img { width: 38px; height: 38px; border-radius: 4px; object-fit: cover; }
.site-footer .brand img { width: 42px; height: 42px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand-text span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.nav {
  display: none;
  align-items: center;
  gap: 1.4rem;
}
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--navy);
  padding: 0.4rem 0.1rem;
}
.nav a:hover { color: var(--gold-deep); }
.nav .btn { font-size: 0.9rem; padding: 0.55rem 1rem; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border: 0;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 0.75rem 1.25rem 1rem;
}
.nav-mobile a {
  text-decoration: none;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile.open { display: flex; }

@media (min-width: 860px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.05s;
  letter-spacing: 0.01em;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); }
.btn:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--white); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at 90% 0%, rgba(212,164,60,0.18), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(212,164,60,0.10), transparent 50%),
    var(--navy);
  color: var(--white);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  max-width: 22ch;
  margin-bottom: 0.5em;
}
.hero .lede {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  max-width: 38rem;
  margin-bottom: 1.6rem;
}
.hero .eyebrow { color: var(--gold); }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.hero .trust {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  max-width: 38rem;
}
.hero .trust strong { color: var(--gold-pale); font-weight: 700; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  backdrop-filter: blur(2px);
}
.hero-card h3 { color: var(--gold-pale); margin-bottom: 0.6rem; }
.hero-card ul { list-style: none; padding: 0; margin: 0; }
.hero-card li {
  padding: 0.55rem 0 0.55rem 1.6rem;
  position: relative;
  color: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  font-size: 0.97rem;
}
.hero-card li:last-child { border-bottom: 0; }
.hero-card li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0.45rem;
  color: var(--gold);
  font-weight: 800;
  font-size: 1.15rem;
}

@media (min-width: 900px) {
  .hero { padding: 6rem 0 5.5rem; }
  .hero h1 { font-size: 3.4rem; }
  .hero-grid { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
}

/* ---------- Section heading helpers ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.section-head .eyebrow { display: block; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Cards / grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 800px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s, box-shadow 0.12s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card h3 { margin-top: 0.2rem; margin-bottom: 0.45rem; }
.card p { color: var(--muted); flex-grow: 1; margin-bottom: 1rem; }
.card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.83rem;
  margin-bottom: 0.8rem;
}
.tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--navy);
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.tag-navy { background: var(--navy); color: var(--gold-pale); }
.tag-line { background: transparent; border: 1px solid var(--line); color: var(--muted); }

.card .price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.card .price small { font-size: 0.7rem; color: var(--muted); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-top: 0.1rem; }

/* ---------- Numbered/feature lists ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
@media (min-width: 760px) { .feature-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .feature-row { grid-template-columns: repeat(4, 1fr); } }
.feature {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.2rem 1rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}
.feature h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature p { font-size: 0.93rem; color: var(--muted); margin: 0; }
.feature .num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-deep);
  letter-spacing: 0.16em;
  margin-bottom: 0.3rem;
}

/* ---------- Stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.3rem 1rem;
  margin: 0;
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center;
  padding: 0.5rem;
}
.stat .num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat .lbl {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery .tile {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  color: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 1rem;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
.gallery .tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(212,164,60,0.3), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(212,164,60,0.18), transparent 55%);
  pointer-events: none;
}
.gallery .tile span { position: relative; z-index: 1; }
.gallery .tile.alt {
  background: linear-gradient(135deg, var(--gold-pale), var(--cream));
  color: var(--navy);
}
.gallery-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
  font-style: italic;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testimonial blockquote {
  margin: 0 0 1rem 0;
  font-size: 1.02rem;
  color: var(--body);
  line-height: 1.55;
  font-style: italic;
  position: relative;
  padding-left: 1.4rem;
  flex-grow: 1;
}
.testimonial blockquote::before {
  content: "“";
  position: absolute;
  left: -0.1rem;
  top: -0.4rem;
  font-size: 2.4rem;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
  font-style: normal;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}
.testimonial cite strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.testimonial cite .role {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.35;
}

/* ---------- Speakers ---------- */
.speaker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.speaker img {
  width: 100%;
  max-width: 260px;
  border-radius: var(--radius-md);
  border: 4px solid var(--gold-pale);
}
.speaker h3 { margin-top: 0; }
.speaker .role {
  display: block;
  color: var(--gold-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}
.speaker p { color: var(--body); }
@media (min-width: 760px) {
  .speaker { grid-template-columns: 280px 1fr; align-items: start; }
}

.mystery {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--gold-pale);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  text-align: center;
  border: 1px solid rgba(212,164,60,0.4);
  position: relative;
  overflow: hidden;
}
.mystery::before {
  content: "?";
  position: absolute;
  font-size: 18rem;
  font-weight: 900;
  color: rgba(212,164,60,0.08);
  top: -3rem;
  right: -2rem;
  line-height: 1;
  pointer-events: none;
}
.mystery h3 { color: var(--gold); margin-bottom: 0.6rem; position: relative; z-index: 1; }
.mystery p { color: rgba(255,255,255,0.92); max-width: 28rem; margin: 0 auto; position: relative; z-index: 1; }

/* ---------- Forms ---------- */
.form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  max-width: 640px;
  margin: 0 auto;
}
.form h2 { margin-top: 0; }
.form .row { margin-bottom: 1.1rem; }
.form label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form .req { color: var(--gold-deep); }
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--body);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,164,60,0.18);
  outline: none;
}
.form textarea { min-height: 110px; resize: vertical; }
.form .help {
  display: block;
  font-size: 0.83rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
.form fieldset {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin: 0;
}
.form fieldset legend {
  padding: 0 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.form .choice {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  cursor: pointer;
}
.form .choice input { margin-top: 0.25rem; }
.form .choice span { font-size: 0.95rem; }
.form .submit-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}
.form .submit-row .help { margin: 0; }

/* ---------- Process steps ---------- */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.2rem 1.2rem;
  position: relative;
  padding-top: 2.6rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  top: 0.9rem;
  left: 1.1rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.steps li strong { display: block; color: var(--navy); margin-bottom: 0.3rem; font-size: 1rem; }
.steps li span { font-size: 0.92rem; color: var(--muted); }

/* ---------- Agenda table (course pages) ---------- */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0 1.5rem;
  border-radius: var(--radius-md);
}
.table-scroll .agenda { margin: 0; min-width: 520px; }
.agenda {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.agenda thead { background: var(--navy); color: var(--white); }
.agenda th, .agenda td {
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.agenda th {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.agenda td:first-child {
  width: 9rem;
  font-weight: 700;
  color: var(--gold-deep);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.agenda tbody tr:last-child td { border-bottom: 0; }
.agenda .day-row td {
  background: var(--gold-pale);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

/* ---------- Inline lists ---------- */
.bullets, .checks {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1.4rem;
}
.bullets li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.bullets li:last-child { border-bottom: 0; }
.bullets li::before {
  content: "›";
  position: absolute;
  left: 0.2rem;
  top: 0.45rem;
  font-weight: 800;
  color: var(--gold-deep);
  font-size: 1.05rem;
}
.checks li {
  padding: 0.45rem 0 0.45rem 1.8rem;
  position: relative;
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0.2rem;
  top: 0.4rem;
  font-weight: 800;
  color: var(--gold-deep);
  font-size: 1rem;
}

/* ---------- CTA banner ---------- */
.banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  text-align: center;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(212,164,60,0.18), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(212,164,60,0.12), transparent 55%);
}
.banner h2 { color: var(--white); margin-top: 0; }
.banner p { color: rgba(255,255,255,0.9); max-width: 36rem; margin-left: auto; margin-right: auto; }

/* ---------- Survey ---------- */
.survey-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.4rem 1.2rem;
  margin-bottom: 1rem;
}
.survey-card .q {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
  font-size: 1rem;
}
.survey-card .options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.survey-card .options label {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.15s, border-color 0.15s;
}
.survey-card .options label:hover { border-color: var(--gold); }
.survey-card .options input { accent-color: var(--gold-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 2rem;
}
.site-footer a { color: var(--gold-pale); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-grid h4 { color: var(--gold); font-size: 0.78rem; margin-bottom: 0.8rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 0.25rem 0; font-size: 0.92rem; }
.footer-grid p { font-size: 0.92rem; color: rgba(255,255,255,0.78); margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.tight { max-width: var(--max-text); }

/* ---------- Feature card illustrations (8 "How you learn" tiles) ---------- */
.feature {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.feature-img {
  width: 64px;
  height: 64px;
  margin: 0 0 0.7rem 0;
  display: block;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  padding: 6px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Tile-photo (gallery) ---------- */
.gallery .tile-photo {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.tile-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--cream);
}
.tile-photo figcaption {
  padding: 0.55rem 0.8rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

/* ---------- Strikethrough "was" price ---------- */
.price-was {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  font-weight: 600;
  margin-right: 0.35rem;
  font-size: 0.85em;
}
.card .price s,
.card .price .price-was {
  color: var(--muted);
  font-size: 0.85em;
  font-weight: 600;
  margin-right: 0.4rem;
}
.hero .trust s { color: rgba(255,255,255,0.55); margin-right: 0.2rem; }

/* ---------- Indicative EUR/USD equivalent under prices ---------- */
.price-fx {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.card .price .price-fx { text-transform: none; }
h2 + .price-fx, .pricing h2 + .price-fx { margin-top: -0.4rem; margin-bottom: 1rem; }

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .nav-mobile { display: none; }
  body { background: #fff; color: #000; }
}
