/* ==========================================================================
   Easy Plumbing FL — stylesheet
   Single file, no build step, mobile-first. Organised top-to-bottom:
   tokens → base → layout → components → header → hero → sections → footer
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens — brand colours sampled from the Sunshine Coast logo
   -------------------------------------------------------------------------- */
:root {
  --teal-950: #062e35;
  --teal-900: #0b4a56;   /* Deep Teal — headings, dark sections */
  --teal-700: #13828d;   /* Gulf Teal — brand, icons */
  --teal-600: #0f6f79;   /* text-safe teal for links on sand */
  --sunset: #e8611a;     /* logo "Easy", large display text */
  --sunset-600: #cf4711; /* buttons — 4.6:1 with white text */
  --sunset-700: #b23c0d;
  --citrus: #f68a1f;
  --gold: #fdb42d;
  --sand: #fbf4ea;
  --sand-200: #f3e7d5;
  --sand-300: #e6d6bf;

  --ink: #0f2a30;
  --text: #33494e;
  --muted: #5e7378;
  --line: #ebe3d7;
  --error: #b42318;

  --font-display: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-script: "Pacifico", "Brush Script MT", cursive;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(4rem, 8vw, 7rem);
  --header-h: 72px;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(11, 74, 86, .06), 0 3px 10px rgba(11, 74, 86, .06);
  --shadow: 0 6px 16px rgba(11, 74, 86, .08), 0 18px 40px rgba(11, 74, 86, .1);
  --shadow-lg: 0 12px 30px rgba(11, 74, 86, .12), 0 32px 70px rgba(11, 74, 86, .16);

  --ease: cubic-bezier(.2, .7, .2, 1);
  --transition: 200ms var(--ease);
}

@media (min-width: 900px) {
  :root { --header-h: 84px; }
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal-600); text-underline-offset: .18em; }

h1, h2, h3 {
  margin: 0 0 .5em;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--citrus); outline-offset: 3px; }

.skip-link {
  position: absolute;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .6rem 1rem;
  border-radius: 10px;
  background: var(--teal-900);
  color: #fff;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform var(--transition);
}
.skip-link:focus { transform: none; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: calc(820px + 2 * var(--gutter)); }

.section { padding-block: var(--section-y); }
.section--sand { background: var(--sand); }

.section-head {
  max-width: 46rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.section-head p:last-child { margin: 0; font-size: 1.0625rem; color: var(--muted); }

.eyebrow {
  margin: 0 0 .35rem;
  font-family: var(--font-script);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--sunset-600);
}
.eyebrow--light { color: var(--gold); }

.section h2,
.emergency h2,
.cta h2 { font-size: clamp(1.9rem, 1.3rem + 2.3vw, 2.85rem); }

/* --------------------------------------------------------------------------
   4. Components
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 48px;
  padding: .75rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 12px;
  font: 700 1rem/1.2 var(--font-sans);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition),
    border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn .icon { width: 1.2em; height: 1.2em; stroke-width: 2.2; }

.btn--primary { background: var(--sunset-600); color: #fff; box-shadow: 0 8px 18px -6px rgba(207, 71, 17, .55); }
.btn--primary:hover { background: var(--sunset-700); }
.btn--outline { border-color: var(--teal-900); color: var(--teal-900); background: transparent; }
.btn--outline:hover { background: var(--teal-900); color: #fff; }
.btn--teal { background: var(--teal-900); color: #fff; }
.btn--teal:hover { background: var(--teal-950); }
.btn--white { background: #fff; color: var(--teal-900); }
.btn--white:hover { background: var(--sand); }

.btn--lg { min-height: 56px; padding: .9rem 1.6rem; font-size: 1.0625rem; border-radius: 14px; }
.btn--xl { min-height: 64px; padding: 1rem 2rem; font-size: 1.25rem; border-radius: 16px; }
.btn--block { width: 100%; }

.pulse {
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2fd18b;
  animation: pulse 2s infinite;
}
.pulse--dark { background: var(--teal-900); animation-name: pulse-dark; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 209, 139, .55); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(47, 209, 139, 0); }
}
@keyframes pulse-dark {
  0% { box-shadow: 0 0 0 0 rgba(11, 74, 86, .45); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(11, 74, 86, 0); }
}

/* --------------------------------------------------------------------------
   5. Top bar + header
   -------------------------------------------------------------------------- */
