@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@200;300;400;500&display=swap');

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

:root {
  --teal:      #5BB8C4;
  --teal-deep: #2A7F8A;
  --teal-lt:   #EAF6F8;
  --teal-mid:  #A8DBE2;
  --cream:     #F5F2EE;
  --white:     #FFFFFF;
  --gold:      #C4A96A;
  --gold-lt:   #F0E8D4;
  --ink:       #1A2B2E;
  --muted:     #5A7478;
  --border:    #D0E8EC;
  --dark:      #0F1E20;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 88px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.07); }

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

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

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal-deep); }

.nav-cta {
  background: var(--teal);
  color: white !important;
  padding: 9px 22px;
  border-radius: 2px;
  letter-spacing: 0.14em !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--teal-deep) !important; color: white !important; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 60px 60px 32px;
  color: rgba(255,255,255,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--teal-mid);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  max-width: 220px;
}

.footer-col h4 {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  line-height: 2;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--teal-mid); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}

/* ── SHARED SECTIONS ── */
.section-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-title em { font-style: italic; color: var(--teal-deep); }

.section-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 520px;
}

.teal-rule {
  width: 48px;
  height: 2px;
  background: var(--teal);
  margin: 20px 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--teal);
  color: white;
}
.btn-primary:hover { background: var(--teal-deep); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal-deep);
}
.btn-outline:hover { background: var(--teal); color: white; }

.btn-white {
  background: white;
  color: var(--teal-deep);
}
.btn-white:hover { background: var(--teal-lt); }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════
   MOBILE RESPONSIVE — max 768px
