:root {
  --navy: #17324d;
  --navy-deep: #0e2539;
  --teal: #006b70;
  --teal-dark: #00565a;
  --coral: #d95d4f;
  --gold: #f2c14e;
  --cream: #fff9f0;
  --white: #ffffff;
  --ink: #20313f;
  --muted: #5d6c76;
  --line: #d9e0df;
  --shadow: 0 18px 45px rgba(23, 50, 77, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
a { color: var(--teal-dark); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 4px solid rgba(242, 193, 78, 0.75);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }
.topline {
  padding: 8px 20px;
  color: var(--white);
  background: var(--navy-deep);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .035em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 240, 0.97);
  border-bottom: 1px solid rgba(23, 50, 77, .12);
  backdrop-filter: blur(12px);
}
.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 84px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; width: 300px; flex: 0 0 auto; }
.brand img { display: block; width: 100%; height: auto; object-fit: contain; }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
}
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { color: var(--navy); text-decoration: none; font-weight: 750; font-size: 16px; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--teal); }

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.button:hover { background: var(--teal-dark); transform: translateY(-1px); }
.button--official { color: var(--navy); background: #ee7568; box-shadow: 0 8px 22px rgba(217, 93, 79, .22); }
.button--official:hover { color: var(--white); background: #a93f35; }
.button--outline { color: var(--navy); background: transparent; border-color: var(--navy); }
.button--outline:hover { color: var(--white); background: var(--navy); }
.button--small { min-height: 42px; padding: 9px 18px; font-size: 15px; }
.arrow { font-size: 1.2em; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.section--white { background: var(--white); }
.section--navy { color: var(--white); background: var(--navy); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section--navy .eyebrow { color: var(--gold); }
h1, h2, h3 { color: var(--navy); line-height: 1.08; letter-spacing: -.035em; }
.section--navy h2, .section--navy h3 { color: var(--white); }
h1 { margin: 0 0 24px; font-size: clamp(46px, 6vw, 78px); max-width: 780px; }
h2 { margin: 0 0 20px; font-size: clamp(34px, 4vw, 52px); }
h3 { margin: 0 0 10px; font-size: 26px; }
.lede { max-width: 720px; font-size: clamp(20px, 2vw, 24px); color: #435561; }
.section--navy .lede { color: #dce8ed; }
.section-heading { max-width: 790px; margin-bottom: 42px; }

.hero { padding: 76px 0 62px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.17fr .83fr; gap: 56px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 22px; }
.official-note { max-width: 620px; margin: 0; color: var(--muted); font-size: 14px; }
.hero-panel {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}
.hero-panel::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -26px;
  top: -32px;
  border-radius: 50%;
  background: var(--gold);
  z-index: -1;
}
.hero-panel h2 { color: var(--white); font-size: 31px; }
.start-list { display: grid; gap: 12px; margin-top: 24px; }
.start-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,.07);
}
.start-item:hover { background: rgba(255,255,255,.13); }
.start-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}
.start-item strong { display: block; font-size: 18px; }
.start-item span:last-child { color: #d8e5e9; font-size: 14px; }

.trust-strip { background: var(--teal); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 21px 24px; text-align: center; font-weight: 800; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.3); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(23, 50, 77, .055);
}
.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 14px;
  color: var(--navy);
  background: rgba(242, 193, 78, .45);
  font-size: 25px;
  font-weight: 900;
}
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.audience-card { position: relative; padding: 40px; overflow: hidden; }
.audience-card:first-child { border-top: 8px solid var(--coral); }
.audience-card:last-child { border-top: 8px solid var(--teal); }
.audience-card ul { padding-left: 22px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: steps; }
.step { position: relative; padding-left: 68px; }
.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}

