/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f2240;
  --navy-light: #1a3560;
  --gold: #b8912a;
  --gold-light: #d4a83a;
  --cream: #faf8f3;
  --cream-dark: #f0ece0;
  --text: #1c1c1c;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --border: rgba(184,145,42,0.2);
}

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

/* ── PAGE TRANSITIONS ── */
body { opacity: 0; animation: pageIn 0.4s ease forwards; }
@keyframes pageIn { to { opacity: 1; } }
.page-exit { animation: pageOut 0.25s ease forwards; }
@keyframes pageOut { to { opacity: 0; transform: translateY(-8px); } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(15,34,64,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,145,42,0.25);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--white);
  text-decoration: none; letter-spacing: 0.01em;
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo span { font-size: 0.62rem; font-family: 'DM Sans', sans-serif; font-weight: 300; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.75); text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta { background: var(--gold); color: var(--white); padding: 0.5rem 1.3rem; border-radius: 2px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); border-bottom: 1px solid var(--border); z-index: 99; padding: 1.5rem 5%; flex-direction: column; gap: 1rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8); text-decoration: none; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); text-transform: uppercase; letter-spacing: 0.04em; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 7rem 8% 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,145,42,0.07) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(184,145,42,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(184,145,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.page-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; color: var(--white); line-height: 1.15; }
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero p { margin-top: 1rem; font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.55); max-width: 540px; }

/* ── SECTION ── */
section { padding: 5rem 8%; }
.section-label { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 2.8vw, 2.6rem); font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 1rem; }
.section-sub { font-size: 0.92rem; line-height: 1.75; color: var(--text-muted); max-width: 560px; }

/* ── BUTTONS ── */
.btn-primary { background: var(--gold); color: var(--white); padding: 0.8rem 1.8rem; border-radius: 2px; font-size: 0.83rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; border: 2px solid var(--gold); display: inline-block; }
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--navy); padding: 0.8rem 1.8rem; border-radius: 2px; font-size: 0.83rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; border: 2px solid var(--navy); display: inline-block; }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--cream-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.3rem 8%; display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); opacity: 0.7; }
.trust-item::before { content: '✦'; color: var(--gold); font-size: 0.6rem; }

/* ── CONTACT CTA STRIP ── */
.cta-strip { background: var(--navy); padding: 4rem 8%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--white); }
.cta-strip p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 0.4rem; max-width: 460px; }
.cta-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.btn-white { background: var(--white); color: var(--navy); padding: 0.8rem 1.8rem; border-radius: 2px; font-size: 0.83rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; }
.btn-white:hover { background: var(--gold-light); color: var(--white); }
.btn-gold-outline { background: transparent; color: var(--gold-light); padding: 0.8rem 1.8rem; border-radius: 2px; font-size: 0.83rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; border: 2px solid rgba(184,145,42,0.4); }
.btn-gold-outline:hover { border-color: var(--gold-light); color: var(--white); }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 3rem 8% 2rem; border-top: 1px solid rgba(184,145,42,0.2); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.7rem; }
.footer-brand p { font-size: 0.8rem; line-height: 1.75; color: rgba(255,255,255,0.4); max-width: 280px; }
.footer-col h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.8rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.28); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 50px; height: 50px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 24px; height: 24px; fill: white; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  section { padding: 3.5rem 6%; }
  .page-hero { padding: 6rem 6% 3rem; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .trust-strip { gap: 1rem; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
}