═══════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  nav {
    padding: 0 20px;
    height: 72px;
  }

  .nav-brand img {
    height: 56px !important;
  }

  /* Hide nav links, show hamburger */
  .nav-links { display: none; }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
  }

  .nav-hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--teal);
    transition: all 0.3s;
  }

  /* Mobile menu overlay */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,26,28,0.98);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    letter-spacing: 0.08em;
  }

  .mobile-menu a:last-child {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--teal);
    color: white;
    padding: 16px 40px;
    border-radius: 2px;
  }

  .mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 32px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
  }

  /* ── HERO — taller, bigger, more impact ── */
  .machine-hero {
    grid-template-columns: 1fr !important;
    min-height: 100svh !important;
  }

  .hero-left {
    padding: 110px 28px 60px !important;
    background: linear-gradient(180deg, rgba(8,22,24,0.96) 0%, rgba(8,22,24,0.80) 100%) !important;
    z-index: 3;
    min-height: 100svh;
    display: flex;
    align-items: center;
  }

  .hero-right {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
  }

  /* Bigger hero heading */
  .hero-content h1 {
    font-size: 44px !important;
    line-height: 1.08 !important;
    margin-bottom: 20px !important;
  }

  .hero-content h1 em {
    font-size: 44px !important;
  }

  /* Brighter gold launch tag */
  .hero-launch {
    font-size: 12px !important;
    letter-spacing: 0.22em !important;
    color: #E8C97A !important;
    opacity: 1 !important;
    font-weight: 500 !important;
    margin-bottom: 28px !important;
  }

  .launch-tag {
    background: rgba(232,201,122,0.18) !important;
    border-color: rgba(232,201,122,0.6) !important;
    color: #E8C97A !important;
    font-size: 10px !important;
    padding: 8px 18px !important;
  }

  .launch-dot {
    background: #E8C97A !important;
  }

  /* Larger body text */
  .hero-sub {
    font-size: 15px !important;
    line-height: 1.85 !important;
    color: rgba(255,255,255,0.75) !important;
    margin-bottom: 14px !important;
  }

  .hero-pills {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px !important;
  }

  .hero-pill {
    font-size: 9px !important;
    padding: 5px 12px !important;
    color: var(--teal-mid) !important;
    border-color: rgba(91,184,196,0.5) !important;
  }

  .hero-actions {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    padding: 16px 20px !important;
    font-size: 11px !important;
    letter-spacing: 0.2em !important;
  }

  /* ── GLOBAL FONT SIZES ── */
  .section-title      { font-size: 34px !important; line-height: 1.15 !important; }
  .section-eyebrow    { font-size: 10px !important; letter-spacing: 0.28em !important; }
  .section-body       { font-size: 14px !important; line-height: 1.85 !important; max-width: 100% !important; }

  p, li               { font-size: 13px !important; line-height: 1.75 !important; }
  h3                  { font-size: 22px !important; }
  h4                  { font-size: 16px !important; }

  /* ── PILLARS ── */
  .pillars { grid-template-columns: 1fr !important; }
  .pillar { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 32px 28px !important; }
  .pillar:last-child { border-bottom: none; }
  .pillar h3 { font-size: 26px !important; }
  .pillar p  { font-size: 13px !important; }

  /* ── GENERAL SECTIONS ── */
  .why-section,
  .method-section,
  .sessions-section,
  .pricing-section,
  .studio-section,
  .mission,
  .booking-section {
    padding: 64px 24px !important;
  }

  /* ── TWO COLUMN GRIDS → SINGLE ── */
  .why-grid,
  .method-grid,
  .science-grid,
  .studio-boxes,
  .machine-feature-grid,
  .hero-stats,
  .what-section {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .why-cards { grid-template-columns: 1fr !important; }

  /* ── PROTOCOL STEPS ── */
  .protocol-steps { grid-template-columns: 1fr !important; gap: 2px !important; }
  .protocol-section { padding: 64px 24px !important; }
  .protocol-step h3 { font-size: 22px !important; }
  .protocol-step p  { font-size: 13px !important; }

  /* ── SESSION TIMELINE ── */
  .session-steps {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
  .session-steps::before { display: none; }
  .session-step h4 { font-size: 15px !important; }
  .session-step p  { font-size: 11px !important; }

  /* ── STATS ── */
  .stats-inner { grid-template-columns: 1fr 1fr !important; }
  .stats-section { padding: 52px 24px !important; }
  .stat-card .stat-num { font-size: 36px !important; }
  .stat-card .stat-label { font-size: 11px !important; }

  /* ── BENEFITS ── */
  .benefits-grid { grid-template-columns: 1fr !important; }
  .benefits-section { padding: 64px 24px !important; }
  .benefit-card h3 { font-size: 20px !important; }
  .benefit-card p  { font-size: 13px !important; }

  /* ── PRICING ── */
  .pricing-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .price-card h3 { font-size: 22px !important; }
  .price-amount  { font-size: 42px !important; }
  .price-desc    { font-size: 13px !important; }

  /* ── MACHINE FEATURE ── */
  .machine-image-panel { min-height: 280px !important; }
  .machine-content { padding: 40px 24px !important; }
  .spec-row { grid-template-columns: 1fr 1fr !important; }
  .spec-val { font-size: 26px !important; }
  .spec-lbl { font-size: 9px !important; }

  /* ── CTA BANNERS ── */
  .cta-banner, .hbot-cta, .about-cta { padding: 64px 24px !important; }
  .cta-banner h2, .hbot-cta h2, .about-cta h2 { font-size: 34px !important; }
  .cta-banner p, .hbot-cta p, .about-cta p { font-size: 14px !important; }

  /* ── INTRO STRIP ── */
  .intro-strip {
    flex-direction: column !important;
    padding: 32px 24px !important;
    text-align: center;
    gap: 20px !important;
  }
  .intro-strip p { font-size: 19px !important; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 110px 24px 56px !important; }
  .page-hero h1 { font-size: 40px !important; line-height: 1.1 !important; }
  .page-hero p  { font-size: 14px !important; }

  /* ── BOOKING ── */
  .booking-section { grid-template-columns: 1fr !important; gap: 32px !important; }
  .booking-info { position: static !important; }
  .calendly-inline-widget { height: 600px !important; }
  .form-wrap { padding: 32px 22px !important; }
  .form-row  { grid-template-columns: 1fr !important; }

  /* ── ABOUT / MISSION ── */
  .mission { grid-template-columns: 1fr !important; gap: 32px !important; }
  .mission-quote { font-size: 24px !important; }
  .values-grid { grid-template-columns: 1fr !important; gap: 2px !important; }
  .value-box h3 { font-size: 22px !important; }
  .value-box p  { font-size: 13px !important; }

  /* ── FOOTER ── */
  footer { padding: 52px 24px 28px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .footer-bottom { flex-direction: column !important; gap: 8px !important; text-align: center; }
  .footer-tagline { font-size: 13px !important; }
  .footer-col a, .footer-col p { font-size: 13px !important; }

  /* ── SCIENCE ── */
  .science-section { padding: 64px 24px !important; }
  .science-points li h4 { font-size: 14px !important; }
  .science-points li p  { font-size: 12px !important; }

  /* ── CLOSING BAND ── */
  .closing { flex-direction: column !important; text-align: center !important; padding: 36px 24px !important; }
  .closing-quote { font-size: 20px !important; }
  .closing-divider { flex-direction: row !important; }
  .closing-divider span { width: 40px !important; height: 1px !important; }

  /* ── VISUAL BOX ── */
  .visual-box { padding: 40px 24px !important; }
  .visual-box-num { font-size: 80px !important; }

  /* ── METHOD STEPS ── */
  .method-step h4 { font-size: 17px !important; }
  .method-step p  { font-size: 12px !important; }

  /* ── PACKAGE CARDS ── */
  .pkg-info h4 { font-size: 18px !important; }
  .pkg-info p  { font-size: 11px !important; }

  /* ── INFO BLOCKS ── */
  .info-block h3 { font-size: 20px !important; }
  .info-block p  { font-size: 13px !important; }

  /* Reveal animations off on mobile for performance */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

.nav-brand img {
  height: 48px;
  width: auto;
  display: block;
}
