/* ============================================================
   NEXT STONES LLC — Shared Site Stylesheet
   Brand tokens + components extracted verbatim from the
   client-approved preview (next-stones-preview.html).
   Real-site additions (nav toggle, breakpoints, page hero,
   embeds) are appended at the bottom under SITE ADDITIONS.
   ============================================================ */

:root {
  --parchment: #efe4cf;
  --parchment-deep: #e6d6b8;
  --cream: #f7efe0;
  --ink: #1a1410;
  --ink-soft: #2c241d;
  --rust: #b8442e;
  --rust-deep: #8a2f1f;
  --rust-glow: #d35b3f;
  --stone: #8b8378;
  --stone-dark: #5e564c;
  --stone-light: #b8ad9d;
  --gold: #b08945;
  --shadow: 0 18px 40px -20px rgba(26,20,16,0.35);
  --shadow-soft: 0 8px 24px -12px rgba(26,20,16,0.25);
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --display: 'Fraunces', Georgia, serif;
  --body: 'Manrope', -apple-system, sans-serif;
  --script: 'Cormorant Garamond', Georgia, serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background:
    radial-gradient(circle at 10% 10%, rgba(184,68,46,0.04), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(176,137,69,0.05), transparent 40%),
    var(--parchment);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

/* PREVIEW NAV */
.preview-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 239, 224, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,20,16,0.12);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.preview-nav .brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-right: auto;
  display: flex; align-items: center; gap: 12px;
}
.preview-nav a {
  color: var(--stone-dark);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.preview-nav a:hover { color: var(--rust); }
.preview-nav .v2 {
  background: var(--rust);
  color: var(--cream);
  padding: 3px 8px;
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.preview-section {
  position: relative;
  z-index: 2;
  padding: 80px 5vw;
  border-bottom: 1px dashed rgba(26,20,16,0.15);
}
.preview-section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  padding: 6px 14px;
  border: 1px solid var(--rust);
  border-radius: 2px;
  margin-bottom: 24px;
}
.preview-section-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.preview-section-title em {
  font-style: italic;
  color: var(--rust);
  font-weight: 400;
}
.preview-section-sub {
  font-family: var(--script);
  font-size: 22px;
  font-style: italic;
  color: var(--stone-dark);
  margin-bottom: 48px;
  max-width: 700px;
}

/* SITEMAP */
.sitemap-tree {
  max-width: 1400px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid rgba(26,20,16,0.1);
  border-radius: 4px;
  padding: 48px 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.sitemap-root { display: flex; flex-direction: column; align-items: center; }
.sitemap-node {
  background: var(--parchment);
  border: 1.5px solid var(--ink);
  padding: 14px 22px;
  border-radius: 2px;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--ink);
  text-align: center;
  min-width: 180px;
  box-shadow: var(--shadow-soft);
}
.sitemap-node.root {
  background: var(--ink);
  color: var(--cream);
  font-size: 15px;
  padding: 18px 32px;
  letter-spacing: 0.12em;
}
.sitemap-node.root span { color: var(--rust-glow); }
.sitemap-node.new {
  border-color: var(--rust);
  background: var(--cream);
  position: relative;
}
.sitemap-node.new::before {
  content: 'NEW';
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--rust);
  color: var(--cream);
  font-size: 8px;
  padding: 2px 6px;
  letter-spacing: 0.1em;
  border-radius: 2px;
}
.sitemap-connector { width: 2px; height: 32px; background: var(--stone); }
.sitemap-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.sitemap-row::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--stone);
}
.sitemap-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
}
.sitemap-sub {
  list-style: none;
  padding: 12px 0 0;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  color: var(--stone-dark);
}
.sitemap-sub li { padding: 4px 0; font-family: var(--body); text-transform: none; letter-spacing: 0.02em; }
.sitemap-sub li::before { content: '◆ '; color: var(--rust); font-size: 9px; }

