/*
Theme Name: Naad Yoga Space
Theme URI: https://naadyogaspace.com
Author: Naad Yoga Space
Description: Official WordPress theme matching the original Naad Yoga Space design
Version: 2.0.0
Text Domain: naad-yoga
*/

/* ── Design Tokens (exact from original) ── */
:root {
  --cream:   #fefdfa;   /* rgb(254,253,250) */
  --sand:    #f5f3ed;   /* rgb(245,243,237) */
  --linen:   #eeeae1;   /* rgb(238,234,225) */
  --dark:    #180d0d;   /* rgb(24,13,13)    */
  --mid:     #4a4a4a;   /* rgb(74,74,74)    */
  --light:   #666666;
  --border:  #e8e1d3;   /* rgb(232,225,211) */
  --naad-bg: #e3dbcc;   /* footer logo color */

  --font-display: "Inter Display", "Inter", sans-serif;
  --font-body:    "Inter", sans-serif;

  --radius-btn: 10px;
  --radius-card: 10px;
  --transition: 0.2s ease;
  --max-w: 1200px;
  --pad-h: 40px;

  /* Aliases for legacy/template compatibility */
  --color-cream: var(--cream);
  --color-sand:  var(--sand);
  --color-linen: var(--linen);
  --color-dark:  var(--dark);
  --color-mid:   var(--mid);
  --color-light: var(--light);
  --color-border: var(--border);
  --color-charcoal: var(--dark);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Custom Cursor ── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--dark);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: opacity .3s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--dark);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s;
}
.cursor-ring.hover { width: 48px; height: 48px; }
@media (hover:none) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px var(--pad-h);
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background .3s, border-color .3s;
}
.site-header.scrolled {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
}

.site-header__logo img {
  height: 64px; width: auto;
  object-fit: contain;
}
.site-header__nav {
  display: flex; align-items: center; gap: 28px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.site-header__nav a {
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: -0.1px;
  color: var(--dark);
  position: relative;
  transition: opacity var(--transition);
}
/* White nav links over hero */
.home .site-header:not(.scrolled) .site-header__nav a { color: var(--sand); }
.home .site-header:not(.scrolled) .site-header__logo img { filter: brightness(0) invert(1); }

.site-header__nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width var(--transition);
}
.site-header__nav a:hover::after, .site-header__nav a.current::after { width: 100%; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* Unified Modifiers (supports both .btn-dark and .btn--dark) */
.btn-dark, .btn--dark   { background: var(--dark); color: var(--sand); border-color: var(--dark); }
.btn-light, .btn--light  { background: var(--cream); color: var(--dark); border-color: var(--border); }
.btn-sand, .btn--sand   { background: var(--sand); color: var(--dark); border-color: var(--border); }
.btn-linen, .btn--linen  { background: var(--linen); color: var(--dark); border-color: var(--border); }
.btn-outline, .btn--outline { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn-outline:hover, .btn--outline:hover { background: var(--dark); color: var(--sand); }
.btn-ghost, .btn--ghost   { background: transparent; border-color: rgba(254, 253, 250, 0.3); color: var(--sand); }
.btn-ghost:hover, .btn--ghost:hover { background: rgba(254, 253, 250, 0.1); border-color: var(--cream); }

.btn-book {
  font-family: var(--font-display);
  font-size: 14px;
  padding: 7px 16px;
  border-radius: var(--radius-btn);
  background: var(--dark); color: var(--sand);
  transition: opacity var(--transition);
}

.btn-hero {
  font-family: var(--font-display);
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 100px;
  background: var(--cream);
  color: var(--dark);
  transition: all 0.3s ease;
  border: 1px solid var(--cream);
}
.btn-hero:hover { background: transparent; color: var(--cream); transform: translateY(-2px); }

/* Light version for transparent header */
.home .site-header:not(.scrolled) .btn-book {
  background: var(--sand); color: var(--dark);
}

/* Mobile nav */
.mobile-toggle {
  display: none; flex-direction: column; gap: 6px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(0,0,0,0.1); border-radius: 50%;
  cursor: pointer; z-index: 101; position: relative;
}
.mobile-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--dark); border-radius: 2px;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.home .site-header:not(.scrolled) .mobile-toggle {
  border-color: rgba(255,255,255,0.2);
}
.home .site-header:not(.scrolled) .mobile-toggle span {
  background: var(--cream);
}
.home .site-header:not(.scrolled) .mobile-toggle[aria-expanded="true"] span {
  background: var(--dark);
}

.mobile-menu {
  display: flex; position: fixed; inset: 0; z-index: 99;
  background: var(--cream); padding: 120px 40px 40px;
  flex-direction: column; gap: 32px;
  transform: translateY(-100%);
  opacity: 0; visibility: hidden;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1; visibility: visible;
}
.mobile-menu a:not(.btn) { font-size: 32px; font-family: var(--font-display); color: var(--dark); text-decoration: none; }

@media (max-width: 900px) {
  .site-header__nav { display: none; }
  .mobile-toggle { display: flex; }
}

/* ── HERO ── */
.hero-section {
  padding: 10px;
  min-height: 100vh;
}
.hero-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: calc(100vh - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}
.hero-card__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-card__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero-card:hover .hero-card__bg img { transform: scale(1); }
.hero-card__content {
  position: relative; z-index: 1;
  max-width: 580px;
}
.hero-card__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--sand);
  margin-bottom: 16px;
}
/* Word-by-word blur animation */
.hero-card__title .word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(8px);
  animation: wordReveal 0.5s forwards;
}
@keyframes wordReveal {
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}
.hero-card__sub {
  font-family: var(--font-display);
  font-size: 20px; color: var(--sand); opacity: 0.9;
  margin-bottom: 32px;
  animation: fadeUp 0.6s 1.2s forwards; opacity: 0;
}
@keyframes fadeUp { to { opacity: 0.8; transform: translateY(0); } }
.hero-card__sub { transform: translateY(8px); }
.hero-card__btn { animation: fadeUp2 0.5s 1.4s forwards; opacity: 0; transform: translateY(20px); }
@keyframes fadeUp2 { to { opacity: 1; transform: translateY(0); } }

