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

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Variables ──────────────────────────────────────────────────── */
:root {
  --navy:   #143351;
  --navy2:  #365370;
  --gold:   #F8D645;
  --white:  #ffffff;
  --gray:   #f7f7f5;
  --border: #e0e0e0;
  --text:   #1a1a1a;
  --muted:  #5a5a5a;
  --max-w:  1140px;
  --nav-h:  72px;
}

/* ── Navigation ─────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img { height: 40px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 0.7; }
.nav-links a.active { font-weight: 700; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.nav-links .nav-cta {
  border: 2px solid var(--gold);
  padding: 7px 18px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--navy);
}
.nav-links .nav-cta:hover { background: var(--gold); opacity: 1; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); }
.nav-mobile { display: none; }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: #fff; padding: 72px 0 36px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}
.footer-brand img { height: 42px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; opacity: 0.65; max-width: 240px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.55;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; opacity: 0.8; transition: opacity 0.15s; }
.footer-col a:hover { opacity: 1; }
.footer-col li { font-size: 14px; opacity: 0.65; }
.footer-bottom { font-size: 13px; opacity: 0.4; }

/* ── Shared layout ──────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 88px max(48px, calc((100vw - var(--max-w)) / 2 + 48px)) 76px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  opacity: 0.7;
  max-width: 520px;
  font-weight: 300;
  line-height: 1.65;
}

.section { padding: 88px 0; }
.section-alt { background: var(--gray); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy2);
  margin-bottom: 16px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 20px;
}

.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.8;
  font-weight: 400;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 4px;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 11px 28px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-white {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 28px;
  border-radius: 4px;
  transition: background 0.15s, border-color 0.15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 809px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px;
    flex-direction: column;
    gap: 0;
    z-index: 99;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile a.active { font-weight: 700; }
  .page-hero { padding: 56px 20px 48px; }
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .lead { margin-bottom: 32px; }
  .footer-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (min-width: 810px) and (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
