/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #2d2a26; background: #faf9f7; line-height: 1.7; font-weight: 300; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.2; }
.section-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; color: #8b7355; margin-bottom: 1rem; font-weight: 500; }
.section-title { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.5rem; color: #1a1a1a; }
.section-subtitle { max-width: 600px; margin: 0 auto 3rem; color: #6b6560; font-size: 1.05rem; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.section.visible { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 0.9rem 2.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-primary { background: #8b7355; color: #fff; }
.btn-primary:hover { background: #6d5a43; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(139,115,85,0.3); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline { border: 1.5px solid #8b7355; color: #8b7355; background: transparent; }
.btn-outline:hover { background: #8b7355; color: #fff; }
.btn-full { width: 100%; text-align: center; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.2rem 0; transition: all 0.4s ease; }
.nav.scrolled { background: rgba(250,249,247,0.95); backdrop-filter: blur(20px); box-shadow: 0 1px 20px rgba(0,0,0,0.06); padding: 0.8rem 0; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: #fff; transition: color 0.4s; display: flex; align-items: center; gap: 0.5rem; }
.nav.scrolled .nav-logo { color: #1a1a1a; }
.nav-logo-img { height: 36px; width: auto; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; margin-left: 2rem; }
.nav-links a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.8); transition: color 0.3s; font-weight: 400; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: #6b6560; }
.nav.scrolled .nav-links a:hover { color: #1a1a1a; }
.nav-cta { background: rgba(255,255,255,0.15); padding: 0.6rem 1.5rem !important; border-radius: 50px; border: 1px solid rgba(255,255,255,0.3); }
.nav.scrolled .nav-cta { background: #8b7355 !important; color: #fff !important; border-color: #8b7355 !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: all 0.3s; }
.nav.scrolled .nav-toggle span { background: #1a1a1a; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; background: linear-gradient(135deg, #2d3a2d 0%, #4a5d4a 30%, #3d4f3d 60%, #2a3528 100%); overflow: hidden; text-align: center; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(0,0,0,0.3) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 2rem; }
.hero-eyebrow { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 4px; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 7vw, 4.5rem); color: #fff; font-weight: 400; line-height: 1.15; margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: #c4b69c; }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.4); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.about-image { position: relative; }
.about-image-inner { aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; background: linear-gradient(135deg, #e8e2d8, #d4ccc0); }
.about-photo { width: 100%; height: 100%; object-fit: cover; }
.about-accent { position: absolute; top: -20px; right: -20px; width: 120px; height: 120px; border: 1px solid #c4b69c; border-radius: 50%; opacity: 0.3; }
.about-text p { color: #6b6560; margin-bottom: 1rem; font-size: 1.05rem; }
.about-highlight { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: #1a1a1a !important; font-style: italic; border-left: 2px solid #c4b69c; padding-left: 1.5rem; margin: 2rem 0 !important; line-height: 1.6; }

/* ===== FOR YOU ===== */
.for-you { background: #f3f0eb; }
.for-you-inner { text-align: center; }
.for-you-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.for-you-card { background: #fff; border-radius: 12px; padding: 2rem 1.5rem; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.for-you-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.for-you-icon { font-size: 2rem; margin-bottom: 1rem; }
.for-you-card p { color: #6b6560; font-size: 0.95rem; }

/* ===== SERVICES ===== */
.services { text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.service-card { padding: 2.5rem 1.5rem; border-radius: 12px; border: 1px solid #e8e2d8; transition: all 0.3s; text-align: left; }
.service-card:hover { border-color: #c4b69c; box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.service-number { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: #c4b69c; margin-bottom: 1rem; font-weight: 300; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.service-card p { color: #6b6560; font-size: 0.9rem; line-height: 1.7; }

/* ===== MODALITIES ===== */
.modalities { background: linear-gradient(135deg, #2d3a2d, #3d4f3d); color: #fff; text-align: center; }
.modalities .section-eyebrow { color: #c4b69c; }
.modalities .section-title { color: #fff; }
.modalities .section-subtitle { color: rgba(255,255,255,0.7); }
.modalities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.modality-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 2.5rem 2rem; transition: all 0.3s; }
.modality-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.modality-symbol { font-size: 2.5rem; margin-bottom: 1.5rem; }
.modality-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.modality-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.modalities-note { margin-top: 3rem; color: rgba(255,255,255,0.6); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; }

/* ===== WORK ON ===== */
.work-on-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; }
.work-on-tags { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.tag { padding: 0.6rem 1.4rem; border-radius: 50px; border: 1px solid #d4ccc0; font-size: 0.85rem; color: #6b6560; transition: all 0.3s; cursor: default; }
.tag:hover { background: #8b7355; color: #fff; border-color: #8b7355; }

/* ===== ADVANCED ===== */
.advanced { background: #f3f0eb; }
.advanced-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.advanced-inner p { color: #6b6560; font-size: 1.05rem; }
.advanced-benefits { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.advanced-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; background: #fff; border-radius: 10px; font-size: 0.95rem; }
.advanced-icon { font-size: 1.5rem; }
.advanced-note { font-style: italic; color: #8b7355; font-size: 0.9rem; margin-top: 1rem; }

/* ===== RESULTS ===== */
.results { text-align: center; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; max-width: 800px; margin: 3rem auto 0; }
.result-item { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.5rem; border-radius: 10px; border: 1px solid #e8e2d8; text-align: left; transition: all 0.3s; }
.result-item:hover { border-color: #c4b69c; box-shadow: 0 4px 15px rgba(0,0,0,0.04); }
.result-check { width: 32px; height: 32px; border-radius: 50%; background: #8b7355; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; }
.result-item p { color: #4a4540; font-size: 0.95rem; }

/* ===== SESSIONS ===== */
.sessions { background: #f3f0eb; text-align: center; }
.sessions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 800px; margin: 3rem auto 0; }
.session-card { background: #fff; border-radius: 16px; padding: 3rem 2rem; text-align: center; position: relative; transition: all 0.3s; border: 1px solid transparent; }
.session-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.session-featured { border-color: #8b7355; }
.session-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #8b7355; color: #fff; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; padding: 0.4rem 1.2rem; border-radius: 50px; }
.session-card h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.session-format { font-size: 0.8rem; color: #8b7355; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }
.session-desc { color: #6b6560; font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.7; }

/* ===== REVIEWS ===== */
.reviews { text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.review-card { background: #fff; border-radius: 12px; padding: 2.5rem 2rem; text-align: left; border: 1px solid #e8e2d8; transition: all 0.3s; }
.review-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.review-stars { color: #c4b69c; font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: 0.8rem; }
.review-card p { color: #6b6560; font-size: 0.9rem; font-style: italic; line-height: 1.7; margin-bottom: 1rem; }
.review-author { font-size: 0.8rem; color: #8b7355; }

/* ===== STORY ===== */
.story { background: linear-gradient(135deg, #2d3a2d, #3d4f3d); color: #fff; }
.story-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.story .section-eyebrow { color: #c4b69c; }
.story .section-title { color: #fff; }
.story-inner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 1.5rem; }
.story-cta { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.1); }
.story-cta h3 { font-size: 1.8rem; color: #fff; margin-bottom: 1.5rem; }

/* ===== NEWSLETTER ===== */
.newsletter { background: #f3f0eb; text-align: center; padding: 5rem 0; }
.newsletter-inner { max-width: 500px; margin: 0 auto; }
.newsletter h2 { font-size: 2rem; margin-bottom: 0.8rem; }
.newsletter p { color: #6b6560; margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0.8rem; }
.newsletter-form input { flex: 1; padding: 0.9rem 1.5rem; border: 1px solid #d4ccc0; border-radius: 50px; font-family: inherit; font-size: 0.9rem; background: #fff; outline: none; transition: border-color 0.3s; }
.newsletter-form input:focus { border-color: #8b7355; }

/* ===== FOOTER ===== */
.footer { background: #1a1a1a; color: rgba(255,255,255,0.5); padding: 4rem 0; }
.footer-inner { text-align: center; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: #fff; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 0.6rem; }
.footer-logo-img { height: 40px; width: auto; border-radius: 50%; }
.footer-brand p { margin-top: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin: 2rem 0; }
.footer-links a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.75rem; }
.footer-copy a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-copy a:hover { color: #fff; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .about-grid, .work-on-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .modalities-grid, .reviews-grid, .for-you-grid { grid-template-columns: 1fr; }
  .sessions-grid { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: #1a1a1a; flex-direction: column; padding: 5rem 2rem; gap: 1.5rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { color: rgba(255,255,255,0.8) !important; font-size: 0.9rem; }
  .nav-toggle { display: block; z-index: 1001; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .section { padding: 4rem 0; }
  .newsletter-form { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}