.request-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 56px; align-items: start; }
#request { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,.12); }
.request-points { padding: 0; list-style: none; }
.request-points li { margin: 14px 0; padding-left: 31px; position: relative; }
.request-points li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.request-form { padding: 34px; border-radius: 26px; color: var(--ink); background: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
label, legend { color: var(--navy); font-size: 15px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1.5px solid #a9b6bc;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}
textarea { min-height: 126px; resize: vertical; }
fieldset { margin: 0; padding: 0; border: 0; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-top: 8px; }
.check { display: flex; align-items: flex-start; gap: 9px; font-weight: 500; }
.check input { width: 20px; min-height: 20px; margin-top: 3px; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.form-status { display: none; margin: 18px 0 0; padding: 15px; border-radius: 10px; background: #e5f3ef; color: #174d45; font-weight: 700; }
.form-status.is-visible { display: block; }

.page-hero { padding: 72px 0; background: var(--white); }
.origin-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.origin-mark {
  display: grid;
  min-height: 340px;
  padding: 48px;
  place-items: center;
  border-radius: 30px;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.origin-mark img { width: 430px; }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.founder-card { display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: start; }
.portrait-placeholder {
  display: grid;
  width: 120px;
  height: 140px;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--teal);
  font-size: 42px;
  font-weight: 900;
}
.placeholder-label { color: var(--coral); font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value { padding: 24px; border-left: 5px solid var(--gold); background: rgba(255,255,255,.08); border-radius: 12px; }
.value h3 { font-size: 21px; }

.site-footer { padding: 48px 0 24px; color: #dbe5ea; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 42px; }
.footer-logo { width: 250px; filter: brightness(0) invert(1); opacity: .95; }
.site-footer h2 { color: var(--white); font-size: 18px; letter-spacing: 0; }
.site-footer a { color: var(--white); }
.footer-links { display: grid; gap: 7px; }
.disclaimer { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); font-size: 13px; color: #b9c8cf; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; inset: 84px 0 auto; padding: 24px; flex-direction: column; align-items: stretch; background: var(--cream); border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .hero-grid, .request-grid, .origin-grid { grid-template-columns: 1fr; }
  .cards, .steps { grid-template-columns: 1fr; }
  .audience-grid, .founder-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  .section { padding: 66px 0; }
  .brand { width: 235px; }
  .hero { padding-top: 54px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; padding-inline: 16px; text-align: center; white-space: normal; }
  .topline { padding-inline: 12px; line-height: 1.4; }
  .eyebrow { line-height: 1.45; }
  .hero-panel, .request-form, .audience-card { padding: 25px; }
  .trust-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.3); }
  .field--full { grid-column: auto; }
  .checks, .values { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; }
  .portrait-placeholder { width: 100%; height: 160px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Editorial civic direction: intentionally avoids generic app-card styling. */
:root {
  --radius: 4px;
  --shadow: none;
  --paper-line: rgba(23, 50, 77, .035);
}

body {
  background-color: var(--cream);
  background-image:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), var(--paper-line) calc(100% - 1px)),
    linear-gradient(var(--paper-line) 1px, transparent 1px);
  background-size: 76px 76px;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.045em;
}

h3 { letter-spacing: -.02em; }
.eyebrow { letter-spacing: .16em; }

.topline {
  padding-block: 9px;
  background: var(--teal);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  background: rgba(255, 249, 240, .98);
  border-bottom: 2px solid var(--navy);
  backdrop-filter: none;
}

.site-nav { gap: 30px; }
.site-nav a:not(.button) { position: relative; padding-block: 8px; }
.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 3px;
  background: var(--coral);
  transition: right .18s ease;
}
.site-nav a:not(.button):hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }

.button {
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 4px;
  box-shadow: none;
  font-size: 15px;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--navy); }
