:root {
  --navy: #334155;
  --navy-deep: #24303f;
  --navy-ink: #1c2531;
  --gold: #FF766C;
  --gold-deep: #e8584d;
  --olive: #22A6A1;
  --olive-deep: #1b8480;
  --mint: #A8E6CF;
  --mint-deep: #8ad4b8;
  --cream: #FFFBF7;
  --cream-deep: #F5EDE1;
  --white: #ffffff;
  --ink: #1b2430;
  --muted: #5d6672;
  --line: rgba(51, 65, 85, 0.14);
  --shadow: 0 20px 50px rgba(51, 65, 85, 0.14);
  --shadow-lg: 0 28px 70px rgba(51, 65, 85, 0.22);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 152px;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Sits between .hero and the next section as its own element (not clipped
   by .hero's overflow:hidden), pulled up with a negative margin so the line
   visually straddles the seam between both sections instead of living
   entirely inside one of them. */
.hero-wave-wrap {
  position: relative;
  z-index: 5;
  margin-top: -46px;
  height: 92px;
  overflow: visible;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-wave-wrap {
    display: none;
  }
}

.hero-wave {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* ---------- decorative sparkles + hearts ---------- */

.decor-sparkle,
.decor-heart {
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 3;
}

.decor-sparkle svg,
.decor-heart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.decor-sparkle {
  color: var(--olive);
  animation: sparkleTwinkle 2.8s ease-in-out infinite;
}

.decor-sparkle.is-gold {
  color: var(--gold);
}

.decor-heart {
  color: var(--gold);
  animation: heartBeat 2.2s ease-in-out infinite;
}

@keyframes sparkleTwinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.7) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.15) rotate(14deg);
  }
}

@keyframes heartBeat {
  0%,
  60%,
  100% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.18);
  }
  30% {
    transform: scale(0.96);
  }
  45% {
    transform: scale(1.1);
  }
}

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(51, 65, 85, 0.08);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(51, 65, 85, 0.1);
}

.site-header.is-scrolled .utility-bar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.utility-bar {
  background: var(--olive);
  color: var(--white);
  overflow: hidden;
  max-height: 40px;
  transition: max-height 220ms ease, opacity 220ms ease, padding 220ms ease;
}

.utility-bar-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 1.8rem;
  padding: 0.45rem 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.utility-bar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.utility-bar-inner svg {
  flex-shrink: 0;
  opacity: 0.92;
}

/* Mobile utility bar sits below the nav row instead of above it, and is
   hidden entirely on desktop where the original bar above the nav is used. */
.utility-bar--mobile {
  display: none;
}

@media (max-width: 900px) {
  .utility-bar--desktop {
    display: none;
  }

  .utility-bar--mobile {
    display: block;
    /* Generous ceiling so wrapped lines never get clipped; the transition
       still lets .is-scrolled collapse it down to 0 smoothly. */
    max-height: 220px;
  }

  .utility-bar--mobile .utility-bar-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.1rem;
    padding: 0.55rem 1rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 560px) {
  .utility-bar--mobile .utility-bar-inner {
    font-size: 0.66rem;
    gap: 0.3rem 0.7rem;
  }
}

.nav-shell {
  width: min(100% - 2rem, var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand img {
  width: clamp(140px, 19vw, 172px);
  height: auto;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-menu a {
  position: relative;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--navy);
  background: rgba(255, 118, 108, 0.28);
  transform: translateY(-1px);
}

.site-menu a.cta {
  background: var(--navy);
  color: var(--white);
}

.site-menu a.cta:hover,
.site-menu a.cta:focus-visible {
  background: var(--gold);
  color: var(--navy-ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 3px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 10rem 0 4rem;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("/assets/lotus-design-n-print--iQYdCr4EpE-unsplash.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@media (max-width: 900px) {
  .hero-media {
    background-image: url("/assets/callum-hill-99Sw9rxYhlQ-unsplash.jpg");
    background-position: center 25%;
  }
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 251, 247, 0.97) 0%, rgba(255, 251, 247, 0.9) 38%, rgba(255, 251, 247, 0.4) 68%, rgba(255, 251, 247, 0.12) 100%),
    linear-gradient(180deg, rgba(36, 48, 63, 0.14) 0%, rgba(36, 48, 63, 0.02) 55%, rgba(255, 251, 247, 0.94) 100%);
}

.hero-content {
  position: relative;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding-top: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.9rem;
  color: var(--olive-deep);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
}

.eyebrow svg {
  flex-shrink: 0;
}

.eyebrow svg ~ * {
  margin-left: -0.15rem;
}

.hero-content .eyebrow::before {
  display: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-ink);
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 800;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hl-teal,
.hl-coral {
  display: inline-block;
  font-family: "Caveat", "Playfair Display", cursive;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-1.5deg);
}

.hl-teal {
  color: var(--olive);
}

.hl-coral {
  color: var(--gold);
  position: relative;
}

.hl-coral::after {
  content: "";
  position: absolute;
  left: 0.05em;
  right: 0.1em;
  bottom: -0.06em;
  height: 0.06em;
  border-radius: 3px;
  background: var(--gold);
  opacity: 0.55;
}

h2 {
  margin: 0;
  color: var(--navy-ink);
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0 0 0.6rem;
  color: var(--navy-ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  margin: 1.25rem 0 0;
  color: #3c4452;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  font-weight: 550;
}

.hero-tagline-card {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  max-width: 400px;
  margin: 1.4rem 0 0;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-tagline-icon {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--olive-deep);
}

.hero-tagline-card p {
  margin: 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero-tagline-card em {
  font-style: normal;
  font-weight: 800;
}

.hero-tagline-card em.hl-teal {
  color: var(--olive-deep);
}

.hero-tagline-card em.hl-coral {
  color: var(--gold-deep);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.3rem;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(255, 118, 108, 0.35);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-deep);
  box-shadow: 0 18px 44px rgba(232, 88, 77, 0.4);
}

.button-secondary {
  background: var(--white);
  color: var(--olive-deep);
  border: 1.5px solid var(--olive);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--olive-deep);
  background: var(--mint);
  color: var(--olive-deep);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.1rem;
  max-width: 780px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.52rem 0.9rem;
  border: 1px solid rgba(34, 166, 161, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 850;
}

.trust-strip span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
  flex-shrink: 0;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 3.6rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  opacity: 0.55;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scroll-cue svg {
  animation: bob 1.8s ease-in-out infinite;
}

/* ---------- shared section shells ---------- */

.section-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section-band {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream);
}

.section-band.alt {
  background: var(--cream-deep);
}

.section-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 850px;
}