/* MOCKUP FRAME */
.mockup-frame {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(26,20,16,0.4), 0 0 0 1px rgba(26,20,16,0.08);
  border: 1px solid rgba(26,20,16,0.1);
}
.browser-bar {
  background: linear-gradient(180deg, #2a221c 0%, #1a1410 100%);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.browser-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.browser-dot:first-child { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 6px 14px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  margin-left: 12px;
  font-family: 'SF Mono', Monaco, monospace;
}

/* SITE INTERNALS */
.site { background: var(--parchment); position: relative; overflow: hidden; }
.site-nav {
  display: flex;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(26,20,16,0.1);
  background: rgba(247,239,224,0.9);
  backdrop-filter: blur(8px);
  gap: 32px;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.site-nav a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.site-nav a:hover { color: var(--rust); }
.site-nav a.active { color: var(--rust); }
.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0; right: 0;
  height: 2px;
  background: var(--rust);
}
.btn-enroll {
  background: var(--rust);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 2px;
  letter-spacing: 0.1em !important;
  transition: all 0.2s;
}
.btn-enroll:hover { background: var(--rust-deep) !important; transform: translateY(-1px); }

/* HERO */
.hero {
  position: relative;
  padding: 80px 48px 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  border-bottom: 1px solid rgba(26,20,16,0.08);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(184,68,46,0.06), transparent 50%);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--rust);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--rust); font-weight: 400; }
.hero-lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero-verse {
  font-family: var(--script);
  font-style: italic;
  font-size: 18px;
  color: var(--stone-dark);
  max-width: 480px;
  margin-bottom: 12px;
  line-height: 1.5;
  border-left: 3px solid var(--rust);
  padding-left: 16px;
}
.hero-verse-ref {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 36px;
  margin-left: 19px;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  padding: 16px 32px;
  border: none;
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-primary:hover { background: var(--rust); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 16px 32px;
  border: 1.5px solid var(--ink);
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stones { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.hero-floating-badge {
  position: absolute;
  top: 18%;
  right: -20px;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
  z-index: 2;
}
.hero-floating-badge strong { color: var(--rust-glow); display: block; font-size: 14px; margin-bottom: 4px; }

/* INFO STRIP */
.info-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 32px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.info-item { display: flex; align-items: center; gap: 14px; }
.info-item-icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--rust-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rust-glow);
  flex-shrink: 0;
}
.info-item-icon svg { width: 22px; height: 22px; }
.info-item-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rust-glow); font-weight: 700; margin-bottom: 4px; }
.info-item-value { font-family: var(--display); font-size: 16px; font-weight: 600; }

/* SECTION DEFAULTS */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title em { color: var(--rust); font-style: italic; font-weight: 400; }
.section-lead {
  font-family: var(--script);
  font-style: italic;
  font-size: 20px;
  color: var(--stone-dark);
  max-width: 720px;
  margin: 0 auto;
}

/* MISSION */
.who-we-are {
  padding: 100px 48px;
  background: var(--cream);
  position: relative;
}
.who-we-are-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.who-we-are h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.who-we-are h2 em { color: var(--rust); font-style: italic; font-weight: 400; }
.who-we-are p { font-size: 17px; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.7; }
.who-we-are p strong { color: var(--ink); font-weight: 700; }
.who-we-are-verse {
  background: var(--parchment);
  padding: 32px;
  border-left: 4px solid var(--rust);
  border-radius: 4px;
  position: relative;
}
.who-we-are-verse::before {
  content: '"';
  font-family: var(--display);
  font-size: 96px;
  color: var(--rust);
  position: absolute;
  top: -20px;
  left: 16px;
  opacity: 0.25;
  line-height: 1;
}
.who-we-are-verse p {
  font-family: var(--script);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 12px;
  padding-left: 16px;
}
.who-we-are-verse cite {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--rust);
  font-weight: 700;
  padding-left: 16px;
  display: block;
}

