/* ============================================
   THE WELL EDUCATOR — Stylesheet
   Inspired by Spyre Center's premium wellness aesthetic
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Colors */
  --forest:       #2B5741;
  --forest-dark:  #1E3F2F;
  --forest-light: #3A7357;
  --peach:        #D4A088;
  --peach-light:  #E8C4B3;
  --peach-pale:   #F2DDD2;
  --cream:        #FDF8F4;
  --sand:         #F5EDE6;
  --white:        #FFFFFF;
  --charcoal:     #1A1A1A;
  --gray:         #6B6B6B;
  --gray-light:   #A8A8A8;
  --gold:         #C8A96E;

  /* Typography */
  --font-serif:   'Cormorant Garamond', 'Georgia', serif;
  --font-sans:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-pad:  100px;
  --container:    1200px;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--forest);
}

.section-label.left-only::after { display: none; }
.section-label.left-only::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43, 87, 65, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-link {
  padding: 0;
  border: none;
  background: none;
  color: var(--forest);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.btn-link:hover {
  gap: 14px;
  color: var(--forest-dark);
}

.btn-link .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s var(--ease);
}
.btn-link:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Top Announcement Bar ---------- */
.top-bar {
  background: var(--forest);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.top-bar a {
  color: var(--white);
  text-decoration: none;
}
.top-bar a:hover {
  text-decoration: underline;
}

.top-bar .phone-icon {
  margin-right: 8px;
}

/* ---------- Navigation ---------- */
.nav-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-action-btn {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 28px;
  border: 1.5px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.nav-action-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: 1px;
}

.nav-logo em {
  font-style: italic;
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--forest);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--forest);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-dark);
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    var(--forest-dark) 0%,
    var(--forest) 40%,
    var(--forest-light) 100%
  );
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(30,63,47,0.35) 0%, rgba(43,87,65,0.25) 50%, rgba(30,63,47,0.4) 100%);
  z-index: 2;
}

/* Breathing circle animation */
.breathing-circle {
  position: absolute;
  z-index: 3;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: breathe 6s ease-in-out infinite;
}

.breathing-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: breathe 6s ease-in-out infinite 0.5s;
}

.breathing-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  animation: breathe 6s ease-in-out infinite 1s;
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50%      { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: var(--white);
  padding: 0 40px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.85;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  opacity: 0.6;
  animation: float 2s ease-in-out infinite;
  cursor: pointer;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Mission Statement ---------- */
.mission {
  background: var(--forest);
  padding: 80px 40px;
  text-align: center;
}

.mission-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Two-Column Intro ---------- */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.intro-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.intro-panel.green {
  background: var(--forest);
  color: var(--white);
}

.intro-panel.green h3,
.intro-panel.green .section-label {
  color: var(--peach-light);
}

.intro-panel.green .section-label::before,
.intro-panel.green .section-label::after {
  background: var(--peach-light);
}

.intro-panel.green p {
  color: rgba(255,255,255,0.85);
}

.intro-panel h3 {
  margin-bottom: 16px;
  color: var(--forest);
}

.intro-panel p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.intro-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: 8px;
}

/* ---------- Experience Section ---------- */
.experience {
  background: var(--peach);
  padding: var(--section-pad) 40px;
  text-align: center;
}

.experience-inner {
  background: var(--white);
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 60px;
}

.experience .section-label {
  justify-content: center;
}

.experience h2 {
  color: var(--forest);
  margin-bottom: 24px;
}

.experience p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* Category Icons */
.category-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.category-item:hover {
  transform: translateY(-4px);
}

.category-icon {
  width: 80px;
  height: 80px;
  position: relative;
}

.category-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--peach);
  stroke-width: 1;
  fill: none;
}

.category-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.category-arrow {
  color: var(--forest);
  font-size: 1rem;
}

/* ---------- Offerings Section ---------- */
.offerings {
  padding: 0;
}

.offering-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 550px;
}

.offering-row:nth-child(even) {
  direction: rtl;
}
.offering-row:nth-child(even) > * {
  direction: ltr;
}

.offering-image {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
}

.offering-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(43, 87, 65, 0.15);
}

.offering-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: var(--cream);
}

.offering-row:nth-child(odd) .offering-content {
  background: var(--white);
}

.offering-content .section-label {
  margin-bottom: 12px;
}

.offering-content h2 {
  color: var(--forest);
  margin-bottom: 20px;
  font-style: italic;
}

.offering-content p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

/* ---------- About Section ---------- */
#impact-detail {
  padding-bottom: 40px;
}

.about {
  padding: 40px 0 var(--section-pad) 0;
  background: var(--sand);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.about-image-wrap {
  position: relative;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

.about-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-light) 100%);
  position: relative;
  overflow: hidden;
}

