:root {
  --navy: #0a243d;
  --navy-2: #15506f;
  --red: #b1321e;
  --red-dark: #8e2618;
  --teal: #177f86;
  --teal-dark: #0f646a;
  --sky: #dff2f4;
  --mint: #e8f6ee;
  --gold: #f0b84b;
  --coral: #d85a3a;
  --ink: #102438;
  --muted: #5c6873;
  --line: #d8dee3;
  --soft: #f4faf9;
  --warm: #fff7ec;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 36, 61, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfd;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(10, 36, 61, 0.06);
  backdrop-filter: blur(8px);
}

.site-header::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
}

.brand {
  display: block;
  width: min(205px, 34vw);
  background: var(--white);
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 54px);
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
}

.site-nav a {
  padding: 12px 4px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-dark);
  border-bottom-color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.phone-link,
.contact-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.phone-link__icon,
.contact-call svg {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--navy);
}

.phone-link svg,
.button svg,
.contact-call svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.phone-link__label {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.1;
}

.phone-link__number {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 10px 22px rgba(216, 90, 58, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button--secondary {
  color: var(--navy);
  background: #f8ffff;
  border-color: #92bec3;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--teal);
  background: var(--sky);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  min-height: 610px;
  background: linear-gradient(90deg, #ffffff 0%, #f4fbfb 57%, #edf8f6 100%);
  border-bottom: 1px solid var(--line);
}

.hero__content {
  align-self: center;
  padding: clamp(46px, 7vw, 90px) clamp(26px, 4vw, 56px) clamp(46px, 7vw, 90px) clamp(26px, 6vw, 86px);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 3.8vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: 570px;
  margin: 26px 0 0;
  color: #2c3b49;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
}

.hero__note {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  font-weight: 700;
}

.hero__note::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 16px;
  height: 16px;
  content: "";
  border: 2px solid var(--teal);
  border-radius: 50%;
  background: var(--mint);
}

.hero__image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--sky);
}

.hero__image::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 25%;
  content: "";
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero__image img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: 68% center;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 34px 20px;
  background: var(--white);
}

.trust-item {
  padding: 10px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  fill: var(--teal);
}

.trust-item:nth-child(2) svg,
.trust-item:nth-child(5) svg {
  fill: var(--navy-2);
}

.trust-item:nth-child(3) svg {
  fill: var(--gold);
}

.trust-item:nth-child(4) svg {
  fill: var(--coral);
}

.trust-item h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.trust-item p {
  margin: 0;
  color: #263849;
  font-size: 0.9rem;
}

.section {
  padding: clamp(58px, 8vw, 92px) 24px;
}

.section--services {
  background:
    linear-gradient(180deg, #f0faf9 0%, #fff7ec 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__heading {
  max-width: var(--max-width);
  margin: 0 auto 34px;
  text-align: center;
}

.section__label {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section h2,
.local-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 34px;
  background: var(--white);
  border: 1px solid #cfe1e0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(10, 36, 61, 0.07);
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  content: "";
  background: var(--teal);
}

.service-card:nth-child(2)::before,
.service-card:nth-child(5)::before {
  background: var(--coral);
}

.service-card:nth-child(3)::before {
  background: var(--gold);
}

.service-card:nth-child(4)::before,
.service-card:nth-child(6)::before {
  background: var(--navy-2);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  color: var(--teal-dark);
  background: var(--sky);
  border-radius: 8px;
}

.service-card__icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: #2f3d49;
  font-size: 0.98rem;
}

.service-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-card a::after {
  content: ">";
  margin-left: 8px;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.75fr) minmax(240px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 24px;
}

.local-section__copy p:not(.section__label) {
  max-width: 450px;
  color: #2f3d49;
  font-size: 1rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 17px;
  height: 17px;
  color: var(--teal);
  content: "✓";
  border: 1px solid var(--teal);
  background: var(--mint);
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 16px;
  text-align: center;
}

.florida-mark {
  opacity: 0.72;
}

.florida-mark img {
  width: min(260px, 100%);
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.service-area {
  justify-self: end;
  width: 100%;
  max-width: 320px;
}

.service-area h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-area ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.service-area li {
  position: relative;
  padding-left: 22px;
  color: #243443;
  font-weight: 700;
}

.service-area li::before {
  position: absolute;
  left: 0;
  color: var(--coral);
  content: "•";
  font-size: 1.3rem;
  line-height: 1;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(360px, 1.3fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(54px, 7vw, 78px) clamp(24px, 6vw, 80px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #0d5660 100%);
}

.contact-section__copy {
  max-width: 360px;
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.contact-call {
  margin-top: 18px;
  color: var(--white);
}

.contact-call svg {
  color: var(--white);
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 28, 48, 0.22);
}

.contact-card p {
  max-width: 620px;
  margin: 0;
}

.contact-card__label {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 58px;
  padding: 0 18px;
  color: var(--navy);
  background: var(--white);
  border-radius: 4px;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
  box-shadow: inset 0 -4px 0 var(--gold);
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--teal-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 42px clamp(24px, 6vw, 80px);
  background: #fbfdfd;
  border-top: 1px solid var(--line);
}

.site-footer__brand img {
  width: 190px;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 9px;
  color: #243443;
  font-size: 0.95rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--teal-dark);
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(24px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  border-top: 4px solid var(--gold);
  font-size: 0.86rem;
}

.footer-bar p {
  margin: 0;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 92px 0 auto 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px 22px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

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

  .hero__image {
    min-height: 420px;
  }

  .hero__image::before {
    display: none;
  }

  .hero__image img {
    min-height: 420px;
  }

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

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .local-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .florida-mark {
    order: 3;
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 76px;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    width: min(175px, 58vw);
  }

  .site-nav {
    inset: 76px 0 auto 0;
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .phone-link,
  .header-actions .button,
  .hero__actions .button {
    width: 100%;
  }

  .phone-link {
    justify-content: center;
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .hero {
    min-height: 0;
  }

  .hero__content {
    padding: 42px 20px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.1rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__image,
  .hero__image img {
    min-height: 320px;
  }

  .trust-strip,
  .service-grid,
  .local-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 20px;
  }

  .trust-item {
    padding: 22px 8px;
  }

  .section {
    padding: 50px 18px;
  }

  .service-card {
    padding: 28px;
  }

  .local-section {
    padding: 50px 20px;
  }

  .service-area {
    justify-self: start;
  }

  .contact-section {
    padding: 46px 20px;
  }

  .site-footer {
    padding: 34px 20px;
  }

  .footer-bar {
    flex-direction: column;
    padding: 18px 20px;
  }
}

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