/* ============================================================
   SHEENA ANG COACHING — MAIN STYLESHEET
   ============================================================ */

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --cream:          #F7F2EB;
  --cream-light:    #FAF8F4;
  --charcoal:       #5A5A5A;
  --charcoal-light: #8A8A8A;
  --yellow:         #FEDE17;
  --yellow-hover:   #E5C900;
  --terracotta:     #C4714A;
  --sage:           #7A9182;
  --sand:           #CDB99A;
  --sand-light:     #E8DCCC;
  --white:          #FFFFFF;
  --border:         rgba(44, 33, 24, 0.1);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:       1160px;
  --nav-h:       80px;
  --sec-v:       100px;
  --sec-h:       40px;
  --ease:        0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}
h1 { font-size: clamp(46px, 6vw, 76px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(20px, 2.5vw, 26px); }

p { color: var(--charcoal); line-height: 1.8; }

em { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A6000;
  display: block;
}

.lead {
  font-size: 20px;
  line-height: 1.7;
  color: var(--charcoal);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sec-h);
}

section { padding: var(--sec-v) var(--sec-h); }

.bg-white  { background: var(--white); }
.bg-cream  { background: var(--cream); }
.bg-dark   { background: var(--charcoal); }

.text-center { text-align: center; }

.divider {
  width: 52px;
  height: 2px;
  background: var(--yellow);
  margin: 24px 0;
}
.divider--center { margin: 24px auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 var(--sec-h);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(44,33,24,0.08); }

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  flex-shrink: 0;
}
.nav__logo span {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links > li > a,
.nav__dropdown-toggle {
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  transition: color var(--ease);
  cursor: pointer;
}
.nav__links > li > a:hover,
.nav__dropdown-toggle:hover { color: var(--yellow); }

/* Dropdown */
.nav__dropdown { position: relative; }

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  user-select: none;
}
.nav__dropdown-toggle svg {
  width: 10px;
  height: 10px;
  transition: transform var(--ease);
}
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 0 8px;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--ease), transform var(--ease);
  box-shadow: 0 12px 40px rgba(44,33,24,0.12);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 11px 24px;
  font-size: 14px;
  color: var(--charcoal-light);
  transition: color var(--ease), background var(--ease), padding var(--ease);
}
.nav__dropdown-menu a:hover {
  color: var(--yellow);
  background: var(--cream);
  padding-left: 30px;
}

.nav__cta {
  flex-shrink: 0;
  background: var(--yellow);
  color: var(--charcoal) !important;
  padding: 11px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background var(--ease);
}
.nav__cta:hover { background: var(--charcoal) !important; color: var(--white) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all var(--ease);
  transform-origin: center;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  inset: var(--nav-h) 0 0 0;
  background: var(--cream);
  z-index: 199;
  padding: 32px var(--sec-h) 48px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.mobile-menu a:hover { color: var(--yellow); }

.mobile-menu__sub { padding: 0 0 8px 20px; }
.mobile-menu__sub a {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--charcoal-light);
  padding: 10px 0;
  border-bottom-color: transparent;
}
.mobile-menu .btn {
  margin-top: 32px;
  text-align: center;
  display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--primary { background: var(--yellow); color: var(--charcoal); border-color: var(--yellow); }
.btn--primary:hover { background: var(--yellow-hover); border-color: var(--yellow-hover); color: var(--charcoal); }

.btn--outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--white); }

.btn--outline-light { background: transparent; color: var(--cream); border-color: rgba(247,242,235,0.5); }
.btn--outline-light:hover { background: var(--cream); color: var(--charcoal); border-color: var(--cream); }

.btn--sage { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn--sage:hover { background: var(--charcoal); border-color: var(--charcoal); }

/* ============================================================
   HOME HERO
   ============================================================ */
.hero-wrap {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 64px) var(--sec-h) 80px;
  background: var(--cream);
  display: flex;
  align-items: center;
}
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow { margin-bottom: 20px; }
.hero__headline {
  font-size: clamp(46px, 5.5vw, 72px);
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero__headline em { color: var(--yellow); font-style: italic; }
.hero__sub {
  font-size: 19px;
  line-height: 1.75;
  color: var(--charcoal-light);
  max-width: 500px;
  margin-bottom: 44px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual { position: relative; }
.hero__frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 200px 200px 12px 12px;
  background: var(--sand-light);
  overflow: hidden;
  position: relative;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.hero__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--sand);
}
.hero__placeholder svg { opacity: 0.35; }
.hero__placeholder p {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
}