/* ── LABEL / BADGE ── */
.label-badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-size: 13px;
  padding: 4px 10px; border-radius: 5px;
  background: var(--linen); color: var(--mid);
  letter-spacing: 0.01em;
}

/* ── SECTION ── */
.section { padding: 80px 0; }
.section--dark { background: var(--dark); color: var(--sand); }
.cta-section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400; letter-spacing: -0.04em;
  line-height: 1.1; color: var(--dark);
  margin-top: 12px;
}
.section-header p {
  font-size: 18px; color: var(--mid);
  margin-top: 8px;
}

/* Typography Classes */
.heading-xl { font-family: var(--font-display); font-size: clamp(48px, 8vw, 96px); font-weight: 400; letter-spacing: -0.05em; line-height: 0.95; }
.heading-lg { font-family: var(--font-display); font-size: clamp(32px, 6vw, 64px); font-weight: 400; letter-spacing: -0.04em; line-height: 1.05; }
.heading-md { font-family: var(--font-display); font-size: clamp(24px, 4vw, 36px); font-weight: 400; letter-spacing: -0.03em; line-height: 1.1; }
.heading-sm { font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: -0.02em; line-height: 1.2; }

.label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light);
}
.label--dark { background: var(--dark); color: var(--sand); padding: 4px 10px; border-radius: 5px; }

/* ── CLASS CARDS ── */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.class-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform .3s;
}
.class-card:hover { transform: translateY(-4px); }
.class-card__img { aspect-ratio: 4/3; overflow: hidden; }
.class-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.class-card:hover .class-card__img img { transform: scale(1.05); }
.class-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.class-card__name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400; letter-spacing: -0.03em;
}
.class-card__meta { font-size: 13px; color: var(--light); }
.class-card__desc { font-size: 15px; color: var(--mid); line-height: 1.6; flex: 1; }
.class-card__footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.class-card__price { font-family: var(--font-display); font-size: 17px; }
.class-card__link {
  font-size: 13px; color: var(--mid);
  text-decoration: underline; text-underline-offset: 3px;
}

/* ── INSTRUCTOR CARDS ── */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.instructor-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: transform .3s;
}
.instructor-card:hover { transform: translateY(-4px); }
.instructor-card__img { aspect-ratio: 3/4; overflow: hidden; }
.instructor-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.instructor-card:hover .instructor-card__img img { transform: scale(1.04); }
.instructor-card__body { padding: 20px; }
.instructor-card__name { font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: -0.03em; margin-bottom: 4px; }
.instructor-card__role { font-size: 13px; color: var(--light); }

