:root {
  --global-palette1: #0A0A0A;
  --global-palette2: #111318;
  --global-palette3: #FFFFFF;
  --global-palette4: #E2E8F0;
  --global-palette5: #94A3B8;
  --global-palette6: #64748B;
  --global-palette7: #1E293B;
  --global-palette8: #0F1420;
  --global-palette9: #070A12;
  --global-palette-btn-bg: linear-gradient(135deg, #C9A84C 0%, #F5D17A 50%, #C9A84C 100%);
  --global-palette-btn-color: #0A0A0A;
  --global-heading-font-family: 'Georgia', 'Playfair Display', serif;
  --global-body-font-family: 'Helvetica Neue', 'Segoe UI', sans-serif;
  --global-content-width: 1280px;

  /* Page-specific design tokens */
  --gold: #C9A84C;
  --gold-light: #F5D17A;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-border: rgba(201, 168, 76, 0.25);
  --surface-glass: rgba(255, 255, 255, 0.04);
  --surface-card: rgba(255, 255, 255, 0.03);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.12);
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.45);
  --radius-card: 16px;
  --radius-btn: 6px;
  --transition: 0.3s ease;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--global-body-font-family);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  background-color: var(--global-palette9);
  color: var(--global-palette4);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--global-heading-font-family);
  line-height: 1.15;
  color: var(--global-palette3);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 600;
}

p {
  color: var(--global-palette5);
  line-height: 1.75;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--global-content-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header p {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
}

/* Gold accent text */
.accent {
  color: var(--gold);
}

/* Thin gold rule */
.gold-rule {
  width: 56px;
  height: 2px;
  background: var(--global-palette-btn-bg);
  border: none;
  margin: 1.25rem auto 0;
  display: block;
  border-radius: 2px;
}



/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #2a0a1f 0%, #3b0b29 50%, #2a0a1f 100%);

}

/* ── Background Image + Overlay ── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to top, var(--global-palette9) 0%, rgba(20, 9, 33, 0.5) 50%, transparent 100%);
}

/* ── Content ── */
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 8rem 1rem;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
}

@media (min-width: 640px) {
  .hero__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ── Badge ── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.hero__badge-icon {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  flex-shrink: 0;
}

.hero__badge-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  white-space: nowrap;
}

/* ── Heading ── */
.hero__heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  max-width: 64rem;
  margin: 0 auto 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── Subtext ── */
.hero__subtext {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #d1d5db;
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── CTA Button ── */
.hero__cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: #ffffff;
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, transform 0.15s ease;
}

.hero__cta:hover {
  background: #f3f4f6;
  transform: scale(1.05);
}

.hero__cta:active {
  transform: scale(0.95);
}

/* ── Scroll Indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--global-palette6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--global-palette10), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}