@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --navy: #1a2a45;
  --navy-light: #243354;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --cream: #f7f4ef;
  --white: #ffffff;
  --text: #2d2d2d;
  --text-muted: #6b6b6b;
  --border: #ddd5c8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ─── NAV ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,42,69,.10); border-bottom: 1px solid var(--border);
}
nav {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 44px; object-fit: contain; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a {
  color: var(--navy); text-decoration: none;
  font-size: .88rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  padding: 140px 2rem 80px;
  background: linear-gradient(135deg, var(--navy) 60%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 40px,
    rgba(201,168,76,.04) 40px, rgba(201,168,76,.04) 41px
  );
}
.page-hero-inner { position: relative; }
.page-hero .breadcrumb {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white); line-height: 1.18;
}
.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem; line-height: 1.7;
  max-width: 560px; margin: 1rem auto 0;
}

/* ─── MAIN CONTENT ─── */
main { padding-top: 72px; }

/* ─── SECTIONS ─── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: .8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy); line-height: 1.2; margin-bottom: 1rem;
}
.section-lead {
  color: var(--text-muted); font-size: 1.02rem;
  line-height: 1.8; max-width: 640px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  padding: .85rem 2.2rem; border-radius: 4px;
  text-decoration: none; font-weight: 700; font-size: .93rem;
  letter-spacing: .05em; transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy); color: var(--navy);
  padding: .82rem 2.2rem; border-radius: 4px;
  text-decoration: none; font-weight: 700; font-size: .93rem;
  letter-spacing: .05em; transition: all .2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── FOOTER ─── */
footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 3.5rem 2rem 2rem; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.5); }
.footer-col h6 {
  font-size: .73rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 700; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1100px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: .5rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: var(--navy);
    padding: 1.5rem 2rem; gap: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
