/* ============================================
   BLOOM RETREATS — Design System & Global Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --sage: #7A8B6F;
  --sage-light: #8FA182;
  --sage-dark: #657A59;
  --stone: #C4B5A0;
  --stone-light: #D4C8B8;
  --stone-dark: #B0A08A;
  --forest: #2C3E2D;
  --forest-light: #3D5240;
  --copper: #B87333;
  --copper-light: #CC8844;
  --alpine: #F7F5F0;
  --white: #FFFFFF;
  --overlay-dark: rgba(44, 62, 45, 0.55);
  --overlay-light: rgba(44, 62, 45, 0.3);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --section-pad-mobile: 56px;
  --content-max: 1200px;
  --text-max: 680px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--forest);
  background: var(--alpine);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--copper); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; color: var(--forest); }
h1 { font-size: 64px; font-weight: 700; }
h2 { font-size: 40px; font-weight: 600; margin-bottom: 20px; }
h3 { font-size: 28px; font-weight: 600; margin-bottom: 12px; }
h4 { font-family: var(--font-body); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
p { margin-bottom: 16px; max-width: var(--text-max); }
p:last-child { margin-bottom: 0; }
.subheadline { font-family: var(--font-body); font-size: 20px; font-weight: 400; line-height: 1.5; color: var(--forest-light); max-width: 600px; }

/* --- Layout --- */
.container { max-width: var(--content-max); margin: 0 auto; padding: 0 24px; }
.section__content { max-width: var(--content-max); margin: 0 auto; padding: 0 24px; }

/* --- Fade-in Animation --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.section { padding: var(--section-pad) 0; }
.section--stone { background: var(--stone-light); }
.section--alpine { background: var(--alpine); }
.section--white { background: var(--white); }
.section--forest { background: var(--forest); color: var(--alpine); }
.section--forest h2, .section--forest h3 { color: var(--alpine); }
.section--forest p, .section--forest .section__intro, .section--forest .problem__text p { color: var(--stone-light); }
.section--forest .subheadline { color: var(--stone-light); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Grid --- */
.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.25s var(--ease);
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--sage);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(122, 139, 111, 0.3);
}
.btn--secondary {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}
.btn--secondary:hover {
  background: var(--sage);
  color: var(--white);
}
.btn--copper {
  background: var(--copper);
  color: var(--white);
}
.btn--copper:hover {
  background: var(--copper-light);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--white {
  background: var(--white);
  color: var(--forest);
}
.btn--white:hover {
  background: var(--alpine);
  transform: translateY(-1px);
}
.btn--sm { padding: 10px 24px; font-size: 14px; }
.btn--lg { padding: 20px 48px; font-size: 18px; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.3s var(--ease);
}
.nav--transparent { background: transparent; }
.nav--solid { background: var(--white); box-shadow: 0 1px 8px rgba(44,62,45,0.08); }
.nav__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
  transition: color 0.3s;
}
.nav--transparent .nav__logo { color: var(--white); }
.nav--solid .nav__logo { color: var(--forest); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav--transparent .nav__link { color: rgba(255,255,255,0.9); }
.nav--transparent .nav__link:hover { color: var(--white); }
.nav--solid .nav__link { color: var(--forest); }
.nav--solid .nav__link:hover { color: var(--sage); }
.nav__cta .btn { padding: 10px 24px; font-size: 14px; }

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--forest);
  transition: all 0.3s;
}
.nav--transparent .nav__toggle span { background: var(--white); }

/* Mobile overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.active { display: flex; }
.nav__mobile a {
  font-size: 24px;
  font-weight: 500;
  color: var(--forest);
}
.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  color: var(--forest);
  background: none;
  border: none;
  cursor: pointer;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,62,45,0.3) 0%, rgba(44,62,45,0.5) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}
.hero__content h1 { color: var(--white); margin-bottom: 20px; }
.hero__content .subheadline { color: rgba(255,255,255,0.9); margin: 0 auto 36px; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page hero (shorter) */
.hero--page { min-height: 50vh; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44,62,45,0.1);
}
.card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--stone-light);
}
.card__body { padding: 28px; }
.card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.card__title { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.card__text { font-size: 15px; color: var(--forest-light); line-height: 1.6; }

/* --- Feature Columns --- */
.feature {
  text-align: center;
  padding: 32px 20px;
}
.feature__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--sage);
}
.feature__icon svg { width: 100%; height: 100%; }
.feature__title { font-family: var(--font-display); font-size: 24px; margin-bottom: 12px; }
.feature__text { font-size: 16px; color: var(--forest-light); max-width: 320px; margin: 0 auto; }

