:root{
  --navy:#0f2027;
  --navy2:#203a43;
  --navy3:#2c5364;
  --cream:#f6f1e7;
  --paper:#fbf8f2;
  --ink:#14212a;
  --muted:#51616d;
  --orange:#e67e22;
  --green:#27ae60;
  --line:rgba(20,33,42,.12);
  --shadow: 0 12px 34px rgba(0,0,0,.14);
  --radius: 16px;
  --radius2: 22px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family:var(--font); color:var(--ink); background: #ececec; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{ max-width:var(--max); margin:0 auto; padding:0 18px; }

.site-header{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 45%, var(--navy3) 100%);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{ display:flex; gap:12px; align-items:center; }
.brand-mark{
  width:44px; height:44px; display:grid; place-items:center;
  border-radius:12px;
  background: rgba(255,255,255,.14);
  font-weight:800;
}
.brand-text strong{ display:block; font-size:15px; letter-spacing:.2px; }
.brand-text span{ display:block; font-size:13px; opacity:.92; }

.nav-toggle{
  display:none;
  background: rgba(255,255,255,.14);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  padding:10px 12px;
  font-weight:700;
}
.nav-menu{ display:flex; gap:14px; align-items:center; }
.nav-menu a{
  padding:10px 10px;
  border-radius:12px;
  font-weight:650;
  opacity:.95;
}
.nav-menu a:hover{ background: rgba(255,255,255,.10); text-decoration:none; }

.hero{
  position:relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 45%, var(--navy3) 100%);
  color:#fff;
  padding:40px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:22px;
  align-items:start;
}
.hero h1{ margin:10px 0 0; font-size: clamp(28px, 3.3vw, 46px); line-height:1.1; }
.hero-sub{ margin:14px 0 18px; color: rgba(255,255,255,.92); font-size:18px; line-height:1.5; max-width: 56ch; }

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  font-weight:800;
  letter-spacing:.3px;
  font-size:12px;
  text-transform:uppercase;
}
.pill.green{ background: rgba(39,174,96,.18); border-color: rgba(39,174,96,.35); }
.pill.orange{ background: rgba(230,126,34,.18); border-color: rgba(230,126,34,.35); }

.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin: 8px 0 12px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  font-weight:800;
  border:1px solid transparent;
  text-decoration:none !important;
}
.btn.primary{ background: var(--orange); color:#1b1207; }
.btn.primary:hover{ filter: brightness(1.02); }
.btn.ghost{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  color:#fff;
}

.hero-meta{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:12px;
}
.meta-card{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  padding:12px;
}
.meta-title{ font-size:12px; text-transform:uppercase; letter-spacing:.3px; opacity:.9; margin-bottom:6px; }
.meta-card a{ color:#fff; }

.hero-panel{
  background: linear-gradient(180deg, rgba(246,241,231,.98), rgba(251,248,242,.96));
  color: var(--ink);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.18);
  overflow:hidden;
}
.panel-top{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  padding:14px 14px 0;
}
.badge{
  font-weight:800;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
}
.badge.orange{ border-color: rgba(230,126,34,.45); }
.badge.green{ border-color: rgba(39,174,96,.45); }

.panel-body{ padding: 14px 16px 18px; }
.panel-body h2{ margin:8px 0 8px; font-size:20px; }
.panel-body p{ margin:0 0 10px; color: var(--muted); }

.checklist{ margin:0; padding:0; list-style:none; }
.checklist li{
  padding-left:26px;
  position:relative;
  margin:8px 0;
  color: var(--ink);
}
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  width:18px; height:18px;
  display:grid; place-items:center;
  border-radius:6px;
  background: rgba(39,174,96,.14);
  border:1px solid rgba(39,174,96,.35);
  font-weight:900;
  color: var(--green);
}

.wave{
  height: 34px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(236,236,236,1) 100%),
    radial-gradient(1200px 70px at 50% -10px, rgba(255,255,255,.25), rgba(255,255,255,0));
}

.section{
  background:#ececec;
  padding: 40px 0;
}
.section.alt{
  background: linear-gradient(180deg, #ececec, #f3efe7);
}
.section-title{
  margin: 0 0 18px;
  font-size: 28px;
}
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color: var(--muted); line-height:1.5; }

.why-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.why-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.why-item h3{ margin:0 0 8px; }
.why-item p{ margin:0; color:var(--muted); line-height:1.55; }

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}

