/* ── CSS VARIABLES ── */
:root {
  --cream:   #F7F3EE;
  --dark:    #1E1A14;
  --sage:    #6E9E82;
  --blush:   #C9A99A;
  --warm:    #B89872;
  --muted:   #8A7E72;
  --card:    #EEE8DF;
  --border:  #DDD5C8;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── PAGE SWITCHING ── */
.page { display: none; }
.page.active { display: block; }


/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5%;
  background: rgba(247, 243, 238, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  font-family: var(--font-body);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover { color: var(--dark); }

.nav-links a.active {
  color: var(--dark);
  border-bottom: 2px solid var(--sage);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 140px 5% 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110,158,130,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-title-sub {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--sage);
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 17px;
  max-width: 420px;
  margin-bottom: 14px;
  line-height: 1.9;
}

.hero-by {
  font-size: 14px;
  color: var(--warm);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-primary { background: var(--dark); color: var(--cream); }
.btn-primary:hover { background: var(--sage); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--dark); transform: translateY(-2px); }

.hero-image { position: relative; }

.hero-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--card), var(--blush));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-img-box::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 60%; height: 60%;
  border: 1px solid var(--warm);
  border-radius: 4px;
  z-index: -1;
}

.hero-badge {
  position: absolute;
  bottom: 30px; left: -20px;
  background: var(--dark);
  color: var(--cream);
  padding: 18px 26px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
}

.hero-badge strong {
  display: block;
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-display);
  font-style: italic;
}

/* ── SHARED SECTION STYLES ── */
section { padding: 100px 5%; }

.section-label {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  font-size: 17px;
  margin-bottom: 48px;
  line-height: 1.9;
}

/* ── WHAT IS REFLEXOLOGY ── */
#what {
  background: var(--dark);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#what .section-label { color: var(--warm); }
#what .section-title { color: var(--cream); }

.what-text {
  font-size: 17px;
  color: #9A9080;
  line-height: 1.9;
  margin-bottom: 20px;
}

.history-box {
  background: #252015;
  border: 1px solid #2E2820;
  border-radius: 4px;
  padding: 28px;
  margin-top: 8px;
}

.history-box h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--warm);
  margin-bottom: 10px;
}

.history-box p {
  font-size: 15px;
  color: #7A7060;
  line-height: 1.9;
}

.foot-deco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.foot-visual {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #252015, #1a1610);
  border-radius: 4px;
  border: 1px solid #2E2820;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.foot-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(110,158,130,0.15), transparent 65%);
}

.foot-caption {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5A5048;
  text-align: center;
}

/* ── BENEFITS ── */
#benefits { background: var(--card); }

.benefits-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.benefit-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 26px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--sage);
  transform: scaleY(0);
  transition: transform 0.25s ease;
  transform-origin: bottom;
}

.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.benefit-card:hover::before { transform: scaleY(1); }

.benefit-icon { font-size: 26px; margin-bottom: 12px; display: block; }

.benefit-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.3;
}

/* ── ABOUT EVA ── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--card), var(--blush));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-img::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 50%; height: 50%;
  border: 1px solid var(--blush);
  border-radius: 4px;
  z-index: -1;
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--dark); }
#testimonials .section-label { color: var(--warm); }
#testimonials .section-title { color: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #252015;
  border: 1px solid #2E2820;
  border-radius: 4px;
  padding: 32px;
  transition: background 0.2s;
}

.testimonial-card:hover { background: #2C2618; }

.stars { color: var(--warm); font-size: 15px; margin-bottom: 16px; letter-spacing: 3px; }

.testimonial-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: #D0C8BC;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5A5048;
}

/* ── BOOKING PAGE ── */
#booking {
  padding-top: 120px;
  padding-bottom: 80px;
}

.booking-header {
  max-width: 600px;
  margin-bottom: 48px;
}

/* Info strip — 4 columns across the top */
.booking-info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  padding: 28px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.booking-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.booking-info-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-info-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.booking-info-val {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.4;
}

/* The iframe wrapper */
.calendar-embed-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.calendar-embed-wrap iframe {
  display: block; /* removes inline gap below iframe */
}

/* Fallback link below calendar */
.calendar-fallback {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.calendar-fallback a {
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  transition: opacity 0.2s;
}

.calendar-fallback a:hover { opacity: 0.7; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #6A6055;
  padding: 40px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #6A6055; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }

/* ── FADE-IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 768px) {

  /* Show all pages stacked on mobile */
  .page { display: block !important; }

  .nav-links a.active { border-bottom: none; }

  #hero { grid-template-columns: 1fr; padding-top: 110px; text-align: center; }
  .hero-image { display: none; }
  .btn-group { justify-content: center; }
  #what, #about, .benefits-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 20px 5%;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }

  /* Stack info strip vertically on mobile */
  .booking-info-strip {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }

  /* Make iframe shorter on mobile */
  .calendar-embed-wrap iframe {
    height: 500px !important;
  }
}

@media (max-width: 480px) {
  .booking-info-strip {
    grid-template-columns: 1fr;
  }
}
