/* ====================================================================
   THE BLACK SHEEP SURVIVES — Shared Stylesheet
   Roxanna Safdia, M.S.
   ==================================================================== */

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

:root {
  --cream:        #FAF6F0;
  --cream-dark:   #F0EBE3;
  --rose:         #C97B7B;
  --rose-light:   #D9A5A5;
  --charcoal:     #2A2423;
  --charcoal-mid: #3D3534;
  --text:         #3A3230;
  --text-light:   #6B5F5C;
  --max:          1300px;
  --px:           60px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
}

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

/* ── NAV ──────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--px);
  background: var(--cream);
  border-bottom: 1px solid rgba(201, 123, 123, 0.15);
  transition: padding 0.3s ease;
}

nav.scrolled { padding: 18px var(--px); }

.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 58px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--charcoal); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--rose);
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--charcoal); }

/* ── HAMBURGER ────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--rose); }

.mobile-nav-cta {
  font-family: 'Jost', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream) !important;
  background: var(--rose);
  padding: 16px 44px;
  margin-top: 12px;
}

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn-primary {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--charcoal);
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-primary:hover { background: var(--rose); }

.btn-ghost {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--rose-light);
  padding-bottom: 2px;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.btn-ghost:hover { color: var(--charcoal); }

.btn-session {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--rose-light);
  padding: 18px 40px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-session:hover { background: var(--cream); }

.btn-outline {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  background: transparent;
  border: 1px solid var(--rose);
  padding: 14px 32px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--rose);
  color: var(--cream);
}

/* ── SECTION UTILITIES ────────────────────────────────────────────── */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 24px;
  display: block;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.section-headline em {
  font-style: italic;
  color: var(--rose-light);
}

.section-rule {
  width: 40px;
  height: 2px;
  background: var(--rose);
  margin-bottom: 40px;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────────────── */
.page-hero {
  background: var(--charcoal);
  padding: 160px var(--px) 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(201,123,123,0.2);
}

.page-hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 24px;
  display: block;
}

.page-hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  max-width: 860px;
}

.page-hero-headline em {
  font-style: italic;
  color: var(--rose-light);
}

.page-hero-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(250,246,240,0.65);
  max-width: 560px;
  margin-top: 28px;
}

.page-hero-rule {
  width: 48px;
  height: 2px;
  background: var(--rose);
  margin-top: 36px;
}

/* ── ARTICLE FEATURE IMAGE ───────────────────────────────────────── */
.article-feature-img {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  margin: 0;
}

.article-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.article-feature-img figcaption {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  text-align: right;
  padding: 8px var(--px) 0;
}

.article-feature-img figcaption a {
  color: var(--warm-gray);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── HOME HERO ────────────────────────────────────────────────────── */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 90px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--px) 80px var(--px);
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-tagline {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.35s;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-headline em {
  font-style: italic;
  color: var(--rose-light);
  display: block;
}

.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--rose);
  margin: 36px 0;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.85s;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.3s;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #E8E0D6 0%, #D4C8BC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.hero-photo-placeholder span {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A89890;
}

.hero-right::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, var(--cream), transparent);
  z-index: 2;
}

.hero-badge {
  position: absolute;
  bottom: 48px;
  left: -20px;
  background: var(--charcoal);
  color: var(--cream);
  padding: 16px 24px;
  z-index: 3;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}

.hero-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  display: block;
}

.hero-badge-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-light);
  display: block;
  margin-top: 3px;
}

/* ── PILLARS ──────────────────────────────────────────────────────── */
.pillars {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar {
  padding: 48px 52px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.pillar:last-child { border-right: none; }

.pillar-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 12px;
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.pillar-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 246, 240, 0.55);
}

/* ── ABOUT SECTION (home + page) ──────────────────────────────────── */
#about {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  padding: 120px var(--px);
  max-width: var(--max);
  margin: 0 auto;
}

