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

html {
  scroll-behavior: smooth;
}

:root {
  --black:       #000000;
  --dark:        #0d0d0d;
  --card:        #111111;
  --border:      #1e1e1e;
  --border-gold: rgba(201, 166, 72, 0.3);
  --gold:        #c9a648;
  --gold-light:  #e0bc6a;
  --gold-dim:    rgba(201, 166, 72, 0.08);
  --white:       #ffffff;
  --off-white:   #f0ece3;
  --muted:       #666666;
  --muted-light: #999999;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, .plan-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-light);
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo span {
  color: #d4a820;
  text-shadow: 0 0 12px rgba(212,168,32,0.4);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul a {
  color: var(--muted-light);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--white);
}

.nav-cta {
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.55rem 1.4rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 7rem 2rem 6rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(201,166,72,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-block;
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg,#b8903a 0%,#c9a648 20%,#f5e0a0 40%,#ffe9a0 50%,#f5e0a0 60%,#c9a648 80%,#b8903a 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldWave 4s linear infinite;
  margin-bottom: 2rem;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

h1 em {
  font-style: normal;
  position: relative;
  background: linear-gradient(
    90deg,
    #b8903a 0%,
    #c9a648 20%,
    #f5e0a0 40%,
    #ffe9a0 50%,
    #f5e0a0 60%,
    #c9a648 80%,
    #b8903a 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  will-change: background-position;
  animation: goldWave 3s linear infinite;
}

/* static glow lives on a separate layer so it never jitters */
h1 em::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: inherit;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    blur(8px)
    drop-shadow(0 0 16px rgba(201, 166, 72, 0.9))
    drop-shadow(0 0 40px rgba(201, 166, 72, 0.5));
  z-index: -1;
  pointer-events: none;
}

@keyframes goldWave {
  0%   { background-position: 150% center; }
  100% { background-position: -50% center; }
}

/* shared wave style applied to all gold text */
.gold-wave {
  background: linear-gradient(
    90deg,
    #b8903a 0%,
    #c9a648 20%,
    #f5e0a0 40%,
    #ffe9a0 50%,
    #f5e0a0 60%,
    #c9a648 80%,
    #b8903a 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter:
    drop-shadow(0 0 8px rgba(201, 166, 72, 0.8))
    drop-shadow(0 0 20px rgba(201, 166, 72, 0.4));
  animation: goldWave 4s linear infinite;
}

/* traveling wave — one wave rolls through stat 1 → 2 → 3, then loops */
/* total cycle: 9s, wave peaks every 3s per element */
.stat-item:nth-child(1) strong { animation-delay: -4.5s; }
.stat-item:nth-child(2) strong { animation-delay: -1.5s; }
.stat-item:nth-child(3) strong { animation-delay:  1.5s; }

/* ── SCROLL ANIMATIONS ── */
[data-animate] {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }
[data-animate][data-delay="400"] { transition-delay: 0.4s; }
[data-animate][data-delay="500"] { transition-delay: 0.5s; }

.hero p {
  font-size: 1.1rem;
  color: var(--muted-light);
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--muted-light);
  border: 1px solid var(--border);
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 1rem;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--muted-light);
  color: var(--white);
}

/* ── DIVIDER LINE ── */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1rem;
}

/* ── STATS ── */
.stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 4rem;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 180px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  background: linear-gradient(90deg,#b8903a 0%,#c9a648 20%,#f5e0a0 40%,#ffe9a0 50%,#f5e0a0 60%,#c9a648 80%,#b8903a 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(201,166,72,0.8)) drop-shadow(0 0 20px rgba(201,166,72,0.4));
  animation: goldWave 9s linear infinite;
}

.stat-item span {
  font-size: 0.78rem;
  color: var(--muted-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: linear-gradient(90deg,#b8903a 0%,#c9a648 20%,#f5e0a0 40%,#ffe9a0 50%,#f5e0a0 60%,#c9a648 80%,#b8903a 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldWave 4s linear infinite;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.section-sub {
  color: var(--muted-light);
  font-size: 0.95rem;
  margin-bottom: 3.5rem;
  max-width: 480px;
  line-height: 1.75;
}

/* ── SERVICES ── */
.services {
  padding: 6rem 3rem;
  max-width: 1140px;
  margin: 0 auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
}

.card {
  background: var(--card);
  padding: 2.5rem;
  transition: background 0.2s;
  border: none;
  position: relative;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2.5rem;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.card:hover {
  background: #141414;
}

.card:hover::after {
  width: calc(100% - 5rem);
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
  color: var(--white);
}

.card p {
  color: var(--muted-light);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ── PROCESS ── */
.process {
  padding: 6rem 3rem;
  max-width: 1140px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-top: 3.5rem;
}

.step-num {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.step p {
  color: var(--muted-light);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ── PRICING ── */
.pricing {
  padding: 6rem 3rem;
  max-width: 1140px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: var(--border-gold);
}

.pricing-card.featured {
  border-color: var(--gold);
}

.featured-tag {
  position: absolute;
  top: -1px; right: 2rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.plan-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg,#b8903a 0%,#c9a648 20%,#f5e0a0 40%,#ffe9a0 50%,#f5e0a0 60%,#c9a648 80%,#b8903a 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldWave 4s linear infinite;
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.plan-price span {
  font-size: 1.1rem;
  font-weight: 600;
  vertical-align: super;
  color: var(--muted-light);
}

.plan-price sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted-light);
  letter-spacing: 0;
}

.plan-desc {
  color: var(--muted-light);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
  line-height: 1.65;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-light);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.plan-features li::before {
  content: '—';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-plan-outline {
  border: 1px solid var(--border-gold);
  color: var(--gold);
}

.btn-plan-outline:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
}

.btn-plan-fill {
  background: var(--gold);
  color: var(--black);
}

.btn-plan-fill:hover {
  background: var(--gold-light);
  color: var(--black);
}

/* ── CTA ── */
.cta-section {
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(201,166,72,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.cta-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.cta-inner p {
  color: var(--muted-light);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

footer p {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

/* ── PRIVACY PAGE ── */
.privacy-content {
  max-width: 760px;
  margin: 4rem auto;
  padding: 0 2rem 5rem;
}

.privacy-content h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.privacy-content .updated {
  color: var(--muted-light);
  font-size: 0.85rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.privacy-content h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.privacy-content p {
  color: var(--muted-light);
  margin-bottom: 1rem;
  font-size: 0.925rem;
  line-height: 1.75;
}

.privacy-content ul {
  color: var(--muted-light);
  font-size: 0.925rem;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.privacy-content ul li {
  margin-bottom: 0.4rem;
}

/* ── GOLDEN LAKE ── */
.golden-lake {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  padding: 0.5rem 0;
  position: relative;
}

.golden-lake svg { width: 100%; display: block; }

.lake-wave {
  animation: lakeRipple 5s ease-in-out infinite;
  transform-origin: center;
}
.lw2 { animation-delay: 1s; animation-duration: 7s; }
.lw3 { animation-delay: 2.2s; animation-duration: 9s; }
.lw4 { animation-delay: 0.5s; animation-duration: 6s; }

@keyframes lakeRipple {
  0%, 100% { transform: translateX(0px); opacity: 1; }
  50%       { transform: translateX(-40px); opacity: 0.7; }
}

/* ── SCENE BIRDS ── */
.hero { position: relative; }

.scene-bird {
  position: absolute;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--bird-delay, 0.2s);
  pointer-events: none;
  z-index: 5;
}

.scene-bird.visible {
  opacity: 1;
  transform: translateY(0);
}

/* hero bird positions */
.hero-bird-1 { top: 36%; right: 2rem; }
.hero-bird-2 { top: 52%; right: 4.5rem; --bird-delay: 0.4s; }

/* section heading group */
.heading-group {
  position: relative;
}
.section-bird { top: 1.8rem; right: 0; --bird-delay: 0.25s; }

/* wing animation */
.wing-l {
  transform-box: fill-box;
  transform-origin: right bottom;
}
.wing-r {
  transform-box: fill-box;
  transform-origin: left bottom;
}

.flapping .wing-l { animation: flapL 0.72s ease-out 1 forwards; }
.flapping .wing-r { animation: flapR 0.72s ease-out 1 forwards; }

@keyframes flapL {
  0%   { transform: rotate(0deg); }
  28%  { transform: rotate(-32deg); }
  58%  { transform: rotate(14deg); }
  80%  { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}
@keyframes flapR {
  0%   { transform: rotate(0deg); }
  28%  { transform: rotate(32deg); }
  58%  { transform: rotate(-14deg); }
  80%  { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

/* hover in place after flap */
.hovering {
  animation: birdHover 4.5s ease-in-out infinite;
}
@keyframes birdHover {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

/* bird glow */
.bird-inner svg {
  filter:
    drop-shadow(0 0 5px rgba(201,166,72,0.95))
    drop-shadow(0 0 16px rgba(201,166,72,0.5));
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-card {
  background: #0a0a0a;
  border: 1px solid rgba(201,166,72,0.25);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-card {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.modal-close:hover { color: #fff; }
.modal-header { margin-bottom: 1.8rem; }
.modal-header h2 {
  font-size: 1.75rem;
  color: var(--white);
  margin: 0.3rem 0 0.5rem;
}
.modal-header p { color: var(--muted-light); font-size: 0.875rem; }
.bot-trap { display: none; }

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group .optional {
  color: rgba(255,255,255,0.3);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.75rem;
}
.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,166,72,0.18);
  border-radius: 6px;
  padding: 0.72rem 0.9rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus { border-color: rgba(201,166,72,0.55); }
.form-group select option { background: #111; color: #fff; }

.modal-submit {
  width: 100%;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.form-success {
  text-align: center;
  padding: 3rem 0 1rem;
}
.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.3rem;
  color: var(--gold);
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--muted-light); font-size: 0.9rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .scene-bird { display: none; }
}
@media (max-width: 700px) {
  nav { padding: 1.2rem 1.5rem; }
  nav ul { display: none; }
  .stats { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .services, .process, .pricing { padding: 4rem 1.5rem; }
  .btn-secondary { display: none; }
  footer { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
}