/* --- Timeline --- */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline__item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--stone-light);
}
.timeline__item:last-child { border-bottom: none; }
.timeline__time {
  flex: 0 0 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sage);
  padding-top: 2px;
}
.timeline__content h4 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.timeline__content p { font-size: 15px; color: var(--forest-light); margin-bottom: 0; }

/* --- Pricing Table --- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(44,62,45,0.06);
}
.pricing-table th {
  background: var(--forest);
  color: var(--white);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.02em;
}
.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--stone-light);
  font-size: 15px;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .price { font-weight: 600; color: var(--forest); }
.pricing-table .premium { color: var(--copper); font-weight: 700; }

/* --- Testimonials --- */
.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(44,62,45,0.06);
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--forest);
}
.testimonial__author { font-size: 14px; font-weight: 600; color: var(--sage); }
.testimonial__meta { font-size: 13px; color: var(--forest-light); }

/* --- Accordion (FAQ) --- */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion__group-title {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 48px 0 20px;
  color: var(--forest);
}
.accordion__group-title:first-child { margin-top: 0; }
.accordion__item {
  border-bottom: 1px solid var(--stone-light);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--forest);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.accordion__trigger:hover { color: var(--sage); }
.accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease);
  color: var(--sage);
}
.accordion__item.active .accordion__icon { transform: rotate(45deg); }
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.accordion__content-inner {
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--forest-light);
  line-height: 1.7;
}

/* --- Stats --- */
.stat { text-align: center; padding: 32px 16px; }
.stat__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 4px;
}
.stat__label {
  font-size: 15px;
  color: var(--forest-light);
  font-weight: 500;
}

/* --- Coach/Guide Cards --- */
.guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.guide__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  background: var(--stone-light);
}
.guide__info h2 { margin-bottom: 8px; }
.guide__role {
  font-size: 18px;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 24px;
}
.guide__bio { font-size: 17px; line-height: 1.7; }
.guide__quote {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--sage);
  font-style: italic;
  color: var(--forest-light);
}
.guide--reversed { direction: rtl; }
.guide--reversed > * { direction: ltr; }

/* --- Steps --- */
.steps { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.step { text-align: center; flex: 1; min-width: 200px; max-width: 300px; }
.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step__title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step__text { font-size: 15px; color: var(--forest-light); }

/* --- Coaching Package Cards --- */
.package {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(44,62,45,0.06);
  position: relative;
}
.package--featured {
  border: 2px solid var(--copper);
}
.package__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--copper);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.package__name {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 4px;
}
.package__coach { color: var(--sage); font-weight: 500; margin-bottom: 16px; font-size: 15px; }
.package__price {
  font-size: 36px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
}
.package__duration { font-size: 14px; color: var(--forest-light); margin-bottom: 24px; }
.package__features { margin-bottom: 28px; }
.package__features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--forest-light);
}
.package__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--sage);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center;
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}
.cta-banner__content {
  position: relative;
  z-index: 1;
}
.cta-banner__content h2 { color: var(--white); font-size: 48px; margin-bottom: 24px; }
.cta-banner__content p { color: rgba(255,255,255,0.85); font-size: 18px; margin: 0 auto 32px; }

