:root {
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --bg-card: #161616;
  --line: #222222;
  --line-soft: #1a1a1a;
  --text: #f5f5f5;
  --text-soft: rgba(245,245,245,0.78);
  --muted: #8a8a8a;
  --accent: #ffffff;
  --accent-yellow: #f5c518;
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Accent utility ---- */
.accent { color: var(--accent-yellow); }
.accent-italic { color: var(--accent-yellow); font-style: italic; }

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

/* ---- Section labels ---- */
.label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ---- Header / Nav ---- */
header.site {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-size: 14px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 600;
}
.brand .pipe { color: var(--muted); margin: 0 10px; font-weight: 300; }
.brand .sub { color: var(--muted); font-weight: 400; }
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }

@media (max-width: 720px) {
  .nav { flex-direction: column; gap: 12px; }
  .nav-links {
    gap: 18px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }
}
@media (max-width: 400px) {
  .nav-links {
    gap: 14px;
    font-size: 9px;
    letter-spacing: 0.2em;
  }
}

/* ---- Breadcrumb above hero ---- */
.crumb {
  text-align: center;
  padding: 22px 0 0;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumb a { color: var(--muted); transition: color 0.2s; }
.crumb a:hover { color: var(--text); }
.crumb .sep { margin: 0 14px; opacity: 0.5; }

/* ---- Hero ---- */
.hero {
  padding: 60px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.hero .eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 30px;
}
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 980px;
  margin: 0 auto 26px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-yellow);
}
.hero .lead {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-soft);
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--accent-yellow);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 500;
}
.hero-proof .dot { width: 4px; height: 4px; background: var(--accent-yellow); border-radius: 50%; opacity: 0.55; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  background: #ffffff;
  color: #000000;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.btn:hover { background: transparent; color: #ffffff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.4); transform: translateY(-1px); }
.btn .arrow {
  display: inline-block;
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* ---- Hero pull-quote ---- */
.hero-quote {
  padding: 72px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.hero-quote .label { margin-bottom: 22px; }
.hero-quote blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 1000px;
  margin: 0 auto 36px;
  color: var(--text);
}
.hero-quote blockquote span.highlight {
  font-style: italic;
  color: var(--accent-yellow);
}
.hero-quote cite {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
}
.hero-quote cite .name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-quote cite .role {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Section ---- */
section.block { padding: 64px 0; border-bottom: 1px solid var(--line); }
section.block.tight { padding: 44px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: end;
}
.section-head .left .label { margin-bottom: 18px; display: block; }
.section-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-head .right p {
  color: var(--text-soft);
  font-size: clamp(15px, 1.3vw, 17px);
  max-width: 580px;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ---- Two-column intro: Who it's for / Already cutting? ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.two-col > div {
  padding: 56px 48px;
  border-right: 1px solid var(--line);
}
.two-col > div:last-child {
  border-right: none;
  background: rgba(255,255,255,0.018);
}
.two-col h3 {
  font-size: 13px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}
.two-col p {
  color: var(--text-soft);
  font-size: clamp(15px, 1.2vw, 16px);
  margin-bottom: 18px;
}
.two-col p:last-child { margin-bottom: 0; }
.two-col a.inline {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col > div { border-right: none; border-bottom: 1px solid var(--line); padding: 40px 24px; }
  .two-col > div:last-child { border-bottom: none; }
}

/* ---- Outcome bullets ---- */
.outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.outcomes li {
  list-style: none;
  padding: 28px 36px 28px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 400;
  color: var(--text);
  position: relative;
  padding-left: 36px;
}
.outcomes li::before {
  content: "";
  position: absolute;
  left: 0; top: 36px;
  width: 14px;
  height: 1px;
  background: rgba(255,255,255,0.55);
}
.outcomes li:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 60px; }
.outcomes li:nth-child(2n) { padding-left: 60px; }
.outcomes li:nth-child(2n)::before { left: 24px; }
@media (max-width: 720px) {
  .outcomes { grid-template-columns: 1fr; }
  .outcomes li:nth-child(odd) { border-right: none; padding-right: 0; }
  .outcomes li:nth-child(2n) { padding-left: 36px; }
  .outcomes li:nth-child(2n)::before { left: 0; }
}

/* ---- Day-by-day breakdown ---- */
.day-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.day {
  padding: 56px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.day:last-child { border-right: none; }
.day .day-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 14px;
}
.day h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.day p {
  color: var(--text-soft);
  font-size: clamp(15px, 1.3vw, 16px);
  margin-bottom: 14px;
}
.day p:last-child { margin-bottom: 0; }
@media (max-width: 800px) {
  .day-grid { grid-template-columns: 1fr; }
  .day { border-right: none; padding: 40px 24px; }
}

/* ---- Track record stats ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 56px 32px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #ffffff;
  transition: color 0.4s ease;
}
.stat .num.is-highlight { color: var(--accent-yellow); }
.stat .lab {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.track-headline {
  text-align: center;
  margin-top: 56px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.4;
  color: var(--text-soft);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
}

/* ---- Testimonial cards ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 0;
}
.testimonial {
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.testimonial .photo {
  aspect-ratio: 4 / 5;
  background: #1a1a1a;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.04);
  position: relative;
  overflow: hidden;
}
.testimonial .photo .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.testimonial .photo .placeholder .ph-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.5);
}
.testimonial .body {
  padding: 36px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testimonial blockquote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-soft);
  flex: 1;
}
.testimonial blockquote::before { content: "\201C"; font-family: 'Fraunces'; font-size: 28px; line-height: 0; color: var(--muted); margin-right: 4px; vertical-align: -8px; }
.testimonial blockquote::after { content: "\201D"; font-family: 'Fraunces'; font-size: 28px; line-height: 0; color: var(--muted); margin-left: 2px; vertical-align: -8px; }
.testimonial .attrib {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  gap: 16px;
}
.testimonial .attrib .name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.testimonial .attrib .role {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.testimonial .ig {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  transition: border-color 0.2s, color 0.2s;
}
.testimonial .ig:hover { color: var(--text); border-color: rgba(255,255,255,0.35); }
@media (max-width: 720px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial .body { padding: 28px 24px; }
}

/* ---- Featured quote ---- */
.featured-quote {
  border: 1px solid var(--line);
  padding: 44px 48px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  background: rgba(255,255,255,0.018);
}
.featured-quote .label { margin-bottom: 14px; color: var(--accent-yellow); }
.featured-quote blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.3;
}
.featured-quote .who {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 22px;
  font-weight: 500;
}
.featured-quote .who .role-line {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}
.featured-quote .vline {
  width: 1px;
  height: 100%;
  background: var(--line);
}
@media (max-width: 720px) {
  .featured-quote { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
  .featured-quote .vline { display: none; }
}

/* ---- Secondary "more from our graduates" ---- */
.more-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 32px;
}
.more-quote {
  padding: 36px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.more-quote:last-child { border-right: none; }
.more-quote blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 22px;
}
.more-quote .name {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.more-quote .role {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 720px) {
  .more-quotes { grid-template-columns: 1fr; }
  .more-quote { border-right: none; padding: 28px 24px; }
}

/* ---- Details list (location, schedule, etc) ---- */
.details-list { border-top: 1px solid var(--line); }
.details-list .row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.details-list .row dt {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.details-list .row dd {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text);
}
@media (max-width: 600px) {
  .details-list .row { grid-template-columns: 1fr; gap: 8px; }
}

/* ---- Investment block ---- */
.investment {
  border: 1px solid var(--line);
  padding: 56px 48px;
  text-align: center;
  background: rgba(255,255,255,0.012);
}
.investment .label { margin-bottom: 18px; display: block; }
.investment .price {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(56px, 8vw, 100px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--accent-yellow);
}
.investment .terms {
  color: var(--text-soft);
  font-size: clamp(14px, 1.2vw, 16px);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ---- Upgrade-path cards (Want hands-on next? etc.) ---- */
.upgrade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.upgrade-card {
  padding: 44px 40px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.2s;
}
.upgrade-card:last-child { border-right: none; }
.upgrade-card:hover { background: rgba(255,255,255,0.02); }
.upgrade-card .tag {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  font-weight: 500;
}
.upgrade-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
}
.upgrade-card p {
  color: var(--text-soft);
  font-size: 15px;
  flex: 1;
}
.upgrade-card .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  transition: border-color 0.2s, color 0.2s;
  align-self: flex-start;
}
.upgrade-card .arrow-link:hover { border-color: var(--accent-yellow); color: var(--accent-yellow); }
.upgrade-card .arrow-link::after {
  content: "→";
  font-family: serif;
}
@media (max-width: 720px) {
  .upgrade-grid { grid-template-columns: 1fr; }
  .upgrade-card { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 24px; }
  .upgrade-card:last-child { border-bottom: none; }
}

/* ---- Course cards (landing page) ---- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.course-card:hover { border-color: rgba(245,197,24,0.4); transform: translateY(-4px); }
.course-card .cc-image {
  aspect-ratio: 4 / 3;
  background: #181818;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05);
  position: relative;
  overflow: hidden;
}
.course-card .cc-image .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.course-card .cc-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.course-card .cc-tag {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  font-weight: 500;
}
.course-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.18;
}
.course-card p {
  color: var(--text-soft);
  font-size: 15px;
  flex: 1;
}
.course-card .cc-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 6px;
}
.course-card .cc-price {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--accent-yellow);
}
.course-card .cc-link {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.course-card .cc-link::after {
  content: "→";
  font-family: serif;
  transition: transform 0.2s ease;
}
.course-card:hover .cc-link::after { transform: translateX(4px); }

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

/* ---- Manifesto block (Look and Learn intro / others) ---- */
.manifesto {
  text-align: center;
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.manifesto .label { margin-bottom: 22px; }
.manifesto blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 1000px;
  margin: 0 auto;
}
.manifesto blockquote .accent-italic { font-weight: 400; }

/* ---- FAQ ---- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 28px 0;
  font-family: inherit;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-q .toggle {
  width: 14px; height: 14px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .toggle::before, .faq-q .toggle::after {
  content: "";
  position: absolute;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-q .toggle::before {
  left: 0; top: 50%;
  width: 14px; height: 1px;
  transform: translateY(-50%);
}
.faq-q .toggle::after {
  left: 50%; top: 0;
  width: 1px; height: 14px;
  transform: translateX(-50%);
}
.faq-item[open] .faq-q .toggle::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-a {
  padding: 0 0 28px 0;
  color: var(--text-soft);
  font-size: clamp(14px, 1.2vw, 16px);
  max-width: 800px;
}
.faq-a p + p { margin-top: 12px; }

/* ---- Final CTA ---- */
.final-cta {
  text-align: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}
.final-cta h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 800px;
  margin: 0 auto 24px;
}
.final-cta p {
  color: var(--text-soft);
  margin-bottom: 44px;
  font-size: 17px;
}

