
:root {
  --gold: #C9A84C;
  --gold-light: #E8CB7A;
  --gold-pale: #F5E9C8;
  --deep: #0A0A0F;
  --dark: #12121A;
  --mid: #1C1C28;
  --text: #D8D0C0;
  --text-muted: #8A8070;
  --white: #FAF7F0;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 4rem;
  background: linear-gradient(to bottom, rgba(10,10,15,0.95), transparent);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-video-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0d0d1a 0%, #1a1020 40%, #0a0a0f 100%);
}
.hero-video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,168,76,0.12) 0%, transparent 65%);
}
/* Decorative cross rays */
.hero-rays {
  position: absolute; inset: 0;
  background:
    conic-gradient(from 270deg at 50% 55%,
      transparent 0deg,
      rgba(201,168,76,0.04) 2deg,
      transparent 4deg,
      transparent 86deg,
      rgba(201,168,76,0.04) 88deg,
      transparent 90deg,
      transparent 176deg,
      rgba(201,168,76,0.03) 178deg,
      transparent 180deg,
      transparent 266deg,
      rgba(201,168,76,0.03) 268deg,
      transparent 270deg
    );
}
.video-label {
  position: absolute; bottom: 2rem; right: 2rem;
  font-size: 0.65rem; letter-spacing: 0.25em;
  color: var(--text-muted); text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.4rem 0.8rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.video-label::before {
  content: '▶';
  color: var(--gold); font-size: 0.5rem;
}
.hero-content { position: relative; z-index: 2; padding: 2rem; }
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}
.hero h1 span { color: var(--gold); display: block; }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1.5rem;
  max-width: 540px;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
.hero-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 2rem auto;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.3em;
  color: var(--text-muted); text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeUp 1s ease 1.4s forwards;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── SECTIONS ─── */
section { position: relative; }

.section-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 7rem 4rem;
}

/* Text section */
.text-section { background: var(--dark); }
.text-section-alt { background: var(--mid); }

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem; letter-spacing: 0.5em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 300;
  color: rgba(201,168,76,0.08);
  position: absolute; top: 4rem; right: 4rem;
  line-height: 1;
}

h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.gold-rule {
  width: 50px; height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

p {
  font-size: 1.05rem; line-height: 2;
  color: var(--text);
  max-width: 680px;
  margin-bottom: 1.2rem;
}
p.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-style: italic;
  color: var(--gold-pale);
  font-weight: 300;
  line-height: 1.7;
}

blockquote {
  border-left: 2px solid var(--gold);
  padding: 1rem 2rem;
  margin: 2.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-style: italic;
  color: var(--gold-pale);
  font-weight: 300;
  line-height: 1.6;
  max-width: 580px;
}
blockquote cite {
  display: block; margin-top: 0.5rem;
  font-size: 0.8rem; letter-spacing: 0.15em;
  font-style: normal;
  color: var(--text-muted);
  font-family: 'Lato', sans-serif;
}

/* ─── TWO-COL LAYOUT ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ─── VIDEO / IMAGE PLACEHOLDERS ─── */
.media-placeholder {
  position: relative;
  background: var(--mid);
  border: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
}
.media-placeholder.tall { aspect-ratio: 9/14; }
.media-placeholder.wide { aspect-ratio: 16/9; }
.media-placeholder.square { aspect-ratio: 1/1; }
.media-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 50%, rgba(201,168,76,0.03) 100%);
}
.media-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 1rem;
}
.play-btn {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  color: var(--gold); font-size: 1.1rem;
  opacity: 0.7;
}
.media-tag {
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-muted);
  text-align: center; padding: 0 2rem; line-height: 1.8;
}
.media-corner {
  position: absolute; bottom: 1rem; right: 1rem;
  font-size: 0.55rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(201,168,76,0.4);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.3rem 0.6rem;
}

/* ─── FULL-WIDTH MEDIA ─── */
.full-media {
  width: 100%;
  background: var(--mid);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  position: relative;
  overflow: hidden;
}
.full-media.cinematic { aspect-ratio: 21/7; }
.full-media::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.full-media-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 1rem;
}
.full-media-inner .play-btn { width: 72px; height: 72px; font-size: 1.4rem; opacity: 0.6; }

