/* =============================================
   MEN'S WORK COACHING WEBSITE — Main Stylesheet
   ============================================= */

/* --- CSS Variables --- */
:root {
  /* Core Palette */
  --cream:       #FAF6F0;
  --cream-warm:  #F0E8D8;
  --cream-deep:  #E2D8C7;
  --stone:       #C4B49E;
  --bark:        #8A6545;
  --soil:        #5A3820;
  --earth:       #3A2210;

  --forest:      #3D5A3A;
  --sage:        #6A8F66;
  --fern:        #8BAE88;
  --moss:        #B8D0B5;

  --gold:        #B8832A;
  --gold-warm:   #CC9A3F;

  /* Semantic */
  --bg:          var(--cream);
  --bg-alt:      var(--cream-warm);
  --bg-dark:     var(--earth);
  --text:        var(--earth);
  --text-mid:    var(--soil);
  --text-light:  var(--bark);
  --text-muted:  var(--stone);
  --accent:      var(--forest);
  --border:      var(--cream-deep);

  /* Typography */
  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-w:    1100px;
  --pad-x:    1.5rem;
  --section:  5rem;

  /* Effects */
  --shadow-sm: 0 1px 4px rgba(58,34,16,.08), 0 1px 2px rgba(58,34,16,.04);
  --shadow-md: 0 4px 16px rgba(58,34,16,.10), 0 2px 6px rgba(58,34,16,.06);
  --shadow-lg: 0 16px 48px rgba(58,34,16,.12), 0 4px 12px rgba(58,34,16,.08);

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  --ease: 250ms ease;
  --ease-fast: 150ms ease;
  --ease-slow: 400ms ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--serif); line-height: 1.15; color: var(--text); font-weight: 600; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1em; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding: var(--section) 0; }
.section--alt  { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-title   { margin-bottom: 0.75rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn--primary:hover {
  background: var(--earth);
  border-color: var(--earth);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--outline:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--cream);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #9a6e22;
  border-color: #9a6e22;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--text {
  padding: 0;
  border: none;
  background: none;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.95rem;
  gap: 0.3rem;
  transition: gap var(--ease), color var(--ease);
}
.btn--text:hover { color: var(--earth); gap: 0.55rem; }

/* --- Image Placeholders --- */
.img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--cream-deep);
  border: 2px dashed var(--stone);
  border-radius: var(--r-lg);
  color: var(--bark);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 2rem;
  width: 100%;
}
.img-ph--portrait  { aspect-ratio: 3 / 4; }
.img-ph--landscape { aspect-ratio: 16 / 9; }
.img-ph--square    { aspect-ratio: 1; }
.img-ph svg { width: 40px; height: 40px; opacity: 0.4; }

/* --- Navigation --- */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}
.nav--scrolled {
  background: var(--earth);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo { display: flex; flex-direction: column; line-height: 1.2; }
.nav__logo-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
}
.nav__logo-tagline {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(250,246,240,.8);
  letter-spacing: 0.02em;
  transition: color var(--ease-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--moss);
  transition: width var(--ease);
}
.nav__link:hover,
.nav__link.active { color: var(--cream); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__link--cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--r-full);
  transition: background var(--ease) !important;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--sage); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero (Home) --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--earth);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: none;
}
.hero__bg::before,
.hero__bg::after { display: none; }

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}
.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(250,246,240,.72);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(250,246,240,.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(.6); }
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 9rem 0 4.5rem;
  background: var(--earth);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: none;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 0.6rem;
}
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--cream);
  margin-bottom: 0.85rem;
  line-height: 1.12;
}
.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(250,246,240,.7);
  max-width: 560px;
}

/* --- Intro photo fade-in --- */
.intro__photo {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.intro__photo.loaded { opacity: 1; }

/* --- Intro (Home) --- */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro__image { position: relative; }
.intro__image::before {
  content: '';
  position: absolute;
  width: 84%;
  height: 84%;
  background: var(--cream-deep);
  border-radius: var(--r-lg);
  top: -1.25rem;
  left: -1.25rem;
  z-index: 0;
}
.intro__image .img-ph {
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 4;
}
.intro__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

/* --- Services --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card__icon { width: 44px; height: 44px; color: var(--forest); margin-bottom: 1.1rem; }
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title { font-size: 1.25rem; margin-bottom: 0.6rem; }
.service-card__text  { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; }

/* --- Testimonial --- */
.testimonial { background: var(--forest); }
.testimonial__quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__quote::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 6rem;
  line-height: .8;
  color: rgba(184,208,181,.18);
  display: block;
  margin-bottom: -0.6rem;
}
.testimonial__quote p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.testimonial__quote cite {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--moss);
  font-style: normal;
}

/* --- Testimonial section: dark-green context overrides --- */
.testimonial .eyebrow { color: var(--fern); }
.testimonial .section-title { color: var(--cream); }
.testimonial .testi-card {
  background: rgba(184,208,181,0.15);
  border-color: rgba(184,208,181,0.2);
}
.testimonial .testi-card__text { color: rgba(250,246,240,.82); }
.testimonial .testi-card__cite { color: var(--cream); }
.testimonial .testi-card__role { color: rgba(250,246,240,.58); }