/* ---- Shops grid (about page) ---- */
.shops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.shop {
  border: 1px solid var(--line);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
}
.shop-image {
  aspect-ratio: 16 / 10;
  background: #181818;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05);
  position: relative;
  overflow: hidden;
}
.shop-image .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.shop-body {
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.shop-tag {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  font-weight: 500;
}
.shop-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
}
.shop-meta {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -10px;
}
.shop-hours {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.shop-hours .row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.shop-hours .row:last-child { border-bottom: none; }
.shop-hours dt {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.shop-hours dd {
  font-size: 14px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.shop-team .team-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.shop-team p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}
.shop .btn { align-self: flex-start; margin-top: 4px; }
@media (max-width: 900px) {
  .shops-grid { grid-template-columns: 1fr; gap: 24px; }
  .shop-body { padding: 28px 24px 32px; }
}

/* ---- Services menu (no prices — push to Fresha) ---- */
.services {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.services li {
  padding: 28px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--text);
}
.services li:nth-child(3n) { border-right: none; }
.services li:nth-last-child(-n+1) { border-bottom: none; }
.services-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .services { grid-template-columns: 1fr; }
  .services li { border-right: none; }
}

/* ---- Press / Recognition strip ---- */
.press-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-item {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.press-item:last-child { border-right: none; }
.press-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.press-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  color: var(--text);
}
.press-meta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 800px) {
  .press-strip { grid-template-columns: 1fr; }
  .press-item { border-right: none; border-bottom: 1px solid var(--line); }
  .press-item:last-child { border-bottom: none; }
}