/* --- Blog Cards --- */
.blog-card { background: var(--white); border-radius: 12px; overflow: hidden; }
.blog-card__img { height: 200px; background: var(--stone-light); object-fit: cover; width: 100%; }
.blog-card__body { padding: 24px; }
.blog-card__tag { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sage); margin-bottom: 8px; }
.blog-card__title { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.blog-card__excerpt { font-size: 15px; color: var(--forest-light); margin-bottom: 12px; }
.blog-card__meta { font-size: 13px; color: var(--stone-dark); }

/* --- Footer --- */
.footer {
  background: var(--forest);
  color: var(--stone-light);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer__brand { font-family: var(--font-display); font-size: 24px; color: var(--white); margin-bottom: 12px; }
.footer__tagline { font-size: 15px; color: var(--stone); margin-bottom: 16px; }
.footer__contact { font-size: 14px; line-height: 2; }
.footer__contact a { color: var(--stone-light); }
.footer__contact a:hover { color: var(--white); }
.footer h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer__links a {
  display: block;
  font-size: 14px;
  color: var(--stone-light);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__newsletter-input {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.footer__newsletter-input input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--forest-light);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
}
.footer__newsletter-input input::placeholder { color: var(--stone-dark); }
.footer__newsletter-input button {
  padding: 10px 20px;
  background: var(--sage);
  color: var(--white);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.footer__newsletter-input button:hover { background: var(--sage-dark); }
.footer__bottom {
  border-top: 1px solid var(--forest-light);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--stone-dark);
}
.footer__bottom a { color: var(--stone-dark); }
.footer__bottom a:hover { color: var(--white); }
.footer__legal { display: flex; gap: 24px; }

/* --- Forms --- */
.form { max-width: 640px; margin: 0 auto; }
.form__group { margin-bottom: 24px; }
.form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--forest);
  background: var(--white);
  transition: border-color 0.2s;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,139,111,0.15);
}
.form__textarea { min-height: 120px; resize: vertical; }
.form__radio-group { display: flex; flex-wrap: wrap; gap: 12px; }
.form__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
}
.form__radio input { accent-color: var(--sage); width: 18px; height: 18px; }
.form__hint { font-size: 13px; color: var(--forest-light); margin-top: 4px; }

/* --- Retreat Date Cards --- */
.retreat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(44,62,45,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.retreat-card__season {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 4px;
}
.retreat-card__dates {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 4px;
}
.retreat-card__spots { font-size: 14px; color: var(--copper); font-weight: 500; }
.retreat-card__price {
  font-size: 28px;
  font-weight: 700;
  color: var(--forest);
}
.retreat-card__price span { display: block; font-size: 13px; font-weight: 400; color: var(--forest-light); }

/* --- Included/Not Included Lists --- */
.included-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid var(--stone-light);
}
.included-list li:last-child { border-bottom: none; }
.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}
.excluded-list li::before {
  content: '—';
  color: var(--stone-dark);
}

/* --- Utility --- */
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-small { font-size: 0.9rem; color: #666; }
.text-italic { font-style: italic; }
.font-semibold { font-weight: 600; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-48 { gap: 48px; }

/* --- Hero Aliases (HTML uses different names than original) --- */
.hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--forest);
}
.hero__background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,62,45,0.3) 0%, rgba(44,62,45,0.5) 100%);
}
.hero__title { color: var(--white); margin-bottom: 20px; }
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 36px;
}
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Page-specific Hero Backgrounds --- */
.hero--home .hero__background { background-image: url('../images/hero-home.jpg'); }
.hero--experience .hero__background { background-image: url('../images/hero-experience.jpg'); }
.hero--tracked .hero__background { background-image: url('../images/hero-tracked.jpg'); }
.hero--coaching .hero__background { background-image: url('../images/hero-coaching.jpg'); }
.hero--guides .hero__background { background-image: url('../images/hero-guides.jpg'); }
.hero--setting .hero__background { background-image: url('../images/hero-setting.jpg'); background-position: center 30%; }
.hero--rates .hero__background { background-image: url('../images/hero-rates.jpg'); }
.hero--results .hero__background { background-image: url('../images/hero-results.jpg'); }
.hero--faq .hero__background { background-image: url('../images/hero-faq.jpg'); }
.hero--journal .hero__background { background-image: url('../images/hero-journal.jpg'); }

/* CTA Banner background */
.cta-banner { background-image: url('../images/cta-banner.jpg'); background-size: cover; background-position: center; }

/* Guide headshot images */
.guide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio: 3/4;
}
.guide-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* --- Section Title / Intro / CTA --- */
.section__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 20px;
}
.section--forest .section__title { color: var(--alpine); }
.section__intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--forest-light);
  max-width: var(--text-max);
  margin-bottom: 32px;
}
.section__intro--large {
  font-size: 22px;
  line-height: 1.6;
  color: var(--forest);
  max-width: 800px;
}
.section__cta { margin-top: 32px; }
.section__note { font-size: 15px; color: var(--forest-light); margin-top: 24px; }