.button--official { background: var(--coral); box-shadow: 5px 5px 0 var(--gold); }
.button--official:hover { color: var(--navy); background: #f08073; box-shadow: 7px 7px 0 var(--gold); }
.button--outline { background: var(--cream); }

.hero {
  position: relative;
  padding: 92px 0 88px;
  border-bottom: 2px solid var(--navy);
}
.hero::before {
  content: "BROWARD  •  SOUTH FLORIDA";
  position: absolute;
  right: 26px;
  bottom: 14px;
  color: rgba(23, 50, 77, .34);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}
.hero-grid { grid-template-columns: 1.13fr .87fr; gap: 72px; }
.hero h1 { font-size: clamp(54px, 6.2vw, 88px); max-width: 740px; }
.hero .lede { max-width: 690px; }
.local-note {
  max-width: 640px;
  margin: 26px 0 0;
  padding: 15px 0 15px 20px;
  border-left: 5px solid var(--gold);
  color: var(--muted);
  font-size: 15px;
}
.local-note span { color: var(--navy); font-weight: 850; }
.hero-actions { margin-top: 34px; }

.hero-panel {
  padding: 0;
  border: 3px solid var(--navy);
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 14px 14px 0 var(--gold);
}
.hero-panel::before { display: none; }
.hero-panel h2 {
  margin: 0;
  padding: 27px 30px;
  border-bottom: 3px solid var(--navy);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
}
.desk-label {
  display: flex;
  margin: 0;
  padding: 11px 14px;
  justify-content: space-between;
  color: var(--white);
  background: var(--navy);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.start-list { gap: 0; margin: 0; }
.start-item {
  grid-template-columns: 47px 1fr;
  padding: 22px 26px;
  border: 0;
  border-radius: 0;
  color: var(--navy);
  background: var(--white);
}
.start-item + .start-item { border-top: 1px solid var(--line); }
.start-item:hover { background: #f5f0e7; }
.start-number {
  width: 34px;
  height: 34px;
  border: 2px solid var(--navy);
  border-radius: 2px;
  color: var(--navy);
  background: transparent;
  font-family: Georgia, serif;
}
.start-item strong { color: var(--navy); }
.start-item span:last-child { color: var(--muted); }

.trust-strip { color: var(--navy); background: var(--cream); border-bottom: 2px solid var(--navy); }
.trust-item { position: relative; padding: 24px 28px 24px 54px; text-align: left; font-family: Georgia, serif; }
.trust-item::before { content: ""; position: absolute; left: 27px; top: 32px; width: 10px; height: 10px; background: var(--teal); }
.trust-item + .trust-item { border-left: 1px solid var(--navy); }

.section { padding: 104px 0; }
.section--white { background: rgba(255,255,255,.84); }
.section-heading { position: relative; padding-left: 25px; border-left: 2px solid var(--coral); }

.cards { gap: 0; border: 2px solid var(--navy); }
.card {
  padding: 34px;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,.96);
  box-shadow: none;
}
.cards > .card + .card { border-left: 1px solid var(--navy); }
.card-icon {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 5px solid var(--gold);
  border-radius: 0;
  background: transparent;
  font-family: Georgia, serif;
  font-size: 32px;
}

.audience-grid { gap: 34px; }
.audience-card {
  min-height: 430px;
  padding: 44px;
  border: 2px solid var(--navy);
  background: var(--cream);
}
.audience-card:first-child { border-top: 12px solid var(--coral); transform: translateY(22px); }
.audience-card:last-child { border-top: 12px solid var(--teal); }
.audience-card h3 { max-width: 470px; font-family: Georgia, serif; font-size: 35px; }

.section--navy {
  background-color: var(--navy);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 16px);
}
.steps { gap: 0; border-top: 1px solid rgba(255,255,255,.45); border-bottom: 1px solid rgba(255,255,255,.45); }
.step { min-height: 240px; padding: 34px 30px 34px 82px; }
.step + .step { border-left: 1px solid rgba(255,255,255,.35); }
.step::before {
  left: 24px;
  top: 36px;
  width: 38px;
  height: 38px;
  border-radius: 2px;
  background: var(--gold);
  font-family: Georgia, serif;
}

#request { background-color: var(--navy-deep); }
.request-form { border-radius: 2px; border-top: 10px solid var(--coral); box-shadow: 12px 12px 0 rgba(242,193,78,.85); }
input, select, textarea { border-radius: 2px; background: #fffefa; }
.form-status { border-radius: 2px; }

.page-hero { padding: 96px 0; border-bottom: 2px solid var(--navy); background: rgba(255,255,255,.88); }
.page-hero h1 { max-width: 900px; }
.origin-mark { border: 2px solid var(--navy); border-radius: 2px; background: var(--white); box-shadow: 14px 14px 0 var(--gold); }
.founder-grid { gap: 34px; }
.founder-card { border: 2px solid var(--navy); }
.portrait-placeholder { border-radius: 2px; box-shadow: 7px 7px 0 var(--gold); }
.value { border-left: 5px solid var(--gold); border-radius: 0; }

.site-footer { border-top: 8px solid var(--teal); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .site-nav { border-bottom: 2px solid var(--navy); }
  .cards { border: 0; gap: 18px; }
  .cards > .card { border: 2px solid var(--navy); }
  .cards > .card + .card { border-left: 2px solid var(--navy); }
  .audience-card:first-child { transform: none; }
  .steps { border: 0; }
  .step { border-top: 1px solid rgba(255,255,255,.35); }
  .step + .step { border-left: 0; }
}

@media (max-width: 620px) {
  body { background-size: 48px 48px; }
  .hero { padding-block: 64px 76px; }
  .hero::before { display: none; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-panel { margin-right: 10px; box-shadow: 9px 9px 0 var(--gold); }
  .trust-grid { display: block; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--navy); }
  .section { padding-block: 76px; }
  .section-heading { padding-left: 16px; }
  .audience-card { min-height: 0; padding: 30px; }
  .audience-card h3 { font-size: 30px; }
  .request-form { margin-right: 8px; box-shadow: 8px 8px 0 var(--gold); }
}
