:root {
  --navy: #005cb9;
  --red: #ff8c1a;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text: #333333;
  --muted: #6b7280;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(27, 58, 107, 0.12);
  --container: 1460px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Roboto, "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  scroll-behavior: smooth;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 3rem 0;
}

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

.eyebrow {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.home-page .eyebrow {
  font-size: 1rem;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: 1.9rem;
}

h2 {
  font-size: 1.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.7;
}

ul,
ol {
  padding-left: 1.2rem;
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #e7e7e7;
}

.header-inner {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  color: var(--navy);
  padding: 0.2rem 0;
}

.logo-wrap img {
  width: 190px;
  height: auto;
  max-width: 100%;
}

.logo-wrap span {
  display: none;
}

.main-nav {
  display: none;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: #e97800;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(233, 120, 0, 0.26);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: #003d7c;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 61, 124, 0.28);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.btn-light:hover {
  background: #eaf0f8;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(31, 63, 108, 0.16);
}

.btn:active {
  transform: translateY(0);
}

.js-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal .steps .step {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: 0ms;
}

.js-reveal.is-visible .steps .step {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  button.btn,
  .js-reveal,
  .js-reveal .steps .step {
    transition: none !important;
    transform: none !important;
  }

  .js-reveal {
    opacity: 1 !important;
  }

  .js-reveal .steps .step {
    opacity: 1 !important;
  }
}

.menu-toggle {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  background: var(--white);
  font-size: 1.2rem;
}

.mobile-tap-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.mobile-tap-call:hover {
  text-decoration: none;
}

@media (max-width: 1023px) {
  .site-header .nav-cta .btn-primary {
    display: none;
  }
}

.mobile-menu {
  display: none;
  border-top: 1px solid #ededed;
  padding: 1rem 0;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu a,
.mobile-menu summary {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  color: #3f3f46;
}

.mobile-menu details ul {
  padding-left: 1rem;
}

.desktop-services {
  position: relative;
}

.desktop-services .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 280px;
  max-height: 72vh;
  overflow-y: auto;
  padding: 0.6rem;
}

.desktop-services .dropdown a {
  display: block;
  padding: 0.6rem;
  border-radius: 8px;
}

.desktop-services .dropdown a:hover {
  background: #edf2fb;
  text-decoration: none;
}

.desktop-services:hover .dropdown,
.desktop-services:focus-within .dropdown {
  display: block;
}

.hero {
  background: linear-gradient(120deg, rgba(0, 46, 109, 0.42), rgba(0, 92, 185, 0.28)),
    url("../images/hero-home-960.jpg") center 78%/cover no-repeat;
  color: var(--white);
  padding: 4.3rem 0;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 560px;
    padding: 6.8rem 0;
    background-image: linear-gradient(120deg, rgba(0, 46, 109, 0.42), rgba(0, 92, 185, 0.28)),
      url("../images/hero-home-1600.jpg");
    background-position: center 72%;
  }
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero.hero-no-image {
  background: #edf2fb;
  color: var(--navy);
  padding: 3.2rem 0;
  min-height: 0;
}

.hero.hero-no-image h1 {
  color: var(--navy);
}

.hero.hero-no-image p {
  color: #233247;
}

.faq-hero .container {
  text-align: center;
}

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

.about-home-copy {
  margin-bottom: 1.2rem;
}

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

.owner-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
  align-items: stretch;
}