.section-heading.centered {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

/* ---------- areas served ---------- */

.areas-intro {
  max-width: 620px;
  margin: 0.9rem auto 0;
  color: var(--muted);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 2.4rem;
  margin-top: 2.6rem;
}

.areas-group h3 {
  margin: 0 0 0.9rem;
  color: var(--olive-deep);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.areas-tags span {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 700px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- services grid ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 254px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(51, 65, 85, 0.06);
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms ease, border-color 220ms ease, outline-color 220ms ease;
  outline: 2px solid transparent;
  outline-offset: 3px;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(34, 166, 161, 0.5);
  outline-color: rgba(34, 166, 161, 0.4);
  box-shadow: var(--shadow-lg);
}

.service-card:hover .service-icon,
.service-card:focus-visible .service-icon {
  background: var(--olive);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}

.service-card:hover .card-arrow,
.service-card:focus-visible .card-arrow {
  transform: translate(3px, -3px);
  opacity: 1;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

.service-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  min-height: 0;
}

.service-card--wide .card-top {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-card--wide .card-arrow {
  display: none;
}

.service-card--wide h3 {
  margin: 0;
}

.service-card--wide p {
  flex: 2;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--olive-deep);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.card-arrow {
  color: var(--olive);
  opacity: 0.5;
  transition: transform 220ms ease, opacity 220ms ease;
}

/* ---------- split sections ---------- */

.split-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.split-section.commercial {
  background:
    linear-gradient(160deg, rgba(51, 65, 85, 0.93) 0%, rgba(36, 48, 63, 0.96) 100%),
    url("/assets/a-company-s-cleaning-lady-is-diligently-cleaning-t-2026-03-24-10-13-14-utc.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.section-photo {
  margin-bottom: 1.2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.section-photo:hover img {
  transform: scale(1.04);
}

.photo-banner {
  position: relative;
  min-height: 240px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.photo-banner-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}

.photo-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(51, 65, 85, 0.85), rgba(34, 166, 161, 0.6));
}

.photo-banner-text {
  margin: 0;
  max-width: 720px;
  padding: 0 1.5rem;
  color: var(--white);
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 0.95fr);
}

.split-section p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.commercial h2,
.commercial .eyebrow {
  color: var(--white);
}

.commercial .eyebrow::before {
  background: var(--gold);
}

.commercial p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.check-panel {
  display: grid;
  gap: 0.7rem;
}

.check-panel span {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem 0.75rem 2.7rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--navy-ink);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.check-panel span:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(51, 65, 85, 0.1);
}

.check-panel span::before {
  content: "";
  position: absolute;
  left: 1rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 5px rgba(34, 166, 161, 0.14);
}

.stat-block {
  position: relative;
  min-height: 300px;
  display: grid;
  align-content: center;
  padding: 2.2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.stat-block strong {
  display: block;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
}

.stat-block span {
  display: block;
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
}

/* ---------- prep timeline ---------- */

.prep {
  position: relative;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2rem;
}

.timeline article {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 1.9rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.timeline article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.timeline article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold), var(--olive));
}

.timeline span {
  color: var(--navy-ink);
  font-weight: 950;
}

.timeline p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

/* ---------- testimonial ---------- */