/* ── PRICING SECTION ── */
.pricing-section { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pricing-card {
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--sand);
  display: flex; flex-direction: column; gap: 16px;
}
.pricing-card.featured { background: var(--dark); color: var(--sand); border-color: var(--dark); }
.pricing-card__label { font-size: 13px; color: var(--light); text-transform: uppercase; letter-spacing: .06em; }
.pricing-card.featured .pricing-card__label { color: rgba(245,243,237,.5); }
.pricing-card__price { font-family: var(--font-display); font-size: 40px; letter-spacing: -0.05em; line-height: 1; }
.pricing-card__period { font-size: 14px; color: var(--light); }
.pricing-card.featured .pricing-card__period { color: rgba(245,243,237,.6); }
.pricing-card__desc { font-size: 15px; color: var(--mid); }
.pricing-card.featured .pricing-card__desc { color: rgba(245,243,237,.75); }
.pricing-card__features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-card__feature {
  font-size: 15px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.pricing-card.featured .pricing-card__feature { border-bottom-color: rgba(255,255,255,.1); color: rgba(245,243,237,.8); }
.pricing-card__feature::before { content: '✓'; color: var(--mid); font-size: 13px; }
.pricing-card.featured .pricing-card__feature::before { color: rgba(245,243,237,.5); }

/* ── TESTIMONIAL CARDS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial-card__stars { color: var(--dark); letter-spacing: 2px; font-size: 14px; }
.testimonial-card__text { font-size: 16px; color: var(--mid); line-height: 1.7; flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: var(--linen); flex-shrink: 0; }
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name { font-family: var(--font-display); font-size: 15px; }
.testimonial-card__role { font-size: 13px; color: var(--light); }

/* ── BLOG / JOURNAL CARDS ── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.post-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: transform .3s;
}
.post-card:hover { transform: translateY(-4px); }
.post-card__img { aspect-ratio: 16/9; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.post-card__date { font-size: 13px; color: var(--light); }
.post-card__title { font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: -0.03em; line-height: 1.3; }
.post-card__excerpt { font-size: 15px; color: var(--mid); line-height: 1.6; }
.post-card__link { font-size: 13px; color: var(--mid); text-decoration: underline; text-underline-offset: 3px; margin-top: 8px; }
 
 /* ── ABOUT PAGE SECTIONS ── */
 .philo-grid {
   display: grid;
   grid-template-columns: 1fr 1.1fr;
   gap: 80px;
   align-items: center;
 }
 .stats-bar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 40px;
   flex-wrap: wrap;
 }
 .stat-item {
   flex: 1;
   min-width: 160px;
   text-align: center;
 }
 .stat-item__number {
   font-family: var(--font-display);
   font-size: clamp(32px, 4vw, 52px);
   line-height: 1;
   margin-bottom: 8px;
 }
 .stat-item__label {
   font-size: 13px;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   color: var(--light);
 }
 @media (max-width: 1024px) {
   .philo-grid { grid-template-columns: 1fr; gap: 40px; }
   .philo-grid > div:nth-child(2) { order: -1; }
 }
 @media (max-width: 768px) {
   .stats-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
 }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-toggle {
  width: 100%; text-align: left;
  padding: 20px 0;
  font-family: var(--font-display); font-size: 17px;
  color: var(--dark); display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
}
.faq-toggle__icon {
  width: 20px; height: 20px; flex-shrink: 0;
  stroke: var(--dark); transition: transform .3s;
}
.faq-item.open .faq-toggle__icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer__inner { padding-bottom: 20px; font-size: 15px; color: var(--mid); line-height: 1.7; }

/* ── FOOTER ── */
.site-footer {
  background: var(--linen);
  padding: 60px var(--pad-h) 40px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-logo img { height: 60px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-desc { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--dark); transition: background var(--transition);
}
.footer-social a:hover { background: var(--dark); color: var(--cream); }
.footer-col h4 {
  font-family: var(--font-display); font-size: 13px; font-weight: 400;
  text-transform: uppercase; letter-spacing: .06em; color: var(--mid);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 15px; color: var(--mid); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--dark); }
.footer-col p { font-size: 15px; color: var(--mid); line-height: 1.8; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--mid);
}
/* Big NAAD text in footer */
.footer-naad {
  font-family: var(--font-display); font-size: clamp(60px, 12vw, 180px);
  letter-spacing: -0.07em; color: var(--naad-bg);
  line-height: 1; padding-top: 40px;
  text-align: center; pointer-events: none;
}