.owner-card {
  background: var(--white);
  border: 1px solid #e2e8f3;
  border-radius: var(--radius);
  overflow: hidden;
  width: min(100%, 210px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.owner-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
}

.owner-card img.owner-josh-photo {
  object-position: center 42%;
}

.owner-card img.owner-jonathan-photo {
  object-position: center 18%;
}

.owner-meta {
  padding: 0.7rem 0.85rem 0.85rem;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owner-meta h3 {
  margin: 0 0 0.15rem;
  font-size: 1.05rem;
}

.owner-meta p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.hero-cta-wrap {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}

.hero-badge {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  font-weight: 700;
  background: transparent;
  border: 0;
  color: var(--white);
  margin-top: 0.975rem;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.about-hero-inner {
  text-align: center;
  max-width: 900px;
}

.about-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  margin-bottom: 0.55rem;
}

.about-hero-tagline {
  font-size: clamp(1.3rem, 2.3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.about-hero .hero-actions {
  justify-content: center;
}

.about-hero .hero-badge {
  text-align: center;
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.about-hero {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero .about-hero-inner {
  margin-inline: auto;
}

.about-story-section {
  position: relative;
  background:
    radial-gradient(1200px 380px at 20% -10%, rgba(0, 92, 185, 0.12), transparent 60%),
    radial-gradient(1000px 340px at 90% 0%, rgba(255, 140, 26, 0.15), transparent 60%),
    linear-gradient(180deg, #f3f7fd 0%, #ffffff 88%);
  overflow: hidden;
}

.about-story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent 30%),
    linear-gradient(300deg, rgba(0, 92, 185, 0.04), transparent 38%);
  pointer-events: none;
}

.about-intro-grid {
  display: grid;
  gap: 1.2rem;
}

.about-feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(187, 203, 224, 0.8);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow:
    0 16px 36px rgba(6, 29, 64, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
}

.about-feature-card h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.95rem, 2.8vw, 2.8rem);
  line-height: 1.1;
}

.about-feature-card-alt {
  border-top: 5px solid var(--red);
}

.about-feature-card-start::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 140, 26, 0.35), rgba(0, 92, 185, 0.18));
  filter: blur(0.5px);
}

.about-feature-card-story::before {
  content: "\"";
  position: absolute;
  top: 0.2rem;
  right: 1rem;
  font-size: 4.4rem;
  color: rgba(0, 92, 185, 0.14);
  font-weight: 900;
  line-height: 1;
}

.about-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.9rem 0 1.1rem;
}

.about-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #0d4c96;
  background: #e9f2fc;
  border: 1px solid #cfe2f8;
}

.about-story-lead {
  font-size: clamp(1.08rem, 1.3vw, 1.35rem);
  font-weight: 600;
  color: #1f3552;
  line-height: 1.62;
}

.about-narrative {
  background:
    radial-gradient(900px 340px at 5% -20%, rgba(0, 92, 185, 0.13), transparent 60%),
    radial-gradient(900px 320px at 100% 0%, rgba(255, 140, 26, 0.15), transparent 62%),
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 88%);
  padding-bottom: 2.4rem;
}

.about-narrative-top {
  max-width: 980px;
  margin-bottom: 1.4rem;
}

.about-narrative-top h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
}

.about-narrative-intro {
  margin-bottom: 1rem;
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  font-weight: 700;
  color: #1d4f93;
}

.about-narrative-grid {
  display: block;
}

.about-narrative-card {
  background: #ffffff;
  border: 1px solid #d7e3f3;
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 12px 28px rgba(8, 34, 72, 0.08);
}

.about-narrative-card h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
}

.about-narrative-card .btn {
  margin-top: 0.4rem;
}

.about-narrative-card-story {
  border-top: 5px solid var(--red);
}

.about-narrative-card-merged {
  border-top: 5px solid var(--red);
}

