@import url('https://cdnjs.cloudflare.com/ajax/libs/tabler-icons/2.47.0/iconfont/tabler-icons.min.css');

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

:root {
  --navy:   #042C53;
  --blue:   #0C447C;
  --mid:    #185FA5;
  --light:  #378ADD;
  --pale:   #B5D4F4;
  --wash:   #E6F1FB;
  --cream:  #F1EFE8;
  --ink:    #2C2C2A;
  --muted:  #5F5E5A;
  --hint:   #888780;
  --rule:   #D3D1C7;
  --white:  #ffffff;
  --gold:   #EF9F27;
  --teal-l: #9FE1CB;
  --teal-d: #085041;
  --coral:  #F0997B;
  --coral-d:#4A1B0C;
}

html {
  scroll-behavior: smooth;
  color-scheme: light only;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

.serif { font-family: Georgia, 'Times New Roman', serif; }
.wrap  { max-width: 1100px; margin: 0 auto; background: var(--white); min-height: 100vh; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 60px;
  background: var(--white);
  border-bottom: 0.5px solid var(--rule);
  gap: 16px;
  overflow: hidden;
}
.nav-logo {
  font-family: Georgia, serif; font-size: 18px;
  color: var(--navy); font-weight: 600; text-decoration: none;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
.nav-links a {
  font-size: 14px; color: var(--muted); text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--mid); }
.nav-links a.active { font-weight: 500; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--mid); color: var(--white);
  border: none; border-radius: 6px;
  padding: 11px 22px; font-size: 14px; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn:hover { background: var(--blue); }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--blue);
  border: 1px solid var(--pale); border-radius: 6px;
  padding: 10px 22px; font-size: 14px; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--wash); border-color: var(--light); }

/* ── SECTIONS ── */
section { padding: 64px 48px; }
section.alt { background: var(--cream); }
section.wash { background: var(--wash); }

.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-family: Georgia, serif; font-size: 26px; color: var(--navy); font-weight: 600; margin-bottom: 8px; }
.section-head p { font-size: 14px; color: var(--muted); }
.eyebrow { font-size: 12px; color: var(--mid); font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 10px; }

h1 { font-family: Georgia, serif; font-size: 40px; line-height: 1.2; color: var(--navy); font-weight: 600; }
h2 { font-family: Georgia, serif; font-size: 26px; color: var(--navy); font-weight: 600; }
h3 { font-size: 16px; font-weight: 600; color: var(--ink); }

/* ── CARDS ── */
.card {
  border: 0.5px solid var(--rule); border-radius: 10px; padding: 24px;
  transition: border-color 0.15s, transform 0.15s;
}
.card:hover { border-color: var(--pale); transform: translateY(-2px); }

/* ── GRID ── */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

/* ── FORM ── */
input, textarea, select {
  width: 100%; padding: 10px 14px; font-size: 14px;
  border: 0.5px solid var(--pale); border-radius: 6px;
  background: var(--white); color: var(--ink);
  font-family: inherit;
}
input:focus, textarea:focus { outline: none; border-color: var(--mid); }
textarea { resize: vertical; min-height: 100px; }
label { font-size: 13px; font-weight: 500; color: var(--ink); display: block; margin-bottom: 5px; }
.field { margin-bottom: 14px; }

/* ── STARS ── */
.stars { color: var(--gold); font-size: 13px; margin-bottom: 8px; }

/* ── FOOTER ── */
footer {
  padding: 24px 48px;
  border-top: 0.5px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--hint); flex-wrap: wrap; gap: 10px;
}
footer a { color: var(--mid); text-decoration: none; }

/* ── JOURNEY ── */
.journey-row { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; gap: 0; }
.step { flex: 1; max-width: 160px; text-align: center; min-width: 100px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--mid); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  font-weight: 600; margin: 0 auto 10px;
}
.step-title { font-size: 13px; font-weight: 600; color: var(--ink); }
.step-desc { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.4; }
.connector { flex: 0.4; height: 1px; background: var(--rule); margin-top: 20px; min-width: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  nav { padding: 0 20px; }
  section { padding: 48px 20px; }
  h1 { font-size: 28px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  footer { padding: 20px; }
  .connector { display: none; }
  .journey-row { gap: 24px; }
}
/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 4px; color: var(--ink);
}
.nav-hamburger i { font-size: 24px; }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 0.5px solid var(--rule);
  padding: 12px 20px 16px;
  gap: 0;
}
.nav-mobile a {
  display: block; padding: 12px 0;
  font-size: 15px; color: var(--ink); text-decoration: none;
  border-bottom: 0.5px solid var(--rule);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.active { color: var(--mid); font-weight: 500; }
.nav-mobile .btn-mobile {
  display: block; text-align: center; margin-top: 12px;
  background: var(--mid); color: var(--white);
  padding: 12px; border-radius: 6px; font-size: 15px;
  font-weight: 500; text-decoration: none;
}
.nav-mobile.open { display: flex; }

@media (max-width: 640px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  nav .btn { display: none; }
  .nav-hamburger { display: block; }
}