/* ---- Featured product (Coming Soon hero tile) ---- */
.feature-product {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
}
.feature-product .fp-image {
  aspect-ratio: 4 / 3;
  background: #181818;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05);
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
}
.feature-product .fp-image .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.feature-product .fp-image .placeholder .ph-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.55);
}
.feature-product .fp-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.feature-product .fp-tag {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  font-weight: 500;
}
.feature-product h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.feature-product p {
  color: var(--text-soft);
  font-size: clamp(15px, 1.3vw, 17px);
}
.feature-product .fp-status {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.feature-product .fp-meta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 900px) {
  .feature-product { grid-template-columns: 1fr; }
  .feature-product .fp-image { border-right: none; border-bottom: 1px solid var(--line); }
  .feature-product .fp-body { padding: 36px 28px; }
}

/* ---- Status badges (Sold Out / Coming Soon) ---- */
.status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}
.status-sold {
  color: var(--muted);
  background: transparent;
}
.status-coming {
  color: var(--accent-yellow);
  background: rgba(245,197,24,0.05);
}
.status-instock {
  color: #0a0a0a;
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
}

/* ---- Product grid ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  color: inherit;
}
.product-card:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-3px); background: #181818; }
.product-card:hover h3 { color: var(--accent-yellow); }
.product-card h3 { transition: color 0.3s ease; }
.product-card .pc-image {
  aspect-ratio: 1 / 1;
  background: #181818;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.85) contrast(1.04);
  position: relative;
  overflow: hidden;
}
.product-card .pc-body {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.product-card .pc-cat {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.product-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
}
.product-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}
.product-card .pc-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 4px;
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---- Restock cards ---- */
.restock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.restock-card {
  padding: 44px 40px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}
