.contact-card {
  padding: 1.25rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.contact-note,
.concierge-note {
  color: var(--text-body);
  font-size: 0.9rem;
}

.concierge-note {
  margin-top: 0.75rem;
  opacity: 0.8;
}

.contact-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-link:hover {
  border-color: rgba(255, 255, 255, 0.6);
}
html {
  scroll-behavior: smooth;
}

:root {
  color-scheme: dark;
  --bg-deep: #08020f;
  --bg-soft: #150720;
  --brand-primary: #ec4899;
  --brand-primary-strong: #db2777;
  --brand-secondary: #f472b6;
  --brand-accent: #fef3f8;
  --text-body: rgba(255, 255, 255, 0.82);
  --text-muted: rgba(255, 255, 255, 0.64);
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --gradient-main: radial-gradient(circle at top left, #ff9acb33, transparent 60%),
    radial-gradient(circle at bottom right, #8b5cf633, transparent 55%),
    linear-gradient(135deg, #090220 0%, #16091f 32%, #120822 65%, #05020c 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Space Grotesk', 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--gradient-main);
  color: var(--text-body);
  min-height: 100vh;
  line-height: 1.6;
  padding: 3rem clamp(1.2rem, 4vw, 4rem);
  position: relative;
  overflow-x: hidden;
}

/* Custom scrollbar */
body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-primary), var(--brand-primary-strong));
  border-radius: 999px;
  border: 2px solid rgba(8, 2, 15, 0.6);
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--brand-primary-strong), var(--brand-secondary));
}

@supports (scrollbar-color: var(--brand-primary) rgba(255, 255, 255, 0.05)) {
  body {
    scrollbar-color: var(--brand-primary) rgba(255, 255, 255, 0.05);
    scrollbar-width: thin;
  }
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160" fill="none"%3E%3Cpath d="M80 0L60 80L0 100L60 120L80 160L100 120L160 100L100 80L80 0Z" fill="rgba(255,255,255,0.02)"/%3E%3C/svg%3E');
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: 'nav logo cta';
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.mobile-bar {
  display: contents;
}

.logo {
  grid-area: logo;
  display: inline-flex;
  justify-content: center;
}

.desktop-cta {
  grid-area: cta;
  justify-self: end;
  display: inline-flex;
}

.primary-nav {
  grid-area: nav;
  justify-self: start;
  width: auto;
}

.logo-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 60px rgba(8, 2, 15, 0.6);
  backdrop-filter: blur(18px);
}

.logo-banner img {
  height: 82px;
  width: auto;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
}

.nav-mobile-cta {
  display: none;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.hero h1 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 1rem 0;
}

.hero h1 span {
  color: var(--brand-secondary);
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
  color: var(--text-muted);
}

.cta-group {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}

.service-pills li {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand-primary), var(--brand-primary-strong));
  border: none;
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px rgba(236, 72, 153, 0.45);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-muted);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.countdown-card {
  padding: 1.6rem 1rem;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  text-align: center;
  backdrop-filter: blur(18px);
}

.countdown-value {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

.hero-media {
  position: relative;
}

.hero-media::before,
.hero-media::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  z-index: -1;
}

.hero-media::before {
  width: 320px;
  height: 320px;
  background: rgba(236, 72, 153, 0.45);
  top: -60px;
  left: -40px;
}

.hero-media::after {
  width: 260px;
  height: 260px;
  background: rgba(88, 28, 135, 0.4);
  bottom: -50px;
  right: -30px;
}

.preview-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(8, 2, 15, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 55px rgba(8, 2, 15, 0.65);
}

.preview-card + .preview-card {
  margin-top: 1.5rem;
}

.card-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 600;
}

.section-heading {
  margin: 5rem 0 2rem;
}

.section-heading p {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  color: var(--brand-secondary);
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 1.8rem;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  min-height: 230px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(236, 72, 153, 0.15);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--brand-secondary);
  font-size: 1.4rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #fff;
}

.service-suite {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.suite-card {
  padding: 1.6rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.suite-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.suite-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.suite-card ul {
  list-style: none;
  padding-left: 1rem;
  margin: 0;
  color: var(--text-body);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.suite-card ul li {
  font-size: 0.95rem;
  position: relative;
}

.suite-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-primary);
  position: absolute;
  left: -0.9rem;
  top: 0.55rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat-value {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0.5rem 0;
  color: #fff;
}

.stat-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.timeline {
  margin: 4rem 0;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
  padding-left: 2rem;
}

.timeline-step {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-step::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand-primary), var(--brand-secondary));
  position: absolute;
  left: -2.45rem;
  top: 0.4rem;
}

.timeline-step strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
}

.timeline-step span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav-mobile-cta {
  display: none;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
}

footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 1280px) {
  body {
    padding: 2.5rem clamp(1.2rem, 4vw, 3rem);
  }

  .site-header {
    margin-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
  }

  .lead {
    font-size: 1rem;
  }

  .countdown-card {
    padding: 1.25rem 0.9rem;
  }

  .section-heading {
    margin: 4rem 0 1.75rem;
  }

  .feature-card,
  .suite-card,
  .stat-card,
  .contact-card {
    padding: 1.4rem;
  }
}

@media (max-width: 768px) {
  body {
    padding: 2rem 1.25rem;
  }

  .site-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
  }

  .primary-nav {
    width: 100%;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-group {
    flex-direction: column;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .service-suite,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding: 1.5rem 1.1rem;
  }

  .site-header {
    align-items: stretch;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .primary-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    width: 100%;
  }

  .primary-nav.open {
    max-height: 220px;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .nav-mobile-cta {
    display: block;
    width: 100%;
  }

  .nav-mobile-cta a {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-weight: 600;
    color: #fff;
  }

  .desktop-cta {
    display: none;
  }

  .logo-banner img {
    height: 64px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .service-pills {
    gap: 0.5rem;
  }

  .feature-card,
  .suite-card,
  .stat-card,
  .contact-card {
    padding: 1.2rem;
  }

  .countdown {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .cta-group a,
  .cta-group .btn {
    width: 100%;
    text-align: center;
  }
}