/* --- Button Full Width --- */
.btn--full { width: 100%; }

/* --- Link Style --- */
.link {
  color: var(--sage);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.link:hover { color: var(--copper); }

/* --- Problem Text (index, coaching) --- */
.problem__text { max-width: var(--text-max); }

/* --- Solution Cards (index) --- */
.solution-card { text-align: center; padding: 32px 20px; }
.solution-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--sage);
}
.solution-card__icon svg { width: 100%; height: 100%; }
.solution-card__title { font-family: var(--font-display); font-size: 24px; margin-bottom: 12px; }
.solution-card__description { font-size: 16px; color: var(--forest-light); max-width: 320px; margin: 0 auto; }

/* --- Experience Cards & Grid (index, experience) --- */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.experience-card {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.3s var(--ease);
}
.section--forest .experience-card { color: var(--alpine); }
.section--stone .experience-card { background: var(--white); }
.experience-card:hover { transform: translateY(-4px); }
.experience-card__image {
  width: 100%;
  height: 180px;
  background: var(--stone-light);
  border-radius: 8px;
  margin-bottom: 16px;
  object-fit: cover;
}
.experience-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
}
.section--forest .experience-card__title { color: var(--alpine); }
.experience-card__description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--forest-light);
}
.section--forest .experience-card__description { color: var(--stone-light); }

/* --- Stats Grid --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
}
.stats-grid--4 { grid-template-columns: repeat(4, 1fr); }
.stat__value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 4px;
}

/* --- Guide Cards (index homepage preview) --- */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}
.guide-card { text-align: center; }
.guide-card__image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--stone-light);
  margin: 0 auto 16px;
  overflow: hidden;
}
.guide-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
}
.guide-card__bio { font-size: 15px; color: var(--forest-light); }

/* --- Guide Page Aliases --- */
.guide__image { width: 100%; }
.guide__name { font-family: var(--font-display); font-size: 40px; margin-bottom: 8px; }

/* --- Testimonial Aliases (index uses slightly different names) --- */
.testimonial__footer { margin-top: 16px; }
.testimonial__location { font-size: 13px; color: var(--forest-light); display: block; margin-top: 4px; }

/* --- Testimonial Cards (results.html) --- */
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(44,62,45,0.06);
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--forest);
}
.testimonial-card__footer { margin-top: 16px; }
.testimonial-card__author { font-size: 14px; font-weight: 600; color: var(--sage); }
.testimonial-card__meta { font-size: 13px; color: var(--forest-light); display: block; margin-top: 4px; }

/* --- Stat Cards (results.html) --- */
.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44,62,45,0.06);
}
.stat-card__value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 4px;
}
.stat-card__label { font-size: 15px; color: var(--forest-light); font-weight: 500; }

/* --- Retreats Grid (index) --- */
.retreats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.retreat-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
}
.retreat-card__availability {
  font-size: 14px;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 16px;
}

/* --- CTA Banner Aliases --- */
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}
.cta-banner__title {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 48px;
  margin-bottom: 24px;
}
.cta-banner__subtitle {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin: 0 auto 32px;
  max-width: var(--text-max);
}
.cta-banner__buttons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner .section__content { position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }

/* --- Testimonials Grid (index) --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* --- Footer Aliases --- */
.footer__column {}
.footer__title { font-family: var(--font-display); font-size: 24px; color: var(--white); margin-bottom: 12px; }
.footer__heading { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer__address { font-size: 14px; line-height: 2; font-style: normal; }
.footer__address a { color: var(--stone-light); }
.footer__address a:hover { color: var(--white); }
.footer__social { margin-top: 16px; display: flex; gap: 12px; }
.footer__social a { color: var(--stone-light); transition: color 0.2s; }
.footer__social a:hover { color: var(--white); }

/* --- Newsletter Form (footer & journal) --- */
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-form .input,
.newsletter-form .input--text,
.newsletter-form .input--email {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--forest-light);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
}
.newsletter-form .input::placeholder { color: var(--stone-dark); }