/* ─── TESTIMONY SECTION ─── */
.testimony { background: linear-gradient(160deg, #0e0e18, #14101e); }
.testimony-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5px;
  margin: 4rem 0;
}
.t-card {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 2.5rem 2rem;
  position: relative;
}
.t-card::before {
  content: attr(data-num);
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300;
  color: rgba(201,168,76,0.08);
  position: absolute; top: 1rem; right: 1.5rem;
  line-height: 1;
}
.t-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.t-card p { font-size: 0.92rem; max-width: none; }

/* ─── PULL QUOTE ─── */
.pull-quote-section {
  background: var(--deep);
  text-align: center;
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
.pull-quote-section::before {
  content: '"';
  position: absolute; top: -2rem; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
}
.pull-quote-section p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-style: italic;
  color: var(--white);
  max-width: 800px; margin: 0 auto 1.5rem;
  line-height: 1.5;
  position: relative;
}
.pull-quote-section cite {
  font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  font-style: normal;
}

/* ─── CTA ─── */
.cta-section {
  position: relative;
  background: var(--deep);
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.cta-section .section-inner { position: relative; z-index: 2; }
.cta-section h2 { margin: 0 auto 1.5rem; max-width: 700px; }
.cta-section p { max-width: 580px; margin: 0 auto 2.5rem; }

.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem; letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--gold);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  border: 1px solid var(--gold);
}
.btn:hover { background: transparent; color: var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--gold);
  margin-left: 1rem;
}
.btn-ghost:hover { background: var(--gold); color: var(--deep); }

/* ─── FOOTER ─── */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(201,168,76,0.1);
  text-align: center;
  padding: 3rem 4rem;
}
footer .foot-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem; letter-spacing: 0.4em;
  color: var(--gold); margin-bottom: 0.5rem;
}
footer p {
  font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--text-muted); max-width: none; margin: 0;
}

/* ─── DIVIDERS ─── */
.ornament {
  text-align: center;
  color: rgba(201,168,76,0.3);
  font-size: 1.2rem;
  letter-spacing: 0.5rem;
  padding: 1rem 0;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 2rem; }
  .nav-links { display: none; }
  .section-inner { padding: 5rem 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse { direction: ltr; }
  .testimony-grid { grid-template-columns: 1fr; }
  .section-number { display: none; }
  .full-media.cinematic { aspect-ratio: 16/9; }
  .pull-quote-section { padding: 5rem 2rem; }
}

/* ─── NAV ID ─── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 4rem;
  background: linear-gradient(to bottom, rgba(10,10,15,0.95), transparent);
  transition: background 0.3s;
}
#site-nav.scrolled { background: rgba(10,10,15,0.98); }
.nav-logo a { font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; }

/* ─── HERO VIDEO ─── */
.hero-video-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-video-wrap iframe { width: 100%; height: 100%; }

/* ─── HERO ACTIONS ─── */
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; opacity: 0; animation: fadeUp 1s ease 1.2s forwards; }

/* ─── TESTIMONY ─── */
.testimony-section { background: linear-gradient(160deg, #0e0e18, #14101e); }

/* ─── NAV TOGGLE ─── */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 200;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── FOOTER EXTRA ─── */
.footer-social { display: flex; justify-content: center; gap: 1.5rem; margin: 1rem 0; }
.footer-social a { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--text-muted); text-decoration: none; text-transform: uppercase; }
.footer-social a:hover { color: var(--gold); }
.footer-copy { font-size: 0.65rem; color: var(--text-muted); margin-top: 0.5rem; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── SKIP LINK ─── */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 9999; background: var(--gold); color: var(--deep); padding: 0.5rem 1rem; }

/* ─── SCREEN READER ─── */
.screen-reader-text { position: absolute; left: -9999px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  #site-nav { padding: 1rem 2rem; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(10,10,20,0.98); flex-direction: column;
    align-items: center; justify-content: center; gap: 2rem; z-index: 150;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.2em; }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─── LOGO SIZE CONSTRAINTS ─── */
.nav-logo img { max-height: 48px; width: auto; display: block; }
.foot-logo img { max-height: 60px; width: auto; display: block; margin: 0 auto 0.75rem; }

/* ─── NAV LOGO WITH TEXT ─── */
.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
