@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Rajdhani:wght@300;400;500;600&family=EB+Garamond:ital,wght@0,400;1,400&display=swap');

:root {
  --gold:       #94c8ed;
  --gold-light: #b8ddf5;
  --gold-dim:   #5a8fad;
  --dark:       #0a0a0a;
  --darker:     #050505;
  --mid:        #111111;
  --mid2:       #161616;
  --white:      #f0ede8;
  --muted:      #888;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--darker);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── NAV ── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(5,5,5,0.95);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(10px);
  transition: background 0.4s;
}

#site-nav.transparent {
  background: transparent;
  border-bottom-color: transparent;
}

.nav-logo {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

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

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-social {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.nav-social a {
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.25s, transform 0.2s;
  line-height: 0;
}
.nav-social a svg { width: 15px; height: 15px; }
.nav-social a:hover { color: var(--gold); transform: scale(1.15); }

.nav-menu-btn {
  display: none;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: none;
  border: 1px solid var(--gold-dim);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.nav-menu-btn:hover { background: var(--gold); color: var(--dark); }

/* ── MOBILE DRAWER — slide up from bottom ── */
#mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--darker);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 6rem;  /* 6rem bottom clears the pinned close button */
  gap: 0;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease;
  overflow-y: auto;
}

#mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

#mobile-drawer.closing {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 1, 1),
              opacity 0.3s ease;
}

/* accent line at bottom */
#mobile-drawer::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
}
#mobile-drawer.open::before { opacity: 1; }

/* ── CLOSE BUTTON — pinned to bottom of drawer ── */
.drawer-close {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.2rem 2rem;
  background: rgba(148,200,237,0.06);
  border: none;
  border-top: 1px solid rgba(148,200,237,0.2);
  cursor: pointer;
  transition: background 0.2s;
}
.drawer-close:hover  { background: rgba(148,200,237,0.14); }
.drawer-close:active { transform: scale(0.98); }

.drawer-close-x {
  font-size: 1.3rem;
  line-height: 1;
  color: var(--gold);
}

.drawer-close-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── DRAWER LINKS ── */
.drawer-links {
  list-style: none;
  text-align: center;
  width: 100%;
  margin-top: 1.5rem;
}

.drawer-links li {
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* stagger links in on open */
#mobile-drawer.open .drawer-links li:nth-child(1) { opacity:1; transform:none; transition-delay: 0.12s; }
#mobile-drawer.open .drawer-links li:nth-child(2) { opacity:1; transform:none; transition-delay: 0.18s; }
#mobile-drawer.open .drawer-links li:nth-child(3) { opacity:1; transform:none; transition-delay: 0.24s; }
#mobile-drawer.open .drawer-links li:nth-child(4) { opacity:1; transform:none; transition-delay: 0.30s; }
#mobile-drawer.open .drawer-links li:nth-child(5) { opacity:1; transform:none; transition-delay: 0.36s; }
#mobile-drawer.open .drawer-links li:nth-child(6) { opacity:1; transform:none; transition-delay: 0.42s; }

.drawer-links a {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;           /* reduced from 1.4rem */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.25s, letter-spacing 0.25s;
}
.drawer-links a:hover { color: var(--gold); letter-spacing: 0.25em; }

/* ── LANDSCAPE PHONE ── */
@media (max-height: 500px) and (orientation: landscape) {
  :root { --nav-height: 50px; }

  #site-nav { padding: 0 1rem; }
  .nav-logo { font-size: 0.68rem; }
  .nav-logo span { display: none; }
  .nav-menu-btn { padding: 0.25rem 0.55rem; font-size: 0.52rem; }

  #mobile-drawer { padding: 4rem 2rem 1.5rem; flex-direction: column; }
  .drawer-links { margin-top: 0.5rem; }
  .drawer-links li { margin-bottom: 0.5rem; }
  .drawer-links a { font-size: 0.8rem; }
  .drawer-social { margin-top: 0.75rem; gap: 1rem; }
  .drawer-social svg { width: 18px; height: 18px; }
}

/* ── DRAWER SOCIAL ICONS ── */
.drawer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.drawer-social a {
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 0;
  transition: color 0.25s, transform 0.2s;
}

/* ── FOOTER ── */
#site-footer {
  background: var(--mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-solid {
  background: var(--gold);
  color: var(--dark);
}
.btn-solid:hover {
  background: var(--gold-light);
}

/* ── GOLD DIVIDER ── */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ── SECTION LABEL ── */
.section-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── PAGE WRAPPER ── */
.page-wrap {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

/* ── MOBILE ── */
/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-social { display: none; }  /* hidden in nav bar — lives inside drawer only */
  .nav-menu-btn { display: block; }
  .footer-links { display: none; }
  #site-footer { justify-content: center; text-align: center; }
  .footer-copy { font-size: 0.7rem; }
}

/* ── VERY SMALL PHONES ── */
@media (max-width: 380px) {
  .nav-logo { font-size: 0.7rem; }
  .nav-logo span { display: none; }
}