.topbar { display: none; background: var(--teal-950); color: rgba(255, 255, 255, .8); font-size: .8125rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar__item, .topbar__list li { display: inline-flex; align-items: center; gap: .5rem; margin: 0; }
.topbar__list { display: flex; gap: 1.75rem; }
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar .icon { width: 15px; height: 15px; color: var(--gold); }

@media (min-width: 900px) {
  .topbar { display: block; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
@supports (backdrop-filter: blur(10px)) {
  .header { background: rgba(255, 255, 255, .88); backdrop-filter: saturate(1.4) blur(12px); }
}
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 28px rgba(11, 74, 86, .08); }

.header__inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { flex: none; }
.brand img { width: auto; height: 42px; }
.header__actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.header__cta { display: none; }
.header__phone { display: none; }

@media (min-width: 480px) {
  .header__cta { display: inline-flex; }
}
@media (min-width: 900px) {
  .brand img { height: 52px; }
}

/* Mobile menu panel */
.nav-toggle {
  display: inline-grid;
  place-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--sand);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2.5px; border-radius: 2px; background: var(--teal-900); transition: transform var(--transition), opacity var(--transition); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  padding: .5rem var(--gutter) 1.5rem;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 24px 40px rgba(11, 74, 86, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-open .nav { opacity: 1; visibility: visible; transform: none; }
.nav-open { overflow: hidden; }

.nav__list a {
  display: block;
  padding: 1rem .25rem;
  border-bottom: 1px solid var(--line);
  font: 700 1.125rem var(--font-display);
  color: var(--ink);
  text-decoration: none;
}
.nav__cta { display: grid; gap: .75rem; margin-top: 1.25rem; }

@media (min-width: 1080px) {
  .nav-toggle, .nav__cta { display: none; }
  .nav {
    position: static;
    max-height: none;
    overflow: visible;
    margin-left: auto;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav__list { display: flex; gap: 1.6rem; }
  .nav__list a {
    position: relative;
    padding: .5rem 0;
    border: 0;
    font: 600 .9375rem var(--font-sans);
  }
  .nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .1rem;
    height: 2px;
    border-radius: 2px;
    background: var(--sunset);
    transform: scaleX(0);
    transition: transform var(--transition);
  }
  .nav__list a:hover::after,
  .nav__list a.is-active::after { transform: scaleX(1); }
  .header__actions { margin-left: 1.5rem; }
}

@media (min-width: 1280px) {
  .header__phone {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: var(--ink);
    font: 800 1rem/1.2 var(--font-display);
    text-decoration: none;
  }
  .header__phone small { display: block; font: 600 .75rem var(--font-sans); color: var(--muted); }
  .header__phone-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--sand); color: var(--sunset-600); }
}

/* --------------------------------------------------------------------------
   6. Hero — sand sky, striped sun setting behind the quote card, teal sea
   -------------------------------------------------------------------------- */
.hero {
  --wave-h: clamp(72px, 10vw, 200px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(2.25rem, 5vw, 4.5rem);
  padding-bottom: calc(var(--wave-h) * .62);
  background:
    radial-gradient(70% 60% at 82% 100%, rgba(253, 180, 45, .3), transparent 70%),
    var(--sand);
}

.hero__grid { display: grid; gap: 2.75rem; align-items: end; }
.hero__copy { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.4rem;
  padding: .45rem 1rem .45rem .8rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--teal-900);
}

.hero__title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 1.5rem + 4.4vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--teal-900);
}
.hero__script {
  position: relative;
  display: inline-block;
  margin: -.14em 0 .02em;
  padding-right: .12em;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--sunset);
  transform: rotate(-4deg);
  transform-origin: left bottom;
}
.hero__swash {
  position: absolute;
  left: 2%;
  bottom: -.02em;
  width: 70%;
  height: .2em;
  overflow: visible;
  fill: none;
  stroke: var(--citrus);
  stroke-width: 6;
  stroke-linecap: round;
}

