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

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

:root {
  --navy: #0d1f2d;
  --steel: #1e3a4f;
  --gold: #c9933a;
  --gold-light: #e8b86d;
  --sand: #f5efe6;
  --white: #fdfcfa;
  --mid: #8a9ba8;
  --text: #2c3e4a;
  --light-text: #4a5c68;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(13,31,45,0.97);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--white); text-decoration: none; text-transform: uppercase;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mid); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--mid);
  transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--navy); z-index: 99; padding: 1.5rem 2rem;
  flex-direction: column; gap: 1.2rem;
}
.mobile-menu a {
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mid); text-decoration: none;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(201,147,58,0.5); color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 2px;
  transition: background 0.2s; display: inline-block;
  background: none; cursor: pointer;
}
.btn-ghost:hover { background: rgba(201,147,58,0.1); }
.btn-dark {
  background: var(--navy); color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  padding: 1rem 2.5rem; border-radius: 2px;
  transition: background 0.2s; white-space: nowrap;
  display: inline-block; border: none; cursor: pointer;
}
.btn-dark:hover { background: var(--steel); }

/* ── SECTION HELPERS ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before {
  content: ''; display: block;
  width: 30px; height: 2px; background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--navy); margin-bottom: 1.5rem;
}
.section-title.light { color: var(--white); }

/* ── CREDENTIAL STRIP ── */
.credential-strip {
  background: var(--gold);
  padding: 1rem 4rem;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.cred-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--navy);
  display: flex; align-items: center; gap: 0.6rem;
}
.cred-item::before { content: '★'; font-size: 0.6rem; }
.cred-divider { width: 1px; height: 20px; background: rgba(13,31,45,0.25); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 2.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
footer p { font-size: 0.78rem; color: var(--mid); font-weight: 300; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 0.75rem; color: var(--mid); text-decoration: none;
  letter-spacing: 0.05em; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 9rem 4rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero-texture {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 60px,rgba(201,147,58,0.04) 60px,rgba(201,147,58,0.04) 61px),
    repeating-linear-gradient(90deg,transparent,transparent 60px,rgba(201,147,58,0.04) 60px,rgba(201,147,58,0.04) 61px);
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900; color: var(--white); line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 1rem; font-weight: 300; color: var(--mid);
  line-height: 1.8; max-width: 520px;
  border-left: 2px solid var(--gold); padding-left: 1.2rem;
}

/* ── QUOTE SECTION ── */
.quote-section {
  background: var(--steel);
  padding: 5rem 4rem; text-align: center;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic; color: var(--white); line-height: 1.6;
  max-width: 700px; margin: 0 auto 1.5rem;
}
.quote-attr {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--gold); padding: 5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900; color: var(--navy); max-width: 500px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.3s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.45s ease both; }
.fade-up-4 { animation: fadeUp 0.6s 0.6s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .credential-strip { padding: 1rem 1.5rem; gap: 1rem; }
  .cred-divider { display: none; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .cta-section { flex-direction: column; text-align: center; padding: 3rem 1.5rem; }
  footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }
}