.restock-card:last-child { border-right: none; }
.restock-card:hover { background: rgba(255,255,255,0.02); }
.restock-card .rc-tag {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  font-weight: 500;
}
.restock-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
}
.restock-card p {
  color: var(--text-soft);
  font-size: 15px;
  flex: 1;
}
.restock-card .rc-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  align-self: flex-start;
  transition: border-color 0.2s, color 0.2s;
}
.restock-card .rc-link::after { content: "→"; font-family: serif; }
.restock-card:hover .rc-link { border-color: var(--accent-yellow); color: var(--accent-yellow); }
@media (max-width: 720px) {
  .restock-grid { grid-template-columns: 1fr; }
  .restock-card { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 24px; }
  .restock-card:last-child { border-bottom: none; }
}

/* ---- Footer ---- */
footer.site {
  padding: 60px 0 40px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
footer.site .footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
footer.site .links { display: flex; gap: 24px; }
footer.site .links a:hover { color: var(--text); }

/* ---- Product detail pages ---- */
.pd-hero {
  padding: 56px 0 72px;
  border-bottom: 1px solid var(--line);
}
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.pd-image {
  aspect-ratio: 1 / 1;
  background: #181818;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.85) contrast(1.04);
  border: 1px solid var(--line);
}
.pd-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.pd-cat {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.pd-info h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.pd-info h1 em {
  color: var(--accent-yellow);
  font-style: italic;
  font-weight: 400;
}
.pd-tagline {
  color: var(--text-soft);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  max-width: 50ch;
}
.pd-status {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 8px;
}
.pd-meta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Hero buy action block ---- */
.pd-buy {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.pd-buy-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 80px;
}
.pd-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1;
}
.pd-stock-mini {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.pd-buy .btn,
.pd-buy .sold-pill { margin-left: auto; }
.pd-buy--soldout .pd-stock-mini { color: var(--muted); }
.pd-buy--soldout .pd-price { color: var(--muted); }
@media (max-width: 480px) {
  .pd-buy { gap: 14px; }
  .pd-buy .btn,
  .pd-buy .sold-pill { margin-left: 0; width: 100%; justify-content: center; }
}
@media (max-width: 900px) {
  .pd-grid { grid-template-columns: 1fr; gap: 36px; }
  .pd-hero { padding: 36px 0 48px; }
}

/* ---- Product spec grid ---- */
.pd-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pd-spec-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.pd-spec-row:nth-child(odd) { border-right: 1px solid var(--line); }
.pd-spec-row:nth-last-child(-n+2) { border-bottom: none; }
.pd-spec-row .k {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.pd-spec-row .v {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
}
@media (max-width: 700px) {
  .pd-spec-grid { grid-template-columns: 1fr; }
  .pd-spec-row:nth-child(odd) { border-right: none; }
  .pd-spec-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pd-spec-row:last-child { border-bottom: none; }
  .pd-spec-row { padding: 18px 4px; grid-template-columns: 110px 1fr; gap: 18px; }
}

/* ---- Inline copy section (single column body block) ---- */
.pd-copy {
  max-width: 70ch;
  color: var(--text-soft);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.7;
}
.pd-copy + .pd-copy { margin-top: 18px; }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* ---- Cinematic full-bleed hero with ken-burns ---- */
.home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hh-bg {
  position: absolute;
  inset: -3%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15) contrast(1.05) brightness(0.78);
  transform: scale(1.04);
  animation: kenBurns 22s ease-in-out infinite alternate;
  z-index: 0;
}
.hh-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.15) 55%, rgba(10,10,10,0) 100%);
  z-index: 1;
  pointer-events: none;
}
.hh-inner {
  position: relative;
  z-index: 2;
  padding: 120px 32px 90px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.hh-inner .eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 28px;
}
.hh-inner h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-bottom: 28px;
}
.hh-inner h1 em {
  color: var(--accent-yellow);
  font-style: italic;
  font-weight: 400;
}
.hh-inner .lead {
  color: var(--text-soft);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: 36px;
}
.hh-inner .hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@keyframes kenBurns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
@media (max-width: 720px) {
  .home-hero { min-height: 80vh; }
  .hh-inner { padding: 80px 24px 64px; }
}