.about-body p,
.about-page-body p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 28px;
}

.credential-card {
  background: var(--cream-dark);
  padding: 28px 32px;
  margin-bottom: 12px;
}

.credential-type {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}

.credential-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.credential-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-light);
}

.credential-card.certs .credential-sub { line-height: 1.8; }

.credential-card.stats { background: var(--charcoal); }
.credential-card.stats .credential-type  { color: var(--rose-light); }
.credential-card.stats .credential-title { color: var(--cream); font-size: 22px; }
.credential-card.stats .credential-sub   { color: rgba(250,246,240,0.6); }

/* ── SESSIONS SECTION (home) ──────────────────────────────────────── */
#sessions {
  background: var(--charcoal-mid);
  padding: 120px var(--px);
  text-align: center;
  position: relative;
}

#sessions .section-label { color: var(--rose-light); }

.sessions-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
}

.sessions-headline em {
  font-style: italic;
  color: var(--rose-light);
}

.sessions-rule {
  width: 40px;
  height: 1px;
  background: var(--rose);
  margin: 32px auto;
}

.sessions-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(250,246,240,0.7);
  max-width: 700px;
  margin: 0 auto 72px;
}

.session-card {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(250,246,240,0.15);
  padding: 56px 64px;
  text-align: left;
}

.session-card-header { margin-bottom: 48px; }

.session-name {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.session-meta {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-light);
}

.session-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px;
  margin-bottom: 48px;
}

.session-feature {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(250,246,240,0.75);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.session-feature::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rose);
}

.session-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(250,246,240,0.12);
}

.session-footer-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.4);
}

/* ── BLOG PREVIEW (home) ──────────────────────────────────────────── */
#blog-preview {
  padding: 120px var(--px);
  max-width: var(--max);
  margin: 0 auto;
}

.blog-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-card {
  text-decoration: none;
  display: block;
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--cream-dark);
  margin-bottom: 24px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-dark) 0%, #D8CFCA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img-placeholder span {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B0A099;
}

.blog-card-category {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.blog-card:hover .blog-card-title { color: var(--rose); }

.blog-card-excerpt {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
}

.blog-card-meta {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(58,50,48,0.45);
}

/* ── BLOG INDEX PAGE ──────────────────────────────────────────────── */
#blog-page {
  padding: 80px var(--px) 120px;
  max-width: var(--max);
  margin: 0 auto;
}

.blog-grid-large {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 48px;
}

.blog-card-large .blog-card-img { aspect-ratio: 16/9; }
.blog-card-large .blog-card-title { font-size: 26px; }

/* Newsletter strip */
.newsletter-strip {
  background: var(--charcoal);
  padding: 80px var(--px);
  text-align: center;
}

.newsletter-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.newsletter-headline em {
  font-style: italic;
  color: var(--rose-light);
}

.newsletter-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(250,246,240,0.6);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(250,246,240,0.2);
  background: rgba(250,246,240,0.08);
  color: var(--cream);
  outline: none;
}

.newsletter-form input[type="email"]::placeholder { color: rgba(250,246,240,0.35); }

.newsletter-form button {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--rose);
  color: var(--cream);
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--rose-light); }

/* ── BLOG POST ARTICLE ────────────────────────────────────────────── */
.article-wrapper {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--px) 120px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,123,123,0.2);
  margin-bottom: 48px;
}

.article-tag {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--rose);
  padding: 6px 14px;
}

.article-date-read {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 52px 0 20px;
  line-height: 1.2;
}

.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 40px 0 16px;
}

.article-body p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 28px;
}

.article-body blockquote {
  border-left: 3px solid var(--rose);
  padding: 8px 0 8px 32px;
  margin: 44px 0;
}

.article-body blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.5;
}

.article-body ul {
  margin: 0 0 28px 20px;
}

.article-body ul li {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
  padding-left: 8px;
}

.article-sidebar { position: sticky; top: 120px; }