.hero__accent-dot {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.1;
  bottom: -16px;
  left: -16px;
  pointer-events: none;
}
.hero__accent-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--sage);
  opacity: 0.3;
  top: -16px;
  right: -16px;
  pointer-events: none;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 72px) var(--sec-h) 72px;
  background: var(--cream);
}
.page-hero__inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { max-width: 780px; margin-bottom: 24px; }
.page-hero .lead { max-width: 620px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-header { margin-bottom: 64px; }
.sec-header .eyebrow { margin-bottom: 16px; }
.sec-header h2 { margin-bottom: 16px; }
.sec-header p { max-width: 580px; font-size: 18px; }
.sec-header--center { text-align: center; }
.sec-header--center p { margin: 0 auto; }

/* ============================================================
   RECOGNITION (home)
   ============================================================ */
.recognition {
  background: var(--white);
  padding: var(--sec-v) var(--sec-h);
}
.recognition__inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.recognition__inner h2 { margin-bottom: 36px; }
.recognition__body { font-size: 18px; line-height: 1.85; color: var(--charcoal); }
.recognition__body p + p { margin-top: 22px; }
.recognition__pull {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 30px);
  font-style: italic;
  color: var(--charcoal);
  margin-top: 52px;
  line-height: 1.5;
  position: relative;
}
.recognition__pull::before {
  content: '\201C';
  color: var(--yellow);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 5px;
}
.recognition__pull::after {
  content: '\201D';
  color: var(--yellow);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-left: 5px;
}

/* ============================================================
   THE SHIFT (home)
   ============================================================ */
.shift {
  background: var(--cream);
  padding: var(--sec-v) var(--sec-h);
}
.shift__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.shift__text .eyebrow { margin-bottom: 20px; }
.shift__text h2 { margin-bottom: 24px; }
.shift__text p + p { margin-top: 18px; }

.shift__card {
  background: var(--white);
  border-radius: 8px;
  padding: 52px 48px;
  border-left: 4px solid var(--yellow);
  position: relative;
  overflow: hidden;
}
.shift__card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 180px;
  color: var(--yellow);
  opacity: 0.18;
  position: absolute;
  top: -28px;
  left: 28px;
  line-height: 1;
  pointer-events: none;
}
.shift__card blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.shift__card blockquote em { color: var(--terracotta); }

/* ============================================================
   ABOUT TEASER (home)
   ============================================================ */
.about-teaser {
  background: var(--white);
  padding: var(--sec-v) var(--sec-h);
}
.about-teaser__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser__photo {
  aspect-ratio: 3 / 4;
  border-radius: 200px 200px 12px 12px;
  background: var(--sand-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-teaser__photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--sand);
}
.photo-placeholder p { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }

.about-teaser__text .eyebrow { margin-bottom: 20px; }
.about-teaser__text h2 { margin-bottom: 20px; }
.about-teaser__text p { font-size: 17px; margin-bottom: 18px; }

.cred-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 36px; }
.cred-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--sand);
  border-radius: 100px;
  color: var(--charcoal-light);
}

/* ============================================================
   OFFERINGS (home)
   ============================================================ */
.offerings {
  background: var(--cream);
  padding: var(--sec-v) var(--sec-h);
}
.offerings__inner { max-width: var(--max-w); margin: 0 auto; }
.offerings__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.offer-card {
  background: var(--white);
  border-radius: 8px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.offer-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 20px 52px rgba(44,33,24,0.1); }
.offer-card:hover::after { transform: scaleX(1); }

.offer-card__num {
  font-family: var(--serif);
  font-size: 72px;
  color: var(--sand-light);
  line-height: 1;
  margin-bottom: 20px;
}
.offer-card .eyebrow { margin-bottom: 10px; }
.offer-card h3 { font-size: 30px; margin-bottom: 8px; }
.offer-card__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}
.offer-card p { font-size: 15px; margin-bottom: 28px; }
.offer-card__arrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7A6000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--ease);
}
.offer-card__arrow::after { content: '→'; }
.offer-card:hover .offer-card__arrow { gap: 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--charcoal);
  padding: var(--sec-v) var(--sec-h);
}
.testimonials__inner { max-width: var(--max-w); margin: 0 auto; }
.testimonials .sec-header h2 { color: var(--cream); }
.testimonials .sec-header .eyebrow { color: var(--sand); }
.testimonials .sec-header p { color: rgba(247,242,235,0.55); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 40px 36px;
}
.t-card__quote {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 28px;
}
.t-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--sand);
  letter-spacing: 0.04em;
}
.t-card__role {
  font-size: 13px;
  color: rgba(205,185,154,0.55);
  margin-top: 4px;
}
.t-card--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  border-style: dashed;
}
.t-card--placeholder p { color: rgba(205,185,154,0.3); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--cream);
  padding: var(--sec-v) var(--sec-h);
  text-align: center;
}
.final-cta__inner { max-width: 660px; margin: 0 auto; }
.final-cta h2 { margin-bottom: 20px; }
.final-cta p { font-size: 19px; margin-bottom: 44px; color: var(--charcoal); }
.final-cta .btn + .btn { margin-left: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  padding: 72px var(--sec-h) 0;
}
.footer__top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247,242,235,0.1);
}
.footer__brand-name {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--cream);
}
.footer__brand-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 2px;
  margin-bottom: 16px;
}
.footer__brand p { font-size: 14px; color: rgba(247,242,235,0.45); line-height: 1.6; }
.footer__creds {
  font-size: 12px;
  color: rgba(247,242,235,0.25);
  letter-spacing: 0.06em;
  margin-top: 20px;
}