/* ── REVEAL ANIMATION ── */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ── INNER PAGE HERO WITH IMAGE ── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 0 80px;
  overflow: hidden;
  min-height: 70vh;
  text-align: center;
}
.hero__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(24, 13, 13, 0.4) 0%, rgba(24, 13, 13, 0.1) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: var(--cream);
}
.hero__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(254, 253, 250, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(254, 253, 250, 0.2);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 18px;
  color: rgba(254, 253, 250, 0.9);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  opacity: 0.6;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(254, 253, 250, 0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--cream);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ── PAGE HERO (Text only inner pages) ── */
.page-hero {
  padding: 160px var(--pad-h) 80px;
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .label { display: block; font-size: 13px; color: var(--light); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400; letter-spacing: -0.04em; line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero__sub { font-size: 18px; color: var(--mid); margin-top: 12px; max-width: 560px; }

/* ── SINGLE CLASS / INSTRUCTOR ── */
.single-hero {
  padding-top: 74px;
  min-height: 50vh; display: flex; flex-direction: column; justify-content: flex-end;
}
.single-hero__img { height: 50vh; overflow: hidden; }
.single-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.single-content { max-width: 760px; margin: 0 auto; padding: 60px var(--pad-h); }
.single-content h1 { font-family: var(--font-display); font-size: clamp(28px,4vw,44px); font-weight: 400; letter-spacing: -0.04em; margin-bottom: 20px; }
.single-content p { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.meta-row { display: flex; gap: 24px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-item__label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--light); }
.meta-item__value { font-size: 15px; font-family: var(--font-display); }

/* ── 404 ── */
.error-page { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px var(--pad-h); }
.error-page__code { font-family: var(--font-display); font-size: 120px; letter-spacing: -0.07em; color: var(--linen); line-height: 1; }
.error-page__title { font-family: var(--font-display); font-size: 28px; margin-bottom: 16px; }
.error-page__sub { font-size: 16px; color: var(--mid); margin-bottom: 32px; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; color: var(--mid); }
.form-group input, .form-group textarea, .form-group select {
  font-family: var(--font-body); font-size: 15px;
  padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-btn); background: var(--cream);
  color: var(--dark); outline: none; width: 100%;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--dark); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--dark); z-index: 200; width: 0;
  transition: width .05s linear;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .classes-grid, .instructors-grid, .pricing-grid, .testimonials-grid, .posts-grid, .about-images-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --pad-h: 20px; }
  .classes-grid, .instructors-grid, .pricing-grid, .testimonials-grid, .posts-grid, .about-images-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-card { padding: 30px 20px; justify-content: center; min-height: calc(90vh - 20px); }
  .hero-card__title { font-size: clamp(32px, 8vw, 40px); }
  #header-book-btn { display: none; }
  .section { padding: 60px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .page-hero { padding: 100px var(--pad-h) 40px; }
  .hero { padding: 100px var(--pad-h) 40px; min-height: 50vh !important; }
  .hero__title { font-size: 40px; }
  .page-hero__title { font-size: 40px; }
  .pricing-card.featured { transform: none; }
}

/* ═══════════════════════════════════════════════════════
   COURSES GRID SECTION
═══════════════════════════════════════════════════════ */
.courses-grid-section { background: var(--sand); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 32px;
}