.about-image-placeholder {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  color: var(--white);
  opacity: 0.6;
  text-align: center;
  padding: 40px;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--forest);
  z-index: -1;
}

.about-text .section-label {
  margin-bottom: 24px;
}

.about-text h2 {
  color: var(--forest);
  margin-bottom: 28px;
}

.about-text p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-text .credentials {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--forest);
}

.credential-icon {
  width: 8px;
  height: 8px;
  background: var(--peach);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Impact / Stats ---------- */
.impact {
  background: var(--forest);
  padding: 80px 40px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.impact-stat {
  color: var(--white);
}

.impact-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--peach-light);
  margin-bottom: 8px;
}

.impact-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--peach);
  padding: var(--section-pad) 40px;
  text-align: center;
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--forest);
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--forest);
  opacity: 0.2;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ---------- Newsletter / CTA ---------- */
.newsletter {
  background: var(--cream);
  padding: var(--section-pad) 40px;
  text-align: center;
}

.newsletter h2 {
  color: var(--forest);
  margin-bottom: 16px;
}

.newsletter p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 40px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 1.5px solid var(--peach);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.newsletter-form input::placeholder {
  color: var(--gray-light);
}

.newsletter-form input:focus {
  border-color: var(--forest);
}

.newsletter-form button {
  flex-shrink: 0;
}

/* ---------- Contact Section ---------- */
.contact {
  padding: var(--section-pad) 40px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--container);
  margin: 0 auto;
}

.contact-info h2 {
  color: var(--forest);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
  font-size: 1.1rem;
}

.contact-detail-text {
  font-size: 0.95rem;
  color: var(--charcoal);
}

.contact-detail-text small {
  display: block;
  color: var(--gray-light);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--forest-dark);
  color: var(--white);
  padding: 80px 40px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--peach-light);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s var(--ease);
}
.social-icon:hover {
  background: var(--peach);
  border-color: var(--peach);
  color: var(--forest-dark);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--peach-light);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 12px;
  transition: opacity 0.3s var(--ease);
}
.footer-col a:hover {
  opacity: 1;
  color: var(--peach-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ---------- Animations (scroll-reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Mobile Nav Overlay ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--forest-dark);
  z-index: 2000;
  padding: 80px 40px 40px;
  transition: right 0.4s var(--ease);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav a:hover {
  color: var(--peach-light);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-actions { flex-wrap: wrap; }

  .intro-split,
  .offering-row,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .offering-row:nth-child(even) {
    direction: ltr;
  }

  .offering-image {
    min-height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 70px;
  }

  .top-bar {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    padding: 10px 16px;
  }

  .nav-actions {
    gap: 8px;
    padding: 12px 20px;
  }

  .nav-action-btn {
    font-size: 0.6rem;
    padding: 8px 16px;
  }

  .navbar {
    padding: 18px 20px;
  }

  .hero {
    height: 80vh;
    min-height: 500px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .mission {
    padding: 60px 20px;
  }

  .intro-panel {
    padding: 60px 30px;
  }

  .experience-inner {
    padding: 60px 30px;
  }

  .category-nav {
    gap: 24px;
  }

  .offering-content {
    padding: 60px 30px;
  }

  .about-image {
    max-height: none;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero { height: 75vh; min-height: 450px; }
  .breathing-circle { width: 200px; height: 200px; }
  .breathing-circle::before { width: 140px; height: 140px; }
  .breathing-circle::after { width: 80px; height: 80px; }
  .nav-actions { display: none; }
  .category-nav { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   IMAGE GALLERY CAROUSEL
   ============================================ */
.gallery-carousel {
  padding: 80px 40px 60px;
  background: var(--cream);
  overflow: hidden;
}

.gallery-header h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
}

.gallery-track-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}

.gallery-track.dragging {
  cursor: grabbing;
  transition: none;
}

.gallery-slide {
  flex: 0 0 calc(33.333% - 14px);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-slide:hover img {
  transform: scale(1.05);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--forest);
  background: rgba(255,255,255,0.95);
  color: var(--forest);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  line-height: 1;
}

.gallery-arrow:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.gallery-prev { left: -26px; }
.gallery-next { right: -26px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--forest);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: var(--forest);
  transform: scale(1.2);
}

/* Gallery responsive */
@media (max-width: 1024px) {
  .gallery-slide {
    flex: 0 0 calc(50% - 10px);
  }
  .gallery-carousel {
    padding: 60px 24px 48px;
  }
}

@media (max-width: 640px) {
  .gallery-slide {
    flex: 0 0 calc(100% - 0px);
  }
  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  .gallery-prev { left: -4px; }
  .gallery-next { right: -4px; }
  .gallery-carousel {
    padding: 48px 16px 40px;
  }
  .gallery-header h2 {
    font-size: 1.8rem;
  }
}