.footer__nav h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}
.footer__nav li + li { margin-top: 12px; }
.footer__nav a {
  font-size: 14px;
  color: rgba(247,242,235,0.5);
  transition: color var(--ease);
}
.footer__nav a:hover { color: var(--cream); }

.footer__right { display: flex; flex-direction: column; align-items: flex-end; }
.footer__right h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}
.footer__socials { display: flex; gap: 12px; flex-direction: column; }
.footer__socials a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(247,242,235,0.7);
  padding: 10px 18px;
  border: 1px solid rgba(247,242,235,0.2);
  border-radius: 4px;
  transition: all var(--ease);
  letter-spacing: 0.04em;
}
.footer__socials a:hover { color: var(--yellow); border-color: var(--yellow); background: rgba(251,225,6,0.05); }
.footer__socials svg { flex-shrink: 0; }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p { font-size: 13px; color: rgba(247,242,235,0.25); }

/* ============================================================
   INNER PAGE — CONTENT BLOCKS
   ============================================================ */
.content-block { padding: var(--sec-v) var(--sec-h); }
.content-block__inner { max-width: var(--max-w); margin: 0 auto; }
.content-block__inner--narrow { max-width: 760px; margin: 0 auto; }

.content-block h2 { margin-bottom: 24px; }
.content-block p + p { margin-top: 18px; }

/* Dash list */
.dash-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.dash-list li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.65;
}
.dash-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 11px;
}

/* Pillar grid */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.pillar {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 36px;
  border-top: 3px solid var(--yellow);
}
.pillar .eyebrow { margin-bottom: 12px; }
.pillar h4 { font-size: 22px; margin-bottom: 14px; }
.pillar p { font-size: 15px; }

/* Credentials list */
.creds-list { margin-top: 32px; }
.creds-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--charcoal);
}
.creds-list li::before {
  content: '◆';
  color: var(--yellow);
  font-size: 7px;
  margin-top: 7px;
  flex-shrink: 0;
}
.creds-list li span { font-size: 14px; color: var(--charcoal-light); display: block; margin-top: 2px; }

/* How it works steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.step { text-align: center; }
.step__num {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--sand-light);
  line-height: 1;
  margin-bottom: 12px;
}
.step h4 { font-size: 22px; margin-bottom: 10px; }
.step p { font-size: 15px; }

/* Strip quote */
.quote-strip {
  background: var(--charcoal);
  padding: 60px var(--sec-h);
  text-align: center;
}
.quote-strip blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============================================================
   RELATIONSHIP COACHING — TRACKS
   ============================================================ */
.tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.track {
  background: var(--white);
  border-radius: 12px;
  padding: 52px 44px;
}
.track__icon {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 16px;
}
.track h3 { font-size: 34px; margin-bottom: 8px; }
.track__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--yellow);
  margin-bottom: 24px;
}
.track p { margin-bottom: 18px; font-size: 16px; }
.track__list { margin: 20px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.track__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.55;
}
.track__list li::before { content: '→'; color: var(--yellow); position: absolute; left: 0; top: 0; }
.track__note {
  font-size: 14px;
  color: var(--charcoal-light);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 8px;
}

/* ============================================================
   RETREATS
   ============================================================ */
.retreat-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.retreat-pillar {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 32px;
  border-left: 3px solid var(--yellow);
}
.retreat-pillar h4 { font-size: 22px; margin-bottom: 12px; }
.retreat-pillar p { font-size: 15px; }

.retreat-dates {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 52px;
  text-align: center;
  margin-top: 48px;
}
.retreat-dates h3 { color: var(--cream); margin-bottom: 12px; }
.retreat-dates p { color: rgba(247,242,235,0.55); font-size: 16px; margin-bottom: 32px; }

