/* Speed Appliance Repair — Bonita Springs FL — v2 contractor template (not SR22 shell) */
:root {
  --orange: #E85D04;
  --orange-d: #D00000;
  --orange-h: #F48C06;
  --teal: #0A7A74;
  --teal-d: #065A56;
  --teal-deep: #023C3A;
  --cream: #FFF8F0;
  --cream-2: #F5EDE3;
  --ink: #1A1A1A;
  --muted: #4A5560;
  --white: #ffffff;
  --line: #E8DED2;
  --shadow: 0 12px 32px rgba(232, 93, 4, 0.14);
  --shadow-teal: 0 10px 28px rgba(10, 122, 116, 0.16);
  --header-h: 4.25rem;
  --radius: 0.75rem;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}
section[id], .section[id], #services, #areas, #faq, #call, #about, #process, #guide, #contact {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal-deep);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.wrap {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}
.wrap-narrow { width: min(820px, calc(100% - 2rem)); margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1.2;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(232, 93, 4, 0.35); }
.btn-orange:hover { background: var(--orange-d); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-d); }
.btn-cream { background: var(--cream); color: var(--teal-deep); }
.btn-cream:hover { background: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn .phone-ic { width: 18px; height: 18px; flex-shrink: 0; }

/* Sticky header — orange CTA */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--orange);
  min-height: var(--header-h);
}
.header-inner {
  width: min(1140px, calc(100% - 1.25rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}
.wordmark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--teal-deep);
  line-height: 1.05;
  padding: 0.35rem 0;
  margin-left: 0.25rem;
}
.wm-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--orange), var(--orange-d));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.wm-text { display: flex; flex-direction: column; }
.wordmark .wm-top {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.08rem;
  text-transform: none;
}
.wordmark .wm-mid {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--teal);
  margin: 0.1rem 0 0;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  :root { --header-h: 4.75rem; }
}
.nav-desktop { display: none; margin-left: auto; align-items: center; gap: 1.35rem; }
.nav-desktop a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}
.nav-desktop a:hover { color: var(--orange); }
.header-cta { display: none; margin-left: 0.5rem; flex-shrink: 0; }

.nav-mobile { margin-left: auto; position: relative; }
.nav-mobile > summary {
  list-style: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 8px;
}
.nav-mobile > summary::-webkit-details-marker { display: none; }
.nav-mobile > summary:focus-visible { outline: 3px solid var(--orange); }
.burger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.burger i {
  display: block;
  height: 2.5px;
  background: var(--teal-deep);
  border-radius: 2px;
}
.mobile-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mobile-panel a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  border-radius: 8px;
}
.mobile-panel a:hover { background: var(--cream-2); }
.mobile-panel .btn { white-space: normal; text-align: center; margin-top: 0.35rem; }

@media (min-width: 880px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-mobile { display: none; }
}

/* Hero — full-bleed kitchen/appliance photo (NOT SR22 call-card column) */
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(2, 60, 58, 0.88) 0%, rgba(10, 122, 116, 0.72) 42%, rgba(232, 93, 4, 0.55) 100%),
    url("photo-kitchen.webp") center / cover no-repeat;
  overflow: hidden;
  min-height: min(78vh, 640px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-inner {
  display: block;
  padding: 3rem 0 2.5rem;
  max-width: 42rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: #fff;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 6.5vw, 3.55rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 0.9rem;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.trust {
  font-size: clamp(1.02rem, 2.4vw, 1.22rem);
  margin: 0 0 1.25rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}
.trust-chips span {
  background: rgba(255, 248, 240, 0.16);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.hero-actions .btn-orange {
  font-size: 1.1rem;
  min-height: 56px;
  padding: 0.95rem 1.75rem;
}

.hero-slash {
  height: 28px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  margin-top: auto;
}

/* Split / about bands */
.split {
  display: grid;
  gap: 0.85rem 2.5rem;
  padding: 2.8rem 0;
}
.split h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--teal-deep);
  text-wrap: balance;
}
.split .split-body p { margin: 0 0 0.9rem; color: var(--muted); }
.split .split-body p:last-of-type { margin-bottom: 0; }
@media (min-width: 800px) {
  .split { grid-template-columns: minmax(14rem, 0.36fr) 1fr; align-items: start; padding: 3.4rem 0; }
}

.section { padding: 2.8rem 0 3.2rem; }
.section h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  font-weight: 900;
  color: var(--teal-deep);
  letter-spacing: -0.03em;
}
.lede { color: var(--muted); margin: 0 0 1.5rem; max-width: 42rem; }