/* TEACHING STYLE - HEAD/HEART/HANDS */
.teaching {
  padding: 100px 48px;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.teaching::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23b8442e' stroke-width='1' opacity='0.15'%3E%3Cpolygon points='300,100 500,450 100,450'/%3E%3Cpolygon points='300,150 460,420 140,420'/%3E%3Cpolygon points='300,200 420,390 180,390'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.teaching > * { position: relative; }
.teaching .section-eyebrow { color: var(--rust-glow); }
.teaching .section-title { color: var(--cream); }
.teaching .section-lead { color: rgba(247,239,224,0.7); }
.hhh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.hhh-card {
  background: rgba(247,239,224,0.05);
  border: 1px solid rgba(247,239,224,0.12);
  border-radius: 6px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}
.hhh-card:hover { border-color: var(--rust); background: rgba(184,68,46,0.08); transform: translateY(-4px); }
.hhh-icon {
  width: 72px; height: 72px;
  border: 2px solid var(--rust-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--rust-glow);
}
.hhh-icon svg { width: 36px; height: 36px; }
.hhh-card h4 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.hhh-card .hhh-tag {
  font-family: var(--script);
  font-style: italic;
  font-size: 16px;
  color: var(--rust-glow);
  margin-bottom: 16px;
}
.hhh-card p {
  font-size: 14px;
  color: rgba(247,239,224,0.75);
  line-height: 1.6;
}

/* TWO LEVELS */
.levels { padding: 100px 48px; background: var(--cream); position: relative; }
.levels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.level-card {
  background: var(--parchment);
  border: 1px solid rgba(26,20,16,0.12);
  border-radius: 6px;
  padding: 40px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.level-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.level-card.featured { border: 2px solid var(--rust); }
.level-card.featured::before {
  content: 'MOST CHOSEN';
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--rust);
  color: var(--cream);
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  border-radius: 2px;
}
.level-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.level-badge svg { width: 32px; height: 32px; color: var(--rust-glow); }
.level-name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.level-tagline { font-family: var(--script); font-style: italic; color: var(--stone-dark); margin-bottom: 24px; font-size: 15px; }
.level-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(26,20,16,0.2);
}
.level-price-amt { font-family: var(--display); font-size: 56px; font-weight: 800; color: var(--rust); line-height: 1; }
.level-price-period { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--stone-dark); }
.level-features { list-style: none; margin-bottom: 32px; }
.level-features li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(26,20,16,0.06);
}
.level-features li:last-child { border-bottom: none; }
.level-features svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--rust); margin-top: 2px; }
.level-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}
.level-cta:hover { background: var(--rust); }
.level-card.featured .level-cta { background: var(--rust); }
.level-card.featured .level-cta:hover { background: var(--rust-deep); }

/* CLASSROOM ELEMENTS */
.classroom {
  padding: 100px 48px;
  background: var(--parchment);
}
.classroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.class-elements {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.class-elements li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--cream);
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 4px;
  font-size: 15px;
  color: var(--ink-soft);
  transition: all 0.25s;
}
.class-elements li:hover { border-color: var(--rust); transform: translateX(4px); }
.class-elements .num {
  width: 36px; height: 36px;
  background: var(--rust);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.class-elements strong { color: var(--ink); font-weight: 700; }

/* FORGING */
.forging { padding: 80px 48px; background: var(--cream); border-top: 1px solid rgba(26,20,16,0.08); }
.forging-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.forging-icon {
  display: inline-flex;
  width: 64px; height: 64px;
  border: 2px solid var(--rust);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--rust);
}
.forging h3 { font-family: var(--display); font-size: 40px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
.forging-verse {
  font-family: var(--script);
  font-style: italic;
  font-size: 22px;
  color: var(--rust);
  margin-bottom: 20px;
}
.forging p { font-size: 16px; color: var(--ink-soft); max-width: 700px; margin: 0 auto 16px; }

/* MEET THE FOUNDER */
.founder {
  padding: 100px 48px;
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}
.founder-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.founder-photo {
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.founder h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.founder h2 em { color: var(--rust); font-style: italic; font-weight: 400; }
.founder-subtitle {
  font-family: var(--script);
  font-style: italic;
  font-size: 22px;
  color: var(--rust);
  margin-bottom: 24px;
}
.founder p { font-size: 16px; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.7; }
.founder p strong { color: var(--ink); }
.founder-meta {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed rgba(26,20,16,0.2);
  font-size: 13px;
  flex-wrap: wrap;
}
.founder-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--stone-dark);
}
.founder-meta svg { color: var(--rust); width: 16px; height: 16px; }

