/* North Tampa Exterior Wash lead-generation website */
:root {
  --bg: #f5f1e8;
  --bg-soft: #fffaf0;
  --ink: #163333;
  --muted: #5f706d;
  --line: #d8d0c2;
  --brand: #0f3d3e;
  --brand-2: #1e6f68;
  --accent: #f3a53d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 61, 62, 0.14);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

img {
  max-width: 100%;
}

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

.narrow {
  max-width: 780px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(245, 241, 232, 0.9);
  border-bottom: 1px solid rgba(216, 208, 194, 0.75);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 28px rgba(15, 61, 62, 0.18);
}

.brand strong {
  display: block;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 750;
  font-size: 0.94rem;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--brand-2);
}

.nav-phone {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand);
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15, 61, 62, 0.08);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(15, 61, 62, 0.14);
}

.button-primary {
  background: var(--brand);
  color: var(--white);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
}

.button-wide {
  width: 100%;
}

.text-button {
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-2);
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 80px;
  background:
    radial-gradient(circle at 12% 10%, rgba(30, 111, 104, 0.18), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(243, 165, 61, 0.23), transparent 30%),
    linear-gradient(180deg, #fbf7ee 0%, var(--bg) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(30, 111, 104, 0.09);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  gap: 44px;
  align-items: start;
}

.hero-compact {
  padding-top: 62px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.hero-compact h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero-lede {
  max-width: 690px;
  color: #354a48;
  font-size: clamp(1.16rem, 2vw, 1.44rem);
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(15, 61, 62, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #334d4b;
  font-weight: 800;
  font-size: 0.9rem;
}

.notice-card,
.local-callout,
.rich-card,
.hero-card,
.service-card,
.area-card,
.problem-card,
.process-grid article,
.faq-list details {
  border: 1px solid rgba(15, 61, 62, 0.11);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.notice-card {
  max-width: 780px;
  padding: 18px 20px;
  border-radius: 20px;
  color: #38514f;
}

.notice-card a {
  margin-left: 10px;
  color: var(--brand);
  font-weight: 900;
}

.hero-card {
  position: sticky;
  top: 98px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.form-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.form-heading p:last-child {
  margin-bottom: 22px;
  color: var(--muted);
}

.quote-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 0.56fr;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: #263d3b;
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 61, 62, 0.18);
  border-radius: 16px;
  background: #fffef9;
  color: var(--ink);
  outline: none;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  padding: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(30, 111, 104, 0.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note a {
  color: var(--brand);
  font-weight: 900;
}

.form-status:not(:empty) {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(30, 111, 104, 0.1);
  color: var(--brand);
  font-weight: 800;
}

.section {
  padding: 82px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.split-heading > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.surface-section {
  background: linear-gradient(180deg, var(--bg) 0%, #eaf0e8 100%);
}

.problem-grid,
.service-grid,
.area-grid,
.process-grid,
.location-grid {
  display: grid;
  gap: 18px;
}

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

.problem-card,
.service-card,
.area-card,
.rich-card,
.process-grid article {
  border-radius: 22px;
  padding: 24px;
}

.problem-card span,
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(30, 111, 104, 0.12);
  color: var(--brand);
  font-weight: 950;
}

.problem-card p,
.service-card p,
.area-card p,
.rich-card p,
.process-grid p,
.faq-list p {
  color: var(--muted);
}

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

.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card p {
  flex: 1;
}

.service-card-accent {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--white);
}

.service-card-accent p {
  color: rgba(255, 255, 255, 0.82);
}

.service-card-accent .button {
  border-color: transparent;
}

.area-section {
  background: var(--bg-soft);
}

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

.area-card a,
.footer-grid a {
  display: block;
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.area-card a:hover,
.footer-grid a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.local-callout {
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.local-callout h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.neighborhood-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.process-section {
  background: #102f30;
  color: var(--white);
}

.process-section .eyebrow {
  color: #89e0d6;
}

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

.process-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.process-grid span {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.process-grid p {
  color: rgba(255, 255, 255, 0.75);
}

.proof-section {
  background: var(--bg-soft);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

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

.photo-slot {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 20px;
  border: 1px dashed rgba(15, 61, 62, 0.3);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(15, 61, 62, 0.74), rgba(30, 111, 104, 0.52)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.4) 0 10px, rgba(255, 255, 255, 0.15) 10px 20px);
  color: var(--white);
  font-weight: 950;
  text-align: center;
}

.faq-section {
  background: #f5f1e8;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: none;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  padding: 62px 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(243, 165, 61, 0.28), transparent 26%),
    linear-gradient(135deg, var(--brand), #092728);
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .eyebrow {
  color: #89e0d6;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.final-cta .button {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--accent);
  color: #1b251f;
}

.site-footer {
  padding: 58px 0 96px;
  background: #092728;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.55fr;
  gap: 42px;
}

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

.footer-grid a {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
}

.footer-brand .brand-mark {
  background: var(--white);
  color: var(--brand);
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-policy-link {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-decoration: none;
}

.footer-policy-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.mobile-cta {
  display: none;
}

.thank-you-hero {
  min-height: 70vh;
}

.next-step-card {
  margin-top: 30px;
  text-align: left;
}

.next-step-card h2 {
  font-size: 1.8rem;
}



.quote-card .button-wide,
.quote-embed-card .button-wide {
  margin-bottom: 16px;
}

.quote-option-list {
  display: grid;
  gap: 12px;
  margin: 4px 0 20px;
}

.quote-option-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  padding: 14px;
  border: 1px solid rgba(15, 61, 62, 0.1);
  border-radius: 18px;
  background: rgba(15, 61, 62, 0.04);
}

.quote-option-list span {
  display: inline-grid;
  grid-row: span 2;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(30, 111, 104, 0.12);
  color: var(--brand);
  font-weight: 950;
}

.quote-option-list strong {
  color: var(--ink);
}

.quote-option-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-hero {
  padding-top: 62px;
}

.quote-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 0.82fr);
  gap: 36px;
  align-items: start;
}

.quote-page-card {
  margin-top: 26px;
  padding: 24px;
  border-radius: 22px;
}

.quote-page-card h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.quote-page-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.quote-page-card p {
  margin-bottom: 0;
}

.quote-embed-card {
  position: static;
}

.quote-embed {
  overflow: hidden;
  border: 1px solid rgba(15, 61, 62, 0.12);
  border-radius: 20px;
  background: var(--white);
}

.quote-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  background: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-grid,
  .quote-page-grid,
  .split-heading,
  .proof-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: static;
  }

  .quote-page-grid {
    grid-template-columns: 1fr;
  }

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

  .final-cta-grid {
    align-items: start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: static;
    display: grid;
    gap: 14px;
    padding: 14px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 10px;
  }

  .site-nav > a:not(.nav-phone) {
    display: none;
  }

  .nav-phone {
    padding: 8px 12px;
  }

  .hero {
    padding: 46px 0 52px;
  }

  h1 {
    font-size: clamp(2.8rem, 18vw, 4.8rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .notice-card a {
    display: inline-block;
    margin-left: 0;
    margin-right: 12px;
    margin-top: 8px;
  }

  .hero-card {
    padding: 20px;
  }

  .form-grid,
  .quote-page-grid,
  .problem-grid,
  .service-grid,
  .area-grid,
  .process-grid,
  .location-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .neighborhood-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(15, 61, 62, 0.12);
    border-radius: 22px;
    background: rgba(255, 250, 240, 0.92);
    box-shadow: 0 24px 70px rgba(15, 61, 62, 0.2);
    backdrop-filter: blur(14px);
  }

  .mobile-cta .button {
    min-height: 46px;
  }
}
