*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #C9A84C;
  --gold-light: #E8CC85;
  --gold-dark: #9A7A2E;
  --gold-pale: #F7EFD6;
  --ink: #0D0D0D;
  --ink-soft: #1A1A1A;
  --ink-muted: #3A3A3A;
  --cream: #FAF8F3;
  --cream-dark: #F0EBE0;
  --white: #FFFFFF;
  --border: rgba(201,168,76,0.25);
  --border-light: rgba(201,168,76,0.12);
  --shadow: 0 24px 64px rgba(0,0,0,0.12);
  --radius: 2px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  position: fixed; top: 0; left: 0; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, background 0.2s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 36px; height: 36px;
  border: 1px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, width 0.2s, height 0.2s, opacity 0.2s;
  opacity: 0.6;
}

/* NAVBAR */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 5vw;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 5vw;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.65rem 1.6rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
    linear-gradient(135deg, #0D0D0D 0%, #1A1614 50%, #0D0D0D 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: 
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 5vw;
  max-width: 820px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex; gap: 1.5rem; align-items: center;
}
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.btn-ghost svg { transition: transform 0.3s; }
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-stats {
  position: absolute;
  right: 5vw; bottom: 10%;
  display: flex; flex-direction: column; gap: 2rem;
  z-index: 2;
}
.hero-stat {
  text-align: right;
  border-right: 1px solid var(--border);
  padding-right: 1.5rem;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}

.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2;
  color: rgba(255,255,255,0.3);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* MARQUEE */
.marquee-strip {
  background: var(--gold);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 1.5rem;
  padding: 0 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.marquee-dot { width: 4px; height: 4px; background: var(--ink); border-radius: 50%; opacity: 0.4; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTION BASE */
section { padding: 8rem 5vw; }
.section-label {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-label-line { width: 32px; height: 1px; background: var(--gold); }
.section-label span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold-dark); }

/* ABOUT */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  margin-top: 5rem;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.about-img-inner {
  position: absolute; inset: 0;
  background: 
    linear-gradient(135deg, #1a1410 0%, #2d2118 40%, #1a1410 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img-pattern {
  position: absolute; inset: 0; opacity: 0.15;
  background-image: 
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.about-img-icon {
  font-size: 8rem;
  opacity: 0.6;
  filter: sepia(1) saturate(3) hue-rotate(5deg);
}
.about-badge {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 140px; height: 140px;
  background: var(--gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.about-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  margin-top: 0.3rem;
}
.about-text { color: var(--ink-muted); }
.about-text p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar {
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  background: var(--cream);
}
.pillar-icon {
  width: 36px; height: 36px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.pillar-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.pillar-desc {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* SERVICES */
.services { background: var(--ink); }
.services .section-title { color: var(--white); }
.services .section-title em { color: var(--gold); }
.services-intro {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 500px;
  margin-top: 1rem;
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--ink-soft);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { background: #1e1b16; }
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: rgba(201,168,76,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.service-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s, background 0.3s;
}
.service-card:hover .service-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.service-icon svg { stroke: var(--gold); }
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.service-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
}
.service-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 10;
}
.service-link:hover { gap: 1rem; }
.service-card.featured {
  background: var(--gold);
  grid-column: span 1;
}
.service-card.featured .service-num { color: rgba(13,13,13,0.3); }
.service-card.featured .service-icon {
  border-color: rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.08);
}
.service-card.featured .service-icon svg { stroke: var(--ink); }
.service-card.featured .service-title { color: var(--ink); }
.service-card.featured .service-desc { color: rgba(13,13,13,0.6); }
.service-card.featured .service-link { color: var(--ink); }
.service-card.featured::before { display: none; }
.service-card.featured:hover { background: var(--gold-light); }

/* TRACK */
.track { background: var(--cream); }
.track-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}
.track-form {
  background: var(--white);
  padding: 3rem;
  border: 1px solid var(--border-light);
}
.track-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.track-form p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--gold);
}
.btn-track {
  width: 100%;
  padding: 1rem;
  background: var(--ink);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: background 0.3s;
  margin-top: 0.5rem;
}
.btn-track:hover { background: var(--gold); color: var(--ink); }
.track-visual {
  padding-top: 1rem;
}
.track-steps {
  position: relative;
}
.track-steps::before {
  content: '';
  position: absolute; left: 19px; top: 24px; bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--border-light));
}
.track-step {
  display: flex; gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.track-step-dot {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 600;
  position: relative; z-index: 1;
}
.track-step-dot.active {
  background: var(--gold);
  color: var(--ink);
}
.track-step-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.track-step-desc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* COVERAGE */
.coverage { background: var(--white); }
.coverage-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}
.map-container {
  aspect-ratio: 1.2;
  background: var(--cream);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.map-svg { width: 90%; height: 90%; }
.map-pulse {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; r: 6; }
  50% { opacity: 1; r: 8; }
}
.cities-list {
  display: flex; flex-direction: column; gap: 0;
}
.city-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
}
.city-name {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
}
.city-time {
  font-size: 0.75rem;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
}
.city-status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2a7a4f;
}
.city-status::before {
  content: '';
  width: 5px; height: 5px;
  background: #2a7a4f;
  border-radius: 50%;
}
.coverage-cta {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 300;
}
.coverage-cta a {
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* TESTIMONIALS */
.testimonials { background: var(--cream-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
.testimonial {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold-dark);
  font-weight: 600;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}
.author-role {
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 300;
}
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; }

/* PRICING */
.pricing { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
.price-card {
  border: 1px solid var(--border-light);
  padding: 3rem 2.5rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.price-card.premium {
  background: var(--ink);
  border-color: var(--gold);
}
.price-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.3rem 1rem;
}
.price-tier {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-card.premium .price-amount { color: var(--white); }
.price-currency {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  vertical-align: super;
  font-size: 1.2rem;
}
.price-period {
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}
.price-card.premium .price-period { color: rgba(255,255,255,0.5); }
.price-divider {
  height: 1px;
  background: var(--border-light);
  margin: 1.5rem 0;
}
.price-card.premium .price-divider { background: var(--border); }
.price-features {
  list-style: none;
  margin-bottom: 2.5rem;
}
.price-features li {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-muted);
  padding: 0.5rem 0;
  display: flex; align-items: flex-start; gap: 0.75rem;
  line-height: 1.4;
}
.price-card.premium .price-features li { color: rgba(255,255,255,0.65); }
.price-features li::before {
  content: '';
  width: 14px; height: 14px; min-width: 14px;
  border: 1px solid var(--gold);
  background: var(--gold-pale);
  margin-top: 1px;
  position: relative;
}
.price-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2.5 7l3 3 6-6' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.price-card.premium .price-features li::before { background-color: rgba(201,168,76,0.2); }
.btn-price {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--border);
  color: var(--ink);
  background: transparent;
  cursor: none;
}
.btn-price::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 10;
}
.btn-price:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.price-card.premium .btn-price {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.price-card.premium .btn-price:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* CONTACT */
.contact { background: var(--ink); }
.contact .section-title { color: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  margin-top: 5rem;
}
.contact-info p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.contact-details { list-style: none; }
.contact-details li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  min-width: 80px;
  margin-top: 0.15rem;
}
.contact-detail-val {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 3rem;
}
.contact-form .form-group label { color: rgba(255,255,255,0.45); }
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  width: 100%;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.btn-send {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: background 0.3s;
  margin-top: 0.5rem;
}
.btn-send:hover { background: var(--gold-light); }

