:root {
  --navy: #1B2A5E;
  --navy-dark: #131f47;
  --gold: #C9A84C;
  --white: #FEFEFE;
  --grey: #E8E9ED;
  --charcoal: #444444;

  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.15;
}

h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); margin-bottom: 16px; }
h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }

.section-lead {
  max-width: 620px;
  color: var(--charcoal);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--grey);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand { display: flex; align-items: center; height: 100%; }

.brand-mark { height: 100%; width: auto; display: block; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-nav a { color: var(--navy); transition: color 0.2s ease; }
.site-nav a:hover { color: var(--gold); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

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

/* Hero */
.hero {
  padding: 130px 0 120px;
  background:
    linear-gradient(180deg, rgba(27,42,94,0.72), rgba(27,42,94,0.6)),
    url('../assets/banner.png') center/cover no-repeat;
  text-align: center;
}

.hero-inner { max-width: 780px; margin: 0 auto; }

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  margin-bottom: 22px;
  color: var(--white);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--grey); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pillar-index {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.pillar p, .benefit p { color: var(--charcoal); font-size: 0.98rem; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.split-text p { margin-bottom: 18px; max-width: 480px; }

.split-list-spacer { visibility: hidden; }

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.para-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}

.benefits + .para-list { margin-top: 48px; }

.para-list li {
  position: relative;
  padding-left: 28px;
  color: var(--charcoal);
  font-weight: 400;
  font-size: 0.98rem;
}

.para-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.benefit {
  border-top: 2px solid var(--gold);
  padding-top: 20px;
}

/* Contact / CTA */
.section-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.section-cta h2 { color: var(--white); }
.section-cta p { color: rgba(255,255,255,0.8); margin-bottom: 40px; }

.cta-inner { max-width: 560px; margin: 0 auto; }

.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.form-row { display: flex; flex-direction: column; gap: 6px; }

.form-row label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.form-row input, .form-row textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 2px;
}

.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,0.4); }

.cta-book-btn {
  background: var(--gold);
  color: var(--navy);
}
.cta-book-btn:hover { background: var(--white); }

.section-cta .cta-book-btn { margin-bottom: 28px; }

.cta-divider {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px !important;
}

.btn-ghost-light {
  align-self: center;
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.contact-direct {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-legal { margin-top: 4px; }

/* Reveal animation (progressive enhancement — content is fully visible without JS) */
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.pre-reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.pre-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px) {
  .pillars, .benefits { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-list-spacer { display: none; }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--grey);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-nav.is-open { max-height: 320px; }
  .site-nav a { width: 100%; padding: 16px 24px; border-top: 1px solid var(--grey); }
  .nav-cta { border-radius: 0; text-align: center; }
  .nav-toggle { display: flex; }
}
