/* =============================================
   AGATHE DAUMAL. Design System
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --deep-green: #1A3320;
  --forest: #2D5A27;
  --sage: #5A8A4E;
  --cream: #F5F0E4;
  --cream-warm: #EDE5D5;
  --rose: #C4716A;
  --rose-light: #D4948E;
  --text-dark: #1A1A18;
  --text-mid: #4A4A4A;
  --white: #FDFAF5;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --transition-base: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

/* --- Typography Scale --- */
.t-display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.t-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.t-subheadline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
}

.t-body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-mid);
}

.t-small {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.t-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* --- Utility --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color var(--transition-base),
              padding var(--transition-base),
              box-shadow var(--transition-base);
}

.nav.scrolled {
  background-color: var(--cream);
  padding: 16px 40px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav.scrolled .nav-logo {
  color: var(--deep-green);
}

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

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color var(--transition-base);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  transition: color var(--transition-base);
}

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

.nav-book-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 100px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base);
  display: inline-block;
}

.nav-book-btn:hover {
  background-color: var(--white);
  color: var(--deep-green);
  border-color: var(--white);
}

.nav.scrolled .nav-book-btn {
  border-color: var(--forest);
  color: var(--forest);
}

.nav.scrolled .nav-book-btn:hover {
  background-color: var(--forest);
  color: var(--white);
}

/* mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition-base);
}

.nav.scrolled .nav-toggle span {
  background: var(--deep-green);
}

@media (max-width: 768px) {
  .nav {
    padding: 20px 24px;
  }

  .nav.scrolled {
    padding: 14px 24px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px;
    gap: 28px;
    transition: right var(--transition-slow);
    box-shadow: -4px 0 40px rgba(0,0,0,0.12);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--text-dark);
    font-size: 18px;
  }

  .nav-book-btn {
    border-color: var(--forest);
    color: var(--forest);
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1.5px solid transparent;
}

.btn-filled-cream {
  background: var(--cream);
  color: var(--deep-green);
  border-color: var(--cream);
}

.btn-filled-cream:hover {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-outlined-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}

.btn-outlined-white:hover {
  background: var(--white);
  color: var(--deep-green);
  border-color: var(--white);
}

.btn-filled-green {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn-filled-green:hover {
  background: var(--deep-green);
  border-color: var(--deep-green);
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.reveal-left {
  transform: translateX(-32px);
}

.reveal.reveal-right {
  transform: translateX(32px);
}

.reveal.reveal-fade {
  transform: none;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }
.reveal-delay-5 { transition-delay: 0.6s; }

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  min-height: 100vh;
  background-color: var(--deep-green);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 0;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-text {
  padding-right: 60px;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  display: block;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 44px;
  max-width: 420px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-note {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.hero-photo-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  min-height: 70vh;
}

.hero-photo-placeholder {
  width: 92%;
  max-width: 460px;
  height: 78vh;
  min-height: 500px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(160deg, #3D6B45 0%, #2A5035 40%, #1A3320 100%);
  position: relative;
  overflow: hidden;
  margin-right: -40px;
}

.hero-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(90,138,78,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(196,113,106,0.12) 0%, transparent 50%);
}

.hero-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
}

.hero-photo-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
}

.hero-scroll-indicator span {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 48px;
    min-height: auto;
  }

  .hero-text {
    padding-right: 0;
  }

  .hero-photo-col {
    min-height: 50vw;
    justify-content: center;
  }

  .hero-photo-placeholder {
    width: 100%;
    height: 60vw;
    min-height: 260px;
    border-radius: 16px;
    margin-right: 0;
  }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
#about {
  background-color: var(--cream);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 80vh;
}

.about-photo-col {
  position: relative;
  overflow: hidden;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
  background: linear-gradient(175deg, #3D6B45 0%, #2A5035 50%, #1A3320 100%);
  position: relative;
}

.about-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(196,113,106,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 75%, rgba(90,138,78,0.15) 0%, transparent 45%);
}

.about-photo-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.about-text-col {
  padding: 100px 80px 100px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 44px;
  border-left: 3px solid var(--rose);
  padding-left: 28px;
  margin-left: -28px;
}

.about-body {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 52px;
}

.about-body p + p {
  margin-top: 20px;
}

.about-botanical {
  margin-top: 0;
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-photo-placeholder {
    min-height: 300px;
  }

  .about-text-col {
    padding: 64px 24px 72px;
  }

  .about-pull-quote {
    margin-left: -4px;
    padding-left: 20px;
  }
}

/* =============================================
   WORK SECTION
   ============================================= */
