@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@200;300;400;500;600&display=swap');

:root {
  --ink:        #0A0E1A;
  --ink-mid:    #141929;
  --ink-soft:   #1E2538;
  --slate:      #6B7280;
  --slate-light:#9CA3AF;
  --silver:     #E5E7EB;
  --off-white:  #F9FAFB;
  --white:      #FFFFFF;
  --gold:       #B89A4E;
  --gold-light: #CDB06A;
  --gold-bright:#E8CC8A;
  --teal:       #00B5A3;
  --teal-dark:  #009688;

  --font-display: 'Playfair Display', serif;
  --font-body:    'Outfit', sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(0,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─────────────── NAV ─────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(184,154,78,0.12);
  transition: background 0.4s, box-shadow 0.4s;
  gap: 24px;
}

.site-nav.light {
  background: rgba(10,14,26,0.15);
  backdrop-filter: blur(4px);
  box-shadow: none;
}

.site-nav.scrolled {
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(184,154,78,0.15);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }

.nav-links {
  display: flex; gap: 28px; list-style: none; align-items: center;
  flex-shrink: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--teal) !important;
  border: 1px solid var(--teal) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 2px !important;
  letter-spacing: 0.12em !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--teal-dark) !important;
  border-color: var(--teal-dark) !important;
  color: var(--white) !important;
}

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: transform 0.3s, opacity 0.3s;
}

/* mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ─────────────── PAGE HERO ─────────────── */
.page-hero {
  height: 360px;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
  padding: 0 56px 52px;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.45;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10,20,40,0.92) 0%,
    rgba(10,20,40,0.78) 50%,
    rgba(0,30,45,0.55) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative; z-index: 2;
}

.page-hero-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}

.page-hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--teal);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

/* ─────────────── SECTION BASE ─────────────── */
section { padding: 100px 56px; }

.section-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title.white { color: var(--white); }

.section-body {
  font-size: 15.5px; font-weight: 300;
  line-height: 1.85; color: var(--slate);
  max-width: 560px;
}

.section-body.wide { max-width: 720px; }

/* ─────────────── BUTTONS ─────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-family: var(--font-body);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; border: none;
  transition: all 0.25s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  padding: 15px 36px;
  box-shadow: 0 4px 20px rgba(184,154,78,0.25);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,154,78,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border: 1px solid rgba(10,14,26,0.25);
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─────────────── FOOTER ─────────────── */
.site-footer {
  background: var(--ink);
  padding: 72px 56px 32px;
  border-top: 1px solid rgba(184,154,78,0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 13.5px; font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,0.45);
  margin-top: 20px; max-width: 280px;
}

.footer-col h4 {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184,154,78,0.15);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.footer-col a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 16px;
}

.footer-legal {
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,0.28); line-height: 1.8;
  max-width: 600px;
}

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

.footer-links a {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.3); text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

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

/* ─────────────── DIVIDER ─────────────── */
.gold-rule {
  width: 48px; height: 1px;
  background: var(--gold);
  display: block;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

/* JS adds .js-loaded to body, then reveal animation kicks in */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js-loaded .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────── MOBILE ─────────────── */
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 64px 24px; }
  .page-hero { padding: 0 24px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer { padding: 56px 24px 24px; }
}

@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}
