
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #080808;
  color: #f8f4ee;
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
h1, h2, h3, h4 {       font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'serif; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { border: none; cursor: pointer; background: none; font-family: inherit; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 4rem; } }

/* ── Typography helpers ── */
.label-gold {
      font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ea4903;
  display: block;
}
.label-gold-white {
      font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
}
.label-gold-front {
      font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ea4903;
  display: block;
}
.gold-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: #ea4903;
  margin: 1.25rem 0;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn-gold {
  display: inline-block;
      font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  background: #ea4903;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(234,73,3,0.6);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-gold:hover { border-color: #ea4903; color: #ea4903; background: rgba(234,73,3,0.05); }

.btn-ghost {
  display: inline-block;
      font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f8f4ee;
  background: transparent;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(234,73,3,0.6);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: #ea4903; color: #ea4903; background: rgba(234,73,3,0.05); }

/* ── Navigation ── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#main-nav.scrolled {
  background: transparent;
  backdrop-filter: blur(8px);
  border-color: rgba(234,73,3,0.1);
}
#main-nav.solid {
  background: transparent;
  border-color: rgba(234,73,3,0.83);
}
.nav-inner {
  display: flex;
	  background: transparent;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { text-align: left; }
.nav-logo-name {
      font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'serif;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: #ea4903;
  line-height: 1;
  display: block;
}
.nav-logo-sub {
      font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ea4903;
  display: block;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
	
  list-style: none;
}
.nav-link {
      font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,1.00);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: #ea4903;
  transition: width 0.35s cubic-bezier(0.77,0,0.18,1);
}
.nav-link:hover, .nav-link.active { color: #ea4903; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 1px; background: #ea4903; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 2rem;
  background: transparent;
	  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(212,168,83,0.1);
}
.mobile-menu.open { display: flex; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-book-desktop { display: none; }
  .hamburger { display: flex; }
}

/* ── Page hero banner (inner pages) ── */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}
.page-hero-eyebrow {
      font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ea4903;
  margin-bottom: 1rem;
}
.page-hero-title {
      font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: #f8f4ee;
  line-height: 1.1;
}

/* ── Section headings ── */
.section-heading {
  font-size: clamp(2.0rem, 5vw, 4rem);
  font-weight: 500;
  font-style: bold;
  color: #f8f4ee;
  line-height: 1.1;
}
.package-pricing {
  font-size: clamp(2.0rem, 5vw, 3.5rem);
  font-weight: 300;
  font-style: bold;
  color: #f8f4ee;
  line-height: 1.1;
}
.section-heading-video {
  font-size: clamp(2.0rem, 5vw, 4rem);
  font-weight: 500;
  font-style: bold;
  color: #ea4903;
  line-height: 1.1;
}
/* ── Stats Banner ── */
.stats-banner {
  background: #ea4903;
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); gap: 0; } }
.stat-item { text-align: center; }
@media (min-width: 768px) {
  .stat-item { border-right: 1px solid rgba(8,8,8,0.15); }
  .stat-item:last-child { border-right: none; }
}
.stat-big {
      font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #080808;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(8,8,8,0.65);
}

/* ── Footer ── */
footer {
  background: #080808;
  border-top: 1px solid rgba(234,73,3,0.1);
  padding: 3.5rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-logo-name {
      font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'serif;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: bold;
  color: #f8f4ee;
}
.footer-logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ea4903;
  margin-top: 3px;
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(234,73,3,0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: #ea4903; }
.footer-copy {
  font-size: 0.85rem;
  color: rgba(248,244,238,0.25);
  letter-spacing: 0.05em;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-d1 { transition-delay: 0.15s; }
.reveal-d2 { transition-delay: 0.3s; }
.reveal-d3 { transition-delay: 0.45s; }
.reveal-d4 { transition-delay: 0.6s; }

/* ── Floating Botanicals ── */
#botanicals {
  position: absolute;
  inset: 0;
  z-index: 15;
  pointer-events: none;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: 0;
  will-change: transform, opacity;
}
.petal img {
  width: 100%; height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}