/* ---- Pillars (Brand / Education / Shop) ---- */
.pillars-block { padding-top: 0; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: inherit;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease, background 0.4s ease;
}
.pillar-card:hover {
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-5px);
  background: #181818;
}
.pillar-image {
  aspect-ratio: 4 / 5;
  background: #181818;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.1) contrast(1.05);
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.pillar-card:hover .pillar-image { transform: scale(1.04); }
.pillar-body {
  padding: 32px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.pillar-tag {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.pillar-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.pillar-card h3 .accent-italic {
  color: var(--accent-yellow);
  font-style: italic;
}
.pillar-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.pillar-link {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  align-self: flex-start;
  transition: border-color 0.2s, color 0.2s;
}
.pillar-card:hover .pillar-link {
  color: var(--accent-yellow);
  border-color: var(--accent-yellow);
}
@media (max-width: 1000px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 18px; }
  .pillar-image { aspect-ratio: 16 / 10; }
}

/* ---- Image marquee strip ---- */
.strip-section {
  padding: 80px 0 100px;
}
.strip-row {
  margin-top: 56px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.strip-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: stripScroll 50s linear infinite;
  will-change: transform;
}
.strip-row:hover .strip-track { animation-play-state: paused; }
.strip-img {
  flex: 0 0 auto;
  width: clamp(260px, 26vw, 380px);
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.1) contrast(1.05);
  border: 1px solid var(--line);
}
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Scroll reveal (default visible — JS opts in to fade) ---- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
}
html.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  .hh-bg { animation: none; transform: scale(1.04); }
  .strip-track { animation: none; }
}

/* ---- Home-only header tweaks (no subtitle on brand) ---- */
.site--home .brand .pipe,
.site--home .brand .sub { display: none; }

/* ---- Home page compression + tenets row ---- */
.home .manifesto {
  padding: 64px 0 56px;
  text-align: center;
}
.home .manifesto .label { margin-bottom: 18px; }
.home .manifesto blockquote {
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.22;
  max-width: 880px;
  font-weight: 300;
}