/* ── Course Card Box ── */
.course-card-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.course-card-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}
.course-card-box__poster {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--linen);
  flex-shrink: 0;
}
.course-card-box__img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; display:block; }
.course-card-box:hover .course-card-box__img { transform: scale(1.04); }
.course-card-box__poster--placeholder {
  background: linear-gradient(135deg, var(--linen) 0%, var(--sand) 100%);
  display:flex; align-items:center; justify-content:center;
}
.course-card-box__poster-icon { width:80px; height:80px; color:var(--mid); opacity:.3; }
.course-card-box__poster-icon svg { width:100%; height:100%; }
.course-card-box__badge {
  position:absolute; top:16px; left:16px;
  background:var(--dark); color:var(--cream);
  font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.08em;
  padding:5px 12px; border-radius:100px; z-index:2;
}
.course-card-box__meta-overlay {
  position:absolute; bottom:14px; left:16px;
  display:flex; gap:8px; flex-wrap:wrap; z-index:2;
}
.course-meta-chip {
  background:rgba(254,253,250,.92); backdrop-filter:blur(6px);
  border-radius:100px; font-size:12px; font-weight:500;
  padding:4px 12px;
  display:inline-flex; align-items:center; gap:5px;
  color:var(--dark);
}
.course-meta-chip svg { width:14px; height:14px; flex-shrink:0; }
.course-card-box__body {
  padding:28px 32px 32px;
  display:flex; flex-direction:column; flex:1;
}
.course-card-box__instructor { font-size:13px; color:var(--light); margin-bottom:10px; }
.course-card-box__instructor strong { color:var(--dark); font-weight:600; }
.course-card-box__title {
  font-family:var(--font-display);
  font-size:clamp(20px,2.2vw,26px); font-weight:400;
  letter-spacing:-0.03em; line-height:1.2; margin-bottom:10px;
}
.course-card-box__subtitle { font-size:16px; color:var(--mid); line-height:1.6; margin-bottom:14px; }
.course-card-box__desc { font-size:15px; color:var(--mid); line-height:1.8; margin-bottom:24px; }
.course-card-box__lists {
  display:grid; grid-template-columns:1fr 1fr;
  gap:20px 24px; margin-bottom:28px;
}
.feature-list { list-style:none; display:flex; flex-direction:column; gap:8px; }
.feature-list li { display:flex; align-items:flex-start; gap:8px; font-size:14px; line-height:1.5; color:var(--mid); }
.feature-list__icon { flex-shrink:0; font-weight:700; margin-top:1px; font-size:13px; }
.feature-list__icon--green { color:#6a9e6a; }
.feature-list__icon--amber { color:#c8965a; }
.course-card-box__footer {
  margin-top:auto; padding-top:24px;
  border-top:1px solid var(--border);
  display:flex; align-items:flex-end; gap:16px; flex-wrap:wrap;
}
.course-card-box__pricing { display:flex; gap:20px; flex-wrap:wrap; flex:1; }
.price-block { display:flex; flex-direction:column; gap:2px; }
.price-block__label { font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--light); }
.price-block__val { font-family:var(--font-display); font-size:30px; letter-spacing:-0.04em; line-height:1; }
.course-card-box__ctas { display:flex; gap:10px; flex-wrap:wrap; margin-left:auto; }

/* ═══════════════════════════════════════════════════════
   RETREATS LIST SECTION
═══════════════════════════════════════════════════════ */
.retreats-list-section { background: var(--sand); }
.retreat-card-box {
  background:var(--cream); border:1px solid var(--border);
  border-radius:20px; overflow:hidden; margin-bottom:32px;
  transition:transform .35s ease, box-shadow .35s ease;
  box-shadow:0 2px 12px rgba(0,0,0,.04);
}
.retreat-card-box:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,.10); }
.retreat-card-box__inner { display:grid; grid-template-columns:1fr 1.1fr; min-height:460px; }
.retreat-card-box__image-col { position:relative; overflow:hidden; background:var(--linen); min-height:380px; }
.retreat-card-box__img { width:100%; height:100%; object-fit:cover; transition:transform .55s ease; display:block; }
.retreat-card-box:hover .retreat-card-box__img { transform:scale(1.04); }
.retreat-card-box__img-placeholder {
  width:100%; height:100%; min-height:380px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--linen) 0%,var(--sand) 100%);
  color:var(--mid);
}
.retreat-card-box__img-placeholder svg { width:80px; height:80px; opacity:.3; }
.retreat-card-box__badges { position:absolute; top:20px; left:20px; display:flex; gap:8px; flex-wrap:wrap; z-index:2; }
.retreat-badge {
  background:rgba(254,253,250,.93); backdrop-filter:blur(6px);
  font-size:12px; font-weight:600; padding:5px 14px; border-radius:100px;
  color:var(--dark); letter-spacing:.03em;
}
.retreat-badge--alt { background:var(--dark); color:var(--cream); }
.retreat-card-box__content { padding:44px 48px; display:flex; flex-direction:column; justify-content:center; }
.retreat-card-box__title {
  font-family:var(--font-display);
  font-size:clamp(20px,2.2vw,28px); font-weight:400;
  letter-spacing:-0.03em; line-height:1.2; margin-bottom:12px;
}
.retreat-card-box__excerpt { font-size:16px; color:var(--mid); line-height:1.7; margin-bottom:28px; }
.retreat-card-box__meta { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-bottom:32px; }
.retreat-meta-chip { background:var(--sand); border-radius:12px; padding:14px 16px; border:1px solid var(--border); }
.retreat-meta-chip__label { font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--light); margin-bottom:4px; }
.retreat-meta-chip__val { font-size:14px; font-weight:500; }
.retreat-card-box__ctas { display:flex; gap:12px; flex-wrap:wrap; }
.retreat-includes-block {
  background:var(--dark); border-radius:20px;
  padding:52px; margin-bottom:32px; color:var(--cream);
}
.retreat-includes-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
.retreat-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.retreat-list li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:rgba(254,253,250,.8); line-height:1.5; }
.retreat-list__dot { flex-shrink:0; margin-top:1px; }
.retreat-instructor-block { background:var(--cream); border:1px solid var(--border); border-radius:20px; padding:40px; }
.retreat-instructor-inner { display:flex; align-items:center; gap:32px; flex-wrap:wrap; }
.retreat-instructor-avatar {
  width:120px; height:120px; border-radius:50%;
  overflow:hidden; background:var(--linen);
  flex-shrink:0; display:flex; align-items:center; justify-content:center;
  color:var(--mid);
}
.retreat-instructor-avatar svg { width:60px; height:60px; opacity:.4; }
.courses-grid-section .section-header,
.retreats-list-section .section-header { text-align:left; margin-bottom:40px; }

