/* ============================================================
   ARCANA — arcanaaccess.ca
   Theme: The Sage | Libre Baskerville + Lato
   Author: Suada Cerkezi
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700;900&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ── Variables ── */
:root {
  --bg:        #F8F5F0;
  --bg-alt:    #EDE8DF;
  --bg-dark:   #2A1A0E;
  --text:      #2A1A0E;
  --muted:     #7A6555;
  --accent:    #C4622D;
  --accent-dk: #A34E22;
  --border:    #DDD4C4;
  --white:     #FFFFFF;
  --h-font:    'Libre Baskerville', Georgia, serif;
  --b-font:    'Lato', system-ui, sans-serif;
  --max-w:     1080px;
  --nav-h:     72px;
  --radius:    4px;
  --shadow:    0 2px 16px rgba(42,26,14,0.08);
  --shadow-lg: 0 8px 40px rgba(42,26,14,0.12);
}

/* ── Base ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--b-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Utilities ── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.sr-only    { position: absolute; width:1px; height:1px; clip:rect(0,0,0,0); overflow:hidden; }
.text-accent { color: var(--accent); }
.text-muted  { color: var(--muted); }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--h-font); color: var(--text); line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; }
h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; }
h3 { font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
p  { line-height: 1.8; }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--b-font); font-size: 13px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.2s ease;
}
.btn-primary  { background: var(--accent); color: var(--white); }
.btn-primary:hover  { background: var(--accent-dk); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline  { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover  { border-color: var(--accent); color: var(--accent); }
.btn-dark     { background: var(--bg-dark); color: var(--white); }
.btn-dark:hover     { background: #3d2610; transform: translateY(-1px); }
.btn-ghost    { background: transparent; color: var(--accent); padding-left: 0; }
.btn-ghost:hover    { gap: 12px; }
.btn-lg { padding: 18px 36px; font-size: 14px; }

/* ── Tags / Pills ── */
.tag {
  display: inline-block; padding: 4px 12px;
  border: 1px solid var(--border); border-radius: 2px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.tag-accent { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h); background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--h-font); font-size: 22px; font-weight: 700;
  color: var(--text); text-decoration: none; letter-spacing: 0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-cta {
  padding: 9px 22px; background: var(--accent); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  border-radius: var(--radius); transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dk); }

/* Mobile menu */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero-home {
  padding: 80px 0 72px;
  background: var(--bg);
}
.hero-home .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.hero-home h1 { margin-bottom: 20px; }
.hero-subtitle {
  font-size: 17px; line-height: 1.85; color: var(--muted); margin-bottom: 16px;
}
.hero-credentials {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; margin-top: 18px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-img-wrap { position: relative; }
.hero-img-shadow {
  position: absolute; top: 16px; left: -16px;
  width: 100%; height: 100%;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); z-index: 0;
}
.hero-img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top;
  border-radius: var(--radius);
}

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--white); }
.section-dark h2,
.section-dark h3,
.section-dark .eyebrow { color: var(--white); }
.section-dark .eyebrow { color: var(--accent); }
.section-dark p { color: rgba(255,255,255,0.72); }

.section-header { text-align: center; margin-bottom: 56px; max-width: 620px; margin-left: auto; margin-right: auto; }
.section-header p { font-size: 16px; color: var(--muted); margin-top: 14px; }

/* Divider */
.divider {
  display: flex; align-items: center; gap: 20px; margin-bottom: 52px;
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.divider span {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); white-space: nowrap;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-dark); padding: 40px 0;
}
.stats-bar .container {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; text-align: center;
}
.stat-num {
  font-family: var(--h-font); font-size: 36px; font-weight: 700;
  color: var(--accent); display: block; margin-bottom: 6px;
}
.stat-label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ============================================================
   COURSE CARDS
   ============================================================ */
.courses-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.course-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.course-card-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg-alt); overflow: hidden; position: relative;
}
.course-card-img img { width: 100%; height: 100%; object-fit: cover; }
.course-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
}
.course-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.course-card-body h3 { font-size: 19px; margin-bottom: 12px; line-height: 1.3; }
.course-card-body p  { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.course-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.course-meta-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.course-price { font-family: var(--h-font); font-size: 22px; font-weight: 700; color: var(--text); }
.course-price span { font-family: var(--b-font); font-size: 13px; color: var(--muted); font-weight: 400; }
.course-card-footer { padding: 0 28px 28px; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.posts-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
}
.post-card {
  display: flex; flex-direction: column;
  border-bottom: 2px solid transparent; transition: border-color 0.2s;
}
.post-card:hover { border-color: var(--accent); }
.post-card-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 20px;
}
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.post-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
}
.post-date { font-size: 12px; color: var(--muted); }
.post-card h3 { font-size: 18px; line-height: 1.35; margin-bottom: 10px; }
.post-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.post-read-more {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); text-decoration: none;
}

/* ============================================================
   FEATURED POST (list page)
   ============================================================ */
.post-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center; margin-bottom: 72px;
  padding-bottom: 72px; border-bottom: 1px solid var(--border);
}
.post-featured-img {
  width: 100%; aspect-ratio: 4/3;
  background: var(--bg-alt); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
}
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.post-featured h2 { font-size: 30px; margin-bottom: 14px; line-height: 1.25; }
.post-featured p  { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 64px; align-items: center;
}
.about-strip-img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover; object-position: center top;
  border-radius: var(--radius);
}
.about-strip h2  { margin-bottom: 8px; }
.about-strip .title { font-size: 14px; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 20px; }
.about-strip p   { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 24px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.testimonial-stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; }
.testimonial-card p { font-size: 15px; line-height: 1.75; color: var(--muted); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; overflow: hidden;
}
.testimonial-name  { font-size: 14px; font-weight: 700; }
.testimonial-role  { font-size: 12px; color: var(--muted); }

