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

:root {
  --navy: #2C3350;
  --navy-dark: #1e2438;
  --navy-light: #3a4266;
  --red: #D42B2B;
  --red-light: #e84444;
  --white: #ffffff;
  --off-white: #f8f7f5;
  --warm-gray: #f0eeeb;
  --mid-gray: #9a9a9a;
  --text: #1e2438;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

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

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(44,51,80,0.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px; transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(44,51,80,0.10); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo svg { width: 38px; height: 38px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.nav-logo-tag { font-size: 0.62rem; font-weight: 500; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 0.88rem; font-weight: 500; color: var(--navy); letter-spacing: 0.02em; position: relative; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.25s; transform-origin: left; }
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 10px 22px; border-radius: 6px; font-weight: 600 !important; transition: background 0.2s, transform 0.15s !important; }
.nav-cta:hover { background: var(--red-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid rgba(44,51,80,0.1); padding: 24px 5%; z-index: 99; flex-direction: column; gap: 20px; box-shadow: 0 8px 32px rgba(44,51,80,0.1); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--navy); text-decoration: none; padding: 8px 0; border-bottom: 1px solid rgba(44,51,80,0.06); }
.mobile-menu a:last-child { background: var(--red); color: var(--white); text-align: center; padding: 13px; border-radius: 8px; border: none; font-weight: 600; }

/* PAGE HERO BANNER */
.page-hero {
  padding-top: 72px;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212,43,43,0.1) 0%, transparent 60%),
              linear-gradient(135deg, #1a1f33 0%, #2C3350 50%, #1e2438 100%);
}
.page-hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 64px 5% 60px;
}
.page-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,43,43,0.15); border: 1px solid rgba(212,43,43,0.3);
  color: #ff8888; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.page-hero-title em { font-style: italic; color: #ff8888; }
.page-hero-sub {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 540px;
}

/* SHARED SECTION STYLES */
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 90px 5%; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
.section-title { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 20px; }
.section-body { font-size: 1.02rem; font-weight: 300; color: #555; line-height: 1.8; max-width: 600px; }

/* BUTTONS */
.btn-primary { background: var(--red); color: var(--white); padding: 14px 30px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(212,43,43,0.35); }
.btn-primary:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,43,43,0.45); }
.btn-outline-navy { border: 1.5px solid var(--navy); color: var(--navy); padding: 13px 28px; border-radius: 8px; font-weight: 500; font-size: 0.95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

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

/* FOOTER */
footer { background: var(--navy-dark); padding: 60px 5% 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; text-decoration: none; }
.footer-logo svg { width: 36px; height: 36px; }
.footer-logo-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-tagline { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; max-width: 280px; }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); font-weight: 300; }
.footer-badge { background: rgba(212,43,43,0.15); border: 1px solid rgba(212,43,43,0.25); color: rgba(255,255,255,0.55); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; padding: 4px 12px; border-radius: 100px; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}