.landmarks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.1rem;
}
.landmarks span {
  background: var(--white);
  color: var(--teal-d);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

/* Photo / climate band — teal deep */
.photo-band {
  position: relative;
  background: var(--teal-deep);
  color: #fff;
}
.photo-band-inner {
  display: grid;
  gap: 1.5rem;
  padding: 2.6rem 0 2.2rem;
  align-items: center;
}
.photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.photo-stack img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.photo-stack img:first-child {
  grid-column: 1 / -1;
  height: 180px;
}
.photo-band h2 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.photo-band p { color: rgba(255, 255, 255, 0.92); margin: 0 0 1rem; }
@media (min-width: 800px) {
  .photo-band-inner { grid-template-columns: minmax(240px, 0.45fr) 1fr; gap: 2.5rem; padding: 3.2rem 0 2.8rem; }
  .photo-stack img { height: 110px; }
  .photo-stack img:first-child { height: 160px; }
}

/* Service cards — icon/tile grid with teal accents */
.cards {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .cards { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.15rem 1.3rem;
  background: var(--white);
  border-top: 4px solid var(--teal);
  box-shadow: 0 4px 14px rgba(2, 60, 58, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
  border-top-color: var(--orange);
}
.card .svc-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  background: rgba(10, 122, 116, 0.1);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}
.card .svc-icon svg { width: 1.35rem; height: 1.35rem; }
.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
}
.card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Process — horizontal numbered timeline */
.process-band {
  background: var(--white);
  border-block: 1px solid var(--line);
}
.timeline {
  display: grid;
  gap: 1rem;
  counter-reset: step;
  position: relative;
}
@media (min-width: 800px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .timeline::before {
    content: "";
    position: absolute;
    top: 1.55rem;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--teal));
    z-index: 0;
  }
}
.t-step {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: 14px;
  padding: 1.25rem 1.1rem 1.35rem;
  border: 1px solid var(--line);
}
@media (min-width: 800px) {
  .t-step {
    background: transparent;
    border: none;
    padding: 0 0.75rem;
    text-align: center;
  }
}
.t-num {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  box-shadow: 0 6px 16px rgba(232, 93, 4, 0.35);
  position: relative;
  z-index: 1;
}
@media (min-width: 800px) {
  .t-num { margin-inline: auto; }
}
.t-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
}
.t-step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Areas */
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pills span {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--teal-deep);
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
}
.pills span:first-child {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* FAQ */
.faq-band { background: var(--cream-2); }
.faq-list { display: grid; gap: 0.6rem; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  border-left: 4px solid var(--teal);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  padding: 0.85rem 1rem 0.85rem 1.15rem;
  font-weight: 800;
  color: var(--teal-deep);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; border-radius: 12px; }
.chev {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform 0.2s ease;
  background: var(--cream);
}
.faq-list details[open] .chev { transform: rotate(180deg); background: rgba(232, 93, 4, 0.12); }
.faq-list .faq-a {
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  margin: 0;
}

/* Article */
.article { padding: 2.8rem 0 3.2rem; background: var(--white); }
.article h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--teal-deep);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.article h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  margin: 1.6rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.article p { color: var(--muted); margin: 0 0 0.95rem; }
.article ol, .article ul { color: var(--muted); padding-left: 1.2rem; }
.article li { margin: 0.35rem 0; }
.article a { font-weight: 700; color: var(--teal); }

/* Contact strip */
#contact {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

/* Final CTA — orange band */
.final-cta {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-d) 55%, var(--teal-d) 100%);
  color: #fff;
  text-align: center;
  padding: 3.2rem 0 3.4rem;
}
.final-cta h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
}
.final-cta p { margin: 0 0 1.35rem; color: rgba(255, 255, 255, 0.92); }

/* Footer — distinct deep teal */
.site-footer {
  background: var(--teal-deep);
  color: rgba(255, 255, 255, 0.86);
  padding: 2.6rem 0 6.5rem;
  font-size: 0.92rem;
  border-top: 4px solid var(--orange);
}
@media (min-width: 768px) { .site-footer { padding-bottom: 2.6rem; } }
.footer-grid {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.1fr 1.4fr 1fr;
    gap: 2rem;
  }
  .footer-grid .credits { grid-column: 1 / -1; }
}
.site-footer strong { color: #fff; font-size: 1.05rem; }
.site-footer a { color: var(--orange-h); font-weight: 700; }
.site-footer a:hover { color: #fff; }
.credits { margin-top: 0.5rem; font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); }
.nap { margin: 0; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.footer-brand .wm-mark { width: 2rem; height: 2rem; font-size: 0.9rem; }

/* Float call — desktop */
.float-call {
  display: none;
  position: fixed;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.45);
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.float-call:hover { background: var(--orange-d); }
.float-call:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.float-call svg { width: 24px; height: 24px; }
@media (min-width: 768px) { .float-call { display: flex; } }

/* Sticky bottom call bar — mobile orange */
.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: var(--orange);
  border-top: none;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  display: flex;
  justify-content: center;
  box-shadow: 0 -6px 20px rgba(232, 93, 4, 0.35);
}
.callbar .btn {
  width: min(520px, 100%);
  background: #fff;
  color: var(--orange-d);
  border-color: #fff;
}
.callbar .btn:hover { background: var(--cream); }
@media (min-width: 768px) { .callbar { display: none; } }

/* Privacy inner */
.page-main { padding: 2.5rem 0 3.5rem; }
.page-main h1 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--teal-deep);
  margin: 0 0 1rem;
}
.page-main p { color: var(--muted); }
