*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --void:         #000;
  --deep:         #080808;
  --surface:      #0f0f0f;
  --lift:         #1a1a1a;
  --gold:         #C4A46B;
  --gold-dim:     rgba(196,164,107,0.3);
  --gold-glow:    rgba(196,164,107,0.08);
  --gold-mid:     rgba(196,164,107,0.5);
  --text:         rgba(255,255,255,0.95);
  --muted:        rgba(255,255,255,0.45);
  --dim:          rgba(255,255,255,0.2);
  --border:       rgba(255,255,255,0.07);
  --border-hi:    rgba(255,255,255,0.14);
  --card-bg:      rgba(255,255,255,0.03);
  --font:         -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  --mono:         "SF Mono", ui-monospace, monospace;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--void);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── CURSOR GLOW ─── */
#cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(196,164,107,0.045) 0%, transparent 65%);
  will-change: transform;
  transition: opacity 0.4s;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.nav-wordmark {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  justify-self: start;
  transition: opacity 0.2s;
  background: linear-gradient(90deg, #C4A46B, #E8CCa0, #C4A46B);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
}

@keyframes goldShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-reserve {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 980px;
  border: 0.5px solid var(--gold-mid);
  color: var(--gold);
  text-decoration: none;
  background: var(--gold-glow);
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  justify-self: end;
}
.nav-reserve:hover {
  background: rgba(196,164,107,0.15);
  border-color: var(--gold);
  transform: scale(0.97);
}

/* ─── EYEBROW ─── */
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* ─── TYPOGRAPHY ─── */
h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.03;
  color: var(--text);
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.08;
}

h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
}

/* ─── LAYOUT ─── */
.section { padding: 96px 48px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-narrow { max-width: 680px; margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 980px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.btn-gold {
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
}
.btn-gold:hover { opacity: 0.85; transform: scale(0.975); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 0.5px solid var(--gold-mid);
}
.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

/* ─── CARDS ─── */
.card {
  background: var(--card-bg);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}

/* ─── SPOTLIGHT BORDER ─── */
.card-spotlight { position: relative; }
.card-spotlight::before {
  content: '';
  position: absolute;
  inset: -0.5px;
  border-radius: inherit;
  background: radial-gradient(
    380px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
    rgba(196,164,107,0.22),
    transparent 60%
  );
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card-spotlight:hover::before { opacity: 1; }
.card-spotlight > * { position: relative; z-index: 1; }

/* ─── BTN RING ─── */
.btn-ring {
  position: fixed;
  pointer-events: none;
  border-radius: 980px;
  border: 2px solid #C4A46B;
  box-shadow:
    0 0 0 0 rgba(196,164,107,0.6),
    0 0 24px rgba(196,164,107,0.5),
    0 0 48px rgba(196,164,107,0.15);
  transform: translate(-50%, -50%) scale(1);
  animation: ringExpand 0.65s cubic-bezier(0.16,1,0.3,1) forwards;
  z-index: 9999;
}
.btn-ring::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: rgba(196,164,107,0.12);
  animation: ringFlash 0.2s ease-out forwards;
}
.btn-ring::after {
  content: '';
  position: absolute; inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(196,164,107,0.55);
  animation: ringExpand2 0.7s 0.06s cubic-bezier(0.16,1,0.3,1) forwards;
  opacity: 0;
}
@keyframes ringExpand {
  0%   { transform: translate(-50%,-50%) scale(1);   opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(2.8); opacity: 0; }
}
@keyframes ringExpand2 {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(3.1); opacity: 0; }
}
@keyframes ringFlash {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

/* ─── SECTION DIVIDER ─── */
.section-divider {
  position: relative;
  height: 0.5px;
  margin: 0 48px;
  overflow: visible;
  background: var(--border);
}
.section-divider::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-divider.is-visible::after {
  animation: dividerSweep 1.4s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes dividerSweep {
  from { left: -100%; opacity: 1; }
  to   { left: 100%;  opacity: 0; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.18s; }
.rd3 { transition-delay: 0.30s; }
.rd4 { transition-delay: 0.42s; }
.rd5 { transition-delay: 0.56s; }

/* ─── IMAGE REVEAL ─── */
.img-reveal {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
}
.img-reveal.visible { opacity: 1; transform: scale(1); }

/* ─── INNER PAGE HERO ─── */
.page-hero {
  min-height: 46vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 64px 64px;
  position: relative;
  overflow: hidden;
  background: var(--void);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 60%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .eyebrow { margin-bottom: 14px; }

/* ─── FOOTER ─── */
.site-footer {
  border-top: 0.5px solid var(--border);
  padding: 56px 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
}
.footer-brand {}
.footer-wordmark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--dim);
  font-style: italic;
  letter-spacing: 0.02em;
}
.footer-nav {
  display: flex;
  gap: 24px;
  padding-top: 3px;
}
.footer-nav a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text); }
.footer-copy {
  text-align: right;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.04em;
  padding-top: 3px;
}

/* ─── PM CREDIT STRIP ─── */
.pm-credit {
  background: var(--deep);
  border-top: 0.5px solid rgba(255,255,255,0.05);
  padding: 28px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.pm-credit .back-link {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.pm-credit .back-link:hover { color: var(--muted); }
.pm-credit .pm-logo-link {
  display: flex; align-items: center; justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.pm-credit .pm-logo-link:hover { opacity: 1; }
.pm-credit .pm-logo-link img {
  height: 48px; width: auto;
  mix-blend-mode: screen;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .section { padding: 64px 24px; }
  .section-divider { margin: 0 24px; }
  .page-hero { padding: 0 24px 48px; min-height: 38vh; }
  .site-footer { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .footer-brand, .footer-copy { text-align: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }
  .footer-copy { text-align: center; }
  .pm-credit { grid-template-columns: 1fr; text-align: center; gap: 12px; }
}
