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

:root {
  --black: #0a0a0a;
  --dark:  #111111;
  --card:  #1a1a1a;
  --white: #ffffff;
  --gray:  #888888;
  --light: #cccccc;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray); border-radius: 2px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding 0.3s;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  transition: color 0.2s;
  position: relative;
}

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

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

.nav-dropdown { position: relative; }

.nav-dropdown > a::after { display: none; }
.nav-dropdown > a > span { margin-left: 5px; font-size: 0.65rem; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: rgba(15,15,15,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
  min-width: 200px;
  backdrop-filter: blur(20px);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--light);
}

.dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.nav-dropdown:hover .dropdown-menu { display: block; }

/* ─── PAGE WRAPPER ─── */
.page { padding-top: 80px; min-height: 100vh; }

/* ─── SECTION COMMON ─── */
.section { padding: 80px 60px; }

.section-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 50px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* ─── PLACEHOLDER ─── */
.placeholder {
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

/* ─── BUTTONS ─── */
.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 44px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  background: transparent;
  font-family: var(--font-body);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

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

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.6rem;
  color: var(--gray);
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .section { padding: 60px 20px; }
  footer { flex-direction: column; text-align: center; padding: 30px 20px; }
  .footer-nav { justify-content: center; }
}