.hero__lead { max-width: 34rem; margin-bottom: 2rem; font-size: clamp(1.0625rem, 1rem + .3vw, 1.1875rem); }

.hero__ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }

.hero__checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem 1.25rem; max-width: 34rem; }
.hero__checks li { display: flex; align-items: flex-start; gap: .55rem; font-size: .9375rem; font-weight: 600; line-height: 1.35; color: var(--teal-900); }
.hero__checks .icon { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--teal-700); color: #fff; stroke-width: 3.2; }

.hero__visual { position: relative; width: 100%; max-width: 520px; margin-inline: auto; padding-bottom: 5rem; }

.sun {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 0;
  width: 150%;
  max-width: 780px;
  height: auto;
  aspect-ratio: 1;
  transform: translate(-50%, 50%);
  pointer-events: none;
}

.hero__birds {
  display: none;
  position: absolute;
  z-index: 1;
  top: -3.5rem;
  left: -1.5rem;
  width: 96px;
  height: 48px;
  fill: none;
  stroke: var(--teal-700);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.hero__waves {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: var(--wave-h);
  pointer-events: none;
}
.wave--back { fill: var(--teal-700); }
.wave--front { fill: var(--teal-900); }
.wave-line { fill: none; stroke: rgba(255, 255, 255, .5); stroke-width: 3.5; stroke-linecap: round; }

/* Quote card */
.quote-card {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.quote-card__title { margin-bottom: .3rem; font-size: 1.5rem; }
.quote-card__sub { margin-bottom: 1.35rem; font-size: .9375rem; color: var(--muted); }

.rating-chip {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: var(--teal-900);
  box-shadow: var(--shadow);
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  white-space: nowrap;
  width: max-content;
  transform: translate(-50%, -50%);
}
.rating-chip strong { color: #fff; font-weight: 700; }
.rating-chip .stars { flex: none; width: 78px; height: 16px; }

.stars { width: 110px; height: 22px; fill: #f5a524; }

.field { display: grid; gap: .35rem; margin-bottom: .95rem; }
.field label { font-size: .8125rem; font-weight: 600; color: var(--ink); }
.field input,
.field select {
  width: 100%;
  height: 50px;
  padding: 0 .95rem;
  border: 1.5px solid var(--sand-300);
  border-radius: 12px;
  background: #fffcf8;
  font: 500 1rem var(--font-sans);
  color: var(--ink);
  appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}
.field input::placeholder { color: #9aa9ac; }
.field select {
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b4a56' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .95rem center;
  background-size: 18px;
  cursor: pointer;
}
.field select:invalid { color: #7b8c8f; }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal-700);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(19, 130, 141, .16);
}
.field.is-invalid input,
.field.is-invalid select { border-color: var(--error); }
.field__error { min-height: 0; font-size: .8rem; font-weight: 500; color: var(--error); }
.field__error:empty { display: none; }

.field-row { display: grid; gap: 0 .9rem; }
@media (min-width: 360px) {
  .field-row { grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); }
}

.check { display: flex; align-items: center; gap: .65rem; margin: .15rem 0 1.15rem; font-size: .9375rem; font-weight: 500; cursor: pointer; }
.check input { width: 20px; height: 20px; margin: 0; accent-color: var(--sunset-600); cursor: pointer; }

.quote-form__note { display: flex; align-items: center; justify-content: center; gap: .4rem; margin: .9rem 0 0; font-size: .8125rem; color: var(--muted); }
.quote-form__note .icon { width: 15px; height: 15px; }

.quote-success { padding: 1rem 0 .5rem; text-align: center; }
.quote-success p { margin-bottom: 1.5rem; }
.quote-success__icon { display: inline-grid; place-items: center; width: 64px; height: 64px; margin-bottom: 1rem; border-radius: 50%; background: var(--teal-700); color: #fff; }
.quote-success__icon .icon { width: 32px; height: 32px; stroke-width: 3; }

@media (max-width: 559px) {
  .hero__ctas .btn { width: 100%; }
}

@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 3.5rem; }
  .hero__copy { padding-bottom: 4.5rem; }
  .hero__visual { max-width: none; padding-bottom: 3.75rem; }
  .hero__birds { display: block; }
  .quote-card { padding: 2.75rem 2rem 2rem; }
}

/* Hero entrance */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes sunrise {
  from { opacity: 0; transform: translate(-50%, 66%); }
  to { opacity: 1; transform: translate(-50%, 50%); }
}
.js .hero__copy > * { animation: rise .7s var(--ease) both; }
.js .hero__copy > :nth-child(2) { animation-delay: .07s; }
.js .hero__copy > :nth-child(3) { animation-delay: .14s; }
.js .hero__copy > :nth-child(4) { animation-delay: .21s; }
.js .hero__copy > :nth-child(5) { animation-delay: .28s; }
.js .quote-card { animation: rise .8s var(--ease) .2s both; }
.js .sun { animation: sunrise 1.6s var(--ease) .1s both; }

/* --------------------------------------------------------------------------
   7. Trust strip — continues the sea from the hero waves
   -------------------------------------------------------------------------- */
.trust { padding: 1.25rem 0 3rem; background: var(--teal-900); color: rgba(255, 255, 255, .72); }
.trust__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 1rem; }
.trust__item { display: flex; flex-direction: column; gap: .75rem; }
.trust__item p { margin: 0; font-size: .875rem; line-height: 1.45; }
.trust__item strong { display: block; margin-bottom: .15rem; font: 700 1rem/1.3 var(--font-display); color: #fff; }
.trust__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(255, 255, 255, .08); color: var(--gold); }
.trust__icon .icon { width: 26px; height: 26px; }

@media (min-width: 700px) {
  .trust__item { flex-direction: row; align-items: flex-start; gap: 1rem; }
}
@media (min-width: 1024px) {
  .trust__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
}

/* --------------------------------------------------------------------------
   8. Services
   -------------------------------------------------------------------------- */
.services { display: grid; gap: 1rem; }
.service {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-4px); }
.service__icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--sand);
  color: var(--teal-700);
  transition: background-color var(--transition), color var(--transition);
}
.service__icon .icon { width: 28px; height: 28px; }
.service:hover .service__icon { background: var(--teal-900); color: var(--gold); }
.service h3 { margin: .1rem 0 .3rem; font-size: 1.0625rem; }
.service p { margin: 0; font-size: .9375rem; line-height: 1.55; color: var(--muted); }