.article-author-card {
  background: var(--cream-dark);
  padding: 28px;
  margin-bottom: 20px;
}

.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.author-title {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

.author-bio {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.sidebar-cta {
  background: var(--charcoal);
  padding: 28px;
  text-align: center;
}

.sidebar-cta p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(250,246,240,0.75);
  margin-bottom: 20px;
}

/* ── WORK WITH ME PAGE ────────────────────────────────────────────── */
.wtm-intro {
  padding: 80px var(--px) 60px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.wtm-intro-text p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
}

.distinction-box {
  background: var(--cream-dark);
  padding: 40px 48px;
  border-left: 3px solid var(--rose);
}

.distinction-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.distinction-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.distinction-item:last-child { margin-bottom: 0; }

.distinction-check {
  font-size: 14px;
  color: var(--rose);
  margin-top: 2px;
  flex-shrink: 0;
  font-weight: 500;
}

.distinction-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

.distinction-text strong {
  font-weight: 500;
  color: var(--charcoal);
}

/* What to expect */
.wtm-steps {
  background: var(--charcoal);
  padding: 100px var(--px);
}

.wtm-steps-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.wtm-steps .section-label { color: var(--rose-light); }
.wtm-steps .section-headline { color: var(--cream); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.step { border-top: 1px solid rgba(250,246,240,0.12); padding-top: 28px; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: rgba(201,123,123,0.3);
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}

.step-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250,246,240,0.6);
}

/* Booking section */
.wtm-booking {
  padding: 100px var(--px);
  max-width: var(--max);
  margin: 0 auto;
}

.booking-header {
  text-align: center;
  margin-bottom: 64px;
}

.acuity-embed-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--cream-dark);
  padding: 20px;
}

.acuity-placeholder {
  background: linear-gradient(160deg, #E8E0D6, #D4C8BC);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 60px 40px;
}

.acuity-placeholder strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 4px;
  display: block;
}

.acuity-placeholder p {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #8A7A74;
  max-width: 380px;
  line-height: 1.6;
}

/* FAQ */
.wtm-faq {
  background: var(--cream-dark);
  padding: 100px var(--px);
}

.wtm-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

details.faq-item {
  border-bottom: 1px solid rgba(201,123,123,0.2);
  padding: 8px 0;
}

details.faq-item summary {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--charcoal);
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: '+';
  font-family: 'Jost', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform 0.3s;
}

details.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  padding: 0 0 24px 0;
}

/* ── CONTACT PAGE ─────────────────────────────────────────────────── */
.contact-wrapper {
  padding: 80px var(--px) 120px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.contact-form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.contact-form-subheading {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-form label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  margin-top: 28px;
}

.contact-form .form-group:first-of-type label { margin-top: 0; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
  background: var(--cream-dark);
  border: 1px solid rgba(201,123,123,0.25);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--rose); }

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C97B7B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-row .form-group label { margin-top: 0; }

.form-group { margin-bottom: 0; }

.form-submit-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.form-note {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--text-light);
  opacity: 0.65;
}

.form-success {
  display: none;
  background: rgba(201,123,123,0.08);
  border-left: 3px solid var(--rose);
  padding: 20px 24px;
  margin-top: 24px;
}

.form-success p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}

.form-error {
  display: none;
  color: #b94040;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(185,64,64,0.06);
  border-left: 2px solid #b94040;
}

/* Contact sidebar */
.contact-info-block { margin-bottom: 48px; }

.contact-info-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.contact-info-block p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 12px;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,123,123,0.18);
  transition: color 0.2s;
}

.contact-social-link:hover { color: var(--rose); }

.contact-social-icon {
  width: 36px;
  height: 36px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
}

.contact-disclaimer {
  background: var(--cream-dark);
  padding: 28px 32px;
  margin-top: 40px;
}