.about-eyebrow-large {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.about-story-heading {
  font-size: clamp(1.5rem, 2.25vw, 2.125rem) !important;
  margin-top: 0.25rem;
  margin-bottom: 0.7rem;
}

.about-narrative-card-merged .about-story-heading + p {
  margin-bottom: 1.2rem;
}

.about-narrative-card-merged .hero-actions {
  margin-top: 0.8rem;
}

.about-cta-strip {
  background: #eaf1fa;
}

.about-cta-strip-inner {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.about-cta-strip h3 {
  margin: 0 0 0.45rem;
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.about-cta-strip p {
  margin: 0;
}

.about-now-grid {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.about-now-section {
  padding-top: 2.4rem;
}

.about-photo-pair {
  display: grid;
  gap: 0.9rem;
}

.about-photo-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dae4f2;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(8, 34, 72, 0.1);
}

.about-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.about-photo-card figcaption {
  padding: 0.75rem 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid #e9eef7;
}

.card-body {
  padding: 1rem;
}

.blog-list {
  display: grid;
  gap: 1rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid #dbe6f6;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.05rem;
}

.blog-date {
  display: inline-block;
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5a6c85;
}

.blog-card h3 {
  margin: 0 0 0.45rem;
}

.blog-card p {
  margin: 0 0 0.75rem;
}

.blog-read-link {
  font-weight: 700;
}

@media (min-width: 900px) {
  .blog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .blog-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.compare-item img {
  width: 100%;
  height: 345px;
  object-fit: cover;
}

.service-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.service-card-link:hover {
  text-decoration: none;
}

.service-card-link h2,
.service-card-link h3 {
  margin-bottom: 0.45rem;
}

.service-link-text {
  color: var(--navy);
  font-weight: 700;
}

.stats-inline,
.stats-bar {
  display: grid;
  gap: 0.8rem;
}

.stats-pill {
  background: #edf2fb;
  border-radius: 12px;
  padding: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}

.compare-wrap {
  display: grid;
  gap: 1rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  border-left: 4px solid var(--red);
}

.step h3::before {
  counter-increment: step;
  content: "0" counter(step) " ";
  color: var(--red);
}

.testimonial-stars {
  color: #f59e0b;
  letter-spacing: 1px;
  font-weight: 700;
}

.testimonial-carousel {
  margin-top: 1rem;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-slide {
  display: flex;
  min-width: 100%;
  padding: 0.2rem;
}

@media (min-width: 768px) {
  .testimonial-slide {
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial-slide {
    min-width: 33.3333%;
  }
}

.testimonial-slide .card {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  box-shadow: none;
  border: 1px solid #dbe6f6;
}

.testimonial-slide .card-body {
  display: flex;
  flex-direction: column;
}

.testimonial-slide .card-body > p:nth-child(2) {
  flex-grow: 1;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
  gap: 0.8rem;
}

.carousel-btn {
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid #bfd2ea;
  background: var(--white);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #bfd2ea;
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--navy);
}

.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.section-contact-cta {
  padding: 0;
}

.cta-band-full {
  position: relative;
  background: url("../images/floridas_elite_restoration-1200.jpg") center 55% / cover no-repeat;
  border-radius: 0;
  padding: 4.2rem 0;
  border: 0;
  overflow: hidden;
}

.cta-band-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 32, 61, 0.52);
  z-index: 0;
}

.cta-band-full .container {
  position: relative;
  z-index: 1;
}

.cta-contact-label {
  margin: 0 0 0.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--white);
}

.section-contact-cta .cta-band h2,
.section-contact-cta .cta-band p {
  color: var(--white);
}

.cta-band .cta-band-message {
  font-size: 1.14rem;
  color: var(--white);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table td,
.info-table th {
  border: 1px solid #dbe3ef;
  padding: 0.7rem;
  text-align: left;
}

.info-table th {
  background: #edf2fb;
}

.water-page-intro {
  padding-top: 2.1rem;
}

.water-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.water-points + .water-page-actions {
  margin-top: 1.35rem;
}

.reconstruction-cta-spacing {
  margin-top: 1.4rem;
}

.water-points {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.65rem;
}

.water-points li {
  line-height: 1.5;
}

.service-area-note {
  margin-top: 1.45rem;
}

.water-tools-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.inspection-category-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.mold-overview-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.inspection-card {
  background: #f6f9ff;
  border: 1px solid #d4e2f7;
  border-radius: 14px;
  padding: 1rem;
}

.inspection-card h3 {
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.inspection-tool-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.75rem;
}

.inspection-tool {
  background: var(--white);
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  padding: 1rem;
}

.inspection-tool h4 {
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.inspection-followup {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 4px solid var(--red);
  border-radius: 12px;
  background: #f9fbff;
}

.inspection-subheading {
  margin-top: 1.85rem;
}

.mold-timeline {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.mold-timeline .step h3::before {
  content: none;
  counter-increment: none;
}

.video-embed {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(6, 29, 64, 0.12);
  background: #dbe4f2;
  margin-top: 0.8rem;
}

.video-embed iframe,
.video-embed video {
  display: block;
  width: 100%;
  min-height: 230px;
  aspect-ratio: 16 / 9;
  border: 0;
}

@media (min-width: 1024px) {
  .video-embed-short-desktop iframe,
  .video-embed-short-desktop video {
    aspect-ratio: 20 / 9;
  }

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

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

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

.faq-list {
  counter-reset: faq-item;
}

.faq-list .accordion-item {
  border: 2px solid #d7dee8;
  background: #ffffff;
  margin-bottom: 1rem;
}

.faq-list .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-list .accordion-item.open {
  background: #e7effa;
}

.faq-list .accordion-item button {
  width: 100%;
  text-align: left;
  padding: 1.5rem 1.8rem;
  font-weight: 800;
  color: #101828;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.25;
}

.faq-list .accordion-item button::before {
  counter-increment: faq-item;
  content: counter(faq-item) ".";
  color: var(--navy);
  font-weight: 800;
  margin-right: 0.75rem;
}

.faq-list .accordion-item button::after {
  content: "⌄";
  color: #1d4f93;
  font-size: 2rem;
  line-height: 1;
  margin-left: auto;
  transition: transform 0.2s ease;
}

.faq-list .accordion-item button.is-open::after {
  transform: rotate(180deg);
}

.faq-list .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 1.8rem;
}

.faq-list .accordion-content.open {
  padding: 0 1.8rem 1.35rem;
}

.faq-list .accordion-content p {
  font-size: clamp(1.08rem, 1.35vw, 1.95rem);
  line-height: 1.5;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

label {
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid #c9d6ea;
  padding: 0.65rem;
  font: inherit;
}

textarea {
  min-height: 140px;
}

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

.contact-showcase {
  position: relative;
  background: url("../images/floridas_elite_restoration-1200.jpg") center center / cover no-repeat;
  padding: 2rem 0 2.8rem;
}

.contact-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 54, 122, 0.78);
}

.contact-showcase-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  align-items: start;
}

.contact-panel-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info-panel {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  border: 12px solid rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contact-info-panel,
.contact-info-panel * {
  color: var(--white);
}

.contact-info-panel h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

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

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.45;
}

.contact-info-list a {
  color: var(--white);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  min-width: 1.4rem;
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.contact-license-lines {
  margin: 0;
  color: #e6effd;
  font-size: 0.95rem;
}

.contact-form-panel {
  background: #edf2f7;
  border: 1px solid #d8e1ec;
  padding: 1.5rem;
}

.contact-form-panel h1 {
  color: #101828;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.contact-form-grid {
  display: grid;
  gap: 0.85rem 1rem;
}

.contact-form-grid label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2a37;
}

.required-mark {
  color: #dc2626;
}

.contact-form-grid input,
.contact-form-grid textarea {
  border: 0;
  border-radius: 0;
  background: #ffffff;
  min-height: 56px;
  padding: 0.8rem;
  margin-top: 0.3rem;
}

.contact-form-grid textarea {
  min-height: 180px;
}

.contact-address-grid {
  display: grid;
  gap: 0.85rem 1rem;
}

.contact-submit-btn {
  width: 100%;
  min-height: 56px;
  font-size: 1.15rem;
  border-radius: 0;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
}

.filter-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.filter-buttons button.active {
  background: var(--navy);
  color: var(--white);
}

.portfolio-showcase-header {
  text-align: center;
  padding-bottom: 1.5rem;
}

.portfolio-showcase-header h1 {
  margin-bottom: 0.65rem;
}

.portfolio-showcase-header p {
  max-width: 760px;
  margin-inline: auto;
}

.portfolio-showcase-grid-wrap {
  padding-top: 1rem;
}

.portfolio-carousel-grid {
  display: grid;
  gap: 1rem;
}

.portfolio-carousel-card {
  background: #ffffff;
  border: 1px solid #d9e3f2;
  border-radius: 16px;
  padding: 0.95rem;
  box-shadow: 0 10px 24px rgba(6, 29, 64, 0.08);
}

.portfolio-carousel-card h2 {
  margin: 0.85rem 0 0;
  font-size: 1.15rem;
}

.portfolio-photo-carousel {
  position: relative;
}

.photo-carousel-viewport {
  overflow: hidden;
  border-radius: 12px;
  background: #e9eff8;
}

.photo-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.photo-slide {
  min-width: 100%;
  margin: 0;
  position: relative;
  aspect-ratio: 1 / 1;
}

.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slide figcaption {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  background: rgba(255, 255, 255, 0.9);
  color: #103e78;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  font-size: 0.78rem;
  line-height: 1;
}

.photo-carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.45rem;
  pointer-events: none;
}

.photo-carousel-btn {
  pointer-events: auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #d6e2f4;
  background: rgba(255, 255, 255, 0.95);
  color: #114584;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
}

.quick-contact-banner {
  background: var(--red);
  color: var(--white);
  padding: 1rem 0;
}

.quick-contact-inner {
  display: grid;
  gap: 0.8rem;
  align-items: center;
  justify-items: center;
}

.quick-contact-title {
  margin: 0;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.2;
}

.quick-contact-title strong {
  font-size: 1.15em;
}

.quick-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.quick-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18em;
  line-height: 1;
}

.quick-contact-link:hover {
  text-decoration: none;
}

.site-footer {
  background: #003da6;
  color: #d8dfec;
  margin-top: 0;
}

.site-footer p,
.site-footer li,
.site-footer span {
  color: #eaf2ff;
}

.site-footer .logo-wrap img {
  width: 220px;
}

.site-footer .logo-wrap {
  margin-bottom: 1rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  padding: 2rem 0;
}

.footer-grid h3 {
  color: var(--white);
  margin-top: 0;
}

.footer-grid a {
  color: #d8dfec;
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
  font-size: 0.95rem;
}

.footer-marquee {
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  padding: 1.95rem 0;
  margin: 0;
}

.footer-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-loop 28s linear infinite;
}