.testimonial-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 118, 108, 0.16), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(51, 65, 85, 0.9), rgba(36, 48, 63, 0.94) 60%),
    url("/assets/spring-cleaning-woman-holding-metal-basket-with-d-2026-05-13-18-59-23-utc.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.testimonial-card {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.stars svg {
  width: 22px;
  height: 22px;
}

.testimonial-quote {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 600;
  line-height: 1.5;
}

.testimonial-quote::before {
  content: "\201C";
  color: var(--gold);
}

.testimonial-quote::after {
  content: "\201D";
  color: var(--gold);
}

.testimonial-attribution {
  margin-top: 1.6rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.testimonial-tagline {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 800;
}

/* ---------- FAQ ---------- */

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: rgba(255, 118, 108, 0.5);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  color: var(--navy-ink);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .plus {
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--navy);
  font-size: 1.1rem;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.faq-item[open] summary .plus {
  transform: rotate(135deg);
  background: var(--gold);
  color: var(--navy-ink);
}

.faq-item p {
  margin: 0;
  padding: 0 1.3rem 1.2rem;
  color: var(--muted);
}

/* ---------- contact ---------- */

.contact-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    linear-gradient(180deg, rgba(255, 118, 108, 0.1), rgba(255, 255, 255, 0)),
    var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-copy a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-points span {
  padding: 0.8rem 1rem;
  border-left: 5px solid var(--gold);
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-weight: 850;
}

.form-shell {
  position: relative;
  padding: clamp(1.1rem, 3vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

label,
fieldset {
  display: grid;
  gap: 0.42rem;
  margin: 0 0 1rem;
}

label span,
legend {
  color: var(--navy-ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.field-error {
  display: none;
  margin-top: -0.2rem;
  color: #b7282c;
  font-size: 0.8rem;
  font-weight: 700;
}

.field-error.is-visible {
  display: block;
}

input.is-invalid,
select.is-invalid {
  border-color: #b7282c;
  box-shadow: 0 0 0 4px rgba(183, 40, 44, 0.12);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(51, 65, 85, 0.2);
  border-radius: var(--radius-sm);
  background: #fdfcf9;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 128px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 118, 108, 0.28);
}

fieldset {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.checkbox-grid label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-weight: 800;
}

.checkbox-grid input,
.consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 0.18rem;
  accent-color: var(--navy);
}

.consent {
  margin-bottom: 1rem;
}

.hp {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  width: 100%;
}

.form-status {
  display: none;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 0;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(34, 166, 161, 0.12);
  color: var(--olive-deep);
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-visible {
  display: flex;
}

.form-status.error {
  background: rgba(183, 40, 44, 0.1);
  color: #8f1f22;
}

.form-status svg {
  flex: none;
  margin-top: 0.15rem;
}

/* success takeover panel */

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2.4rem 1.2rem;
}

.form-success.is-visible {
  display: flex;
}

.form-success .success-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 166, 161, 0.14);
  color: var(--olive-deep);
  animation: pop 420ms cubic-bezier(.2,.9,.3,1.3);
}

.form-success h3 {
  margin: 0;
  font-size: 1.4rem;
}

.form-success p {
  margin: 0;
  color: var(--muted);
  max-width: 420px;
}

.form-success .button {
  margin-top: 0.6rem;
}

.lead-form.is-submitted .form-fields {
  display: none;
}

/* ---------- footer ---------- */

.site-footer {
  position: relative;
  padding: 2.4rem 0;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  width: 280px;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--white);
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 1rem 0;
}

.footer-bottom-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.footer-bottom-inner a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom-inner a:hover,
.footer-bottom-inner a:focus-visible {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 560px) {
  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

.footer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy a {
  color: var(--gold);
  font-weight: 900;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-ink);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ---------- animations ---------- */

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, 0.8%, 0);
  }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes pop {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-menu {
    position: fixed;
    inset: 140px 0 auto 0;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 50px rgba(51, 65, 85, 0.14);
    transform: translateY(-150vh);
    visibility: hidden;
    transition: transform 180ms ease, visibility 0s linear 180ms;
  }

  .menu-open .site-menu {
    transform: translateY(0);
    visibility: visible;
    transition: transform 180ms ease;
  }

  .site-menu a {
    border-radius: var(--radius-sm);
    padding: 0.9rem 1rem;
  }

  .hero {
    min-height: auto;
    place-items: end start;
    padding: 8.75rem 0 4rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.68) 48%, rgba(255, 255, 255, 0.5) 100%);
  }

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .split-layout,
  .split-layout.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

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

  .service-card--wide {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
  }

  .service-card--wide .card-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .section-inner,
  .hero-content {
    width: min(100% - 1.25rem, var(--max));
  }

  .hero {
    padding-bottom: 3rem;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

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

  .trust-strip span {
    flex: 1 1 calc(50% - 0.6rem);
    text-align: center;
  }

  .service-grid,
  .timeline,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .form-shell {
    margin-inline: -0.05rem;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}
