/* ══════════════════════════════════
   COMMON / GLOBAL STYLES
══════════════════════════════════ */

/* CSS Variables */
:root {
  --gold: #c9a84c;
  --gold-light: #d4b85f;
  --gold-dim: rgba(201, 168, 76, 0.2);
  --navy-dark: #04070d;
  --navy: #060c18;
  --deep-blue: #061427;
  --ocean-blue: #081a2f;
  --glass-tag: rgba(5, 8, 2, 0.55);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #080b04;
  color: #fff;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: #080b04;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, padding 0.4s;
}

nav.scrolled {
  background: rgba(8, 11, 4, 0.92);
  backdrop-filter: blur(20px);
  padding: 12px 50px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-ring svg {
  width: 40px;
  height: 40px;
}

.logo-txt {
  display: flex;
  flex-direction: column;
}

.logo-txt .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.logo-txt .sub {
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(8,11,4,0.98);
  backdrop-filter: blur(20px);
  padding: 100px 40px;
  z-index: 99;
  transition: right 0.4s ease;
}

.mobile-menu.active {
  right: 0;
  display: block;
}

.mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ── PAGE SCROLL WRAPPER ── */
.page-scroll {
  position: relative;
  z-index: 5;
  padding-top: 100vh;
}

/* ── ANIMATIONS ── */
@keyframes slowZoom {
  0% { transform: scale(1.04); }
  100% { transform: scale(1.08); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes badgePop {
  from { opacity: 0; transform: translateY(-60%) scale(0.5); }
  to { opacity: 1; transform: translateY(-60%) scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Card Dark (Shared) */
.card-dark {
  background: #0b1d35;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: 0.3s;
}

.card-dark:hover {
  transform: translateY(-5px);
  border-color: #c9a84c;
}

.card-dark h4 {
  color: #c9a84c;
  margin-bottom: 8px;
}

.card-dark p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* Section Divider */
.section-divider {
  position: relative;
  height: 0;
  z-index: 20;
}

.section-divider img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 70px;
  pointer-events: none;
}

/* ── COMMON SECTIONS ── */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .label {
  color: #c9a84c;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.section-header h2 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  margin: 12px 0;
}

.section-header p {
  color: rgba(255,255,255,0.65);
  max-width: 700px;
  margin: auto;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 14px 28px; }
  nav.scrolled { padding: 10px 28px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
}

@media (max-width: 480px) {
  nav { padding: 12px 18px; }
  .section-header h2 { font-size: 2rem; }
}