/* ==========================================
   STILLWATER RETREATS — STYLESHEET
   Color Palette:
   - Deep Ocean:    #2C3E50
   - Coastal Slate: #4A6274
   - Warm Sand:     #E8DFD0
   - Soft Cream:    #F5F1EB
   - Sage:          #8A9A7B
   - Charcoal:      #2D2D2D
   - White:         #FAFAF8
   ========================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: #2D2D2D;
  background-color: #FAFAF8;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 780px;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 32px;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 14px 32px;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #FAFAF8;
  transition: color 0.4s ease;
}

.site-header.scrolled .header-logo {
  color: #2C3E50;
}

.header-cta {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(250, 250, 248, 0.5);
  border-radius: 2px;
  color: #FAFAF8;
  transition: all 0.4s ease;
}

.site-header.scrolled .header-cta {
  color: #2C3E50;
  border-color: #2C3E50;
}

.header-cta:hover {
  background: rgba(250, 250, 248, 0.15);
}

.site-header.scrolled .header-cta:hover {
  background: #2C3E50;
  color: #FAFAF8;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Replace with your hero image */
background: url('../images/sunset-retreat.jpg') center center / cover no-repeat;
  background-color: #2C3E50; /* fallback */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 62, 80, 0.55) 0%,
    rgba(44, 62, 80, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #FAFAF8;
  padding: 40px 24px;
  max-width: 700px;
}

.hero-pre {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.8;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  margin-bottom: 32px;
}

.hero-lines p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 4px;
}

.hero-words {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 32px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
}

.hero-sub {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 40px;
  line-height: 1.8;
}

.scroll-indicator {
  margin-top: 48px;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(250, 250, 248, 0.3);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.2); }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #8A9A7B;
  color: #FAFAF8;
}

.btn-primary:hover {
  background: #768A67;
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 24px;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 40px;
  color: #2C3E50;
}

.section-light {
  background: #FAFAF8;
}

.section-sand {
  background: #F5F1EB;
}

.section-dark {
  background: #2C3E50;
  color: #FAFAF8;
}

.section-dark h2 {
  color: #FAFAF8;
}

.section-cta {
  background: linear-gradient(180deg, #F5F1EB 0%, #E8DFD0 100%);
  padding: 100px 24px 120px;
}

/* ---- POETIC TEXT ---- */
.poetic {
  text-align: center;
}

.poetic p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.poetic .emphasis {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #4A6274;
  margin: 32px 0;
}

.section-dark .poetic .emphasis {
  color: #E8DFD0;
}

.poetic-close {
  text-align: center;
  margin-top: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #4A6274;
}

.section-dark .poetic-close {
  color: #E8DFD0;
}

.poetic-close p {
  margin-bottom: 4px;
}

.section-intro {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.section-note {
  text-align: center;
  font-size: 0.95rem;
  margin-top: 40px;
  opacity: 0.7;
}

.label-text {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 40px;
}

/* ---- FEATURE GRID ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
  padding: 24px 16px;
}

.feature-icon {
  font-size: 0.6rem;
  color: #8A9A7B;
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 0.95rem;
}

/* ---- EXPERIENCE LIST ---- */
.experience-list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto;
}

.experience-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 1rem;
  padding-left: 20px;
  position: relative;
}

.experience-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #8A9A7B;
}

/* ---- WHO LIST ---- */
.who-list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto;
}

.who-list li {
  padding: 14px 0;
  font-size: 1rem;
  padding-left: 24px;
  position: relative;
}

.who-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8A9A7B;
  opacity: 0.6;
}

/* ---- PHILOSOPHY ---- */
.philosophy-lines {
  margin: 32px 0;
}

.philosophy-lines p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #4A6274;
  margin-bottom: 8px;
}

/* ---- RETREAT DETAILS ---- */
.retreat-details,
.retreat-access {
  background: rgba(255,255,255,0.6);
  border-radius: 4px;
  padding: 32px;
  margin: 24px 0;
}

.retreat-details h3,
.retreat-access h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #2C3E50;
}

.retreat-specs {
  list-style: none;
}

.retreat-specs li {
  padding: 8px 0;
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
}

