/* ============================================
   The Warriors Landing — Design System
   Navy #051C37 / Gold #BF975B / White / Black
   Headings: Cormorant Garamond · Body: Inter · Accent: Lora
   ============================================ */

:root {
  --navy: #051C37;
  --navy-700: #0C2C50;
  --navy-600: #12386A;
  --navy-050: #EEF2F6;
  --gold: #BF975B;
  --gold-600: #A67F45;
  --gold-100: #F4EBDD;
  --cream: #F8F5EF;
  --white: #FFFFFF;
  --black: #14120F;
  --ink-soft: #4A5060;
  --line: #E4E1D9;
  --shadow-sm: 0 2px 10px rgba(5, 28, 55, 0.06);
  --shadow-md: 0 12px 40px rgba(5, 28, 55, 0.12);
  --shadow-lg: 0 24px 70px rgba(5, 28, 55, 0.18);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1240px;
  --pad-desktop: 120px;
  --pad-tablet: 90px;
  --pad-mobile: 60px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.22; margin: 0 0 0.6em; color: var(--navy); }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---------- Typography scale ---------- */
h1, .h1 { font-size: clamp(2.6rem, 4.6vw, 4.4rem); letter-spacing: 0.005em; line-height: 1.14; }
h2, .h2 { font-size: clamp(2.1rem, 3.2vw, 3rem); letter-spacing: 0.005em; line-height: 1.2; }
h3, .h3 { font-size: clamp(1.4rem, 1.8vw, 1.75rem); line-height: 1.3; }
h4, .h4 { font-size: 1.15rem; line-height: 1.35; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.lede { font-size: 1.2rem; line-height: 1.7; color: var(--ink-soft); max-width: 60ch; }
.quote-accent { font-family: 'Lora', serif; font-style: italic; }
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: var(--pad-desktop) 0; }
section.tight { padding: 70px 0; }
@media (max-width: 1024px) { section { padding: var(--pad-tablet) 0; } }
@media (max-width: 640px) {
  section { padding: var(--pad-mobile) 0; }
  .container { padding: 0 22px; }
}
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.bg-navy-050 { background: var(--navy-050); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--navy-700); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { transform: translateY(-2px); background: var(--navy); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--gold-600); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Icons ---------- */
.icon {
  width: 24px; height: 24px;
  stroke: var(--navy);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-gold { stroke: var(--gold-600); }
.icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.icon-circle .icon { width: 26px; height: 26px; }
.icon-circle.navy-bg { background: var(--navy); }
.icon-circle.navy-bg .icon { stroke: var(--gold); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px 32px;
  border: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--ink-soft); margin-bottom: 0; line-height: 1.65; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-050);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 24px rgba(5,28,55,0.05); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand-word { font-family: 'Cormorant Garamond', serif; line-height: 1.05; }
.brand-word strong { display: block; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.02em; color: var(--navy); }
.brand-word span { display: block; font-size: 0.65rem; letter-spacing: 0.16em; color: var(--gold-600); font-family: 'Inter', sans-serif; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-call { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; }
.nav-call .icon { width: 18px; height: 18px; stroke: var(--gold-600); }

.menu-toggle {
  display: none;
  background: none; border: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
}
.menu-toggle .icon { width: 26px; height: 26px; }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .nav-inner { padding: 14px 22px; }
  .brand img { height: 40px; }
  .brand-word strong { font-size: 1rem; }
  .brand-word span { font-size: 0.6rem; }
}
@media (max-width: 380px) {
  .brand-word span { display: none; }
}

.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 200;
  padding: 28px 26px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.mobile-menu-top .brand-word strong, .mobile-menu-top .brand-word span { color: var(--white); }
.mobile-menu-close { background: none; border: none; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; }
.mobile-menu-close .icon { width: 26px; height: 26px; stroke: var(--white); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-menu-footer { margin-top: auto; display: flex; flex-direction: column; gap: 14px; }
.mobile-menu-footer a.btn { width: 100%; }
.mobile-menu-footer .nav-call { color: var(--white); }
.mobile-menu-footer .nav-call .icon { stroke: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: 640px;
  overflow: hidden;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 5vw 70px 32px;
  position: relative;
  z-index: 2;
  background: linear-gradient(100deg, var(--white) 62%, rgba(255,255,255,0) 100%);
}
.hero-media { position: relative; min-height: 380px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-copy p.lede { margin-bottom: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 34px; font-size: 0.9rem; color: var(--ink-soft); }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .icon { width: 16px; height: 16px; stroke: var(--gold-600); }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: unset; }
  .hero-copy { padding: 56px 22px 40px; background: var(--white); order: 2; }
  .hero-media { height: 320px; order: 1; }
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--navy-050);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-bar .grid-4 { padding: 44px 0; gap: 24px; }
.stat { display: flex; align-items: flex-start; gap: 16px; }
.stat .icon-circle { margin-bottom: 0; width: 48px; height: 48px; }
.stat .icon-circle .icon { width: 22px; height: 22px; }
.stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; line-height: 1.25; margin-bottom: 2px; color: var(--navy); }
.stat span { font-size: 0.88rem; line-height: 1.45; color: var(--ink-soft); }

/* ---------- Section headers ---------- */
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.82); padding: 90px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand-word strong, .site-footer .brand-word span { color: var(--white); }
.footer-col h4 { color: var(--white); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a, .footer-col li { display: block; margin-bottom: 12px; font-size: 0.94rem; color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--gold); }
.footer-about p { color: rgba(255,255,255,0.7); font-size: 0.94rem; max-width: 32ch; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand-row img { height: 44px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 0.82rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; }

/* ---------- Misc components ---------- */
.divider { height: 1px; background: var(--line); border: none; margin: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { background: var(--white); border: 1px solid var(--line); padding: 8px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 500; }

.photo-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: 70px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 0; max-width: 46ch; }
@media (max-width: 800px) { .cta-band { flex-direction: column; text-align: center; padding: 50px 30px; } }

.pill-nav { display: flex; gap: 10px; flex-wrap: wrap; }
.pill-nav a { padding: 10px 20px; border-radius: 100px; border: 1px solid var(--line); font-size: 0.9rem; font-weight: 600; }
.pill-nav a.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.page-hero {
  padding: 190px 0 90px;
  background: var(--navy-050);
  position: relative;
}
.page-hero .eyebrow { color: var(--gold-600); }

.faq-item { border-bottom: 1px solid var(--line); padding: 26px 0; }
.faq-item summary { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; line-height: 1.4; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--navy); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { flex-shrink: 0; transition: transform 0.25s var(--ease); }
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-item p { margin-top: 16px; color: var(--ink-soft); max-width: 65ch; line-height: 1.7; }

.timeline { display: flex; flex-direction: column; }
.timeline-item { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding-bottom: 44px; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-num { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.15rem; }
.timeline-item::before {
  content: '';
  position: absolute; left: 21px; top: 50px; bottom: 0;
  width: 1px; background: var(--line);
}
.timeline-item:last-child::before { display: none; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 130px; }

.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
