:root {
  --black: #0b0f0d;
  --ink: #111611;
  --forest: #17261d;
  --olive: #2f3d2e;
  --iron: #2b2f2c;
  --tan: #c2a46d;
  --copper: #a67c3d;
  --paper: #f4f1ea;
  --paper-2: #e8e1d1;
  --muted: #b8b8b0;
  --soft: #fffaf0;
  --line: rgba(244, 241, 234, 0.14);
  --dark-line: rgba(11, 15, 13, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--tan);
  color: var(--black);
  padding: 10px 14px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
}

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

.narrow {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 13, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(194, 164, 109, 0.18);
}

.header-inner {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
  max-width: 100%;
  flex: 1 1 auto;
  overflow: hidden;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(194, 164, 109, 0.45);
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  text-decoration: none;
  color: rgba(244, 241, 234, 0.82);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 9px;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus {
  background: rgba(244, 241, 234, 0.08);
  color: var(--paper);
}

.nav-cta {
  background: var(--tan) !important;
  color: var(--black) !important;
  margin-left: 6px;
}

.nav-toggle {
  display: inline-flex;
  border: 1px solid rgba(244, 241, 234, 0.24);
  background: transparent;
  color: var(--paper);
  border-radius: 6px;
  padding: 9px 11px;
  font-weight: 800;
  flex: 0 0 auto;
  margin-left: auto;
}

@media (min-width: 1051px) {
  .nav-toggle {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(11, 15, 13, 0.88), rgba(11, 15, 13, 0.62) 50%, rgba(11, 15, 13, 0.18)),
    linear-gradient(0deg, rgba(11, 15, 13, 0.98), rgba(11, 15, 13, 0) 44%),
    url("../images/hero-field.png") center / cover no-repeat;
}

.page-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(11, 15, 13, 0.9), rgba(11, 15, 13, 0.62)),
    url("../images/hero-field.png") center / cover no-repeat;
}

.page-hero.service-bg {
  background:
    linear-gradient(90deg, rgba(11, 15, 13, 0.88), rgba(11, 15, 13, 0.6)),
    url("../images/trail.png") center / cover no-repeat;
}

.page-hero.area-bg,
.page-hero.contact-bg {
  background:
    linear-gradient(90deg, rgba(11, 15, 13, 0.88), rgba(11, 15, 13, 0.58)),
    url("../images/service-area.png") center / cover no-repeat;
}

.page-hero.compact {
  min-height: 340px;
}

.page-hero.compact .page-hero-inner {
  padding: 72px 0 42px;
}

.page-hero.compact h1 {
  font-size: clamp(38px, 6vw, 74px);
}

.page-hero-inner {
  padding: 96px 0 56px;
}

.page-hero p {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.62;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(244, 241, 234, 0.72);
  font-size: 14px;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--tan);
  font-weight: 800;
}

.hero-inner {
  padding: 112px 0 64px;
}

.kicker {
  color: var(--tan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 980px;
  margin: 0 0 22px;
  font-size: clamp(44px, 8vw, 94px);
  line-height: 0.92;
  font-weight: 950;
  text-wrap: balance;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.02;
  font-weight: 900;
}

h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 850;
}

p {
  margin: 0 0 18px;
  color: rgba(244, 241, 234, 0.84);
}

.lead {
  max-width: 840px;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.45;
  color: rgba(244, 241, 234, 0.94);
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 820px;
  color: rgba(244, 241, 234, 0.82);
  font-size: 18px;
  line-height: 1.68;
  overflow-wrap: break-word;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 2px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--tan);
  color: var(--black);
  border-color: #e0c98f;
}

.btn.dark {
  background: var(--forest);
  color: var(--paper);
  border-color: rgba(194, 164, 109, 0.36);
}

.btn.light {
  border-color: rgba(244, 241, 234, 0.42);
  background: rgba(244, 241, 234, 0.08);
  color: var(--paper);
  backdrop-filter: blur(10px);
}

.btn.outline {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}

.form-panel .btn.outline {
  border-color: rgba(244, 241, 234, 0.42);
  color: var(--paper);
}