.tenets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 56px auto 0;
  border-top: 1px solid var(--line);
  text-align: left;
  max-width: 1080px;
}
.tenet {
  padding: 36px 32px 14px;
  border-right: 1px solid var(--line);
}
.tenet:last-child { border-right: none; }
.tenet-num {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  font-weight: 600;
  margin-bottom: 16px;
}
.tenet-h {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}
.tenet-p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .tenets { grid-template-columns: 1fr; max-width: 480px; }
  .tenet { border-right: none; border-bottom: 1px solid var(--line); padding: 26px 4px; }
  .tenet:last-child { border-bottom: none; }
}

/* Compress home/about block padding + section-head sizing */
.home section.block,
.education section.block,
.course section.block,
.about section.block,
.contact section.block { padding: 56px 0; }
.home .pillars-block,
.education .continue-block,
.about .continue-block,
.contact .continue-block { padding-top: 8px; padding-bottom: 64px; }
.home .strip-section { padding: 56px 0 80px; }
.home .strip-section .section-head { margin-bottom: 0; }
.home .strip-section .strip-row { margin-top: 44px; }
.home .home-hero,
.education .home-hero,
.course .home-hero,
.about .home-hero,
.contact .home-hero { min-height: 76vh; }
.home .hh-inner,
.education .hh-inner,
.course .hh-inner,
.about .hh-inner,
.contact .hh-inner { padding: 92px 32px 60px; }
.home .hh-inner h1,
.education .hh-inner h1,
.course .hh-inner h1,
.about .hh-inner h1,
.contact .hh-inner h1 { font-size: clamp(40px, 5.6vw, 76px); }
.home .hh-inner .lead,
.education .hh-inner .lead,
.course .hh-inner .lead,
.about .hh-inner .lead,
.contact .hh-inner .lead { font-size: clamp(15px, 1.3vw, 18px); }
.contact .home-hero { min-height: 64vh; }

/* ---- Split manifesto (image + body) ---- */
.home .manifesto--split,
.education .manifesto--split,
.about .manifesto--split {
  padding: 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.home .manifesto--split .ms-grid,
.education .manifesto--split .ms-grid,
.about .manifesto--split .ms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 32px;
  align-items: center;
}
.home .manifesto--split .ms-image-wrap,
.education .manifesto--split .ms-image-wrap,
.about .manifesto--split .ms-image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.home .manifesto--split .ms-image,
.education .manifesto--split .ms-image,
.about .manifesto--split .ms-image {
  position: absolute;
  inset: -3%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.05) contrast(1.05);
  transform: scale(1.05);
  animation: kenBurns 24s ease-in-out infinite alternate;
}
.home .manifesto--split .ms-body,
.education .manifesto--split .ms-body,
.about .manifesto--split .ms-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.home .manifesto--split .label,
.education .manifesto--split .label,
.about .manifesto--split .label { margin: 0; }
.home .manifesto--split .ms-quote,
.education .manifesto--split .ms-quote,
.about .manifesto--split .ms-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 100%;
  margin: 0;
}
.home .manifesto--split .ms-quote em,
.education .manifesto--split .ms-quote em,
.about .manifesto--split .ms-quote em {
  color: var(--accent-yellow);
  font-style: italic;
  font-weight: 300;
}

.tenets-stack {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.tenet-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.4s;
}
.tenet-row:last-child { border-bottom: none; }
.tenet-row:hover .tenet-h { color: var(--accent-yellow); }
.tenet-row .tenet-num {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  font-weight: 600;
  padding-top: 5px;
  margin: 0;
}
.tenet-row .tenet-h {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.tenet-row .tenet-p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .home .manifesto--split .ms-grid,
  .education .manifesto--split .ms-grid,
  .about .manifesto--split .ms-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 24px;
  }
  .home .manifesto--split .ms-image-wrap,
  .education .manifesto--split .ms-image-wrap,
  .about .manifesto--split .ms-image-wrap { aspect-ratio: 3 / 2; }
  .home .manifesto--split .ms-body,
  .education .manifesto--split .ms-body,
  .about .manifesto--split .ms-body { gap: 20px; }
  .tenets-stack { margin-top: 0; }
  .tenet-row { padding: 18px 0; }
}

