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

:root {
  --navy: #1a2b4a;
  --teal: #4a8fa8;
  --light-teal: #7bbbd0;
  --cream: #f8f5f0;
  --white: #ffffff;
  --gray: #666;
  --light-gray: #f0f0f0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: #333;
  background: var(--white);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 14px 60px;
}
nav.light-nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 14px 60px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.3s;
  flex-shrink: 0;
}
nav.scrolled .logo, nav.light-nav .logo { color: var(--navy); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
nav.scrolled .nav-links a, nav.light-nav .nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--teal) !important; }
.nav-links a.active { color: var(--teal) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
nav.scrolled .hamburger span, nav.light-nav .hamburger span { background: var(--navy); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--light-teal); }
.mobile-menu-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  line-height: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 42px;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn:hover { background: var(--white); color: var(--navy); }
.btn-teal {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.btn-teal:hover { background: #3a7a93; border-color: #3a7a93; color: var(--white); }
.btn-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-navy:hover { background: var(--navy); color: var(--white); }

/* ===== TYPOGRAPHY HELPERS ===== */
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 28px;
}
.section-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray);
  font-weight: 300;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a6e 60%, #1e3d5c 100%);
  padding: 160px 60px 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 60% 40%, rgba(74,143,168,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; }
.page-hero .label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-teal);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 500;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  opacity: 0.7;
  font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
  background: #111d2e;
  color: white;
  padding: 70px 60px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.6;
  margin-top: 16px;
  font-weight: 300;
  max-width: 280px;
}
footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 22px;
  color: white;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; }
footer ul li a, .footer-contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
footer ul li a:hover { color: var(--light-teal); }
.footer-bottom {
  background: #0d1623;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}
.footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-bottom a:hover { color: var(--light-teal); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 18px 32px; }
  nav.scrolled, nav.light-nav { padding: 14px 32px; }
}

@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  nav.scrolled, nav.light-nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .page-hero { padding: 110px 24px 60px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 15px; }

  footer {
    grid-template-columns: 1fr;
    padding: 50px 24px 30px;
    gap: 40px;
  }
  .footer-bottom { padding: 16px 24px; flex-direction: column; text-align: center; }
}