@media (min-width: 640px) {
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
  .service { display: block; padding: 1.75rem 1.5rem 1.6rem; }
  .service__icon { width: 58px; height: 58px; margin-bottom: 1.15rem; }
  .service h3 { margin: 0 0 .45rem; font-size: 1.125rem; }
}
@media (min-width: 1100px) {
  .services { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------------------
   9. Emergency band
   -------------------------------------------------------------------------- */
.emergency {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(100deg, var(--gold) 0%, #faa028 50%, var(--citrus) 100%);
  color: #173f46;
}
.emergency::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -170px;
  width: 380px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .3) 0 12px, transparent 12px 26px);
  transform: translateY(-50%);
  pointer-events: none;
}
.emergency__inner { position: relative; display: grid; gap: 1.75rem; align-items: center; }
.emergency__kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .75rem;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-900);
}
.emergency h2 { margin-bottom: .6rem; color: var(--teal-950); }
.emergency p:last-child { max-width: 40rem; margin: 0; font-size: 1.0625rem; }
.emergency .btn { justify-self: start; }

@media (max-width: 559px) {
  .emergency .btn { justify-self: stretch; }
}
@media (min-width: 900px) {
  .emergency::before { right: -60px; width: 560px; }
  .emergency__inner { grid-template-columns: minmax(0, 1fr) auto; gap: 3rem; }
}

