/* =============================================
   GLOSS AND GLORY DETAILING — SHARED STYLES
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #D4AF37;
  --black: #000000;
  --dark: #111111;
  --darker: #0a0a0a;
  --white: #FFFFFF;
  --gray: #1a1a1a;
  --light-gray: #2a2a2a;
  --gold-dim: rgba(212,175,55,0.15);
  --gold-glow: rgba(212,175,55,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(0,0,0,0.92);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-book {
  background: var(--gold);
  color: var(--black);
  padding: 10px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
}
.nav-book:hover { background: #c49e25; }

/* ---- FOOTER ---- */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 60px 48px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.footer-slogan {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  font-weight: 300;
}
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}
.footer-ig {
  font-size: 0.68rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
}
.footer-terms {
  border-top: 1px solid rgba(212,175,55,0.06);
  padding-top: 20px;
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
}
.footer-terms-col h5 {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-terms-col p {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.7;
  font-weight: 300;
}

/* ---- SHARED UTILITIES ---- */
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.gold-divider {
  border: none;
  border-top: 1px solid rgba(212,175,55,0.15);
  max-width: 1200px;
  margin: 0 auto;
}
.section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-header p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  max-width: 500px;
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 16px 48px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-gold:hover { background: #c49e25; transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 1px solid rgba(212,175,55,0.5);
  color: var(--gold);
  background: transparent;
  padding: 16px 48px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ---- PAGE HERO (shared) ---- */
.page-hero {
  padding: 160px 48px 80px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 120px 20px 60px; }
  .section { padding: 60px 20px; }
  footer { padding: 48px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