/* ── Responsive: Courses & Retreats ── */
@media (max-width:1024px) {
  .courses-grid { grid-template-columns:1fr; }
  .retreat-card-box__inner { grid-template-columns:1fr; }
  .retreat-card-box__image-col { min-height:280px; }
  .retreat-card-box__content { padding:32px; }
  .retreat-includes-grid { grid-template-columns:1fr 1fr; }
  .course-card-box__lists { grid-template-columns:1fr; }
}
@media (max-width:640px) {
  .course-card-box__body { padding:20px; }
  .course-card-box__footer { flex-direction:column; align-items:flex-start; }
  .course-card-box__ctas { margin-left:0; }
  .retreat-card-box__content { padding:24px 20px; }
  .retreat-card-box__meta { grid-template-columns:1fr; }
  .retreat-includes-block { padding:28px 20px; }
  .retreat-includes-grid { grid-template-columns:1fr; gap:24px; }
  .retreat-instructor-inner { flex-direction:column; align-items:flex-start; gap:20px; }
  .price-block__val { font-size:24px; }
}

/* ── ABOUT SECTION REDESIGN ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visuals {
  position: relative;
  padding-right: 40px;
  padding-bottom: 40px;
}

.about-img-main {
  width: 85%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.about-img-main img {
  width: 100%; height: 100%; object-fit: cover;
}

.about-img-sub {
  position: absolute;
  bottom: 0; right: 0;
  width: 45%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 10px solid var(--cream);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-img-sub img {
  width: 100%; height: 100%; object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 40px; left: -20px;
  background: var(--dark);
  color: var(--sand);
  padding: 24px;
  border-radius: 50%;
  width: 120px; height: 120px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.about-experience-badge .num {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.about-experience-badge .txt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  opacity: 0.8;
}

.about-copy {
  padding-left: 20px;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--dark);
}

.about-text-content .body-lg {
  margin-bottom: 32px;
  color: var(--mid);
  font-size: 18px;
  line-height: 1.6;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-highlights li {
  display: flex;
  gap: 16px;
}

.about-highlights li .icon {
  color: var(--dark);
  font-size: 20px;
  margin-top: 2px;
}

.about-highlights li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 4px;
}

.about-highlights li p {
  font-size: 14px;
  color: var(--mid);
  margin: 0;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn-link {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--dark);
  text-decoration: none;
  transition: opacity 0.3s;
}

.btn-link:hover {
  opacity: 0.7;
}

/* Responsive Optimization */
@media (max-width: 1024px) {
  .about-layout {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-visuals {
    padding-right: 20px;
    padding-bottom: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  .about-copy {
    padding-left: 0;
    text-align: center;
  }
  .about-copy .section-header {
    text-align: center !important;
  }
  .about-highlights {
    text-align: left;
  }
  .about-actions {
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .about-experience-badge {
    width: 100px; height: 100px;
    padding: 16px;
    top: 20px; left: -10px;
  }
  .about-experience-badge .num { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE REFINEMENTS
═══════════════════════════════════════════════════════ */
.hero--small { min-height: 50vh !important; }
.hero--small .hero__content { padding-top: 100px; }

@media (max-width: 900px) {
  .philosophy-layout { 
    grid-template-columns: 1fr !important; 
    gap: 40px !important; 
    text-align: center;
  }
  .founder-row { 
    grid-template-columns: 1fr !important; 
    gap: 40px !important; 
    text-align: center;
  }
  .founder-row .founder-content { order: 2 !important; }
  .founder-row .founder-img { 
    order: 1 !important; 
    max-width: 500px; 
    margin: 0 auto; 
  }
  .stats-grid { 
    grid-template-columns: 1fr 1fr !important; 
  }
}

@media (max-width: 600px) {
  .stats-grid { 
    grid-template-columns: 1fr !important; 
  }
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  50%, 100% { transform: translateY(100%); }
}

/* ── PREMIUM ABOUT HERO ── */
.hero-about-premium {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 0;
  background-color: var(--dark);
  overflow: hidden;
}

.hero-about-premium__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-about-premium__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: subtleZoom 20s ease-out forwards;
}

@keyframes subtleZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-about-premium__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-about-premium .container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
}

.hero-about-premium__label {
  display: inline-block;
  margin-bottom: 24px;
}

.hero-about-premium__label-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-sand);
}

.hero-about-premium__label-text::before,
.hero-about-premium__label-text::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--color-sand);
    vertical-align: middle;
    margin: 0 15px;
    opacity: 0.5;
}

