:root {
  --purple-dark: #160a2b;
  --purple-mid: #2a0f52;
  --purple-light: #8b6bff;
  --white: #f5f2ff;
  --muted: #c8b8f5;
  --glass: rgba(255, 255, 255, 0.06);
  --shadow: 0 20px 60px rgba(5, 0, 20, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: radial-gradient(circle at top, #2a0f52 0%, #12061f 55%, #0b0614 100%);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 1;
}

.hero {
  position: relative;
  padding: 120px 8% 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 8%;
  background: rgba(15, 6, 28, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 12px 30px rgba(5, 0, 20, 0.35);
  z-index: 999;
  isolation: isolate;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 7, 35, 0.75), rgba(22, 9, 45, 0.55));
  z-index: -1;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--purple-light);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .cta::after {
  content: none;
}

.nav-links .cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(139, 107, 255, 0.12);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-links .cta:hover {
  border-color: rgba(139, 107, 255, 0.7);
  background: rgba(139, 107, 255, 0.22);
}

.hero-content {
  margin-top: 90px;
  max-width: 620px;
}

.eyebrow {
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin-bottom: 18px;
}

.lead {
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: linear-gradient(120deg, #8b6bff 0%, #5b3cdb 100%);
  color: #0b0614;
  box-shadow: 0 16px 40px rgba(139, 107, 255, 0.4);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-highlight {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.hero-highlight div {
  background: var(--glass);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-highlight span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.section {
  padding: 90px 8%;
  position: relative;
}

.section.alt {
  background: rgba(10, 4, 20, 0.6);
}

.section-header {
  max-width: 700px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
}

.section-header p {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.image-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.image-card {
  background: rgba(18, 6, 31, 0.65);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.image-card figcaption {
  padding: 14px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
}

.image-desc {
  padding: 0 16px 16px;
  font-size: 14px;
  color: var(--white);
  opacity: 0.75;
  line-height: 1.4;
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(5, 0, 20, 0.55);
}

.image-card:hover img {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 3, 12, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 8%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  width: min(1100px, 100%);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  background: rgba(18, 6, 31, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(22, 10, 43, 0.6);
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

.card {
  background: var(--glass);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(22, 10, 43, 0.6);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple-light);
  color: #0b0614;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 6px;
}

.step p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.panel {
  padding: 24px;
  border-radius: 16px;
  background: rgba(18, 6, 31, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel p {
  color: var(--muted);
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--glass);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  padding: 50px 8% 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 4, 20, 0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 0.8fr);
  gap: 32px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand strong {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer p {
  color: var(--muted);
  margin-top: 8px;
}

.footer-note {
  max-width: 360px;
  font-size: 14px;
}

.footer-nav span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.footer-credit a {
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 6%;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 120px 6% 60px;
  }

  .section {
    padding: 70px 6%;
  }

  .hero-content {
    margin-top: 60px;
  }

  .nav {
    align-items: stretch;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 7vw, 2.8rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-highlight {
    grid-template-columns: 1fr;
  }

  .image-card img {
    height: 180px;
  }

  .lightbox {
    padding: 24px 6%;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }

  .contact {
    padding: 28px;
  }

  .footer {
    padding: 40px 6% 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
