:root {
  --ink: #17211a;
  --muted: #516056;
  --bg: #fffaf0;
  --surface: #ffffff;
  --surface-alt: #f4efe3;
  --border: #ded4bf;
  --accent: #b15f16;
  --accent-dark: #783d0c;
  --accent-soft: #f7d07d;
  --green: #315c43;
  --shadow: 0 16px 40px rgba(37, 28, 14, 0.12);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  padding-bottom: 76px;
}

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

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

a {
  color: var(--accent-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 3px;
}

.skip-link {
  background: var(--ink);
  color: #fff;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -10rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  background: var(--green);
  color: #fff;
  font-size: 0.92rem;
}

.topbar__inner,
.site-header__inner,
.container {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 1rem;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  justify-content: center;
  padding-block: 0.55rem;
}

.topbar a {
  color: #fff;
  font-weight: 800;
  text-decoration-thickness: 0.08em;
}

.site-header {
  background: rgba(255, 250, 240, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header__inner {
  align-items: center;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr auto auto;
  min-height: 74px;
}

.brand {
  color: var(--ink);
  display: inline-flex;
  flex-direction: column;
  font-weight: 900;
  line-height: 1.05;
  text-decoration: none;
}

.brand span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 0.16rem;
}

.nav-toggle {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
}

.nav-toggle__mark {
  display: grid;
  gap: 4px;
}

.nav-toggle__mark span {
  background: currentColor;
  display: block;
  height: 2px;
  width: 18px;
}

.site-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: none;
  grid-column: 1 / -1;
  margin: 0 -1rem;
  padding: 0.35rem 1rem 0.9rem;
}

.site-nav[data-open] {
  display: grid;
}

.site-nav a {
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
  padding: 0.72rem 0.55rem;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  background: var(--surface-alt);
  color: var(--accent-dark);
}

.button,
.phone-button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1rem;
  text-align: center;
  text-decoration: none;
}

.button--primary,
.phone-button {
  background: var(--accent);
  color: #fff;
}

.button--primary:hover,
.phone-button:hover {
  background: var(--accent-dark);
}

.button--secondary {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent-dark);
}

.button--secondary:hover {
  background: #fff4dc;
}

.header-call {
  display: none;
}

.hero {
  background: #261c0f;
  color: #fff;
  min-height: 620px;
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, rgba(20, 19, 14, 0.86), rgba(20, 19, 14, 0.68) 48%, rgba(20, 19, 14, 0.2));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

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

.hero__content {
  margin: 0 auto;
  max-width: var(--max);
  padding: 5.5rem 1rem;
  position: relative;
  z-index: 2;
}

.hero__text {
  max-width: 680px;
}