.hero-about-premium__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-about-premium__sub {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
}

.hero-about-premium__scroll {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.hero-about-premium__scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.hero-about-premium__scroll-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-sand);
  animation: scrollLineVertical 2s infinite cubic-bezier(0.7,0,0.3,1);
}

@keyframes scrollLineVertical {
  0% { transform: translateY(-100%); }
  50%, 100% { transform: translateY(100%); }
}

@media (max-width: 768px) {
  .hero-about-premium__scroll {
    display: none;
  }
}

/* ── BESPOKE ABOUT PAGE ── */
.bespoke-manifesto {
    padding: 140px 0;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.manifesto-editorial-grid {
    display: flex;
    gap: 80px;
    align-items: stretch;
    margin-bottom: 100px;
}

@media (max-width: 900px) {
    .manifesto-editorial-grid { flex-direction: column; gap: 60px; }
}

.manifesto-editorial-text {
    flex: 1.5;
    padding-top: 20px;
}

.manifesto-editorial-img {
    flex: 1;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    min-height: 400px;
}

.manifesto-editorial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drop-cap-text::first-letter {
    float: left;
    font-size: 84px;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 16px;
    padding-left: 4px;
    color: var(--color-dark);
    font-family: var(--font-display);
    font-weight: 300;
}

.manifesto-pull-quote {
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 80px 0;
    margin-bottom: 80px;
    text-align: center;
}

.manifesto-pull-quote h3 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--color-dark);
    line-height: 1.3;
    font-weight: 300;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

@media (max-width: 768px) {
    .manifesto-two-col { grid-template-columns: 1fr; gap: 40px; }
}

.bespoke-stats {
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 100px 0;
}

.bespoke-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

@media (max-width: 900px) {
    .bespoke-stats__grid { grid-template-columns: 1fr 1fr; gap: 60px 40px; }
}
@media (max-width: 600px) {
    .bespoke-stats__grid { grid-template-columns: 1fr; }
}

.bespoke-stat__num {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    color: var(--color-sand);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-weight: 300;
}

.bespoke-stat__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.bespoke-founder {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
    background: transparent;
}

.bespoke-founder--reverse {
    flex-direction: row-reverse;
}

@media (max-width: 1000px) {
    .bespoke-founder, .bespoke-founder--reverse {
        flex-direction: column;
        padding: 60px 0;
    }
}

.bespoke-founder__img-col {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.bespoke-founder__img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bespoke-founder__img-col:hover img {
    transform: scale(1.03);
}

@media (max-width: 1000px) {
    .bespoke-founder__img-col { width: 100%; max-width: 500px; margin: 0 auto; }
}

.bespoke-founder__content-col {
    flex: 1.1;
    padding: 0 40px;
}

@media (max-width: 1000px) {
    .bespoke-founder__content-col { padding: 0 20px; text-align: center; }
}

.bespoke-founder__name {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.bespoke-founder__role {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-dark);
    opacity: 0.6;
    margin-bottom: 32px;
    display: inline-block;
}

.bespoke-founder__bio p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-mid);
    margin-bottom: 24px;
    font-weight: 400;
}