.footer-marquee-set {
  display: flex;
  gap: 6rem;
  padding-right: 6rem;
}

.footer-marquee-item {
  white-space: nowrap;
}

.footer-marquee + .site-footer {
  margin-top: 0;
}

@keyframes marquee-loop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-grid,
  .contact-layout {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

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

  .contact-form-full {
    grid-column: 1 / -1;
  }

  .contact-address-grid {
    grid-template-columns: minmax(0, 1fr) 110px 140px;
  }

  .contact-address-city {
    min-width: 0;
  }

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

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

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

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

  .service-card img {
    height: 245px;
  }

  .compare-item img {
    height: 368px;
  }

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

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

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

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

  .about-narrative-grid {
    display: block;
  }

  .about-cta-strip-inner {
    grid-template-columns: 1.2fr auto;
  }

  .about-now-grid {
    grid-template-columns: 1.1fr 1fr;
  }

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

  .quick-contact-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
    justify-items: center;
  }

  .quick-contact-title {
    font-size: 1.55rem;
    text-align: center;
  }

  .quick-contact-title strong {
    font-size: 1.12em;
  }

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

@media (min-width: 1024px) {
  .about-hero {
    min-height: 560px;
    padding: 0;
  }

  .contact-showcase {
    padding: 3.2rem 0 4rem;
  }

  .contact-showcase-wrap {
    grid-template-columns: minmax(260px, 370px) minmax(0, 1fr);
    gap: 0;
    align-items: center;
  }

  .contact-info-panel {
    margin-top: 0;
    margin-right: -2.4rem;
    padding: 1.4rem 1.8rem;
    min-height: 275px;
    align-self: center;
  }

  .contact-form-panel {
    padding: 3rem 3rem 2.4rem 6.2rem;
    min-height: 700px;
  }

  .cta-band-full {
    padding: 8.4rem 0;
  }

  .section-contact-cta .cta-contact-label {
    font-size: 0.92rem;
  }

  .section-contact-cta .cta-band h2 {
    font-size: 2.2rem;
  }

  .section-contact-cta .cta-band .cta-band-message {
    font-size: 1.24rem;
  }

  .section-contact-cta .cta-band .btn-primary {
    min-height: 54px;
    padding: 0.86rem 1.2rem;
    font-size: 1.06rem;
  }

  .mobile-tap-call {
    display: none;
  }

  .cta-band-full {
    background-image: url("../images/floridas_elite_restoration-1920.jpg");
  }

  .contact-showcase {
    background-image: url("../images/floridas_elite_restoration-1920.jpg");
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .main-nav {
    display: block;
  }

  .main-nav > ul {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .main-nav a,
  .main-nav button {
    font-weight: 400;
    color: #3f3f46;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0.35rem;
    font-size: 1.35rem;
    line-height: 1.1;
    font-family: inherit;
  }

  .site-header .btn-primary {
    min-height: 58px;
    padding: 0.93rem 1.33rem;
    font-size: 1.15rem;
    border-radius: 12px;
  }

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

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

  .about-home-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
  }

  .about-home-copy {
    margin-bottom: 0;
  }

  .owner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    justify-items: stretch;
  }

  .owner-card {
    width: 100%;
  }

  .owner-card img {
    height: 300px;
  }

  .service-card img {
    height: 260px;
  }

  .compare-item img {
    height: 390px;
  }

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

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

@media (min-width: 1200px) {
  .owner-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