/* --------------------------------------------------------------------------
   10. Process
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: 1.25rem; }
.step { position: relative; padding: 1.75rem 1.5rem; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.step__num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--teal-900);
  box-shadow: 0 0 0 6px var(--sand);
  font: 800 1.25rem var(--font-display);
  color: #fff;
}
.step:nth-child(2) .step__num { background: var(--teal-700); }
.step:nth-child(3) .step__num { background: var(--sunset-600); }
.step h3 { font-size: 1.25rem; }
.step p { margin: 0; color: var(--muted); }

@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
  .step { padding: 2rem 1.75rem; }
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(2rem + 26px);
    left: calc(1.75rem + 72px);
    right: -1.5rem;
    border-top: 2px dashed var(--sand-300);
  }
}

/* --------------------------------------------------------------------------
   11. About
   -------------------------------------------------------------------------- */
.about { display: grid; gap: clamp(2.75rem, 6vw, 5rem); align-items: center; }
.about__visual { position: relative; width: 100%; max-width: 480px; margin-inline: auto; }
.about__scene { width: 100%; height: auto; border-radius: 28px; box-shadow: var(--shadow-lg); }
.scene-birds { fill: none; stroke: rgba(255, 255, 255, .75); stroke-width: 2.5; stroke-linecap: round; }
.scene-line { fill: none; stroke: rgba(255, 255, 255, .45); stroke-width: 4; stroke-linecap: round; }