#work {
  background-color: var(--deep-green);
  padding: 120px 0 100px;
}

.work-header {
  text-align: center;
  margin-bottom: 80px;
}

.work-section-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.5vw, 64px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  letter-spacing: -0.01em;
}

.work-services {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.work-service-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 48px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background-color var(--transition-base);
  position: relative;
}

.work-service-row:hover {
  background-color: rgba(255,255,255,0.03);
}

.work-numeral {
  font-family: var(--font-serif);
  font-size: 100px;
  font-weight: 300;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  user-select: none;
  transition: color var(--transition-base);
}

.work-service-row:hover .work-numeral {
  color: rgba(255,255,255,0.14);
}

.work-service-name {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.work-service-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.work-service-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 380px;
}

.work-arrow {
  font-size: 20px;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition-base), transform var(--transition-base);
  flex-shrink: 0;
}

.work-service-row:hover .work-arrow {
  color: rgba(255,255,255,0.6);
  transform: translateX(6px);
}

.work-footer-note {
  text-align: center;
  margin-top: 56px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

@media (max-width: 768px) {
  #work {
    padding: 80px 0 80px;
  }

  .work-service-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 36px 24px;
  }

  .work-numeral {
    font-size: 60px;
    line-height: 0.8;
    margin-bottom: -8px;
  }

  .work-service-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .work-arrow {
    display: none;
  }
}

/* =============================================
   COACHING SECTION
   ============================================= */
#coaching {
  background-color: var(--cream-warm);
  padding: 120px 0 120px;
  position: relative;
  overflow: hidden;
}

.coaching-bg-rose {
  position: absolute;
  bottom: -40px;
  right: -40px;
  opacity: 0.06;
  width: 300px;
  height: 300px;
  pointer-events: none;
  color: var(--rose);
}

.coaching-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.coaching-left-headline {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.coaching-body {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.coaching-body p + p {
  margin-top: 18px;
}

.coaching-cert {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}

.coaching-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coaching-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 28px 28px 28px;
  border-top: 2px solid var(--rose-light);
  box-shadow: 0 2px 20px rgba(26,51,32,0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.coaching-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 32px rgba(26,51,32,0.1);
}

.coaching-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--deep-green);
  margin-bottom: 6px;
}

.coaching-card-meta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--sage);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.coaching-card-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}

@media (max-width: 768px) {
  #coaching {
    padding: 80px 0;
  }

  .coaching-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 24px;
  }
}

/* =============================================
   CTA SECTION
   ============================================= */
#cta {
  background-color: var(--forest);
  padding: 130px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(90,138,78,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
}

.cta-sub {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  position: relative;
}

.cta-btn-wrap {
  position: relative;
  margin-bottom: 20px;
}

.cta-footnote {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  position: relative;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background-color: var(--deep-green);
  padding: 48px 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-left .footer-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer-left .footer-email {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  transition: color var(--transition-base);
}

.footer-left .footer-email:hover {
  color: rgba(255,255,255,0.75);
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  letter-spacing: 0.04em;
  transition: color var(--transition-base);
}

.footer-nav a:hover {
  color: rgba(255,255,255,0.8);
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

@media (max-width: 768px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* =============================================
   BOOKING PAGE SPECIFICS
   ============================================= */
.booking-hero {
  background-color: var(--deep-green);
  padding: 160px 40px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(90,138,78,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.booking-hero-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  display: block;
  position: relative;
}

.booking-hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
  position: relative;
}

.booking-hero-sub {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  position: relative;
}

/* expect section */
.expect-section {
  background-color: var(--cream);
  padding: 100px 60px;
}

.expect-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.expect-card {
  border-top: 3px solid var(--forest);
  padding-top: 32px;
}

.expect-card-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--deep-green);
  margin-bottom: 14px;
}

.expect-card-body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}