.contact-disclaimer p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── ABOUT PAGE ───────────────────────────────────────────────────── */
.about-page-story {
  padding: 80px var(--px) 60px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo { position: sticky; top: 120px; }

.about-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #E8E0D6 0%, #D4C8BC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-photo-frame span {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A89890;
}

.about-approach {
  background: var(--charcoal-mid);
  padding: 100px var(--px);
}

.about-approach-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.about-approach .section-label { color: var(--rose-light); }
.about-approach .section-headline { color: var(--cream); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.approach-card {
  padding: 36px 40px;
  background: rgba(250,246,240,0.05);
  border: 1px solid rgba(250,246,240,0.1);
}

.approach-card-icon {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--rose);
  margin-bottom: 20px;
}

.approach-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.approach-card-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250,246,240,0.6);
}

.about-credentials {
  padding: 100px var(--px);
  max-width: var(--max);
  margin: 0 auto;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.about-cta-strip {
  background: var(--charcoal);
  padding: 100px var(--px);
  text-align: center;
}

.about-cta-strip .section-headline {
  color: var(--cream);
  margin-bottom: 40px;
}

.about-cta-strip .section-label { color: var(--rose-light); }

/* ── FOOTER ───────────────────────────────────────────────────────── */
footer { background: var(--charcoal); }

.footer-main {
  padding: 72px var(--px) 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(250,246,240,0.08);
  max-width: var(--max);
  margin: 0 auto;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo img {
  height: 110px;
  width: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
  background: rgba(250, 246, 240, 0.12);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 0 0 1px rgba(250, 246, 240, 0.1);
}

.footer-logo:hover img { opacity: 0.85; }

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(250,246,240,0.3);
  line-height: 1.6;
  max-width: 260px;
}

.footer-tagline-bottom {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(250,246,240,0.3);
}

.footer-nav-heading {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: rgba(250,246,240,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-list a:hover { color: var(--cream); }

.footer-bottom {
  padding: 24px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: rgba(250,246,240,0.22);
}

.footer-handle {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--rose-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-handle:hover { color: var(--cream); }

.footer-legal {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-legal a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: rgba(250,246,240,0.22);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(250,246,240,0.5); }

/* ── ANIMATIONS ───────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --px: 40px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .article-sidebar { position: static; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
}


@media (max-width: 900px) {
  :root { --px: 24px; }

  nav { padding: 20px var(--px); }
  nav.scrolled { padding: 16px var(--px); }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px var(--px) 40px; }
  .hero-right { min-height: 55vw; }

  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .pillar:last-child { border-bottom: none; }

  #about { grid-template-columns: 1fr; gap: 48px; padding: 80px var(--px); }

  #sessions { padding: 80px var(--px); }
  .session-card { padding: 36px 28px; }
  .session-features { grid-template-columns: 1fr; }
  .session-card-footer { flex-direction: column; gap: 24px; align-items: flex-start; }

  #blog-preview { padding: 80px var(--px); }
  .blog-preview-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid-large { grid-template-columns: 1fr; }

  .page-hero { padding: 140px var(--px) 72px; }

  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .wtm-intro { grid-template-columns: 1fr; gap: 48px; }
  .wtm-steps { padding: 80px var(--px); }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }

  .about-page-story { grid-template-columns: 1fr; }
  .about-photo { position: static; }
  .approach-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }

  .footer-main { grid-template-columns: 1fr; gap: 40px; padding: 60px var(--px) 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  /* Hero */
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-badge { left: 0; bottom: 32px; }
  .hero-left { padding: 48px var(--px) 32px; }
  .hero-right { min-height: 72vw; }

  /* Nav logo */
  .nav-logo img { height: 44px; }

  /* Typography */
  .section-headline { font-size: clamp(26px, 7vw, 38px); margin-bottom: 20px; }
  .page-hero { padding: 110px var(--px) 56px; }
  .page-hero-sub { font-size: 16px; margin-top: 20px; }

  /* Section padding */
  #about { padding: 60px var(--px); }
  #sessions { padding: 60px var(--px); }
  #blog-preview { padding: 60px var(--px); }
  .newsletter-strip { padding: 60px var(--px); }
  #blog-page { padding: 56px var(--px) 80px; }
  .wtm-intro { padding: 60px var(--px); }
  .wtm-steps { padding: 60px var(--px); }
  .wtm-booking { padding: 60px var(--px); }
  .about-page-story { padding: 60px var(--px); }

  /* Session cards */
  .session-card { padding: 32px 20px; }
  .session-card-header { margin-bottom: 28px; }
  .session-name { font-size: 28px; }
  .session-features { gap: 14px; margin-bottom: 32px; }
  .session-feature { font-size: 15px; }
  .session-card-footer { padding-top: 24px; gap: 16px; }
  .sessions-sub { font-size: 16px; margin-bottom: 44px; }

  /* Pillars */
  .pillar { padding: 36px 24px; }

  /* Credentials */
  .credential-card { padding: 22px 20px; }

  /* Blog */
  .blog-grid { gap: 28px; }
  .blog-card-title { font-size: 20px; }
  .blog-grid-large { gap: 40px; }

  /* Article */
  .article-wrapper { padding: 48px var(--px) 72px; gap: 40px; }
  .article-meta-bar { gap: 12px; }
  .article-body p { font-size: 16px; line-height: 1.8; }
  .article-body h2 { font-size: 24px; margin: 40px 0 16px; }
  .article-body h3 { font-size: 20px; margin: 32px 0 14px; }
  .article-body blockquote { padding: 6px 0 6px 24px; margin: 32px 0; }
  .article-body blockquote p { font-size: 18px; }

  /* Forms */
  .form-submit-row { flex-direction: column; align-items: flex-start; }

  /* Acuity embed */
  .acuity-embed-wrapper { padding: 12px; }
  .acuity-embed-wrapper iframe { height: 680px; }
}

/* ── SHEEP EMOJIS ─────────────────────────────────────────────────── */
.blog-emoji {
  display: flex;
  justify-content: center;
  margin: 24px 0 8px;
}

.blog-emoji img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-emoji {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-emoji {
  display: flex;
  justify-content: center;
  margin: 28px 0 0;
}

.contact-emoji img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.home-emoji {
  display: flex;
  justify-content: center;
  margin: 32px 0 0;
}

.home-emoji img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* 404 page */
.not-found {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px var(--px) 80px;
}

.not-found-emoji img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 32px;
}

.not-found-code {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.not-found-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}

.not-found-sub {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: var(--warm-gray);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ── ACUITY FOOTER LINK OVERRIDE ─────────────────────────────────── */
.footer-nav-list a.acuity-embed-button,
.footer-nav-list a.acuity-embed-button:visited {
  background: transparent !important;
  color: rgba(250,246,240,0.6) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: none !important;
  padding: 0 !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  letter-spacing: 0.06em !important;
  text-transform: none !important;
  display: inline !important;
}
.footer-nav-list a.acuity-embed-button:hover {
  color: var(--cream) !important;
}

/* ── ACUITY BUTTON OVERRIDES ──────────────────────────────────────── */
a.nav-cta.acuity-embed-button,
a.nav-cta.acuity-embed-button:visited {
  background: var(--rose) !important;
  color: var(--cream) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: none !important;
}
a.nav-cta.acuity-embed-button:hover {
  background: var(--charcoal) !important;
}
a.mobile-nav-cta.acuity-embed-button {
  background: var(--rose) !important;
  color: var(--cream) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: none !important;
}
a.btn-session.acuity-embed-button,
a.btn-session.acuity-embed-button:visited {
  background: var(--rose-light) !important;
  color: var(--charcoal) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: none !important;
}
a.btn-session.acuity-embed-button:hover {
  background: var(--cream) !important;
}
