/* ============================================================
   GODDESS ALCHEMY — SHARED STYLES
   Palette: midnight purple · gold · cream
   Fonts: Cormorant Garant (headings) · DM Sans (body)
   ============================================================ */

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

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:        #0a3535;
  --bg2:       #0d4f4f;
  --bg3:       #165555;
  --gold:      #20B2AA;
  --gold-lt:   #5FDBDB;
  --gold-dk:   #0d7f7f;
  --cream:     #E8F5F5;
  --text:      #D4E8E8;
  --muted:     #9DBDBD;
  --purple-md: #0d6f6f;
  --purple-lt: #2FA9A9;
  --rose:      #4DD4D4;
  --font-head: 'Cormorant Garant', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius:    12px;
  --max:       1200px;
  --nav-h:     76px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-lt); }
ul { list-style: none; }

/* ── STARS BACKGROUND ────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 40%, rgba(255,255,255,.35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 22%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 10%, rgba(255,255,255,.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 80%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 85%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 70%, rgba(255,255,255,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 90%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 5%  50%, rgba(255,255,255,.4) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── TYPOGRAPHY ──────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); letter-spacing: .02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text); }

.gold-text  { color: var(--gold); }
.muted-text { color: var(--muted); }
.italic     { font-style: italic; }

/* ── LAYOUT HELPERS ──────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}
.divider-left { margin: 20px 0; }

.label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  color: #09041A;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.4);
  color: #09041A;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,.1);
  transform: translateY(-2px);
  color: var(--gold-lt);
}
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.1);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); color: var(--cream); }

/* ── CARDS ───────────────────────────────────────────── */
.card {
  background: linear-gradient(135deg, rgba(28,16,53,.9), rgba(17,8,38,.95));
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(201,168,76,.06), transparent 60%);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(9,4,26,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,168,76,.12);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: .05em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9,4,26,.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--cream);
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .25;
  pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; background: var(--purple-md); top: -200px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--gold-dk); bottom: -150px; left: -100px; }
.hero-content { max-width: 720px; }
.hero-sub {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Moon decoration */
.moon-ring {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateSlow 40s linear infinite;
}
.moon-ring::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,.12);
}
.moon-inner {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3B1970, var(--bg));
  box-shadow: 0 0 60px rgba(91,45,142,.5), inset 0 0 40px rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
@keyframes rotateSlow { to { transform: translateY(-50%) rotate(360deg); } }

/* ── FEATURES (3-col) ────────────────────────────────── */
.features { padding: 80px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card { text-align: center; padding: 44px 28px; }
.feature-icon { font-size: 2.8rem; margin-bottom: 20px; display: block; }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: .95rem; }

