/* ============================================================
   ATLANTA WC LUXURY — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@500;600;700&display=swap');

:root {
  /* Color tokens — luxury black + champagne gold */
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-card: #161616;
  --bg-elev: #1c1c1c;
  --border: #2a2a2a;
  --border-bright: #3a3a3a;

  --text: #fafafa;
  --text-dim: #b8b8b8;
  --text-mute: #7a7a7a;

  --gold: #c9a96e;
  --gold-light: #dcc395;
  --gold-bright: #e8c98a;
  --gold-dim: #8b7651;
  --gold-glow: rgba(201, 169, 110, 0.4);

  --red: #b91c1c;
  --green: #16a34a;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Manrope', 'Inter', sans-serif;

  /* Sizing */
  --radius: 4px;
  --radius-lg: 12px;
  --max-w: 1320px;
  --max-w-narrow: 880px;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-slow: 0.8s;
  --t-base: 0.4s;
  --t-fast: 0.2s;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Custom selection */
::selection { background: var(--gold); color: var(--bg); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}
h2, .h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); }
h3, .h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h4, .h4 { font-size: 1.25rem; font-weight: 600; }

p { color: var(--text-dim); font-size: 1.05rem; }
.lead { font-size: 1.2rem; line-height: 1.6; max-width: 680px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.accent { color: var(--gold); }
.italic { font-style: italic; font-family: var(--font-display); font-weight: 400; }

a { color: var(--gold); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-bright); }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 2rem; }

.section {
  padding: 8rem 0;
  position: relative;
}
.section-tight { padding: 5rem 0; }
.section-alt { background: var(--bg-soft); }

.section-head { margin-bottom: 4rem; text-align: center; }
.section-head h2 { margin-bottom: 1.25rem; }
.section-head .lead { margin: 0 auto; }

.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base), border-color var(--t-base);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav-brand .accent { font-style: italic; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--t-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--t-base);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
  box-shadow: 0 0 30px var(--gold-glow);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-soft);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--gold-bright);
  color: var(--bg);
  box-shadow: 0 8px 40px var(--gold-glow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-bright);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
}
.btn-ghost:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1DA851;
  color: #fff;
}
.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-row.left { justify-content: flex-start; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, var(--bg) 90%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.2s forwards;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-out) 0.4s forwards;
}
.hero h1 .italic { color: var(--gold); }
.hero-sub {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-out) 0.7s forwards;
}
.hero-cta-row {
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-out) 1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mute);
  opacity: 0;
  animation: fadeIn 2s ease 2s forwards;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.7; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(1.5); opacity: 1; }
}

/* ============================================================
   PROPERTY SHOWCASE
   ============================================================ */

.property-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .property-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.property-image {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-elev), var(--bg-card));
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.property-image::before {
  content: "VILLA PHOTO";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--text-mute);
}
.property-image.tall { aspect-ratio: 3/4; }
.property-image.wide { aspect-ratio: 16/10; }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.amenity {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.amenity-icon {
  font-size: 1.5rem;
  color: var(--gold);
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.amenity h4 { color: var(--text); margin-bottom: 0.3rem; }
.amenity p { font-size: 0.95rem; color: var(--text-dim); }

/* ============================================================
   TIER CARDS (Luxury)
   ============================================================ */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--t-base) var(--ease-out);
  overflow: hidden;
}
.tier-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}
.tier-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dim);
  background: var(--bg-elev);
}
.tier-card:hover::before { opacity: 1; }

.tier-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-card));
}
.tier-card.featured::before { opacity: 1; }
.tier-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}
.tier-name {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.tier-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.tier-price {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.tier-price .currency {
  font-size: 1.5rem;
  vertical-align: super;
  color: var(--gold);
}
.tier-price-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 2rem;
}
.tier-features {
  list-style: none;
  margin: 0 0 2.5rem 0;
  flex-grow: 1;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.tier-features li {
  padding: 0.65rem 0;
  color: var(--text-dim);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.tier-features li::before {
  content: "→";
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 500;
}

/* ============================================================
   EXPERIENCE / CONCIERGE CARDS
   ============================================================ */

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.exp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
}
.exp-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}
.exp-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.exp-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.exp-card p { font-size: 0.95rem; line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--bg);
  font-weight: 600;
}
.testimonial-name { color: var(--text); font-weight: 600; font-size: 0.95rem; }
.testimonial-meta { color: var(--text-mute); font-size: 0.8rem; }

.stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.9rem; margin-bottom: 0.5rem; }

/* ============================================================
   TRUST / STATS
   ============================================================ */

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   URGENCY / CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elev));
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, var(--gold-glow), transparent 50%);
  opacity: 0.2;
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 1.25rem; }
.cta-banner p { font-size: 1.15rem; margin: 0 auto 2.5rem; max-width: 600px; }

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}
.countdown-unit {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--gold-dim);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  min-width: 80px;
}
.countdown-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.countdown-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 0.5rem;
}

.urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(185, 28, 28, 0.1);
  border: 1px solid rgba(185, 28, 28, 0.4);
  color: #ef4444;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.urgency-tag .dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color var(--t-base);
}
.faq-item:hover { border-color: var(--gold-dim); }
.faq-q {
  padding: 1.75rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--gold); }
.faq-q .toggle {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform var(--t-base);
}
.faq-item.open .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) var(--ease-in-out);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 0 2rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================================
   FORM
   ============================================================ */

.form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .form { padding: 2rem 1.5rem; }
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--t-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bg-soft);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-brand .italic { color: var(--gold); }
.footer p { font-size: 0.9rem; color: var(--text-mute); line-height: 1.6; }
.footer h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.65rem; }
.footer ul li a {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: color var(--t-fast);
}
.footer ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ============================================================
   TIER DETAIL PAGE
   ============================================================ */

.tier-hero {
  padding: 12rem 0 6rem;
  text-align: center;
  background:
    radial-gradient(ellipse at top, var(--bg-elev), var(--bg) 70%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.tier-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.tier-hero h1 { margin-bottom: 2rem; }
.tier-hero-price {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6.5rem);
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 1rem 0;
}
.tier-hero-price .currency {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--gold);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.detail-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}
.detail-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.detail-block .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.detail-block ul { list-style: none; padding: 0; }
.detail-block ul li {
  padding: 0.6rem 0;
  color: var(--text-dim);
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.98rem;
}
.detail-block ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================================
   COMPARE TABLE
   ============================================================ */

.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.compare th, .compare td {
  padding: 1.25rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare thead th {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--gold-dim);
}
.compare td.feature { color: var(--text); font-weight: 500; }
.compare .check { color: var(--green); font-weight: bold; }
.compare .x { color: var(--text-mute); }

@media (max-width: 768px) {
  .compare-wrap { overflow-x: auto; }
  .compare { min-width: 700px; }
}

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: none; }

/* Whisper line under section heads */
.whisper {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */

.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-current {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--t-fast);
}
.lang-current:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.lang-flag {
  font-size: 1.05rem;
  line-height: 1;
}
.lang-caret {
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform var(--t-fast);
}
.lang-switch.open .lang-caret {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 180px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
  z-index: 200;
}
.lang-switch.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: all var(--t-fast);
  border-left: 2px solid transparent;
}
.lang-option:hover {
  background: var(--bg-elev);
  color: var(--gold);
  border-left-color: var(--gold);
}
.lang-option.active {
  color: var(--gold);
  border-left-color: var(--gold);
}
.lang-option .lang-flag {
  font-size: 1.2rem;
}
.lang-soon {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-left: auto;
}

/* Toast notice when picking a non-EN language */
.lang-toast {
  position: fixed;
  top: 90px;
  right: 1.5rem;
  z-index: 300;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  max-width: 360px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateX(20px);
  visibility: hidden;
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
}
.lang-toast.show {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.lang-toast h4 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.lang-toast p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--text-dim);
}
.lang-toast .btn-whatsapp {
  padding: 0.7rem 1.25rem;
  font-size: 0.75rem;
}
.lang-toast-close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  background: none;
  border: none;
  color: var(--text-mute);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}
.lang-toast-close:hover { color: var(--gold); }

@media (max-width: 900px) {
  /* On mobile, language switcher sits to the LEFT of the hamburger */
  .lang-switch { order: -1; margin-right: auto; margin-left: 1rem; }
  .lang-current { padding: 0.45rem 0.65rem; }
  .lang-toast { right: 0.75rem; left: 0.75rem; max-width: none; top: 80px; }
}