.contact-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin-top:14px;
}
.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
}
.contact-card .label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.3px;
  color: var(--muted);
  margin-bottom:6px;
}

.form{
  background: var(--paper);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.form h3{ margin: 6px 0 12px; }
label{ display:block; font-weight:750; margin: 10px 0; }
input, select, textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid rgba(20,33,42,.18);
  background:#fff;
  font: inherit;
}
textarea{ resize: vertical; }
.fineprint{ margin:10px 0 0; color: var(--muted); font-size: 12px; line-height:1.4; }

.footer{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 45%, var(--navy3) 100%);
  color:#fff;
  padding: 18px 0;
}
.footer-inner{ display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; }
.footer-links{ display:flex; gap:14px; flex-wrap:wrap; }
.footer a{ color:#fff; opacity:.95; }

.page-title{ margin: 10px 0 6px; font-size: 40px; }
.page-sub{ margin: 0 0 18px; color: var(--muted); font-size: 16px; max-width: 70ch; }
.quote{
  margin: 14px 0 18px;
  padding: 14px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-style: italic;
  color: var(--muted);
}

.program-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.program-card{
  display:block;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  text-decoration:none !important;
}
.program-card h2{ margin:0 0 8px; }
.program-card p{ margin:0 0 10px; color: var(--muted); line-height:1.55; }
.program-card .link{ font-weight:850; }
.program-card.orange{ border-top: 6px solid rgba(230,126,34,.95); }
.program-card.green{ border-top: 6px solid rgba(39,174,96,.95); }

.cta-banner{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  background: var(--paper);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding: 16px;
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.box{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px;
}
.box h2{ margin: 0 0 10px; }
.bullets{ margin:0; padding-left: 18px; }
.bullets li{ margin: 10px 0; color: var(--ink); line-height:1.55; }
.mini-cta{ display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-meta{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .program-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .nav-toggle{ display:inline-flex; }
  .nav-menu{
    display:none;
    position:absolute;
    right:18px;
    top:64px;
    background: rgba(15,32,39,.98);
    border:1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    padding:10px;
    flex-direction:column;
    min-width: 220px;
  }
  .nav-menu a{ display:block; }
  .nav-menu.open{ display:flex; }
}

/* ---- Section heading helper ---- */
.section-head{ margin-bottom: 14px; }
.section-sub{ margin: -8px 0 0; color: var(--muted); max-width: 80ch; line-height:1.5; }

/* ---- Header CTA link ---- */
.nav-cta{
  background: rgba(230,126,34,.95);
  color:#1b1207 !important;
  font-weight:900 !important;
  border-radius: 12px;
}
.nav-cta:hover{ filter: brightness(1.02); text-decoration:none !important; }

/* ---- Pricing ---- */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top: 14px;
}
.price-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.07);
  position:relative;
  overflow:hidden;
}
.price-card.featured{
  border-color: rgba(230,126,34,.55);
  box-shadow: 0 16px 30px rgba(0,0,0,.10);
}
.ribbon{
  position:absolute;
  right:-40px;
  top:14px;
  transform: rotate(14deg);
  background: rgba(230,126,34,.95);
  color:#1b1207;
  font-weight:950;
  padding:8px 54px;
  border-radius: 999px;
}
.price-top h3{ margin:0 0 6px; }
.price{
  margin: 0 0 6px;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -.5px;
}
.price span{
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  margin-left: 6px;
}
.muted{ color: var(--muted); margin: 0; line-height:1.5; }
.price-list{ margin: 12px 0 14px; padding-left: 18px; }
.price-list li{ margin: 8px 0; line-height:1.5; }

.pricing-note{
  margin-top: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 14px 16px;
}

/* ---- Flyers page ---- */
.flyers-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top: 14px;
}
.flyer-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,.07);
}
.flyer-thumb{
  background: #f1f1f1;
  padding: 12px;
}
.flyer-thumb img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 14px;
  border:1px solid rgba(20,33,42,.12);
}
.flyer-info{ padding: 14px 16px 16px; }
.flyer-info h2{ margin: 0 0 10px; font-size: 18px; }
.flyer-actions{ display:flex; gap:10px; flex-wrap:wrap; }

@media (max-width: 980px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .flyers-grid{ grid-template-columns: 1fr; }
}