/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:      #FFFFFF;
  --off-white:  #F8F8F6;
  --light:      #EFEFED;
  --gold:       #D4AF5A;
  --gold-light: #E8CC80;
  --gold-pale:  #F5EDD4;
  --black:      #0E0E0E;
  --dark:       #141414;
  --grey:       #6B6B6B;
  --grey-light: #ADADAD;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

/* ── NAV ── */
nav {
  position: fixed; inset: 0 0 auto; z-index: 100; height: 96px;
  padding: 0 52px; display: flex; align-items: center;
  justify-content: space-between; transition: background .35s, box-shadow .35s;
}
nav.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(0,0,0,0.07); }
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}
.nav-logo img { height: 76px; width: auto; transition: opacity .35s; }
.logo-dark { opacity: 1; }
.logo-light { position: absolute; left: 0; top: 50%; transform: translateY(-50%); opacity: 0; }
nav.scrolled .logo-dark { opacity: 0; }
nav.scrolled .logo-light { opacity: 1; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); text-decoration: none; transition: color .25s;
}
nav.scrolled .nav-links a { color: var(--black); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
nav.scrolled .nav-links a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-btn {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.90); background: none; border: none; cursor: pointer; transition: color .25s;
}
nav.scrolled .lang-btn { color: var(--black); }
.lang-btn:hover { color: var(--gold); }
.nav-cta {
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 22px; background: var(--gold); color: var(--black);
  text-decoration: none; transition: background .25s, transform .2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: background .35s; }
nav.scrolled .hamburger span { background: var(--black); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--white); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-family: var(--serif); font-weight: 700; color: var(--black); text-decoration: none; transition: color .25s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 28px; right: 28px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--black); }

/* ── SHARED ── */
section, nav, footer { max-width: 100vw; overflow-x: hidden; }
.reveal { transition: opacity .7s ease, transform .7s ease; }
.js-ready .reveal { opacity: 0; transform: translateY(22px); }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px; display: flex; align-items: center; gap: 14px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--light); }

/* ── PAGE HERO ── */
.page-hero { background: var(--dark); padding: 160px 80px 100px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(212,175,90,0.07) 0%, transparent 65%);
}
.page-hero-inner { max-width: 1080px; margin: 0 auto; position: relative; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 700; line-height: 1.08; color: var(--white); margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.page-hero .lead { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.5); max-width: 500px; line-height: 1.75; }
.page-hero .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block; padding: 14px 36px;
  background: var(--gold); color: var(--black);
  text-decoration: none; font-size: 0.76rem;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background .25s, transform .2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-gold-solid {
  display: inline-block; padding: 14px 34px; background: var(--gold); color: var(--black);
  text-decoration: none; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; transition: background .25s, transform .2s;
}
.btn-gold-solid:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: border-color .25s, color .25s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline-white svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px;
  border: 1.5px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.5);
  text-decoration: none; font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; transition: border-color .25s, color .25s;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.38); color: var(--white); }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px;
  border: 1.5px solid rgba(0,0,0,0.14); color: var(--grey); text-decoration: none;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  transition: border-color .25s, color .25s;
}
.btn-outline-dark:hover { border-color: var(--black); color: var(--black); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BAND ── */
.section-band { background: var(--dark); padding: 72px 80px; }
.band-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.band-text { font-family: var(--serif); font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 400; font-style: italic; color: var(--white); line-height: 1.35; max-width: 520px; }
.band-text strong { font-style: normal; font-weight: 700; color: var(--gold); }
.band-cta {
  display: inline-block; flex-shrink: 0; padding: 14px 34px;
  border: 1.5px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.65);
  text-decoration: none; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; transition: border-color .25s, color .25s;
}
.band-cta:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--black); padding: 60px 80px 44px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px; }
.f-logo { display: block; margin-bottom: 12px; }
.f-brand p { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.28); line-height: 1.8; max-width: 200px; }
.f-tagline { display: inline-block; margin-top: 16px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.f-col h4 { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 18px; }
.f-col ul { list-style: none; }
.f-col li { margin-bottom: 9px; }
.f-col a { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.38); text-decoration: none; transition: color .25s; }
.f-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.73rem; color: rgba(255,255,255,0.18); }
.footer-bottom a { font-size: 0.73rem; color: rgba(255,255,255,0.18); text-decoration: none; transition: color .25s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; height: 76px; }
  .nav-logo img { height: 52px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 120px 24px 72px; }
  .section-band { padding: 56px 24px; }
  .band-inner { flex-direction: column; align-items: flex-start; }
  footer { padding: 52px 24px 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}