/* GUIDING SCRIPTURES */
.scriptures {
  padding: 100px 48px;
  background: var(--cream);
}
.scripture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.scripture-card {
  background: var(--parchment);
  padding: 28px;
  border-radius: 6px;
  border-left: 4px solid var(--rust);
  transition: all 0.3s;
}
.scripture-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.scripture-ref {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  color: var(--rust);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.scripture-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* SEMESTER */
.semester { padding: 100px 48px; background: var(--parchment); }
.semester-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid rgba(26,20,16,0.12);
  border-radius: 6px;
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.semester-date { text-align: center; border-right: 1px dashed rgba(26,20,16,0.2); padding-right: 48px; }
.semester-date-month { font-family: var(--display); font-size: 14px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rust); }
.semester-date-day { font-family: var(--display); font-size: 88px; font-weight: 800; line-height: 0.9; color: var(--ink); letter-spacing: -0.03em; }
.semester-date-year { font-size: 13px; letter-spacing: 0.2em; color: var(--stone-dark); margin-top: 4px; }
.semester-info h3 { font-family: var(--display); font-size: 32px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.semester-info p { color: var(--ink-soft); margin-bottom: 16px; }
.semester-meta { display: flex; gap: 20px; font-size: 13px; color: var(--stone-dark); flex-wrap: wrap; }
.semester-meta span { display: inline-flex; align-items: center; gap: 6px; }
.semester-meta svg { width: 16px; height: 16px; color: var(--rust); }

/* PARENT PARTNERSHIP */
.parents {
  padding: 80px 48px;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.parents-inner { max-width: 800px; margin: 0 auto; }
.parents .section-eyebrow { color: var(--rust-glow); }
.parents h3 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.parents h3 em { color: var(--rust-glow); font-style: italic; }
.parents p { font-size: 17px; color: rgba(247,239,224,0.8); line-height: 1.7; }

/* MERCH */
.merch { padding: 100px 48px; background: var(--parchment); }
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.merch-item {
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(26,20,16,0.08);
  transition: all 0.3s;
  cursor: pointer;
}
.merch-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.merch-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--stone-light) 0%, var(--stone) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.merch-img svg { width: 60%; height: 60%; }
.merch-item-info { padding: 20px; }
.merch-name { font-family: var(--display); font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.merch-desc { font-size: 12px; color: var(--stone-dark); margin-bottom: 12px; }
.merch-price { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--rust); }
.merch-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

/* FAQ */
.faq { padding: 100px 48px; background: var(--parchment); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--cream);
  border: 1px solid rgba(26,20,16,0.1);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
}
.faq-q::after { content: '+'; font-size: 24px; color: var(--rust); font-weight: 300; transition: transform 0.2s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { padding: 0 24px 20px; color: var(--ink-soft); font-size: 14px; line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }

/* CTA BAND */
.cta-band {
  padding: 100px 48px;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'BE THE NEXT';
  position: absolute;
  font-family: var(--display);
  font-weight: 900;
  font-size: 280px;
  letter-spacing: -0.05em;
  color: rgba(184,68,46,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.cta-band-inner { position: relative; }
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-band h2 em { color: var(--rust-glow); font-style: italic; }
.cta-band p {
  font-family: var(--script);
  font-style: italic;
  font-size: 22px;
  color: rgba(247,239,224,0.8);
  margin-bottom: 40px;
}
.cta-band .btn-primary { background: var(--rust); border: none; font-size: 14px; padding: 20px 40px; }
.cta-band .btn-primary:hover { background: var(--cream); color: var(--ink); }

/* FOOTER */
.site-footer { background: var(--ink-soft); color: var(--cream); padding: 64px 48px 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.footer-brand h3 { font-family: var(--display); font-size: 24px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: rgba(247,239,224,0.6); line-height: 1.6; margin-bottom: 16px; }
.footer-col h4 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust-glow);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; font-size: 13px; color: rgba(247,239,224,0.7); }
.footer-col a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--rust-glow); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(247,239,224,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(247,239,224,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-tagline { font-family: var(--script); font-style: italic; color: var(--rust-glow) !important; }

/* PAGE PREVIEWS */
.page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.page-preview {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(26,20,16,0.1);
  box-shadow: var(--shadow-soft);
}
.page-preview-header {
  padding: 16px 24px;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-preview-name { font-family: var(--display); font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; }
.page-preview-route {
  font-family: 'SF Mono', monospace;
  font-size: 11px;
  color: var(--rust-glow);
  background: rgba(184,68,46,0.15);
  padding: 4px 8px;
  border-radius: 2px;
}
.page-preview-body { padding: 24px; min-height: 240px; }
.page-preview h4 { font-family: var(--display); font-size: 20px; margin-bottom: 8px; }
.page-preview-content { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
.page-preview-content ul { list-style: none; margin-top: 12px; }
.page-preview-content li { padding: 6px 0; padding-left: 20px; position: relative; font-size: 12px; }
.page-preview-content li::before { content: '◆'; position: absolute; left: 0; color: var(--rust); font-size: 9px; top: 7px; }

/* AGREEMENT */
.agreement-doc {
  max-width: 850px;
  margin: 0 auto;
  background: var(--cream);
  padding: 64px 72px;
  box-shadow: var(--shadow);
  border-radius: 4px;
  border: 1px solid rgba(26,20,16,0.1);
  position: relative;
}
.agreement-header { text-align: center; margin-bottom: 48px; padding-bottom: 24px; border-bottom: 2px solid var(--ink); }
.agreement-logo { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.agreement-doctype { font-size: 11px; letter-spacing: 0.3em; color: var(--rust); font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.agreement-title { font-family: var(--display); font-size: 36px; font-weight: 700; letter-spacing: -0.01em; }
.agreement-title em { color: var(--rust); font-style: italic; font-weight: 400; }
.agreement-section { margin-bottom: 32px; }
.agreement-section h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px dashed var(--stone);
}
.agreement-section h3 span { color: var(--rust); font-family: var(--display); margin-right: 8px; }
.agreement-section p, .agreement-section li { font-size: 13.5px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 10px; }
.agreement-section ul, .agreement-section ol { margin-left: 24px; margin-bottom: 12px; }
.agreement-section ul li, .agreement-section ol li { padding: 4px 0; }
.signature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(26,20,16,0.15);
}
.sig-block { display: flex; flex-direction: column; gap: 4px; }
.sig-line { border-bottom: 1.5px solid var(--ink); height: 32px; margin-bottom: 4px; }
.sig-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-dark); font-weight: 600; }
.agreement-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px dashed var(--stone);
  font-family: var(--script);
  font-style: italic;
  font-size: 15px;
  color: var(--rust);
}

/* PALETTE */
.palette-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 32px auto 0;
}
.swatch {
  aspect-ratio: 1;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 11px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}
.swatch-name { font-family: var(--display); font-size: 13px; margin-bottom: 2px; }
.swatch-hex { font-family: 'SF Mono', monospace; opacity: 0.7; }

/* WHAT'S NEW BADGE */
.whats-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rust);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.whats-new-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--cream);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr 1fr; }
  .levels-grid { grid-template-columns: 1fr; }
  .who-we-are-inner { grid-template-columns: 1fr; }
  .classroom-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .hhh-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr 1fr; }
  .semester-card { grid-template-columns: 1fr; text-align: center; }
  .semester-date { border-right: none; border-bottom: 1px dashed rgba(26,20,16,0.2); padding: 0 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-grid { grid-template-columns: 1fr; }
  .palette-grid { grid-template-columns: repeat(3, 1fr); }
  .agreement-doc { padding: 32px 24px; }
}