/* --- Testimonial quote: light-background context (about page) --- */
.section--alt .testimonial__quote::before { color: rgba(61,90,58,.12); }
.section--alt .testimonial__quote p { color: var(--text-mid); }
.section--alt .testimonial__quote cite { color: var(--text-light); }

/* --- Testimonials Grid --- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.testi-card__text {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.testi-card__cite { font-size: 0.85rem; font-weight: 600; color: var(--forest); }
.testi-card__role { font-size: 0.8rem; color: var(--text-muted); }

/* --- Retreat CTA Band --- */
.retreat-band { background: var(--cream-warm); }
.retreat-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.retreat-band__meta {
  font-size: 0.9rem;
  color: var(--bark);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.retreat-band__text { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }

/* --- Blog Preview Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.blog-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card__image { aspect-ratio: 16 / 9; }
.blog-card__body  { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.blog-card__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}
.blog-card__meta { font-size: 0.78rem; color: var(--stone); }
.blog-preview-cta { text-align: center; }

/* --- Contact Section --- */
.contact { background: var(--bg-dark); position: relative; overflow: hidden; }
.contact__bg {
  position: absolute;
  inset: 0;
  background: none;
}
.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact__title { color: var(--cream); }
.contact__text  { font-size: 1.05rem; line-height: 1.8; color: rgba(250,246,240,.68); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.875rem; font-weight: 500; color: rgba(250,246,240,.75); }
.form-input, .form-textarea {
  padding: 0.75rem 1rem;
  background: rgba(250,246,240,.07);
  border: 1px solid rgba(250,246,240,.14);
  border-radius: var(--r-md);
  color: var(--cream);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--ease-fast), background var(--ease-fast);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(250,246,240,.3); }
.form-input:focus, .form-textarea:focus {
  border-color: rgba(139,174,136,.55);
  background: rgba(250,246,240,.11);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* --- Photo Carousel --- */
.carousel {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--earth);
  user-select: none;
}
.carousel__track-wrap {
  overflow: hidden;
  width: 100%;
  display: block;
}
.carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel__slide {
  width: 100%;
  flex: 0 0 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(27, 22, 16, 0.55);
  border: 1px solid rgba(196, 180, 158, 0.25);
  color: var(--cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease-fast), border-color var(--ease-fast);
  z-index: 10;
}
.carousel__btn:hover {
  background: rgba(27, 22, 16, 0.82);
  border-color: rgba(196, 180, 158, 0.5);
}
.carousel__btn--prev { left: 1rem; }
.carousel__btn--next { right: 1rem; }
.carousel__dots {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 10;
}
.carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(250, 246, 240, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--ease-fast), transform var(--ease-fast);
}
.carousel__dot.active {
  background: var(--cream);
  transform: scale(1.25);
}

/* --- Multi-select dropdown --- */
.multi-select { position: relative; }
.multi-select__trigger {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(250,246,240,.07);
  border: 1px solid rgba(250,246,240,.14);
  border-radius: var(--r-md);
  color: var(--cream);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color var(--ease-fast), background var(--ease-fast);
  user-select: none;
}
.multi-select__trigger:focus,
.multi-select.open .multi-select__trigger {
  border-color: rgba(139,174,136,.55);
  background: rgba(250,246,240,.11);
  outline: none;
}
.multi-select__display { color: rgba(250,246,240,.3); }
.multi-select__display.has-value { color: var(--cream); }
.multi-select__chevron { flex-shrink: 0; transition: transform 0.2s; }
.multi-select.open .multi-select__chevron { transform: rotate(180deg); }
.multi-select__dropdown {
  display: none;
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #2a3a28;
  border: 1px solid rgba(250,246,240,.14);
  border-radius: var(--r-md);
  overflow: hidden;
  z-index: 200;
}
.multi-select.open .multi-select__dropdown { display: block; }
.multi-select__option {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  color: var(--cream);
  cursor: pointer;
  transition: background var(--ease-fast);
}
.multi-select__option:hover { background: rgba(250,246,240,.08); }
.multi-select__option input[type="checkbox"] { accent-color: var(--sage); width: 15px; height: 15px; cursor: pointer; }

/* --- Favorites list --- */
.favorites-list {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.3rem 0.1rem;
}
.fav-div {
  color: var(--stone);
  padding: 0 0.45rem;
  opacity: 0.5;
}
.fav-link {
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--ease-fast), border-color var(--ease-fast);
}
.fav-link:hover {
  color: var(--gold);
  border-bottom-color: rgba(184,131,42,.4);
}