.fact-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.fact-card {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(244, 241, 234, 0.17);
  background: rgba(244, 241, 234, 0.08);
  border-radius: 8px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.fact-card strong {
  font-size: 24px;
}

.fact-card span {
  color: rgba(244, 241, 234, 0.72);
  font-size: 14px;
}

.contact-strip {
  border-top: 1px solid rgba(194, 164, 109, 0.22);
  border-bottom: 1px solid rgba(194, 164, 109, 0.22);
  background: #0f1812;
}

.strip-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.strip-inner p {
  margin: 0;
  color: rgba(244, 241, 234, 0.82);
}

.strip-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid rgba(244, 241, 234, 0.18);
  background: rgba(244, 241, 234, 0.1);
  border-radius: 6px;
  padding: 9px 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.social-inline {
  display: contents;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(244, 241, 234, 0.24);
  background: rgba(244, 241, 234, 0.09);
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.social-link::after,
.page-menu a::after,
.related-grid a::after {
  content: ">";
  margin-left: 8px;
  color: var(--tan);
}

.section {
  padding: 86px 0;
}

.section.light {
  background: var(--paper);
  color: var(--ink);
}

.section.sage {
  background: #dfe4d8;
  color: var(--ink);
}

.section.deep {
  background: var(--forest);
}

.section.iron {
  background: var(--iron);
}

.section.light p,
.section.sage p {
  color: #354037;
}

.section-head {
  max-width: 850px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.page-menu {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 0;
}

.page-menu a {
  text-decoration: none;
  border: 1px solid rgba(244, 241, 234, 0.16);
  background: rgba(244, 241, 234, 0.07);
  border-radius: 6px;
  padding: 9px 12px;
  color: rgba(244, 241, 234, 0.82);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.section.light .page-menu a,
.section.sage .page-menu a {
  border-color: var(--dark-line);
  color: var(--forest);
  background: var(--soft);
}

.section-head p {
  font-size: 18px;
  line-height: 1.65;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

#serviceGrid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.decision-card {
  display: grid;
  gap: 12px;
  min-height: 220px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  padding: 24px;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(11, 15, 13, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.decision-card:hover,
.decision-card:focus {
  transform: translateY(-2px);
  border-color: rgba(115, 81, 27, 0.45);
  box-shadow: 0 22px 52px rgba(11, 15, 13, 0.12);
}

.decision-card span {
  color: #73511b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-card strong {
  font-size: 24px;
  line-height: 1.12;
}

.decision-card small {
  color: #465248;
  font-size: 15px;
  line-height: 1.55;
}

.panel,
.mini-panel,
.price-card,
.tier-card {
  border: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.07);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.link-panel {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.link-panel .btn,
.link-panel .text-link {
  margin-top: auto;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-band article {
  border-left: 4px solid var(--tan);
}

.split-reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.section.light .panel,
.section.light .mini-panel,
.section.light .price-card,
.section.light .tier-card,
.section.sage .panel,
.section.sage .mini-panel,
.section.sage .price-card,
.section.sage .tier-card {
  background: var(--soft);
  border-color: var(--dark-line);
  box-shadow: 0 18px 44px rgba(11, 15, 13, 0.07);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card .text-link,
.service-card .service-action {
  margin-top: auto;
}

.service-card .service-action {
  width: fit-content;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 9px;
}

.clean-list li {
  position: relative;
  padding-left: 20px;
  color: inherit;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tan);
}

.compact li {
  color: rgba(244, 241, 234, 0.78);
  font-size: 14px;
}

.section.light .compact li,
.section.sage .compact li {
  color: #465248;
}

.text-link {
  color: var(--tan);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.section.light .text-link,
.section.sage .text-link {
  color: #73511b;
}

.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 50px;
}

.photo-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--black);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.property-list {
  columns: 2;
  column-gap: 34px;
  margin: 26px 0 0;
  padding-left: 19px;
}

.property-list li {
  margin-bottom: 9px;
}

.price-card {
  border-color: rgba(194, 164, 109, 0.36);
  position: relative;
  overflow: hidden;
}

.price-card::before,
.tier-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--tan);
}

.price-card strong,
.tier-card strong {
  display: block;
  margin: 12px 0;
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
}

.tier-card {
  position: relative;
  padding-top: 30px;
}

.tier-card ul {
  padding-left: 19px;
  margin: 18px 0;
}

.muted {
  color: rgba(244, 241, 234, 0.66) !important;
  font-size: 14px;
}

.section.light .muted,
.section.sage .muted {
  color: #667064 !important;
}

.add-ons {
  margin-top: 24px;
}

.commercial-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.token-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.token-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-left: 4px solid rgba(194, 164, 109, 0.7);
  background: rgba(244, 241, 234, 0.045);
  border-radius: 4px;
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 750;
  cursor: default;
}

.section.light .token-list span,
.section.sage .token-list span {
  border-color: var(--dark-line);
  border-left-color: var(--tan);
  background: #f7f1df;
  color: var(--forest);
}

.service-token-list {
  margin: 8px 0 20px;
}

.rate-panel {
  border: 1px solid rgba(194, 164, 109, 0.32);
  background: rgba(11, 15, 13, 0.45);
  border-radius: 10px;
  padding: 30px;
}

.rate-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.rate-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
  padding-bottom: 12px;
}

.rate-list strong {
  color: var(--tan);
  white-space: nowrap;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.map-card {
  width: min(100%, 760px);
  min-height: 0;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--dark-line);
  box-shadow: 0 18px 44px rgba(11, 15, 13, 0.1);
  background: #dfe7dc;
}

.map-layout .map-card {
  width: 100%;
  margin: 0;
}

#ir-map {
  min-height: 0;
  width: 100%;
  background: transparent;
}

.florida-map {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.florida-map-stage {
  position: relative;
  aspect-ratio: 5 / 4;
  min-height: 310px;
  max-height: 480px;
  overflow: hidden;
  border-radius: 8px;
  background: #cdd8c8;
  cursor: crosshair;
}

.florida-map-art,
.map-pins {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-shore,
.map-gulf {
  fill: none;
  stroke: rgba(47, 61, 46, 0.38);
  stroke-width: 5;
  stroke-linecap: round;
}

.map-panhandle,
.map-peninsula {
  fill: url(#ir-land);
  stroke: rgba(47, 61, 46, 0.58);
  stroke-width: 5;
}

.map-service-zone {
  fill: rgba(194, 164, 109, 0.3);
  stroke: rgba(115, 81, 27, 0.62);
  stroke-width: 4;
}

.map-southwest-zone {
  fill: rgba(194, 164, 109, 0.12);
  stroke: rgba(115, 81, 27, 0.26);
  stroke-width: 3;
}

.map-label {
  fill: rgba(11, 15, 13, 0.18);
  font-size: 66px;
  font-weight: 900;
  letter-spacing: 0;
}

.map-small-label {
  fill: rgba(11, 15, 13, 0.42);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
}

.map-pin {
  position: absolute;
  z-index: 3;
  width: 28px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -100%);
  cursor: pointer;
}

.map-pin span {
  position: absolute;
  left: 5px;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid #0b0f0d;
  border-radius: 50% 50% 50% 0;
  background: var(--tan);
  box-shadow: 0 8px 14px rgba(11, 15, 13, 0.24);
  transform: rotate(-45deg);
}

.map-pin span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--black);
}

.map-pin.service {
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
}

.map-pin.service span {
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #17261d;
  transform: none;
}

.map-pin.service span::after {
  left: 4px;
  top: 4px;
  background: var(--tan);
}

.map-pin.approved span {
  background: #c2a46d;
}

.map-pin.pending span {
  background: #d88e3f;
}

.map-pin.draft span {
  animation: pin-pulse 1.5s ease-in-out infinite;
}

.map-legend,
.map-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0;
  color: #2f3d2e;
  font-size: 13px;
  font-weight: 800;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pin-key {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(11, 15, 13, 0.55);
}

.pin-key.service {
  background: #17261d;
}

.pin-key.approved {
  background: #c2a46d;
}

.pin-key.pending {
  background: #d88e3f;
}

@keyframes pin-pulse {
  0%,
  100% {
    box-shadow: 0 8px 14px rgba(11, 15, 13, 0.24), 0 0 0 0 rgba(216, 142, 63, 0.45);
  }

  50% {
    box-shadow: 0 8px 14px rgba(11, 15, 13, 0.24), 0 0 0 10px rgba(216, 142, 63, 0);
  }
}

.area-card {
  background: var(--soft);
  border: 1px solid var(--dark-line);
  border-radius: 10px;
  padding: 28px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 12px 0 22px;
}

.pill-row span {
  background: #f7f1df;
  border: 1px solid #dfd2b2;
  border-left: 4px solid #c2a46d;
  color: #2d2d22;
  border-radius: 4px;
  padding: 8px 11px;
  font-weight: 800;
  font-size: 14px;
  cursor: default;
}

.community-list {
  columns: 2;
  padding-left: 18px;
  color: #38443b;
}

.sighting-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: #38443b;
}

.form-section {
  background:
    linear-gradient(90deg, rgba(11, 15, 13, 0.94), rgba(23, 38, 29, 0.88)),
    url("../images/service-area.png") center / cover no-repeat;
}

.standalone-form {
  background: var(--paper);
}

.standalone-form .form-panel {
  background: var(--black);
}

.standalone-form .section-head p {
  color: #354037;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-panel {
  border: 1px solid rgba(244, 241, 234, 0.16);
  border-radius: 10px;
  background: rgba(11, 15, 13, 0.78);
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-panel.wide {
  grid-column: 1 / -1;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: rgba(244, 241, 234, 0.82);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(244, 241, 234, 0.2);
  background: rgba(244, 241, 234, 0.08);
  color: var(--paper);
  border-radius: 6px;
  padding: 12px 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(194, 164, 109, 0.16);
}

textarea {
  min-height: 122px;
  resize: vertical;
}

select option {
  color: #111;
}

.checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(244, 241, 234, 0.82);
  font-size: 13px;
}

.checkbox input {
  width: 18px;
  margin-top: 3px;
}

.form-note {
  font-size: 13px;
  color: rgba(244, 241, 234, 0.68);
}

.map-click-status {
  min-height: 24px;
  color: var(--tan);
  font-weight: 800;
  font-size: 13px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-list.single {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.related-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  border: 1px solid rgba(244, 241, 234, 0.16);
  background: rgba(244, 241, 234, 0.07);
  border-radius: 8px;
  padding: 18px;
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.section.light .related-grid a,
.section.sage .related-grid a {
  background: var(--soft);
  border-color: var(--dark-line);
  color: var(--forest);
}

details {
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: var(--soft);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: #354037 !important;
  font-size: 15px;
}

.final-cta {
  position: relative;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(11, 15, 13, 0.92), rgba(11, 15, 13, 0.56)),
    url("../images/trail.png") center / cover no-repeat;
}

.final-cta .narrow {
  position: relative;
}

.legal {
  margin-top: 28px;
  color: rgba(244, 241, 234, 0.64);
  font-size: 13px;
  line-height: 1.6;
}

.mobile-line {
  display: inline;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(194, 164, 109, 0.18);
  background: #070a08;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  color: rgba(244, 241, 234, 0.68);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(244, 241, 234, 0.74);
  text-decoration: none;
  font-size: 14px;
}

@media (max-width: 1050px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .site-nav {
    order: 3;
    display: flex;
    position: static;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    padding: 0 0 4px;
    border: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    scrollbar-width: thin;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 10px 12px;
    white-space: nowrap;
    background: rgba(244, 241, 234, 0.07);
    border: 1px solid rgba(244, 241, 234, 0.12);
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-toggle {
    display: none !important;
  }

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

  .grid-3,
  .split,
  .split-reverse,
  .commercial-layout,
  .map-layout,
  .form-grid,
  .faq-list,
  .feature-band,
  .decision-grid {
    grid-template-columns: 1fr;
  }

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

  .photo-card img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  html,
  body,
  .site-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .narrow {
    width: calc(100% - 28px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    display: block;
    min-height: 760px;
  }

  .page-hero {
    display: block;
  }

  .hero-inner {
    padding: 74px 0 42px;
    width: calc(100% - 28px);
    max-width: none;
  }

  .hero .lead,
  .hero .hero-copy,
  .hero .actions {
    width: 100%;
    max-width: 340px;
  }

  .hero .kicker,
  .page-hero .breadcrumb,
  .page-hero .kicker,
  .page-hero h1,
  .page-hero p,
  .page-hero .actions {
    width: 100%;
    max-width: 340px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .actions,
  .strip-links {
    flex-direction: column;
  }

  .btn,
  .chip,
  .social-link {
    width: 100%;
  }

  h1 {
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 10.5ch;
  }

  .section-head {
    width: 100%;
    max-width: 340px;
  }

  h2 {
    font-size: clamp(27px, 8.5vw, 34px);
    overflow-wrap: anywhere;
  }

  .fact-grid,
  .grid-2,
  .grid-4,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .page-hero {
    min-height: 390px;
  }

  .page-hero-inner {
    padding: 74px 0 42px;
    width: calc(100% - 28px);
    max-width: none;
  }

  .page-hero p,
  .section-head p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .mobile-line {
    display: block;
  }

  .strip-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .property-list,
  .community-list,
  .sighting-list {
    columns: 1;
  }

  .rate-list li {
    display: grid;
  }

  .form-panel {
    padding: 22px;
  }

  .map-card,
  #ir-map {
    min-height: 0;
  }

  .florida-map-stage {
    min-height: 280px;
  }

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

@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }

  .brand-text span {
    display: none;
  }

  .header-inner {
    gap: 10px;
  }

  .btn {
    padding-inline: 14px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: 12px;
  }

  .header-inner {
    justify-content: flex-start;
  }
}