/* ============================================================
   SITE ADDITIONS  (real multi-page site — not in preview deck)
   ============================================================ */

/* Page wrapper / shared layout */
.site { min-height: 100vh; }
.container { max-width: 1100px; margin: 0 auto; }
.container-wide { max-width: 1200px; margin: 0 auto; }

/* Make the site nav sticky + wire the logo image size */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-logo img { height: 42px; width: auto; display: block; }
.site-logo { text-decoration: none; }

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1.5px solid rgba(26,20,16,0.25);
  border-radius: 3px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); }

/* Interior page hero (compact banner) */
.page-hero {
  position: relative;
  padding: 80px 48px 72px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(184,68,46,0.08), transparent 60%),
    var(--parchment);
  border-bottom: 1px solid rgba(26,20,16,0.08);
  overflow: hidden;
}
.page-hero .hero-eyebrow { justify-content: center; }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--rust); font-weight: 400; }
.page-hero .page-hero-lead {
  font-family: var(--script);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--stone-dark);
  max-width: 720px;
  margin: 0 auto;
}

/* Generic prose section */
.section-block { padding: 90px 48px; }
.section-block.on-cream { background: var(--cream); }
.section-block.on-parchment { background: var(--parchment); }
.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-size: 17px; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.75; }
.prose p strong { color: var(--ink); }
.prose h3 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 40px 0 16px;
}