/* ── ABOUT STRIP ─────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg3), var(--purple-md));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border: 1px solid rgba(201,168,76,.2);
  overflow: hidden;
}
.about-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.05), transparent);
}
.about-tag {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: #09041A;
  font-weight: 600;
  font-size: .85rem;
  padding: 12px 20px;
  border-radius: var(--radius);
  text-align: center;
  line-height: 1.3;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p  { margin-bottom: 20px; color: var(--muted); }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.stat-box {
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-lbl { font-size: .8rem; color: var(--muted); letter-spacing: .06em; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials { background: var(--bg2); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.slider-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  padding: 36px 28px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--gold);
  opacity: .18;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.testi-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-md), var(--gold-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--cream);
  flex-shrink: 0;
}
.testi-meta strong { display: block; font-size: .9rem; color: var(--cream); }
.testi-meta span   { font-size: .78rem; color: var(--muted); }
.testi-stars       { color: var(--gold); font-size: .85rem; margin-bottom: 4px; }

/* ── SERVICES PAGE ───────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { color: var(--muted); max-width: 560px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.service-card { padding: 40px 28px; text-align: center; }
.service-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: #09041A;
  font-weight: 600;
  font-size: .95rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.service-features { text-align: left; margin-bottom: 24px; }
.service-features li {
  font-size: .88rem;
  color: var(--muted);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.service-features li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: .65rem; top: 7px; }

/* Featured service card */
.service-card.featured {
  border-color: rgba(201,168,76,.5);
  background: linear-gradient(135deg, rgba(91,45,142,.3), rgba(28,16,53,.95));
}
.featured-badge {
  display: inline-block;
  background: var(--gold);
  color: #09041A;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* Packages table */
.packages { margin-top: 80px; }
.packages h2 { text-align: center; margin-bottom: 10px; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.package-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
}
.package-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.package-card h4 { color: var(--gold-lt); margin-bottom: 6px; font-family: var(--font-head); font-size: 1.3rem; }
.package-card p  { font-size: .88rem; color: var(--muted); margin-bottom: 8px; }
.package-price   { font-weight: 600; color: var(--cream); font-size: 1.1rem; }

/* ── GALLERY PAGE ────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(201,168,76,.1);
}
.gallery-thumb {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform .4s;
}
.gallery-item:hover .gallery-thumb { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,4,26,.92), transparent);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 1.1rem; color: var(--cream); }
.gallery-overlay span { font-size: .8rem; color: var(--gold); }

/* Gallery items backgrounds */
.g1 { background: linear-gradient(135deg, #0a2a2a, #1a5a5a); }
.g2 { background: linear-gradient(135deg, #0a1f2a, #1a4a5a); }
.g3 { background: linear-gradient(135deg, #0a2a1a, #1a5a3a); }
.g4 { background: linear-gradient(135deg, #0a2a1f, #1a5a4a); }
.g5 { background: linear-gradient(135deg, #0a1a20, #1a4a6a); }
.g6 { background: linear-gradient(135deg, #0a2a28, #1a5a5a); }
.g7 { background: linear-gradient(135deg, #0a2f1a, #1a6a3a); }
.g8 { background: linear-gradient(135deg, #0a2a22, #1a5a5a); }
.g9 { background: linear-gradient(135deg, #0a2a26, #1a5a5a); }

/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 12px; }
.contact-info p  { color: var(--muted); margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; color: var(--cream); font-size: .9rem; margin-bottom: 2px; }
.contact-item-text span   { font-size: .85rem; color: var(--muted); }
.contact-item-text a      { font-size: .85rem; color: var(--gold); }

.wa-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .9rem;
  margin-top: 32px;
  transition: all .3s;
  width: fit-content;
}
.wa-button:hover { background: #1fb355; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }

/* Contact form */
.contact-form { }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .82rem; color: var(--muted); letter-spacing: .06em; margin-bottom: 8px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.calendly-note {
  margin-top: 32px;
  padding: 20px;
  background: rgba(201,168,76,.06);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  font-size: .88rem;
  color: var(--muted);
  text-align: center;
}
.calendly-note a { color: var(--gold); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: .88rem; color: var(--muted); max-width: 280px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  transition: all .2s;
}
.social-btn:hover { background: rgba(201,168,76,.15); border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: var(--font-head); font-size: 1rem; color: var(--cream); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .875rem; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-bottom span { font-size: .8rem; color: var(--muted); }

/* ── DISCOVERY CALL MODAL ─────────────────────────────── */
.discovery-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 53, 53, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  padding: 20px;
}

.discovery-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(135deg, rgba(13, 79, 79, 0.95), rgba(22, 85, 85, 0.95));
  border: 1px solid rgba(32, 178, 170, 0.3);
  border-radius: 16px;
  padding: 48px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gold);
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, transform .2s;
}

.modal-close:hover {
  color: var(--gold-lt);
  transform: rotate(90deg);
}

.modal-content h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 16px;
  color: var(--cream);
  padding-right: 36px;
}

.modal-content p {
  color: var(--text);
  margin-bottom: 12px;
  font-size: .95rem;
  line-height: 1.8;
}

.modal-content .highlight {
  color: var(--gold);
  font-weight: 600;
}

.modal-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px 0;
}

.modal-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  color: #0a3535;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .3s;
  text-transform: uppercase;
  margin-top: 24px;
  width: 100%;
}

.modal-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(32, 178, 170, 0.4);
}

.modal-footer {
  margin-top: 20px;
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 480px) {
  .modal-content {
    padding: 32px 24px;
  }
  
  .modal-content h2 {
    font-size: 1.6rem;
  }
}

/* ── SECTION HEADERS ─────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ── FADE-IN ANIMATION ───────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 480px; margin: 0 auto; }
  .about-tag { right: 0; }
  .slider-track { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .moon-ring { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .slider-track { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; width: fit-content; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