/* --- Input Aliases (forms use .input class) --- */
.input,
.input--text,
.input--email,
.input--tel {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--forest);
  background: var(--white);
  transition: border-color 0.2s;
}
.input:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(122,139,111,0.15); }
.input--select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--forest);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: auto;
}
.input--select:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(122,139,111,0.15); }
.input--textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--stone);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--forest);
  background: var(--white);
  transition: border-color 0.2s;
  min-height: 120px;
  resize: vertical;
}
.input--textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(122,139,111,0.15); }
.form__radios { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- Timeline Aliases (experience.html) --- */
.timeline__activity { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.timeline__description { font-size: 15px; color: var(--forest-light); margin-bottom: 0; }

/* --- Included/Excluded List Aliases --- */
.included-list__title,
.excluded-list__title {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 16px;
}
.included-list__items li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid var(--stone-light);
}
.included-list__items li:last-child { border-bottom: none; }
.included-list__items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}
.excluded-list__items li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid var(--stone-light);
}
.excluded-list__items li:last-child { border-bottom: none; }
.excluded-list__items li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--stone-dark);
  font-weight: 700;
}

/* --- Menu Card (experience.html) --- */
.menu-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  margin-top: 32px;
  box-shadow: 0 2px 12px rgba(44,62,45,0.06);
}
.menu-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 24px;
}
.menu-card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.menu-card__meal-title { font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--sage); }
.menu-card__meal-description { font-size: 15px; color: var(--forest-light); line-height: 1.6; }

/* --- Workshop Cards (experience.html) --- */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.workshop-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(44,62,45,0.06);
}
.workshop-card__title { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.workshop-card__description { font-size: 15px; color: var(--forest-light); line-height: 1.6; }

/* --- Step Description Alias (tracked.html) --- */
.step__description { font-size: 15px; color: var(--forest-light); }

/* --- Card Description Alias --- */
.card__description { font-size: 15px; color: var(--forest-light); line-height: 1.6; }

/* --- Pricing Card (tracked.html) --- */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(44,62,45,0.1);
  border: 2px solid var(--sage);
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
}
.pricing-card__subtitle {
  font-size: 16px;
  color: var(--forest-light);
  margin-bottom: 32px;
}
.pricing-card__features {
  text-align: left;
  margin-bottom: 32px;
}
.pricing-card__features li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--forest-light);
}
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* --- Package Savings --- */
.package__savings { font-size: 14px; color: var(--copper); font-weight: 600; }

/* --- Together Section (guides.html) --- */
.together {
  max-width: var(--text-max);
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
  color: var(--forest);
}

/* --- Grid 5 columns (setting.html) --- */
.grid--5 { grid-template-columns: repeat(5, 1fr); }

/* --- Getting Here (setting.html) --- */
.getting-here { max-width: var(--text-max); }
.getting-here__details { margin-top: 16px; padding: 16px 20px; background: var(--stone-light); border-radius: 8px; }
.getting-here__cities { margin-top: 16px; }

/* --- Accommodation (setting.html) --- */
.accommodation__text { font-size: 17px; line-height: 1.7; max-width: var(--text-max); }
.accommodation__note { font-size: 15px; color: var(--forest-light); margin-top: 16px; }

/* --- Pricing Table Fix (rates.html wraps table in div) --- */
.pricing-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.pricing-table table th {
  background: var(--forest);
  color: var(--white);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.02em;
}
.pricing-table table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--stone-light);
  font-size: 15px;
}
.pricing-table table tr:last-child td { border-bottom: none; }
.text--small { font-size: 12px; font-weight: 400; }

/* --- Highlight Box (rates.html) --- */
.highlight-box {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(44,62,45,0.06);
}
.highlight-box--copper { border-left: 4px solid var(--copper); }
.highlight-box__title { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.highlight-box__text { font-size: 15px; color: var(--forest-light); }

/* --- Add-on Cards (rates.html) --- */
.addons-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.addon-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(44,62,45,0.06);
}
.addon-card__title { font-family: var(--font-display); font-size: 22px; margin-bottom: 4px; }
.addon-card__price { font-size: 28px; font-weight: 700; color: var(--sage); margin-bottom: 12px; }
.addon-card__description { font-size: 15px; color: var(--forest-light); line-height: 1.6; margin-bottom: 12px; }