/* Mission commitment cards */
.commit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.commit-card {
  background: var(--parchment);
  border: 1px solid rgba(26,20,16,0.1);
  border-left: 4px solid var(--rust);
  border-radius: 6px;
  padding: 32px 28px;
}
.commit-card h4 { font-family: var(--display); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.commit-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }

/* Responsive embed (Jotform / Google Map) */
.embed-frame {
  position: relative;
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(26,20,16,0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.embed-frame iframe { display: block; width: 100%; border: 0; }
.embed-jotform iframe { min-height: 1100px; }
.embed-map iframe { height: 460px; }

/* Tuition table */
.tuition-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--cream);
  border: 1px solid rgba(26,20,16,0.12);
  border-radius: 6px;
  overflow: hidden;
}
.tuition-table th, .tuition-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(26,20,16,0.08);
  font-size: 15px;
}
.tuition-table th {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tuition-table td strong { color: var(--rust); font-family: var(--display); font-size: 18px; }
.tuition-table tr:last-child td { border-bottom: none; }

/* Numbered steps (Step Up walkthrough / sample unit) */
.steps { max-width: 820px; margin: 0 auto; display: grid; gap: 16px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid rgba(26,20,16,0.08);
  border-radius: 6px;
  padding: 24px 28px;
}
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--rust);
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 18px;
}
.step h4 { font-family: var(--display); font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }

/* Sample 4-week unit */
.unit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.unit-week {
  background: var(--parchment);
  border: 1px solid rgba(26,20,16,0.1);
  border-radius: 6px;
  padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.unit-week:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.unit-week .week-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rust); font-weight: 700; margin-bottom: 10px;
}
.unit-week h4 { font-family: var(--display); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.unit-week p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.65; }

/* Testimonials (static, Phase 1) */
.testimonials { padding: 90px 48px; background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--parchment);
  border-radius: 6px;
  padding: 32px;
  border-top: 4px solid var(--rust);
}
.testimonial-card blockquote {
  font-family: var(--script);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 18px;
}
.testimonial-card .attr { font-size: 13px; font-weight: 700; color: var(--rust); letter-spacing: 0.04em; }

