/* ═══════════════════════════════════════
   PHEME GROWTH — SHARED STYLESHEET
   ═══════════════════════════════════════ */

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

:root {
  --gold: #c8a550;
  --gold-dim: rgba(200,165,80,0.35);
  --gold-faint: rgba(200,165,80,0.08);
  --ink: #0a0a0a;
  --parchment: #f0ead8;
  --parchment-dim: rgba(240,234,216,0.55);
  --parchment-faint: rgba(240,234,216,0.12);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background: var(--ink);
  color: var(--parchment);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  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: 22px 56px;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--gold-dim);
}
.nav-logo {
  display: flex; align-items: center; gap: 13px;
  text-decoration: none;
  opacity: 0;
  animation: fadeSlideDown 0.8s 0.3s ease forwards;
}
.nav-logo img { width: 36px; height: 36px; object-fit: contain; }
.nav-brand {
  font-family: 'Cinzel', serif;
  font-size: 15px; font-weight: 400;
  color: var(--gold); letter-spacing: 0.12em;
}
.nav-links {
  display: flex; gap: 36px;
  opacity: 0;
  animation: fadeSlideDown 0.8s 0.45s ease forwards;
}
.nav-links a {
  font-size: 11px; color: var(--parchment-dim);
  text-decoration: none; letter-spacing: 0.18em;
  text-transform: uppercase; transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: transparent; border: 0.5px solid var(--gold);
  color: var(--gold); padding: 10px 26px;
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
  display: inline-flex; align-items: center;
  opacity: 0; animation: fadeSlideDown 0.8s 0.6s ease forwards;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; background: none;
  border: none; cursor: pointer; padding: 4px; z-index: 200;
  opacity: 0; animation: fadeSlideDown 0.8s 0.6s ease forwards;
}
.nav-hamburger span {
  display: block; width: 100%; height: 0.5px;
  background: var(--gold); transition: all 0.3s ease; transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ─── MOBILE DRAWER ─── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
  z-index: 150; flex-direction: column; align-items: center;
  justify-content: center; opacity: 0;
  pointer-events: none; transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 36px;
  font-weight: 300; color: var(--parchment-dim); text-decoration: none;
  padding: 18px 0; letter-spacing: 0.06em;
  border-bottom: 0.5px solid rgba(200,165,80,0.08);
  width: 240px; text-align: center; transition: color 0.2s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta {
  margin-top: 40px; background: var(--gold); color: var(--ink);
  padding: 14px 40px; font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer; border: none;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 160px 56px 96px;
  position: relative;
  border-bottom: 0.5px solid var(--gold-dim);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(200,165,80,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.page-eyebrow {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  opacity: 0; animation: fadeSlideUp 0.8s 0.3s ease forwards;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300; line-height: 1.05; color: var(--parchment);
  margin-bottom: 24px;
  opacity: 0; animation: fadeSlideUp 0.9s 0.45s ease forwards;
}
.page-title em { color: var(--gold); font-style: italic; }
.page-sub {
  font-size: 15px; color: var(--parchment-dim); line-height: 1.8;
  max-width: 520px;
  opacity: 0; animation: fadeSlideUp 0.8s 0.6s ease forwards;
}

/* ─── SHARED SECTION UTILITIES ─── */
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.section-tag::before {
  content: ''; display: block; width: 24px; height: 0.5px; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300; color: var(--parchment); line-height: 1.15; margin-bottom: 14px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  font-size: 14px; color: var(--parchment-dim); line-height: 1.8; max-width: 420px;
}

/* ─── BUTTONS ─── */
.btn-gold {
  background: var(--gold); color: var(--ink);
  padding: 15px 36px; font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer; border: none;
  transition: all 0.25s; text-decoration: none; display: inline-flex; align-items: center;
}
.btn-gold:hover { background: #debb6e; transform: translateY(-1px); }
.btn-outline {
  background: transparent; border: 0.5px solid rgba(240,234,216,0.25);
  color: var(--parchment-dim); padding: 15px 36px;
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
  display: inline-flex; align-items: center;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── MARQUEE ─── */
.marquee-bar {
  padding: 14px 0; overflow: hidden;
  background: rgba(200,165,80,0.04);
  border-bottom: 0.5px solid var(--gold-dim);
}
.marquee-inner {
  display: flex; gap: 48px; align-items: center;
  animation: marquee 12s linear infinite; white-space: nowrap;
}
.marquee-item {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(200,165,80,0.45); font-family: 'Cinzel', serif;
  display: inline-flex; align-items: center;
}
.marquee-dot { color: var(--gold); opacity: 0.4; display: inline-flex; align-items: center; }

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 120px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,165,80,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-logo { width: 80px; height: 80px; margin: 0 auto 40px; opacity: 0.65; }
.cta-logo img { width: 100%; height: 100%; object-fit: contain; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 300;
  line-height: 1.1; color: var(--parchment); margin-bottom: 20px;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-sub { font-size: 14px; color: var(--parchment-dim); margin-bottom: 48px; line-height: 1.8; }
.cta-btns { display: flex; justify-content: center; gap: 16px; position: relative; z-index: 1; }

/* ─── FOOTER ─── */
footer {
  padding: 36px 56px; border-top: 0.5px solid var(--gold-dim);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 11px; color: rgba(240,234,216,0.25); letter-spacing: 0.08em; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 10px; color: rgba(240,234,216,0.25); text-decoration: none;
  letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 32px; height: 32px; border: 0.5px solid rgba(200,165,80,0.2);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(200,165,80,0.45);
  font-size: 10px; letter-spacing: 0.05em; font-family: 'Cinzel', serif;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-faint); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(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.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroLogoReveal {
  from { opacity: 0; transform: scale(0.88); filter: blur(8px); }
  to   { opacity: 1; transform: scale(1);    filter: blur(0); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); } to { transform: rotate(360deg); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.15); }
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── FLOATING WHATSAPP BUTTON ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(200,165,80,0.35);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.5s ease forwards;
}
.whatsapp-float:hover {
  background: #e4c878;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(200,165,80,0.5);
}
.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.whatsapp-float .wa-text {
  display: inline;
}
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 14px;
    font-size: 0;
    gap: 0;
  }
  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
  .whatsapp-float .wa-text {
    display: none;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 18px 32px; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu   { display: flex; }
  .page-hero { padding: 130px 32px 72px; }
  .cta-section { padding: 80px 32px; }
  .cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .cta-btns .btn-gold, .cta-btns .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
  footer { flex-direction: column; gap: 24px; padding: 36px 32px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .nav-brand { font-size: 13px; }
  .nav-logo img { width: 30px; height: 30px; }
  .page-hero { padding: 110px 20px 60px; }
  .mobile-menu a { font-size: 28px; padding: 14px 0; }
  footer { padding: 32px 20px; gap: 20px; }
  .footer-links { gap: 12px; }
  .marquee-inner { animation-duration: 5s; }
}