.stat {
  position: absolute;
  display: grid;
  padding: .8rem 1.1rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  line-height: 1.2;
}
.stat strong { display: inline-flex; align-items: center; gap: .2rem; font: 800 1.5rem var(--font-display); color: var(--teal-900); }
.stat span { font-size: .8125rem; font-weight: 500; color: var(--muted); }
.stat .icon--star { width: 20px; height: 20px; fill: #f5a524; stroke: none; }
.stat--a { top: 7%; left: .75rem; }
.stat--b { top: 44%; right: .75rem; }
.stat--c { bottom: 7%; left: 12%; }

.about__copy > p:not(.eyebrow) { font-size: 1.0625rem; }
.ticks { display: grid; gap: 1rem; margin: 1.75rem 0 2.25rem; }
.ticks li { display: flex; align-items: flex-start; gap: .85rem; }
.ticks p { margin: 0; }
.ticks strong { color: var(--ink); }
.ticks .icon { width: 26px; height: 26px; margin-top: .05rem; padding: 5px; border-radius: 50%; background: var(--teal-700); color: #fff; stroke-width: 3.2; }

@media (min-width: 600px) {
  .stat--a { left: -1.5rem; }
  .stat--b { right: -1.75rem; }
}
@media (min-width: 960px) {
  .about { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
}

/* --------------------------------------------------------------------------
   12. Reviews
   -------------------------------------------------------------------------- */
.reviews { display: grid; gap: 1.25rem; }
.review {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.review::before {
  content: "\201C";
  position: absolute;
  top: .25rem;
  right: 1.35rem;
  font: 400 4.5rem/1 var(--font-script);
  color: var(--sand-300);
}
.review blockquote { flex: 1; margin: 0; }
.review blockquote p { margin: 0; }
.review figcaption { display: flex; align-items: center; gap: .8rem; font-size: .875rem; line-height: 1.35; color: var(--muted); }
.review figcaption strong { display: block; font-size: .9375rem; color: var(--ink); }
.avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-900);
  font: 700 .875rem var(--font-display);
  color: #fff;
}
.review:nth-child(2) .avatar { background: var(--sunset-600); }
.review:nth-child(3) .avatar { background: var(--teal-700); }

@media (min-width: 900px) {
  .reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
}

/* --------------------------------------------------------------------------
   13. Service area
   -------------------------------------------------------------------------- */
.areas { background: var(--teal-900); color: rgba(255, 255, 255, .8); }
.areas h2 { color: #fff; }
.areas__inner { display: grid; gap: 2.5rem; align-items: center; }
.areas__copy p:not(.eyebrow) { margin-bottom: 1.75rem; }
.areas__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.areas__list li {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}
.areas__list .icon { width: 18px; height: 18px; color: var(--gold); }

@media (min-width: 600px) {
  .areas__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 960px) {
  .areas__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 4rem; }
}

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .85rem; }
.faq__item {
  border: 1px solid transparent;
  border-radius: 16px;
  background: var(--sand);
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.faq__item[open] { border-color: var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font: 700 1.0625rem/1.35 var(--font-display);
  color: var(--ink);
  list-style: none;
  cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cf4711' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform var(--transition), background-color var(--transition);
}
.faq__item[open] summary::after { background-color: var(--sand); transform: rotate(45deg); }
.faq__item p { margin: 0; padding: 0 1.35rem 1.35rem; }

/* --------------------------------------------------------------------------
   15. Closing CTA
   -------------------------------------------------------------------------- */
.cta { padding-bottom: var(--section-y); }
.cta__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 2rem;
  padding: clamp(2.25rem, 6vw, 4.25rem);
  border-radius: 28px;
  background: radial-gradient(120% 140% at 100% 100%, #13828d 0%, #0b4a56 55%, #073840 100%);
  color: rgba(255, 255, 255, .82);
}
.cta__copy { max-width: 36rem; }
.cta__card h2 { margin-bottom: .75rem; color: #fff; }
.cta__card h2 span { display: block; margin-top: .2em; font-family: var(--font-script); font-weight: 400; font-size: 1.05em; letter-spacing: 0; color: var(--gold); }
.cta__card p { margin: 0; font-size: 1.0625rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.cta__sun { position: absolute; z-index: -1; top: -150px; right: -110px; width: 230px; height: 230px; transform: rotate(180deg); opacity: .9; }

@media (max-width: 559px) {
  .cta__actions .btn { width: 100%; }
}
@media (min-width: 900px) {
  .cta__sun { top: auto; right: 4%; bottom: -230px; width: 460px; height: 460px; transform: none; }
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.footer { padding-top: clamp(3.5rem, 7vw, 5rem); background: var(--teal-950); color: rgba(255, 255, 255, .7); font-size: .9375rem; }
.footer__grid { display: grid; gap: 2.5rem; }
.footer__brand img { width: auto; height: 54px; margin-bottom: 1.25rem; }
.footer__brand p { max-width: 24rem; }
.footer h3 { margin-bottom: 1rem; font-size: 1rem; letter-spacing: 0; color: #fff; }
.footer li + li { margin-top: .6rem; }
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__contact li { display: flex; align-items: flex-start; gap: .65rem; }
.footer__contact .icon { width: 18px; height: 18px; margin-top: .2rem; color: var(--gold); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .25rem 1.5rem;
  margin-top: 3rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .8125rem;
  color: rgba(255, 255, 255, .55);
}
.footer__bottom p { margin: 0; }

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.35fr; gap: 3rem; }
}

/* --------------------------------------------------------------------------
   17. Mobile call bar
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed;
  z-index: 40;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  padding: .65rem var(--gutter) calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 -8px 24px rgba(11, 74, 86, .12);
}
.mobile-bar .btn { min-height: 50px; }

@media (max-width: 767px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
}
@media (min-width: 768px) {
  .mobile-bar { display: none; }
}

/* --------------------------------------------------------------------------
   18. Scroll reveal (only when JS is running) + reduced motion
   -------------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}