/* ============================================================
   WORKSHOPS
   ============================================================ */
.workshop-list { margin-top: 48px; }
.workshop-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.workshop-item:first-child { border-top: 1px solid var(--border); }
.workshop-item h4 { font-size: 22px; line-height: 1.25; }
.workshop-item p { font-size: 16px; line-height: 1.75; }

.partner-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.partner-type {
  padding: 32px 28px;
  background: var(--white);
  border-radius: 8px;
  text-align: center;
}
.partner-type__icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}
.partner-type h4 { font-size: 20px; margin-bottom: 10px; }
.partner-type p { font-size: 14px; }

/* ============================================================
   STORIES
   ============================================================ */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.story-card {
  background: var(--white);
  border-radius: 8px;
  padding: 52px 44px;
  position: relative;
}
.story-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 100px;
  color: var(--sand-light);
  position: absolute;
  top: 20px;
  left: 36px;
  line-height: 1;
}
.story-card__quote {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
  margin-top: 40px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.story-card__quote p + p { margin-top: 1em; }
.story-card__quote p { line-height: 1.65; }
.story-card__name { font-weight: 500; font-size: 15px; color: var(--charcoal); }
.story-card__context { font-size: 13px; color: var(--charcoal-light); margin-top: 4px; }
.story-card--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 260px;
  border: 2px dashed var(--sand);
}
.story-card--placeholder p { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand); }
.story-card--placeholder::before { display: none; }

/* ============================================================
   CONNECT / FORM
   ============================================================ */
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.connect-intro h3 { margin-bottom: 20px; }
.connect-intro p { font-size: 17px; margin-bottom: 18px; }

.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form__field input,
.form__field textarea,
.form__field select {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--charcoal);
  transition: border-color var(--ease);
  width: 100%;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--yellow);
}
.form__field textarea { min-height: 140px; resize: vertical; }

.calendly-block {
  background: var(--cream);
  border-radius: 8px;
  padding: 56px 40px;
  text-align: center;
  border: 2px dashed var(--sand);
}
.calendly-block p {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

/* ============================================================
   FADE IN ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sec-v: 80px; --sec-h: 28px; }

  .hero { grid-template-columns: 1fr 340px; gap: 52px; }
  .shift__inner { gap: 48px; }
  .about-teaser__inner { grid-template-columns: 280px 1fr; gap: 52px; }
  .offerings__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__right { grid-column: span 2; align-items: flex-start; }
  .tracks { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --sec-v: 64px; --sec-h: 20px; --nav-h: 68px; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav { padding: 0 20px; }

  .hero { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { order: -1; max-width: 260px; margin: 0 auto; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; }

  .shift__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-teaser__inner { grid-template-columns: 1fr; text-align: center; }
  .about-teaser__photo { max-width: 220px; margin: 0 auto; }
  .cred-tags { justify-content: center; }

  .offerings__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .pillar-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .tracks { grid-template-columns: 1fr; }
  .retreat-pillars { grid-template-columns: 1fr; }
  .workshop-item { grid-template-columns: 1fr; gap: 8px; }
  .partner-types { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .connect-grid { grid-template-columns: 1fr; gap: 48px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__right { align-items: flex-start; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ============================================================
   INNER PAGE — RESPONSIVE GRID UTILITIES
   ============================================================ */
.pg-grid {
  display: grid;
  gap: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.pg-grid--img-r  { grid-template-columns: 1fr 420px; align-items: center; }
.pg-grid--img-l  { grid-template-columns: 420px 1fr; align-items: center; }
.pg-grid--2col   { grid-template-columns: 1fr 1fr;   align-items: center; }
.pg-grid--2top   { grid-template-columns: 1fr 1fr;   align-items: start;  }
.pg-grid--story  { grid-template-columns: 1fr 380px; align-items: start;  }
.pg-grid--tight  { gap: 48px; }
.pg-grid--3col   { grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }

@media (max-width: 768px) {
  .pg-grid--img-r,
  .pg-grid--img-l,
  .pg-grid--2col,
  .pg-grid--2top,
  .pg-grid--story {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* put image first on mobile when it's last in the DOM */
  .pg-grid--img-r > *:last-child  { order: -1; }

  .pg-grid--3col  { grid-template-columns: 1fr; }

  /* remove sticky on about page story image — irrelevant in single col */
  .pg-grid--story > .story-img-col { position: static; top: auto; }

  /* page hero text size */
  .page-hero h1 { font-size: clamp(32px, 6vw, 52px); }
}
