/* ═══════════════════════════════════════
   ORGET SAX — GLOBAL STYLES
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dim: rgba(201,168,76,0.15);
  --white: #f5f0e8;
  --muted: rgba(245,240,232,0.45);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.06);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: rgba(245,240,232,0.8);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-dark { background: var(--dark); }
.section-black { background: var(--black); }
.section-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 300; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: #dbb95a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(201,168,76,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
nav .logo {
  font-family: var(--font-serif);
  font-size: 1.2rem; color: var(--white);
  text-decoration: none;
}
nav .logo em { font-style: italic; color: var(--gold); }
nav .nav-links { display: flex; gap: 2rem; align-items: center; }
nav .nav-links a {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color var(--transition-fast);
}
nav .nav-links a:hover { color: var(--gold); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
}
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
}
.page-header p {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 500px; margin: 0 auto;
}

/* ── CONTENT ── */
.content { padding: 4rem 0; }
.content p {
  font-size: 0.85rem; line-height: 1.9;
  color: rgba(245,240,232,0.7);
  margin-bottom: 1.2rem;
}

/* ── FOOTER QUICK ── */
footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  font-size: 0.65rem;
  color: rgba(245,240,232,0.25);
}
footer a { color: var(--gold); text-decoration: none; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .section { padding: 4rem 0; }
  nav { padding: 1rem 1.5rem; }
  nav .nav-links { gap: 1rem; }
  nav .nav-links a { font-size: 0.5rem; }
}

::selection { background: rgba(201,168,76,0.3); color: var(--white); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--dark3); border-radius: 3px; }
