@import url('https://fonts.googleapis.com/css2?family=Anton&family=Josefin+Sans:wght@300;400;600&family=Playfair+Display:ital,wght@1,400&display=swap');

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

:root {
  --black: #080808;
  --obsidian: #0d0d0f;
  --dark: #111114;
  --panel: #16161a;
  --border: #2a2a30;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: #8a6f30;
  --orange: #e07b2a;
  --white: #f4f2ee;
  --muted: #7a7870;
  --font-display: 'Anton', sans-serif;
  --font-body: 'Josefin Sans', sans-serif;
  --font-accent: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ─── 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: rgba(8,8,8,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a2a1a, #0d0d0f);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-icon svg {
  width: 34px;
  height: 34px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav-logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  font-size: 0.62rem !important;
  letter-spacing: 0.2em !important;
  color: var(--black) !important;
  background: var(--gold);
  padding: 0.6rem 1.4rem !important;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
.nav-cta.active::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── PAGE HEADER HERO (for inner pages) ─── */
.page-hero {
  padding: 10rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 70%),
    linear-gradient(160deg, #0d0d0f 0%, #080808 100%);
}

.page-hero-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 60px,
    rgba(201,168,76,0.02) 60px, rgba(201,168,76,0.02) 61px
  );
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  letter-spacing: 0.06em;
  line-height: 1;
}

.page-hero p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 500px;
  margin-top: 1.5rem;
}

/* ─── SECTION BASICS ─── */
.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  transition: all 0.3s;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* ─── GOLD DIVIDER ─── */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.8rem 0;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marquee-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── FOOTER ─── */
footer {
  background: var(--obsidian);
  border-top: 1px solid var(--border);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.footer-logo-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a2a1a, #0d0d0f);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg { width: 24px; height: 24px; }

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer-copy {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    gap: 0.5rem;
  }
  .hamburger { display: flex; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { justify-content: center; }
}