.eyebrow {
  color: var(--accent-soft);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.3rem, 7vw, 4.8rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.7rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.lead {
  color: #f6efe4;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  margin-top: 1.25rem;
  max-width: 42rem;
}

.hero__actions,
.cta__actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero__note {
  color: #fff3d6;
  font-weight: 800;
  margin-top: 1rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section__header {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
  max-width: 760px;
}

.section__header p,
.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid--2,
.grid--3 {
  grid-template-columns: 1fr;
}

.card,
.review-card,
.credential-block,
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(37, 28, 14, 0.07);
  padding: 1.2rem;
}

.card {
  display: grid;
  gap: 0.65rem;
}

.card__link {
  font-weight: 900;
}

.service-card {
  align-content: start;
  background: linear-gradient(180deg, #ffffff 0%, #fff8e8 100%);
  min-height: 100%;
  padding-top: 1.4rem;
}

.service-card__mark {
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  border-radius: 999px;
  display: block;
  height: 14px;
  width: 44px;
}

.service-card h3 {
  max-width: 12ch;
}

.service-card p {
  color: #263229;
}

.service-card .card__link {
  align-self: end;
  color: var(--accent-dark);
  margin-top: 0.5rem;
  text-decoration-thickness: 0.1em;
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.trust-strip__inner {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
  padding-block: 1rem;
}

.trust-item {
  align-items: center;
  display: flex;
  font-weight: 850;
  gap: 0.5rem;
}

.trust-item::before {
  background: var(--accent);
  border-radius: 99px;
  content: "";
  height: 10px;
  width: 10px;
}

.review-highlight {
  background: #fff3d4;
  border-bottom: 1px solid var(--border);
}

.review-highlight__inner {
  align-items: center;
  display: grid;
  gap: 1rem;
  padding-block: 1.5rem;
}

.review-highlight h2 {
  color: var(--accent-dark);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.review-highlight p:not(.eyebrow) {
  color: var(--ink);
  font-weight: 750;
  margin-top: 0.35rem;
}

.steps {
  counter-reset: step;
}

.step {
  counter-increment: step;
  padding-left: 3.2rem;
  position: relative;
}

.step::before {
  align-items: center;
  background: var(--green);
  border-radius: 99px;
  color: #fff;
  content: counter(step);
  display: inline-flex;
  font-weight: 900;
  height: 2.2rem;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 2.2rem;
}

.media-block {
  align-items: center;
  display: grid;
  gap: 1.4rem;
}

.media-block img,
.photo-gallery img {
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.area-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  padding: 0.45rem 0.78rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.service-map {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  overflow: hidden;
}

.service-map__visual {
  background: #8ebbc1;
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.service-map__visual iframe {
  border: 0;
  filter: saturate(0.92) contrast(0.98);
  height: 100%;
  min-height: 340px;
  position: absolute;
  width: 100%;
}

.service-map__shade {
  background: linear-gradient(90deg, rgba(49, 92, 67, 0.12), rgba(255, 250, 240, 0.08));
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.service-map__radius {
  background: rgba(177, 95, 22, 0.16);
  border: 2px solid rgba(177, 95, 22, 0.24);
  border-radius: 999px;
  left: 55%;
  pointer-events: none;
  position: absolute;
  top: 52%;
  transform: translate(-50%, -50%);
}

.service-map__radius--wide {
  height: 70%;
  width: 72%;
}

.service-map__radius--core {
  height: 40%;
  width: 42%;
}

.service-map-pin {
  align-items: center;
  display: inline-flex;
  filter: drop-shadow(0 2px 4px rgba(23, 33, 26, 0.35));
  gap: 0.45rem;
  position: absolute;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
}

.service-map-pin span {
  background: var(--accent);
  border: 5px solid #fffaf0;
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(177, 95, 22, 0.24);
  height: 28px;
  width: 28px;
}

.service-map-pin strong {
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(222, 212, 191, 0.9);
  border-radius: 999px;
  color: var(--ink);
  font-size: clamp(0.95rem, 2.4vw, 1.25rem);
  padding: 0.22rem 0.55rem;
}

.service-map-pin--bradenton {
  left: 57%;
  top: 25%;
}

.service-map-pin--sarasota {
  left: 52%;
  top: 53%;
}

.service-map-pin--venice {
  left: 47%;
  top: 78%;
}

.service-map__attribution {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  bottom: 0.5rem;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  left: 0.5rem;
  padding: 0.18rem 0.35rem;
  position: absolute;
  z-index: 2;
}

.service-map__panel {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

.service-map__panel h2 {
  color: var(--accent-dark);
}

.map-area-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.map-area-list li {
  align-items: center;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
}

.map-area-list strong {
  font-size: 1.12rem;
}

.map-area-list span {
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: var(--muted);
  margin-top: 0.7rem;
}

.cta {
  background: var(--green);
  color: #fff;
}

.cta p {
  color: #f7f2e8;
}

.page-hero {
  background: var(--green);
  color: #fff;
  padding: 4rem 0;
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero p {
  color: #f4ead7;
  font-size: 1.14rem;
  margin-top: 1rem;
  max-width: 760px;
}

.review-card {
  display: grid;
  gap: 0.75rem;
}

.review-card blockquote {
  color: var(--ink);
  font-size: 1.05rem;
  margin: 0;
}

.review-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.credential-block {
  display: grid;
  gap: 0.75rem;
}

.mission-statement {
  color: var(--ink);
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  font-weight: 750;
  max-width: 850px;
}

.credential-row {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.2rem;
  padding-top: 0.75rem;
}

.credential-row strong {
  color: var(--ink);
}

.contact-layout {
  display: grid;
  gap: 1.2rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label,
.checkbox-label {
  color: var(--ink);
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  background: #fff;
  border: 1px solid #b8ad98;
  border-radius: 6px;
  color: var(--ink);
  min-height: 46px;
  padding: 0.7rem 0.75rem;
  width: 100%;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.checkbox-label {
  align-items: start;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: auto 1fr;
}

.site-footer {
  background: #161d18;
  color: #f7f2e8;
  padding: 3rem 0 2rem;
}

.site-footer a {
  color: #fff1cc;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  text-decoration: none;
}

.fineprint {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #d6cfbe;
  margin-top: 2rem;
  padding-top: 1rem;
}

.sticky-call {
  background: var(--accent);
  border-radius: 0;
  bottom: 0;
  box-shadow: 0 -8px 24px rgba(37, 28, 14, 0.18);
  color: #fff;
  display: flex;
  font-weight: 950;
  justify-content: center;
  left: 0;
  min-height: 58px;
  padding: 1rem;
  position: fixed;
  right: 0;
  text-decoration: none;
  z-index: 60;
}

.utility-page {
  align-items: center;
  display: grid;
  min-height: 60vh;
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .topbar__inner {
    justify-content: space-between;
  }

  .nav-toggle {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    align-items: center;
    background: transparent;
    border: 0;
    display: flex;
    gap: 0.15rem;
    grid-column: auto;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  .site-nav a {
    font-size: 0.9rem;
    padding: 0.55rem 0.5rem;
  }

  .header-call {
    display: inline-flex;
  }

  .hero__content {
    padding-block: 7rem;
  }

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

  .review-highlight__inner {
    grid-template-columns: 1fr auto;
  }

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

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

  .media-block,
  .contact-layout,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-map {
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  }

  .sticky-call {
    display: none;
  }
}

@media (min-width: 980px) {
  .site-nav a {
    font-size: 0.98rem;
    padding-inline: 0.72rem;
  }

  .section {
    padding-block: 5rem;
  }
}
