:root {
  --background: 20 10% 12%;
  --foreground: 40 15% 92%;
  --card: 20 10% 18%;
  --primary: 330 70% 50%;
  --primary-light: 330 60% 65%;
  --primary-dark: 330 70% 38%;
  --secondary: 20 8% 18%;
  --muted-foreground: 30 10% 72%;
  --border: 30 10% 28%;
  --radius: 0.25rem;
  --font-display: "Cormorant Garamond", serif;
  --font-body: Raleway, sans-serif;
  --font-vivaldi: Vivaldi, "Cormorant Garamond", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
  line-height: 1.15;
  color: hsl(var(--primary));
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}

.site-header.is-scrolled {
  background: hsl(var(--background) / 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 72rem;
  height: 4rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-logo img {
  display: block;
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  position: absolute;
  left: 50%;
  gap: 2.5rem;
  min-width: max-content;
  transform: translateX(-50%);
}

.nav-desktop a,
.nav-mobile a {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-desktop a:hover,
.nav-mobile a:hover {
  color: hsl(var(--primary));
}

.nav-toggle {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: none;
  color: hsl(var(--foreground));
  cursor: pointer;
}

.nav-toggle .icon-close,
.site-header.is-open .nav-toggle .icon-menu {
  display: none;
}

.site-header.is-open .nav-toggle .icon-close {
  display: block;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  opacity: 0;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
}

.site-header.is-open .nav-mobile {
  max-height: 28rem;
  padding: 2rem 0;
  opacity: 1;
}

.nav-mobile[hidden] {
  display: flex;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.3);
}

.hero-title {
  position: absolute;
  bottom: 7rem;
  inset-inline: 0;
  z-index: 10;
  margin: 0;
  font-family: var(--font-vivaldi);
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  background-image: linear-gradient(135deg, hsl(330 70% 50%), hsl(330 60% 65%), hsl(330 70% 50%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.25));
  animation: fade-up 1.2s ease 0.5s both;
}

.hero-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  z-index: 10;
  display: flex;
  gap: 0.75rem;
  transform: translateX(-50%);
}

.hero-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: hsl(var(--foreground) / 0.4);
  cursor: pointer;
  transition: all 0.5s ease;
}

.hero-dot:hover {
  background: hsl(var(--foreground) / 0.6);
}

.hero-dot.is-active {
  width: 1.5rem;
  background: hsl(var(--primary));
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  opacity: 0.95;
  transform: translateX(-50%);
  animation: bounce-y 1.8s ease-in-out infinite, fade-in 0.6s ease 2s both;
}

.scroll-indicator span {
  width: 0.75rem;
  height: 0.75rem;
  rotate: 45deg;
  border-bottom: 2px solid hsl(var(--primary));
  border-right: 2px solid hsl(var(--primary));
}

.scroll-indicator span:last-child {
  border-color: hsl(var(--primary) / 0.7);
}

.section {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 4rem);
  padding: 4rem 1.75rem;
  scroll-margin-top: 5rem;
}

.section-alt {
  background: hsl(var(--secondary) / 0.3);
}

.section-inner {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  transform: translateY(-1.5rem);
}

.section-inner-narrow {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: hsl(var(--primary));
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.heading-gold {
  margin: 0 0 2.5rem;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  background-image: linear-gradient(135deg, hsl(330 70% 50%), hsl(330 60% 65%), hsl(330 70% 50%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.heading-gold-lg {
  margin-bottom: 2rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 2.5rem;
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: var(--radius);
  background: hsl(var(--card) / 0.8);
  color: hsl(var(--foreground) / 0.85);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.625;
  transition: background 0.5s ease, border-color 0.5s ease;
}

.card:hover {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary) / 0.6);
}

.card-tight {
  padding: 1.5rem;
}

.card p,
.card ul {
  margin: 0;
}

.card strong {
  font-weight: 500;
  color: hsl(var(--primary));
}

.card ul {
  margin-left: 0.5rem;
  padding: 0;
  color: hsl(var(--primary));
  list-style: disc inside;
}

.card li + li {
  margin-top: 0.5rem;
}

.card li span {
  color: hsl(var(--foreground) / 0.85);
}

.card-icon {
  display: block;
  margin: 0;
  color: hsl(var(--primary));
}

.glow-ambient {
  position: relative;
}

.glow-ambient::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    hsl(200 80% 45% / 0.4),
    hsl(330 70% 50% / 0.35),
    hsl(220 70% 40% / 0.3),
    hsl(330 70% 50% / 0.4)
  );
  filter: blur(20px);
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.glow-ambient:hover::before {
  opacity: 1;
}

.contact {
  text-align: center;
}

.contact-name {
  margin: 0 0 0.75rem;
  color: hsl(var(--foreground));
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.contact-row,
.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0 3.5rem;
  font-size: 1.125rem;
}

.contact-row {
  flex-direction: column;
  margin-top: 2.5rem;
}

.contact-row a,
.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-body);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-row a:hover,
.social-row a:hover {
  color: hsl(var(--primary));
}

.contact-news {
  margin: 0 0 3.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.625;
}

.contact-news span {
  color: hsl(var(--primary));
}

.contact-rule {
  width: 6rem;
  height: 1px;
  margin: 0 auto;
  background: hsl(var(--primary));
  transform-origin: center;
}

.site-footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

.footer-inner img {
  height: 5rem;
  width: auto;
}

.footer-copy {
  color: hsl(var(--muted-foreground));
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  text-align: center;
}

.footer-copy p {
  margin: 0;
}

.footer-credit {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer-credit a {
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: hsl(var(--foreground));
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
  text-align: center;
}

.not-found h1 {
  margin: 0 0 1rem;
  font-size: 2.25rem;
  font-weight: 700;
}

.not-found p {
  margin: 0 0 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 1.25rem;
}

.not-found a {
  color: hsl(var(--primary));
}

.not-found a:hover {
  color: hsl(var(--primary) / 0.9);
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bounce-y {
  0%,
  100% { translate: 0 0; }
  50% { translate: 0 10px; }
}

@media (min-width: 640px) {
  .contact-row {
    flex-direction: row;
    gap: 3rem;
  }

  .footer-inner {
    flex-direction: row;
  }

  .footer-copy {
    text-align: right;
  }
}

@media (min-width: 768px) {
  .nav-inner {
    height: 5rem;
  }

  .nav-logo img {
    height: 4rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .section {
    min-height: calc(100svh - 5rem);
    padding: 5rem 1.5rem;
  }

  .section-inner {
    transform: translateY(-2rem);
  }

  .eyebrow {
    font-size: 1rem;
  }

  .heading-gold {
    font-size: 3.25rem;
  }

  .heading-gold-lg {
    font-size: 4rem;
  }

  .card {
    padding: 3rem;
    font-size: 1.15rem;
    line-height: 1.8;
  }

  .card-tight {
    padding: 2.5rem;
  }

  .contact-name {
    font-size: 1.7rem;
  }

  .contact-row,
  .social-row,
  .contact-news {
    font-size: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-mobile,
  .site-header.is-open .nav-mobile {
    display: none;
  }

  .hero-title {
    font-size: 5.75rem;
  }
}