@media (max-width: 768px) {
  .expect-section {
    padding: 72px 24px;
  }

  .expect-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* calendar section */
.calendar-section {
  background-color: var(--cream-warm);
  padding: 100px 40px 120px;
}

.calendar-section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--forest);
  text-align: center;
  margin-bottom: 52px;
  letter-spacing: -0.01em;
}

.calendar-wrap {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(26,51,32,0.12);
  background: var(--white);
}

.calendar-fallback {
  max-width: 860px;
  margin: 32px auto 0;
  text-align: center;
  padding: 20px;
  display: none;
}

.calendar-fallback p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .calendar-section {
    padding: 72px 24px 80px;
  }
}

/* =============================================
   BOOKING NAV (solid from the start)
   ============================================= */
.nav-solid {
  background-color: var(--cream);
  padding: 16px 40px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-solid .nav-logo {
  color: var(--deep-green);
}

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

.nav-solid .nav-book-btn {
  border-color: var(--forest);
  color: var(--forest);
}

.nav-solid .nav-book-btn:hover {
  background-color: var(--forest);
  color: var(--white);
}

@media (max-width: 768px) {
  .nav-solid {
    padding: 14px 24px;
  }
}

/* =============================================
   BOOKING: CALL TYPE SELECTOR
   ============================================= */

.call-selector-section {
  padding: 48px 40px 64px;
  display: flex;
  justify-content: center;
}

.call-selector-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 760px;
  width: 100%;
}

.call-selector-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 36px 40px;
  border: 1.5px solid rgba(26, 51, 32, 0.18);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-base),
              border-color var(--transition-base),
              color var(--transition-base);
  position: relative;
}

.call-selector-card:first-child {
  border-radius: 2px 0 0 2px;
}

.call-selector-card:last-child {
  border-radius: 0 2px 2px 0;
}

.call-selector-card:hover:not(.active) {
  background: var(--cream);
  border-color: rgba(26, 51, 32, 0.35);
}

.call-selector-card.active {
  background: var(--deep-green);
  border-color: var(--deep-green);
  color: var(--white);
}

.call-selector-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 4px;
}

.call-selector-name {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: inherit;
}

.call-selector-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.8;
  flex: 1;
}

.call-selector-meta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 8px;
}

.call-selector-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mid);
  opacity: 0.5;
  border-top: 1.5px solid rgba(26, 51, 32, 0.18);
  border-bottom: 1.5px solid rgba(26, 51, 32, 0.18);
  background: var(--white);
}

@media (max-width: 640px) {
  .call-selector-section {
    padding: 32px 24px 48px;
  }

  .call-selector-inner {
    flex-direction: column;
    gap: 0;
  }

  .call-selector-card:first-child {
    border-radius: 2px 2px 0 0;
    border-bottom: none;
  }

  .call-selector-card:last-child {
    border-radius: 0 0 2px 2px;
    border-top: none;
  }

  .call-selector-divider {
    width: 100%;
    height: 48px;
    border-top: none;
    border-bottom: none;
    border-left: 1.5px solid rgba(26, 51, 32, 0.18);
    border-right: 1.5px solid rgba(26, 51, 32, 0.18);
  }

  .call-selector-card {
    padding: 28px 28px;
  }
}

/* =============================================
   BOOKING: SOCIAL CALL FLOW
   ============================================= */

.social-flow-section {
  padding: 80px 40px 120px;
  display: flex;
  justify-content: center;
  background: var(--cream);
}

.social-flow-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 840px;
  width: 100%;
}

.social-flow-text {
  flex: 1;
}

.social-flow-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--deep-green);
  line-height: 1.1;
  margin-bottom: 28px;
}

.social-flow-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.social-flow-body + .btn {
  margin-top: 16px;
}

.social-flow-botanical {
  flex-shrink: 0;
  opacity: 0.45;
}

@media (max-width: 768px) {
  .social-flow-section {
    padding: 60px 24px 80px;
  }

  .social-flow-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .social-flow-botanical {
    order: -1;
  }
}
