
:root {
  --navy: #082a55;
  --navy-2: #0d3b73;
  --teal: #087f86;
  --gold: #c9972d;
  --gold-soft: #e6c16b;
  --ink: #17233f;
  --muted: #5d6b80;
  --cream: #fbf8ef;
  --white: #ffffff;
  --line: rgba(201,151,45,.28);
  --shadow: 0 18px 45px rgba(8,42,85,.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #fbf8ef 100%);
  line-height: 1.6;
}

a { color: inherit; }

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.92);
  font-size: 14px;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(8,42,85,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #fff 0 22%, #e9f4f6 22% 42%, var(--navy) 43% 100%);
  border: 3px solid var(--gold);
  position: relative;
  box-shadow: 0 6px 18px rgba(8,42,85,.18);
}

.logo-mark::after {
  content: "✦";
  color: var(--gold);
  font-size: 24px;
  position: absolute;
  inset: 10px 0 0 0;
  text-align: center;
}

.brand-title {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.05;
}

.brand-subtitle {
  display: block;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: .17em;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 650;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav a:hover,
.nav a.active {
  background: rgba(8,42,85,.08);
  color: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid transparent;
  transition: .22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  box-shadow: 0 12px 28px rgba(8,42,85,.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(8,42,85,.28);
}

.btn-outline {
  color: var(--navy);
  border-color: rgba(8,42,85,.2);
  background: rgba(255,255,255,.75);
}

.hero {
  overflow: hidden;
  position: relative;
  padding: 76px 0 70px;
  background:
    radial-gradient(circle at 83% 28%, rgba(230,193,107,.32), transparent 30%),
    linear-gradient(135deg, #fff 0%, #fbf8ef 52%, #eff8f8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 95px;
  background: linear-gradient(135deg, var(--navy), #08396d 52%, var(--teal));
  clip-path: polygon(0 58%, 18% 72%, 38% 58%, 58% 70%, 78% 50%, 100% 62%, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
  font-size: 13px;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.12;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  margin: 12px 0 18px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin: 0 0 16px;
}

h3 {
  font-size: 23px;
  margin: 0 0 8px;
}

.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-card {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(201,151,45,.28);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  border-radius: 22px;
  display: block;
}

.ribbon {
  margin-top: -28px;
  position: relative;
  z-index: 3;
}

.ribbon-inner {
  background: linear-gradient(135deg, var(--navy), #052449);
  color: white;
  border: 1px solid rgba(230,193,107,.58);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px 24px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 23px;
  color: var(--gold-soft);
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: white;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(8,42,85,.08);
  border-top: 4px solid var(--gold);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(8,42,85,.08);
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--gold-soft);
  font-size: 26px;
  margin-bottom: 16px;
}

.process {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 70px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  border: 3px solid var(--gold);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.image-frame {
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.cta {
  background:
    linear-gradient(rgba(8,42,85,.92), rgba(8,42,85,.92)),
    url('assets/flyer-cover.jpeg') center/cover;
  color: white;
  padding: 76px 0;
  text-align: center;
}

.cta h2 { color: white; }
.cta p { color: rgba(255,255,255,.86); max-width: 760px; margin: 0 auto 24px; }

.contact-box {
  background: white;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8,42,85,.08);
}

.contact-line {
  padding: 14px 0;
  border-bottom: 1px solid rgba(8,42,85,.08);
}

.form {
  display: grid;
  gap: 14px;
}

input, textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(8,42,85,.18);
  border-radius: 14px;
  font: inherit;
}

textarea { min-height: 140px; }

footer {
  background: #061f42;
  color: rgba(255,255,255,.78);
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 28px;
}

footer h3 { color: white; font-size: 20px; }
footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.disclaimer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}

@media (max-width: 880px) {
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .header-inner { align-items: flex-start; flex-direction: column; }
  .nav { gap: 2px; }
  .hero { padding-top: 46px; }
}