/* ---- Compact pillars intro (centered, tight) ---- */
.ph-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.ph-intro .label { display: block; margin-bottom: 14px; }
.ph-intro h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.ph-intro h2 .accent-italic { color: var(--accent-yellow); font-style: italic; }
.ph-intro p {
  color: var(--text-soft);
  font-size: clamp(14px, 1.2vw, 16px);
  max-width: 56ch;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .home .home-hero,
.education .home-hero,
.course .home-hero,
  .about .home-hero,
  .contact .home-hero { min-height: 60vh; }
  .home section.block,
.education section.block,
.course section.block,
  .about section.block,
  .contact section.block { padding: 44px 0; }
  .home .manifesto--split .ms-grid,
.education .manifesto--split .ms-grid,
  .about .manifesto--split .ms-grid { padding: 44px 24px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Founders 2-column grid */
.about .founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about .founder-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.about .founder-photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center 20%;
  filter: grayscale(0.1) contrast(1.04);
  border-bottom: 1px solid var(--line);
  transition: filter 0.4s;
}
.about .founder-card:hover .founder-photo { filter: grayscale(0) contrast(1.04); }
.about .founder-body {
  padding: 32px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about .founder-card:hover {
  border-color: rgba(255,255,255,0.18);
  background: #181818;
  transform: translateY(-3px);
}
.about .founder-tag {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.about .founder-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.about .founder-card h3 .accent-italic {
  color: var(--accent-yellow);
  font-style: italic;
}
.about .founder-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}
.about .founder-line {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 17px !important;
  color: var(--text) !important;
  border-left: 2px solid var(--accent-yellow);
  padding-left: 16px;
  margin-top: 8px;
}
@media (max-width: 800px) {
  .about .founders-grid { grid-template-columns: 1fr; }
  .about .founder-body { padding: 26px 24px 30px; }
}

/* Recognition split (image + body) */
.about .recognition-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about .recognition-image-wrap {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.about .recognition-image {
  position: absolute;
  inset: -2%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.05) contrast(1.04);
  transform: scale(1.03);
  animation: kenBurns 30s ease-in-out infinite alternate;
}
.about .recognition-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about .recognition-body .label { margin: 0; }
.about .recognition-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.about .recognition-body h2 .accent-italic {
  color: var(--accent-yellow);
  font-style: italic;
}
.about .recognition-body > p {
  color: var(--text-soft);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  max-width: 56ch;
}
.about .recognition-body .press-strip {
  margin-top: 6px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.about .recognition-body .press-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.about .recognition-body .press-item:last-child { border-bottom: none; }
.about .recognition-body .press-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.about .recognition-body .press-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.about .recognition-body .press-meta {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}
@media (max-width: 900px) {
  .about .recognition-split { grid-template-columns: 1fr; gap: 36px; }
  .about .recognition-image-wrap { aspect-ratio: 16 / 11; }
  .about .recognition-body .press-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .about .recognition-body .press-meta { text-align: left; }
}

/* Continue cross-link block — reuses .pillars-grid + .pillar-card */
.about .continue-block .pillars-grid {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 800px) {
  .about .continue-block .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Quick contact strip — 3 cards */
.contact .contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact .contact-card {
  padding: 38px 36px 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: inherit;
  transition: background 0.3s ease, transform 0.3s ease;
  background: var(--bg);
}
.contact .contact-card:last-child { border-right: none; }
.contact .contact-card:hover {
  background: #181818;
  transform: translateY(-3px);
}
.contact .contact-card:hover h3 { color: var(--accent-yellow); }
.contact .contact-tag {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.contact .contact-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  transition: color 0.3s;
}
.contact .contact-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.contact .contact-link {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  align-self: flex-start;
  margin-top: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.contact .contact-card:hover .contact-link {
  color: var(--accent-yellow);
  border-color: var(--accent-yellow);
}

/* Phone-card variant: two click-to-call rows */
.contact .contact-card--phones {
  background: var(--bg);
}
.contact .contact-card--phones:hover {
  background: var(--bg);
  transform: none;
}
.contact .phone-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 4px 0 6px;
}
.contact .phone-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: color 0.2s;
}
.contact .phone-row:last-child { border-bottom: none; }
.contact .phone-row:hover .phone-num { color: var(--accent-yellow); }
.contact .phone-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 24px);
  letter-spacing: -0.005em;
  transition: color 0.2s;
}
.contact .phone-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
@media (max-width: 800px) {
  .contact .contact-strip { grid-template-columns: 1fr; }
  .contact .contact-card {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .contact .contact-card:last-child { border-bottom: none; }
}

.contact-strip-block { padding-top: 8px !important; }

/* Shop card actions row (Book + Map link) */
.contact .shop-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact .shop-meta a {
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s, color 0.2s;
}
.contact .shop-meta a:hover {
  color: var(--accent-yellow);
  border-color: var(--accent-yellow);
}

/* Generic ghost-link button (no border, just underlined arrow link) */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-link:hover {
  color: var(--accent-yellow);
  border-color: var(--accent-yellow);
}

/* FAQ links inside answers */
.contact .faq-a a {
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s;
}
.contact .faq-a a:hover {
  color: var(--accent-yellow);
  border-color: var(--accent-yellow);
}

/* 3-up pillar grid on contact (continue block) */
.contact .continue-block .pillars-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1000px) {
  .contact .continue-block .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COURSE COHORT BOOKING
   ============================================================ */

.cohorts-block .ph-intro { margin-bottom: 32px; }

.cohort-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.cohort-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 30px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  transition: border-color 0.3s, background 0.3s;
}
.cohort-card:hover {
  border-color: rgba(255,255,255,0.18);
  background: #181818;
}
.cohort-card.is-soldout { opacity: 0.55; background: var(--bg); }
.cohort-card.is-soldout:hover { background: var(--bg); border-color: var(--line); }
.cohort-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  font-weight: 600;
  margin-bottom: 10px;
}
.cohort-card.is-soldout .cohort-tag { color: var(--muted); }
.cohort-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.cohort-note {
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  line-height: 1.55;
  margin-bottom: 16px;
}
.cohort-meta {
  display: flex;
  gap: 32px;
  align-items: baseline;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 4px;
}
.cohort-spots { display: flex; align-items: baseline; gap: 10px; }
.spots-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--accent-yellow);
  line-height: 1;
}
.spots-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.cohort-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  color: var(--text);
  margin-left: auto;
  letter-spacing: -0.005em;
}
.cohort-action .btn { white-space: nowrap; }
.cohort-action .sold-pill {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 12px 20px;
  border-radius: 999px;
  white-space: nowrap;
}
.cohort-card.is-coming { background: var(--bg); border-color: rgba(245,197,24,0.18); }
.cohort-card.is-coming:hover { background: var(--bg); border-color: rgba(245,197,24,0.32); }
.cohort-card.is-coming .cohort-tag { color: var(--accent-yellow); }
.cohort-card.is-coming .spots-num { color: var(--text-soft); font-size: 18px; font-style: italic; font-family: 'Fraunces', serif; }
.cohort-action .coming-pill {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-yellow);
  background: rgba(245,197,24,0.05);
  border: 1px solid var(--accent-yellow);
  padding: 12px 20px;
  border-radius: 999px;
  white-space: nowrap;
}
.cohort-waitlist {
  text-align: center;
  font-size: 14px;
  color: var(--text-soft);
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 16px;
}
.cohort-waitlist a {
  color: var(--accent-yellow);
  border-bottom: 1px solid rgba(245,197,24,0.4);
  transition: border-color 0.2s;
}
.cohort-waitlist a:hover { border-color: var(--accent-yellow); }
.cohort-deposit {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 14px 24px 0;
}

@media (max-width: 720px) {
  .cohort-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px;
  }
  .cohort-meta { gap: 24px; }
  .cohort-action .btn,
  .cohort-action .sold-pill { width: 100%; justify-content: center; }
}

/* ============================================================
   MOBILE NAVIGATION (hamburger + fullscreen overlay)
   ============================================================ */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 10px 0 10px 14px;
  cursor: pointer;
  position: relative;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
html.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
html.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
html.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  font-weight: 200;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}
.mobile-nav-links a {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 5.6vw, 28px);
  line-height: 1;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--accent-yellow); }
.mobile-nav-links a.is-current {
  color: var(--accent-yellow);
}

/* Hamburger + mobile overlay disabled — mobile uses the inline desktop nav */
.nav-toggle,
.mobile-nav { display: none !important; }