/* Honest placeholder banner for not-yet-final content */
.placeholder-note {
  max-width: 900px;
  margin: 24px auto 0;
  background: rgba(184,68,46,0.07);
  border: 1px dashed var(--rust);
  border-radius: 6px;
  padding: 16px 22px;
  font-size: 13px;
  color: var(--rust-deep);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 48px;
  align-items: start;
}
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--cream);
  border: 1px solid rgba(26,20,16,0.1);
  border-radius: 6px;
  padding: 22px 26px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.25s;
}
.contact-card:hover { border-color: var(--rust); transform: translateX(4px); }
.contact-card .c-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border: 1.5px solid var(--rust); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--rust);
}
.contact-card .c-icon svg { width: 22px; height: 22px; }
.contact-card .c-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-dark); font-weight: 700; margin-bottom: 3px; }
.contact-card .c-value { font-family: var(--display); font-size: 17px; font-weight: 600; }
.contact-form { display: grid; gap: 16px; background: var(--cream); border: 1px solid rgba(26,20,16,0.1); border-radius: 8px; padding: 32px; }
.contact-form label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--stone-dark); }
.contact-form input, .contact-form textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid rgba(26,20,16,0.18);
  border-radius: 4px;
  background: var(--parchment);
  color: var(--ink);
  margin-top: 6px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--rust); }
.contact-form textarea { min-height: 130px; resize: vertical; }

/* Shop */
.shop-cta-band { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.shop-note { font-size: 13px; color: var(--stone-dark); margin-top: 16px; }

/* Utility */
.center { text-align: center; }
.mt-lg { margin-top: 40px; }
.btn-row-center { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Finer responsive breakpoints ---------- */
@media (max-width: 860px) {
  .site-nav { padding: 16px 24px; gap: 16px; }
  .nav-toggle { display: flex; }
  .site-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(26,20,16,0.12);
    box-shadow: var(--shadow-soft);
    padding: 8px 24px 16px;
    margin-left: 0;
  }
  .site-nav.open ul { display: flex; }
  .site-nav ul li { width: 100%; }
  .site-nav ul li a { display: block; padding: 12px 0; width: 100%; }
  .site-nav a.active::after { display: none; }
  .btn-enroll { display: inline-block; margin-top: 8px; }
  .unit-grid { grid-template-columns: 1fr 1fr; }
  .commit-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero, .who-we-are, .teaching, .levels, .classroom, .forging,
  .founder, .scriptures, .semester, .parents, .faq, .cta-band,
  .merch, .testimonials, .section-block { padding-left: 20px; padding-right: 20px; }
  .page-hero { padding-left: 20px; padding-right: 20px; }
  .info-strip { grid-template-columns: 1fr; padding: 24px 20px; }
  .merch-grid { grid-template-columns: 1fr; }
  .unit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 48px 24px 28px; }
  .footer-bottom { flex-direction: column; }
  .level-card, .who-we-are, .founder { padding: 28px 22px; }
  .embed-jotform iframe { min-height: 900px; }
}

/* Branded placeholder shown in place of the live Jotform embed during client review */
.form-placeholder {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 64px 28px;
  background:
    repeating-linear-gradient(45deg, rgba(184,68,46,0.04) 0 12px, transparent 12px 24px),
    var(--cream);
}
.form-placeholder .fp-badge {
  width: 64px; height: 64px; border: 2px solid var(--rust); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--rust);
}
.form-placeholder .fp-badge svg { width: 30px; height: 30px; }
.form-placeholder h3 { font-family: var(--display); font-size: 26px; font-weight: 700; }
.form-placeholder p { font-size: 15px; color: var(--ink-soft); max-width: 480px; }
.form-placeholder code { font-family: 'SF Mono', Monaco, monospace; font-size: 13px; color: var(--rust-deep); background: rgba(184,68,46,0.08); padding: 2px 8px; border-radius: 3px; }
