:root {
  --red: #c9202f;
  --ink: #111;
  --cream: #f3efe6;
  --white: #fff;
  --muted: #746f66;
  --line: #d9d1c4;
  --shadow: 0 18px 55px rgba(0, 0, 0, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
}
img { display: block; width: 100%; }
a { color: inherit; }

.topbar {
  background: #0d0d0d;
  color: #fff;
  padding: 13px 24px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 239, 230, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brandLogo {
  width: min(282px, 56vw);
  max-height: 84px;
  object-fit: contain;
  object-position: left center;
}

.navLinks {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.navLinks a {
  text-decoration: none;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 9px;
  padding: 14px 18px;
  font-weight: 900;
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  text-transform: uppercase;
}

.btnPrimary {
  background: var(--red);
  color: #fff;
}

.btnDark {
  background: #111;
  color: #fff;
}

.btnLight {
  background: #fff;
  color: #111;
  border: 1px solid #d6cec2;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
  min-height: 560px;
  display: grid;
  align-items: center;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 30%, rgba(201, 32, 47, .23), transparent 36%),
    linear-gradient(120deg, #0b0b0b 15%, rgba(17, 17, 17, .82) 53%, rgba(17, 17, 17, .34)),
    var(--hero-image, none);
  background-size: cover;
  background-position: center;
}

.hero:after {
  content: "FLORIDA ONLY";
  position: absolute;
  right: -20px;
  bottom: -38px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(72px, 10vw, 124px);
  opacity: .045;
  white-space: nowrap;
}

.heroInner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
  padding: 58px 0;
}

.heroCard,
.panel {
  background: rgba(255, 255, 255, .97);
  color: #111;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.eyebrow {
  margin: 0 0 11px;
  color: #b51f2b;
  font-size: 13px;
  letter-spacing: .18em;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3d9db;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -.045em;
  line-height: .92;
}

h1 {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 950;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 950;
}

h3 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 950;
}

.subtitle {
  margin-top: 14px;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 750;
  max-width: 660px;
  line-height: 1.25;
}

.description,
.copy p {
  color: #5f584f;
  font-size: 16px;
  line-height: 1.65;
}

.hero .description {
  color: #d8d3cb;
  max-width: 630px;
}

.actionsRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.main {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 74px;
}

.section {
  padding: 54px 0;
}

.sectionTitle {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -.045em;
  margin: 0 0 6px;
}

.sectionLead {
  margin: 0 0 26px;
  color: #6e675d;
  max-width: 760px;
  line-height: 1.65;
}

.cardGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.actionCard {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 5px 14px rgba(0,0,0,.035);
  text-decoration: none;
}

.actionIcon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.actionTitle {
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.actionDesc {
  color: #776f65;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 4px;
}

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

.imagePanel {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #ddd;
}

.imagePanel img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
}

.realFlorida {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  background: #111;
  box-shadow: var(--shadow);
}

.realFlorida img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.realFlorida:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.18));
}

.realFloridaCopy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 38px;
}

.realFloridaCopy p {
  color: #e8e1d7;
  line-height: 1.6;
}

.pageHero {
  background: #111;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pageHero:after {
  content: "WE THE PEOPLE";
  position: absolute;
  right: -18px;
  bottom: -30px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(58px, 9vw, 110px);
  opacity: .045;
  white-space: nowrap;
}

.pageHeroInner {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 36px));
  margin: auto;
  padding: 70px 0;
}

.pageHero .description {
  color: #d8d3cb;
  max-width: 720px;
}

.content {
  max-width: 820px;
}

.content p {
  color: #5f584f;
  font-size: 17px;
  line-height: 1.7;
}

.positionList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.positionList li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer {
  background: #0d0d0d;
  color: #fff;
  padding: 34px 20px;
  text-align: center;
}

.footerLogo {
  height: 62px;
  max-width: 280px;
  object-fit: contain;
  margin: auto;
}

.footerLine {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .heroInner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .cardGrid,
  .split {
    grid-template-columns: 1fr;
  }

  .navLinks a:not(.btn) {
    display: none;
  }
}

@media (max-width: 560px) {
  .topbar {
    font-size: 10px;
  }

  .nav {
    width: min(100% - 26px, 1180px);
    min-height: 72px;
  }

  .brandLogo {
    width: min(220px, 52vw);
  }

  .heroInner,
  .pageHeroInner {
    width: min(100% - 26px, 1180px);
    padding: 38px 0;
  }

  h1 {
    font-size: 52px;
  }

  .main {
    width: min(100% - 24px, 1080px);
    padding-top: 36px;
  }

  .heroCard,
  .panel,
  .realFloridaCopy {
    padding: 22px;
  }

  .positionList {
    grid-template-columns: 1fr;
  }
}
