:root {
  --ink: #102331;
  --muted: #5d6c76;
  --bg: #f5f8f8;
  --surface: #ffffff;
  --water: #0a6f82;
  --water-dark: #063d4a;
  --storm: #d9eef1;
  --sun: #f0b650;
  --line: #dce7e9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(245, 248, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: #fff;
  background: var(--water-dark);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.header-call,
.button.primary {
  color: #fff;
  background: var(--water-dark);
}

.button.secondary {
  color: var(--water-dark);
  background: var(--storm);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 15%, rgba(240, 182, 80, 0.26), transparent 34%),
    linear-gradient(145deg, #f8fbfb 0%, #e4f2f4 100%);
}

.hero > *,
.intro > *,
.process > *,
.photo-band > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.hero-lede {
  max-width: 680px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(16, 35, 49, 0.18);
}

.availability {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 35, 49, 0.18);
}

.availability a {
  color: var(--water);
  font-weight: 900;
  text-decoration: none;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-strip div {
  display: grid;
  gap: 4px;
  padding: 28px clamp(18px, 4vw, 44px);
  background: var(--surface);
}

.quick-strip strong {
  font-size: 1.05rem;
}

.quick-strip span {
  color: var(--muted);
}

.intro,
.process,
.photo-band,
.areas,
.faq,
.final-cta {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--surface);
}

.intro-image img {
  max-height: 720px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.intro-copy p:not(.eyebrow),
.section-head p,
.process p,
.photo-band p,
.final-cta p,
.faq p {
  color: var(--muted);
}

.text-link {
  color: var(--water);
  font-weight: 900;
  text-decoration: none;
}

.services {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--water-dark);
  color: #fff;
}

.services .eyebrow {
  color: var(--sun);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.services .section-head p,
.services article p {
  color: #cce2e6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.service-grid article {
  min-height: 220px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--sun);
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  background: #eef6f7;
}

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

.process-list div {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.process-list span {
  color: var(--muted);
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--surface);
}

.photo-band img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.areas {
  background: #f8fbfb;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 960px;
  margin-top: 28px;
}

.area-list span {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 800;
}

.faq {
  background: var(--surface);
}

.faq details {
  max-width: 860px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.final-cta {
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(6, 61, 74, 0.85), rgba(6, 61, 74, 0.85)),
    url("assets/houston-flood-response.jpg") center / cover;
}

.final-cta .eyebrow {
  color: var(--sun);
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #d9eef1;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #cfe1e4;
  background: #061f29;
}

footer a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

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

  nav {
    display: none;
  }

  .hero,
  .intro,
  .process,
  .photo-band {
    grid-template-columns: 1fr;
  }

  .quick-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    align-items: flex-start;
    font-size: 0.95rem;
  }

  .header-call,
  .button {
    width: 100%;
  }

  .hero,
  .intro,
  .services,
  .process,
  .photo-band,
  .areas,
  .faq,
  .final-cta {
    padding: 44px 16px;
  }

  h1 {
    max-width: 100%;
    font-size: 1.86rem;
    line-height: 1.1;
    word-break: normal;
  }

  .availability {
    position: static;
    margin-top: 12px;
    max-width: none;
  }
}
