/* ═══════════════════════════════════════
   Energy with Jess — Shared Stylesheet
   ═══════════════════════════════════════ */

/* ─── RESET & TOKENS ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:     #3B5E6E;
  --rose:     #bf4288;
  --gold:     #F2C14E;
  --cream:    #FAF7F2;
  --dark:     #1E2E32;
  --mid:      #15252a;
  --lavender: #C4B0D4;
  --h: 'Cormorant Garamond', serif;
  --b: 'Belleza', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--b);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--h);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--rose); }

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 28px;
}
.divider-line { height: 1px; width: 48px; background: linear-gradient(90deg, var(--gold), transparent); }
.divider-dot  { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: var(--b);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--rose); color: var(--cream); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(191,66,136,0.38); }
.btn-ghost  { background: transparent; color: var(--cream); border: 1px solid rgba(250,247,242,0.22); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ─── PHOTO SLOTS ─── */
.photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mid) 0%, #243d44 60%, #2a4a52 100%);
}
.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 22px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(21, 37, 42, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.22);
}
/* inner pages: always show background */
nav.solid {
  background: rgba(21, 37, 42, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.22);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: var(--h);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(250,247,242,0.6);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links .nav-book {
  background: var(--rose);
  color: var(--cream) !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600 !important;
  letter-spacing: 0.07em !important;
}
.nav-links .nav-book:hover { box-shadow: 0 6px 24px rgba(191,66,136,0.38); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 901;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--cream); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 899;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--h);
  font-size: 30px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--rose); }

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #243d44 0%, var(--dark) 100%);
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--dark) 0%, rgba(30,46,50,0.45) 55%, rgba(30,46,50,0.2) 100%),
    linear-gradient(100deg, rgba(21,37,42,0.6) 0%, transparent 60%);
}
.page-hero-content {
  position: relative;
  z-index: 5;
  padding: 0 28px 72px;
  width: 100%;
}
.page-hero h1 {
  font-family: var(--h);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
}
.page-hero h1 em { font-style: italic; color: var(--rose); }
.page-hero-sub {
  font-family: var(--h);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: rgba(250,247,242,0.65);
  margin-top: 16px;
  max-width: 560px;
}

/* orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 9s ease-in-out infinite;
}
.orb-a { width: 480px; height: 480px; background: radial-gradient(circle, rgba(196,176,212,0.12), transparent 70%); top: 0%; right: -8%; }
.orb-b { width: 280px; height: 280px; background: radial-gradient(circle, rgba(191,66,136,0.08), transparent 70%); bottom: 10%; left: 5%; animation-delay: 4s; }
@keyframes pulse { 0%,100% { opacity:.6; transform:scale(1); } 50% { opacity:1; transform:scale(1.18); } }

/* ─── PULL QUOTE STRIP ─── */
.pull-quote {
  position: relative;
  padding: 72px 28px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2e34, #243d44);
}
.pull-quote blockquote {
  font-family: var(--h);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.55;
}
.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

/* ─── CARDS ─── */
.card {
  background: rgba(250,247,242,0.03);
  border: 1px solid rgba(250,247,242,0.06);
  border-radius: 16px;
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
  border-color: rgba(191,66,136,0.2);
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.card:hover::after { transform: scaleX(1); }
.card h3 {
  font-family: var(--h);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}
.card p {
  font-size: 15px;
  color: rgba(250,247,242,0.62);
  line-height: 1.82;
}

.tag {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(191,66,136,0.12);
  color: var(--rose);
  margin-bottom: 16px;
}
.tag-gold {
  background: rgba(242,193,78,0.12);
  color: var(--gold);
}
.tag-lavender {
  background: rgba(196,176,212,0.12);
  color: var(--lavender);
}

/* ─── CTA SECTION ─── */
.cta-section {
  position: relative;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a2e34, var(--dark));
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(21,37,42,0.8);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 28px;
}
.cta-content h2 {
  font-family: var(--h);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-content h2 em { font-style: italic; color: var(--rose); }
.cta-content p {
  font-size: 16px;
  color: rgba(250,247,242,0.6);
  margin-bottom: 36px;
  line-height: 1.8;
}
.cta-orb {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,176,212,0.09), transparent 70%);
  top: -20%;
  right: -8%;
  animation: pulse 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* ─── FOOTER ─── */
footer {
  padding: 36px 0;
  background: var(--dark);
  text-align: center;
  border-top: 1px solid rgba(250,247,242,0.05);
}
.footer-logo { font-family: var(--h); font-size: 21px; font-weight: 300; color: var(--cream); }
.footer-tagline {
  font-family: var(--h);
  font-style: italic;
  font-size: 13.5px;
  color: rgba(250,247,242,0.32);
  margin: 5px 0 6px;
}
.footer-copy { font-size: 11px; color: rgba(250,247,242,0.18); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.left  { transform: translateX(-32px); }
.reveal.right { transform: translateX(32px); }
.reveal.visible { opacity: 1; transform: translate(0); }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }
.d5 { transition-delay: 0.50s; }

/* ─── SHARED NAV SCRIPT HELPERS ─── */
/* (JS embedded in each page) */
