/* ═══════════════════════════════════════════════════════
   WATCHMEN: GUARDING THE CALL — Shared Stylesheet
   Brand: Navy #1a2744 | Gold #b09a50 | Cream #faf7f2
═══════════════════════════════════════════════════════ */
:root {
  --navy:        #1a2744;
  --navy-deep:   #111c2c;
  --navy-mid:    #243650;
  --navy-light:  #2d4a6e;
  --gold:        #b09a50;
  --gold-light:  #c9b06a;
  --gold-dark:   #8a6d3b;
  --gold-pale:   #f5edda;
  --gold-rule:   rgba(176,154,80,0.25);
  --cream:       #faf7f2;
  --cream-dark:  #f0ebe0;
  --white:       #ffffff;
  --text:        #2c2c2c;
  --text-mid:    #4a4a4a;
  --text-light:  #7a7a7a;
  --border:      rgba(176,154,80,0.18);
  --shadow:      0 4px 32px rgba(26,39,68,0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,28,44,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 66px; display: flex; align-items: center;
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600;
  color: var(--white); letter-spacing: 0.03em; line-height: 1.1;
}
.nav-logo-sub {
  font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy-deep) !important; background: var(--gold);
  padding: 10px 22px; text-decoration: none; transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy-deep);
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 14px 30px; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(176,154,80,0.45); color: rgba(255,255,255,0.75);
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 14px 30px; text-decoration: none; background: transparent; cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(176,154,80,0.06); }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(26,39,68,0.3); color: var(--navy);
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 14px 30px; text-decoration: none; background: transparent; cursor: pointer;
  transition: all 0.25s;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ── SECTION HELPERS ──────────────────────────────────── */
.section-label {
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 300; line-height: 1.12; color: var(--navy);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }
.gold-rule { width: 44px; height: 2px; background: var(--gold); margin: 22px 0; }

/* ── FADE-UP ANIMATIONS ───────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ── PHOTO PLACEHOLDER ────────────────────────────────── */
.photo-placeholder {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; border: 2px dashed rgba(176,154,80,0.35);
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  text-align: center; padding: 20px; min-height: 300px;
}
.photo-placeholder svg { opacity: 0.4; }
.photo-placeholder span { opacity: 0.7; font-size: 10px; margin-top: 4px; line-height: 1.5; }

/* ── TAGLINE STRIP ────────────────────────────────────── */
.tagline-strip {
  background: var(--gold); padding: 17px 40px; text-align: center;
}
.tagline-strip p {
  font-family: 'Cormorant Garamond', serif; font-size: 18px;
  font-style: italic; color: var(--navy-deep);
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(176,154,80,0.15);
  padding: 52px 60px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px; margin-bottom: 40px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif; font-size: 21px;
  font-weight: 600; color: var(--white); margin-bottom: 5px;
}
.footer-brand-sub {
  font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-tagline {
  font-family: 'Libre Baskerville', serif; font-size: 13px;
  font-style: italic; color: rgba(255,255,255,0.35); line-height: 1.75;
}
.footer-col h4 {
  font-family: 'Jost', sans-serif; font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: 'Jost', sans-serif; font-size: 12.5px; font-weight: 300;
  color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy {
  font-family: 'Jost', sans-serif; font-size: 11px;
  font-weight: 300; color: rgba(255,255,255,0.26);
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 32px; height: 32px; border: 1px solid rgba(176,154,80,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  nav { height: 58px; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 58px; left: 0; right: 0; background: var(--navy-deep);
    padding: 22px 36px; gap: 18px; border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  footer { padding: 50px 28px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