.retreat-specs li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #8A9A7B;
}

.section-sand .btn {
  margin-top: 32px;
  display: block;
  text-align: center;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- FACILITATOR ---- */
.facilitator-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.facilitator-photo img {
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  background: #E8DFD0; /* placeholder bg */
}

.facilitator-bio p {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.credentials {
  margin: 40px 0;
  padding: 40px;
  background: #F5F1EB;
  border-radius: 4px;
}

.credentials h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #2C3E50;
}

.credential-list {
  list-style: none;
}

.credential-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
}

.credential-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8A9A7B;
  font-weight: 500;
}

.facilitator-blend {
  margin: 40px 0;
}

.facilitator-blend h3 {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #2C3E50;
}

.facilitator-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.facilitator-links a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #4A6274;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.facilitator-links a:hover {
  border-color: #4A6274;
}

/* ---- TESTIMONIALS ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 40px 0;
}

.testimonial {
  border-left: 2px solid #8A9A7B;
  padding-left: 24px;
}

.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: #E8DFD0;
}

.testimonial cite {
  display: block;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  opacity: 0.7;
}

.testimonial-note {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
  font-style: italic;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-item summary {
  padding: 20px 0;
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: #8A9A7B;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

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

.faq-item p {
  padding: 0 0 20px;
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.7;
}

/* ---- WAITLIST FORM ---- */
.waitlist-form {
  max-width: 480px;
  margin: 48px auto 0;
}

.form-group {
  margin-bottom: 16px;
}

.waitlist-form input,
.waitlist-form textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  background: #FAFAF8;
  color: #2D2D2D;
  transition: border-color 0.3s ease;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
  outline: none;
  border-color: #8A9A7B;
}

.waitlist-form textarea {
  resize: vertical;
  min-height: 80px;
}

.waitlist-form .btn {
  margin-top: 8px;
  padding: 18px 40px;
  font-size: 0.9rem;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #2D2D2D;
  color: #FAFAF8;
  padding: 60px 24px 40px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  opacity: 0.6;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom p {
  font-size: 0.75rem;
  opacity: 0.3;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .section {
    padding: 72px 20px;
  }

  .hero-words {
    flex-direction: column;
    gap: 12px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .facilitator-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .facilitator-photo {
    max-width: 240px;
    margin: 0 auto;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .facilitator-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .header-cta {
    font-size: 0.7rem;
    padding: 8px 16px;
  }
}
/* ==========================================
   TYPOGRAPHY BUMP V2 (Replace the previous block with this)
   ========================================== */

/* 1. Make the base font slightly thicker for readability */
body {
  font-weight: 400; /* Bumps it up from the thin 300 weight */
}

/* 2. Scale up the base font size globally on larger screens */
@media (min-width: 768px) {
  html {
    font-size: 18px; /* This automatically scales up ALL rem sizes on the page */
  }
}

/* 3. Specifically target and enlarge the italicized/serif text */
.poetic .emphasis { 
  font-size: 2.2rem; 
  margin: 48px 0; 
}
.philosophy-lines p { 
  font-size: 1.8rem; 
  line-height: 1.6; 
}
.poetic-close { 
  font-size: 1.8rem; 
  margin-top: 64px; 
}
.testimonial p { 
  font-size: 1.6rem; 
}

/* 4. Keep headings and body text large and readable */
.container.narrow { max-width: 860px; }
.section h2 { font-size: clamp(2.6rem, 5vw, 3.8rem); margin-bottom: 64px; }
.poetic p { font-size: 1.25rem; }
.section-intro { font-size: 1.35rem; }

/* 5. Scale up the lists and re-align the custom bullets */
.feature-item p { font-size: 1.25rem; }
.experience-list li, .who-list li { 
  font-size: 1.25rem; 
  padding: 20px 0 20px 36px; 
}
.who-list li::before { 
  top: 28px; 
  width: 10px; 
  height: 10px; 
}
.credential-list li { 
  font-size: 1.15rem; 
  padding: 14px 0 14px 32px; 
}

/* 6. Buttons */
.btn { font-size: 1.05rem; padding: 20px 52px; }