/* --- Included Checklist (rates.html) --- */
.included-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--alpine);
}
.checklist-icon { flex-shrink: 0; }
.section--forest .checklist-item { color: var(--alpine); }

/* --- Info Box (rates.html) --- */
.info-box {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(44,62,45,0.06);
}
.info-box__title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.info-box__text { font-size: 15px; color: var(--forest-light); }
.info-section { margin-top: 32px; }
.info-section__title { font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.info-section__list li {
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--stone-light);
}
.info-section__list li:last-child { border-bottom: none; }

/* --- FAQ Accordion Aliases (faq.html uses different names) --- */
.accordion-group { margin-bottom: 48px; }
.accordion-group__title {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--forest);
}
.accordion-item { border-bottom: 1px solid var(--stone-light); }
.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--forest);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.accordion-button:hover { color: var(--sage); }
.accordion-button__text { flex: 1; }
.accordion-button__icon {
  flex-shrink: 0;
  font-size: 24px;
  color: var(--sage);
  transition: transform 0.3s var(--ease);
}
.accordion-item.active .accordion-button__icon { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.accordion-content p {
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--forest-light);
  line-height: 1.7;
}

/* --- Featured Post (journal.html) --- */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.featured-post__image {
  width: 100%;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--stone-light);
}
.featured-post__title { font-family: var(--font-display); font-size: 36px; margin-bottom: 16px; }
.featured-post__excerpt { font-size: 17px; color: var(--forest-light); line-height: 1.7; margin-bottom: 12px; }
.featured-post__meta { font-size: 13px; color: var(--stone-dark); margin-bottom: 16px; }

/* --- Post Tag (journal.html) --- */
.post-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

/* --- Blog Card Aliases (journal.html uses different child names) --- */
.blog-card__image {
  width: 100%;
  min-height: 200px;
  object-fit: cover;
  background: var(--stone-light);
  border-radius: 8px 8px 0 0;
}
.blog-card__content { padding: 24px; }

/* --- Newsletter CTA (journal.html) --- */
.newsletter-cta { text-align: center; max-width: 600px; margin: 0 auto; }
.newsletter-cta__title { font-family: var(--font-display); font-size: 36px; margin-bottom: 12px; }
.newsletter-cta__copy { font-size: 17px; color: var(--forest-light); margin-bottom: 24px; }
.newsletter-form--large { flex-direction: row; max-width: 500px; margin: 0 auto; }
.newsletter-form--large .input { flex: 1; }

/* --- Categories (journal.html) --- */
.categories { text-align: center; }
.categories__title { font-family: var(--font-display); font-size: 24px; margin-bottom: 16px; }
.categories__list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.category-link {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--stone);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  transition: all 0.2s;
}
.category-link:hover {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(2, 1fr); }
  .guide { gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
  .workshops-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .retreats-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-list { grid-template-columns: 1fr; }
  .stats-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .featured-post { gap: 24px; }
  .included-checklist { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  .subheadline { font-size: 17px; }
  .section__title { font-size: 32px; }
  .hero__subtitle { font-size: 17px; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .guide { grid-template-columns: 1fr; }
  .guide--reversed { direction: ltr; }

  .hero { min-height: 80vh; }
  .hero--page { min-height: 40vh; }

  .retreat-card { align-items: stretch; text-align: center; }

  .timeline__item { flex-direction: column; gap: 4px; }
  .timeline__time { flex: none; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__legal { justify-content: center; }

  .steps { flex-direction: column; align-items: center; }

  .cta-banner__content h2 { font-size: 32px; }
  .cta-banner__title { font-size: 32px; }

  .experiences-grid { grid-template-columns: 1fr; }
  .workshops-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .retreats-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: 1fr; }
  .menu-card__grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .newsletter-form--large { flex-direction: column; }
  .included-checklist { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
  .pricing-card__price { font-size: 44px; }
  .stat-card__value, .stat__value { font-size: 36px; }
}

@media (max-width: 480px) {
  h1 { font-size: 32px; }
  .btn--lg { padding: 16px 32px; font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: center; }
}