/* ============================================================
   NEWSLETTER / CTA SECTION
   ============================================================ */
.newsletter-section {
  text-align: center; max-width: 560px; margin: 0 auto;
}
.newsletter-section h2 { margin-bottom: 12px; }
.newsletter-section p  { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
.nl-form { display: flex; max-width: 460px; margin: 0 auto; }
.nl-form input {
  flex: 1; padding: 15px 20px;
  border: 1px solid var(--border); border-right: none;
  background: var(--bg); font-family: var(--b-font);
  font-size: 14px; color: var(--text); outline: none;
  border-radius: var(--radius) 0 0 var(--radius);
}
.section-dark .nl-form input {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.section-dark .nl-form input::placeholder { color: rgba(255,255,255,0.45); }
.nl-form button {
  padding: 15px 24px; background: var(--accent); color: var(--white);
  border: none; font-family: var(--b-font);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background 0.2s;
}
.nl-form button:hover { background: var(--accent-dk); }
.nl-note { font-size: 12px; color: var(--muted); margin-top: 12px; }
.section-dark .nl-note { color: rgba(255,255,255,0.45); }

/* ============================================================
   COURSE PAGE HERO
   ============================================================ */
.course-hero {
  background: var(--bg-dark); padding: 80px 0 72px; color: var(--white);
}
.course-hero .container {
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start;
}
.course-hero h1 { color: var(--white); margin-bottom: 20px; }
.course-hero p   { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.8; margin-bottom: 24px; }
.course-hero .eyebrow { color: var(--accent); margin-bottom: 16px; }

/* Sticky course enrollment card */
.enroll-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-lg);
  position: sticky; top: 88px;
}
.enroll-price { font-family: var(--h-font); font-size: 36px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.enroll-price-note { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.enroll-card .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.enroll-features { margin-top: 24px; border-top: 1px solid var(--border); padding-top: 20px; }
.enroll-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted); margin-bottom: 10px;
}
.enroll-feature::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.enroll-guarantee {
  text-align: center; margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted);
}

/* Course curriculum */
.curriculum-module {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.module-header {
  padding: 18px 24px; background: var(--bg-alt);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
}
.module-title { font-size: 15px; font-weight: 700; }
.module-count { font-size: 12px; color: var(--muted); }
.module-lessons { padding: 0 24px; }
.lesson-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--muted);
}
.lesson-item:last-child { border-bottom: none; }
.lesson-icon { font-size: 13px; flex-shrink: 0; }

/* Course outcomes */
.outcomes-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
}
.outcome-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-alt); padding: 20px; border-radius: var(--radius);
}
.outcome-icon {
  width: 36px; height: 36px; background: var(--accent);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 16px;
}
.outcome-item h4 { font-size: 14px; margin-bottom: 4px; }
.outcome-item p  { font-size: 13px; color: var(--muted); margin: 0; }

/* ============================================================
   COACHING PAGE
   ============================================================ */
.coaching-options {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.coaching-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.coaching-card.featured {
  border-color: var(--accent); position: relative;
}
.coaching-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px;
}
.coaching-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.coaching-card h3    { margin-bottom: 8px; }
.coaching-card .price { font-family: var(--h-font); font-size: 28px; font-weight: 700; color: var(--accent); margin-bottom: 20px; }
.coaching-card .price span { font-family: var(--b-font); font-size: 14px; color: var(--muted); font-weight: 400; }
.coaching-card ul    { margin-bottom: 28px; flex: 1; }
.coaching-card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.coaching-card ul li::before { content: '→'; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.coaching-card .btn  { width: 100%; justify-content: center; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; padding: 88px 0;
}
.about-hero img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top;
  border-radius: var(--radius);
}
.about-hero h1 { margin-bottom: 16px; }
.about-hero p  { font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 6px; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: ''; position: absolute; left: -38px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--bg);
}
.timeline-date { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.timeline-item h3 { font-size: 17px; margin-bottom: 6px; }
.timeline-item p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   SPEAKING PAGE
   ============================================================ */
.speaking-topics {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
}
.speaking-topic {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  border-left: 4px solid var(--accent);
}
.speaking-topic h3 { font-size: 17px; margin-bottom: 8px; }
.speaking-topic p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   CONTACT / FORMS
   ============================================================ */
.contact-form {
  max-width: 580px; margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); font-family: var(--b-font);
  font-size: 14px; color: var(--text); outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark); color: var(--white); padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { color: var(--white); display: inline-block; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 14px;
  text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .courses-grid     { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .course-hero .container { grid-template-columns: 1fr; }
  .enroll-card      { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 20px; }
  .section   { padding: 60px 0; }

  .nav-links,
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--bg); padding: 32px 24px;
    gap: 24px; z-index: 99;
  }
  .nav-links.open a { font-size: 20px; }

  .hero-home .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { max-width: 320px; margin: 0 auto; }
  .about-hero  { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .post-featured { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .posts-grid   { grid-template-columns: 1fr; }
  .coaching-options { grid-template-columns: 1fr; }
  .speaking-topics  { grid-template-columns: 1fr; }
  .outcomes-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2,1fr); }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row     { grid-template-columns: 1fr; }
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .nl-form { flex-direction: column; }
  .nl-form input  { border-right: 1px solid var(--border); border-radius: var(--radius) var(--radius) 0 0; }
  .nl-form button { border-radius: 0 0 var(--radius) var(--radius); }
}