/* FOOTER */
footer {
  background: #080808;
  padding: 5rem 5vw 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  display: block;
}
.footer-logo span { color: var(--gold); }
.footer-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 2rem;
}
.footer-social {
  display: flex; gap: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 0.75rem;
}
.footer-col ul li a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}
.footer-legal {
  display: flex; gap: 2rem;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

.about-intro { margin-top: 1.5rem; }
.service-link-muted { color: var(--ink-muted); }
.track-label { margin-bottom: 2rem; }
.map-pulse-delay-1 { animation-delay: 0.4s; }
.map-pulse-delay-2 { animation-delay: 0.8s; }
.price-amount-highlight,
.price-amount-highlight .price-currency { color: var(--gold); }
.contact-title-light { color: var(--white); }
.contact-title-light em { color: var(--gold); }
.contact-select { cursor: none; }
/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 1rem 5vw; }
  .nav-links, .nav-cta { display: none; }
  .hero h1 { font-size: 3rem; }
  .hero-stats { display: none; }
  .about-grid, .coverage-inner, .contact-inner, .track-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  section { padding: 5rem 5vw; }
  .about-badge { right: 0; bottom: -1rem; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* AUTH PAGES */
.auth-page {
  min-height: 100vh;
  background: var(--ink);
}
.auth-main {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1rem 2rem;
}
.auth-card {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 2rem;
}
.auth-card h1 {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.auth-card p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.auth-card .form-group label {
  color: rgba(255,255,255,0.7);
}
.auth-card .form-group input,
.auth-card .form-group select {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.auth-link-row {
  margin-top: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.auth-link-row a {
  color: var(--gold-light);
  text-decoration: none;
}
.auth-feedback {
  margin-top: 0.8rem;
  font-size: 0.9rem;
}
.auth-error {
  color: #ff9f9f;
}
.auth-success {
  color: #9dffba;
}
.auth-footer {
  padding: 0.8rem 5vw 1.5rem;
}