/* --- Footer --- */
.footer {
  background: var(--earth);
  border-top: 1px solid rgba(250,246,240,.07);
  padding: 3.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer__brand-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.footer__brand-desc {
  font-size: 0.875rem;
  color: rgba(250,246,240,.48);
  line-height: 1.65;
  max-width: 280px;
}
.footer__heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__link {
  font-size: 0.875rem;
  color: rgba(250,246,240,.55);
  transition: color var(--ease-fast);
}
.footer__link:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250,246,240,.07);
  font-size: 0.8rem;
  color: rgba(250,246,240,.38);
}
.footer__social { display: flex; gap: 1.25rem; }
.footer__social-link {
  font-size: 0.875rem;
  color: rgba(250,246,240,.48);
  transition: color var(--ease-fast);
}
.footer__social-link:hover { color: var(--fern); }

/* --- About Page --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-story--reverse { direction: rtl; }
.about-story--reverse > * { direction: ltr; }

.about__text { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.philosophy-item {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border-left: 3px solid var(--forest);
}
.philosophy-item__num {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--cream-deep);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.philosophy-item__title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.philosophy-item__text  { font-size: 0.92rem; line-height: 1.65; color: var(--text-light); }

.credentials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.credential {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
}
.credential__icon { color: var(--forest); flex-shrink: 0; margin-top: 2px; }
.credential__title { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.15rem; }
.credential__detail { font-size: 0.82rem; color: var(--text-light); }

/* --- Retreat Page --- */
.retreat-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
.retreat-body h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.retreat-body p   { font-size: 1.02rem; line-height: 1.8; }

.retreat-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}
.rh-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.rh-item__icon {
  width: 38px;
  height: 38px;
  background: var(--cream-warm);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.rh-item__title { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.15rem; }
.rh-item__text  { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; }

.retreat-sidebar { position: sticky; top: 6rem; }
.retreat-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.retreat-card__price {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.retreat-card__note { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.retreat-card__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}
.retreat-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.35rem 0;
}
.retreat-card__label { color: var(--text-light); }
.retreat-card__value { font-weight: 600; color: var(--text); text-align: right; }
.retreat-card__cta { margin-top: 1.5rem; width: 100%; justify-content: center; }

.schedule { border-top: 1px solid var(--border); }
.schedule-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.schedule-item__time { font-size: 0.82rem; font-weight: 600; color: var(--forest); padding-top: 2px; }
.schedule-item__title { font-size: 1rem; font-family: var(--serif); margin-bottom: 0.2rem; }
.schedule-item__desc  { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; }

.for-whom__list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.for-whom__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--text-mid);
}
.for-whom__check { color: var(--forest); flex-shrink: 0; margin-top: 3px; }

/* --- Blog Page --- */
.substack-cta {
  background: var(--forest);
  border-radius: var(--r-xl);
  padding: 3rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.substack-cta__text h3 { color: var(--cream); font-size: 1.5rem; margin-bottom: 0.5rem; }
.substack-cta__text p  { color: rgba(250,246,240,.72); font-size: 1rem; }
.substack-cta__actions { display: flex; gap: 1rem; flex-shrink: 0; }

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.blog-card--featured .blog-card__image { aspect-ratio: auto; min-height: 260px; }

.blog-tag-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.tag-btn {
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--ease-fast);
}
.tag-btn:hover, .tag-btn.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* --- Utility --- */
.text-center { text-align: center; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-6  { margin-bottom: 1.5rem; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
  :root { --section: 4rem; }

  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--earth);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 1050;
  }
  .nav__links.open { display: flex; }
  .nav__link { font-size: 1.1rem; }
  .nav__toggle { display: flex; }

  .intro__grid,
  .about-story,
  .retreat-band__inner,
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }

  .services__grid,
  .blog-grid,
  .philosophy__grid,
  .pillars__grid,
  .testimonials__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .credentials__grid { grid-template-columns: 1fr; }

  .retreat-layout { grid-template-columns: 1fr; }
  .retreat-sidebar { position: static; }

  .blog-card--featured { grid-template-columns: 1fr; grid-column: auto; }
  .blog-featured { grid-template-columns: 1fr; }

  .substack-cta { flex-direction: column; align-items: flex-start; }

  .about-story--reverse { direction: ltr; }
}

@media (max-width: 640px) {
  :root { --section: 3rem; --pad-x: 1rem; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .retreat-highlights { grid-template-columns: 1fr; }
  .schedule-item { grid-template-columns: 1fr; gap: 0.2rem; }
  .blog-grid { grid-template-columns: 1fr; }

  .retreat-testi-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }

  .substack-cta__actions { flex-direction: column; align-items: center; width: 100%; }
  .substack-cta__actions .btn { width: 100%; justify-content: center; text-align: center; }

  .carousel__btn { width: 36px; height: 36px; }
  .carousel__btn--prev { left: 0.5rem; }
  .carousel__btn--next { right: 0.5rem; }
  .carousel__btn svg { width: 16px; height: 16px; }
  .carousel__dots { bottom: 0.6rem; gap: 0.35rem; }
  .carousel__dot { width: 6px; height: 6px; }
}
