:root {
  --navy-950: #061923;
  --navy-900: #071f2b;
  --navy-800: #0b3140;
  --blue-700: #075c66;
  --blue-600: #0b6d78;
  --blue-500: #168c96;
  --aqua-400: #63d2c6;
  --aqua-300: #8ce3d9;
  --aqua-100: #dff6f2;
  --mist: #f1f7f6;
  --cream: #f7f3eb;
  --ink: #102a36;
  --muted: #48636d;
  --line: rgba(16, 67, 77, 0.14);
  --white: #ffffff;
  --shadow-sm: 0 12px 34px rgba(7, 31, 43, 0.09);
  --shadow: 0 30px 80px rgba(7, 31, 43, 0.18);
  --radius-lg: 32px;
  --radius-md: 22px;
  --font-heading: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-family: var(--font-body);
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #f4b860;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 10px;
  font-weight: 700;
}

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

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.announcement {
  color: #d9f4f1;
  background: var(--navy-950);
}

.announcement p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  min-height: 34px;
  margin: 0;
  padding: 0.35rem 1.25rem;
  font-size: 0.83rem;
  letter-spacing: 0.015em;
}

.announcement p > span {
  color: var(--aqua-400);
  font-size: 0.62rem;
}

.announcement b {
  padding-left: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(12, 61, 72, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 22px rgba(7, 31, 43, 0.04);
  backdrop-filter: blur(18px);
}

.brand-bridge {
  border-bottom: 1px solid rgba(12, 61, 72, 0.1);
  color: #c7dcde;
  background: var(--navy-800);
}

.brand-bridge-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  gap: 1.5rem;
}

.brand-bridge p {
  margin: 0;
  font-size: 0.82rem;
}

.brand-bridge a {
  color: var(--aqua-300);
  font-weight: 700;
}

.brand-bridge-link {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  text-decoration: none;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--navy-900);
  text-decoration: none;
}

.brand img {
  width: 164px;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 38px;
  background: var(--line);
}

.domain-mark {
  display: grid;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.domain-mark strong {
  color: var(--blue-600);
  font-size: 0.69rem;
  letter-spacing: 0.11em;
}

.domain-mark span {
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.phone-link {
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.header-button,
.primary-button,
.light-button,
.final-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.8rem 1.2rem;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-button,
.primary-button {
  color: var(--navy-950);
  background: var(--aqua-400);
  box-shadow: 0 12px 28px rgba(64, 190, 179, 0.25);
}

.header-button:hover,
.primary-button:hover {
  background: var(--aqua-300);
  box-shadow: 0 16px 34px rgba(64, 190, 179, 0.34);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6.6rem) 0 4.8rem;
  background:
    radial-gradient(circle at 14% 18%, rgba(99, 210, 198, 0.2), transparent 24rem),
    linear-gradient(138deg, #071f2b 0%, #0a3441 55%, #0b535a 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -16rem 36%;
  height: 28rem;
  border-radius: 50%;
  background: rgba(135, 228, 218, 0.08);
  filter: blur(30px);
  transform: rotate(-9deg);
}

.water-rings {
  position: absolute;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(133, 227, 218, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(133, 227, 218, 0.04),
    0 0 0 8rem rgba(133, 227, 218, 0.025),
    0 0 0 12rem rgba(133, 227, 218, 0.018);
  pointer-events: none;
}

.rings-one {
  top: -22rem;
  left: -14rem;
}

.rings-two {
  right: -20rem;
  bottom: -24rem;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.78fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.eyebrow,
.section-kicker,
.form-kicker {
  margin: 0 0 1rem;
  color: var(--blue-600);
  font-family: var(--font-heading);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--aqua-300);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua-400);
  box-shadow: 0 0 0 6px rgba(99, 210, 198, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(3.25rem, 5.6vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.water-word {
  color: var(--aqua-300);
}

.hero-lede {
  max-width: 660px;
  margin: 1.6rem 0 0;
  color: #d0e5e7;
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
  line-height: 1.7;
}

.hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  margin: 1.4rem 0 1.75rem;
  padding: 0;
  color: #e7f4f3;
  font-size: 0.92rem;
  font-weight: 600;
  list-style: none;
}

.hero-promises li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-promises span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--aqua-400);
  font-size: 0.74rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  max-width: 650px;
}

.hero-visual > img {
  width: 100%;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px 28px 82px 28px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
  object-fit: cover;
  object-position: 50% 42%;
}

.visual-badge {
  position: absolute;
  right: -1.1rem;
  bottom: -1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: min(340px, calc(100% - 2rem));
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.drop-icon {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 60% 40% 60% 40%;
  background: linear-gradient(145deg, var(--aqua-400), var(--blue-600));
  transform: rotate(45deg);
}

.visual-badge strong,
.visual-badge span {
  display: block;
}

.visual-badge strong {
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 0.92rem;
}

.visual-badge span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-form-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34);
}

.form-corner {
  position: absolute;
  top: 1.25rem;
  right: -2.8rem;
  z-index: 2;
  width: 10rem;
  padding: 0.4rem 0;
  color: var(--navy-950);
  background: var(--aqua-400);
  font-family: var(--font-heading);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  transform: rotate(40deg);
}

.lead-form {
  padding: clamp(1.5rem, 3.6vw, 2.3rem);
}

.form-heading {
  padding-right: 1.5rem;
}

.form-heading .form-kicker {
  margin-bottom: 0.45rem;
}

.form-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.form-heading p {
  margin: 0.75rem 0 1.15rem;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.form-heading p a {
  color: var(--blue-600);
  font-weight: 700;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-800);
  font-size: 0.82rem;
  font-weight: 700;
}

.field label span {
  color: #788d94;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.8rem;
  border: 1px solid #b9cfd2;
  border-radius: 11px;
  color: var(--ink);
  background: #fbfdfd;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.field textarea {
  min-height: 78px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a9ca2;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(99, 210, 198, 0.17);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 1rem 0;
  color: #63787f;
  font-size: 0.75rem;
  line-height: 1.45;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 0.14rem 0 0;
  accent-color: var(--blue-600);
}

.form-submit {
  width: 100%;
  min-height: 56px;
  font-size: 1rem;
}

.form-submit:disabled {
  color: #496269;
  background: #c7dddb;
  box-shadow: none;
  cursor: wait;
  transform: none;
}

.form-submit span,
.light-button span,
.final-button span {
  font-size: 1.2em;
  transition: transform 180ms ease;
}

.form-submit:hover span,
.light-button:hover span,
.final-button:hover span {
  transform: translateX(3px);
}

.form-reassurance {
  margin: 0.8rem 0 0;
  color: #73878d;
  font-size: 0.72rem;
  text-align: center;
}

.form-reassurance i {
  margin-inline: 0.35rem;
  color: var(--aqua-400);
  font-style: normal;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.4rem clamp(1rem, 3vw, 2.4rem);
}

.trust-grid > div + div {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(11, 109, 120, 0.15);
  border-radius: 50%;
  color: var(--blue-600);
  background: var(--aqua-100);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.4;
}

.trust-grid strong {
  display: block;
  margin-bottom: 0.12rem;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.2rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.7rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.process-copy h2,
.scope-copy h2,
.local-copy h2,
.faq-heading h2,
.final-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.05;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 630px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.clues-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(99, 210, 198, 0.12), transparent 26rem),
    var(--mist);
}

.clue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.clue-card {
  position: relative;
  min-height: 270px;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.clue-card:hover {
  box-shadow: 0 18px 44px rgba(7, 31, 43, 0.12);
  transform: translateY(-4px);
}

.clue-number {
  position: absolute;
  top: 1.2rem;
  right: 1.3rem;
  color: #b5c7c9;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.clue-symbol {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.45rem;
  border-radius: 17px 17px 25px 17px;
  color: var(--blue-600);
  background: var(--aqua-100);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
}

.clue-card h3 {
  margin: 0 0 0.55rem;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.clue-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.clues-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.58);
}

.clues-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.clues-cta strong {
  color: var(--navy-900);
}

.clues-cta a {
  color: var(--blue-600);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.process-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(99, 210, 198, 0.08), transparent 45%),
    var(--navy-900);
}

.process-section::after {
  content: "";
  position: absolute;
  top: -22rem;
  right: -17rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(99, 210, 198, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(99, 210, 198, 0.03),
    0 0 0 10rem rgba(99, 210, 198, 0.02);
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.section-kicker.light {
  color: var(--aqua-300);
}

.process-copy h2 {
  color: var(--white);
}

.process-copy > p:not(.section-kicker) {
  margin: 1.2rem 0 1.6rem;
  color: #c9dfe1;
  font-size: 1.05rem;
}

.light-button {
  color: var(--navy-950);
  background: var(--white);
}

.light-button:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.process-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  padding: 1.3rem 0;
}

.process-steps li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.process-steps li > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(99, 210, 198, 0.38);
  border-radius: 50%;
  color: var(--aqua-300);
  background: rgba(99, 210, 198, 0.08);
  font-family: var(--font-heading);
  font-weight: 800;
}

.process-steps h3 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.process-steps p {
  margin: 0;
  color: #bdd2d4;
  font-size: 0.95rem;
}

.scope-section {
  background: var(--cream);
}

.scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 8vw, 6.5rem);
  align-items: center;
}

.scope-image {
  position: relative;
}

.scope-image > img {
  width: 100%;
  aspect-ratio: 0.94;
  border-radius: 42px 42px 120px 42px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.scope-float {
  position: absolute;
  right: -1.5rem;
  bottom: 2.1rem;
  max-width: 285px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.scope-float strong,
.scope-float span {
  display: block;
}

.scope-float strong {
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 0.92rem;
}

.scope-float span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.scope-intro {
  margin: 1.2rem 0 1.4rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.scope-list {
  display: grid;
  gap: 0;
}

.scope-list > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

.scope-check {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--aqua-400);
  font-size: 0.8rem;
  font-weight: 900;
}

.scope-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.scope-list strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.lab-note {
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(11, 109, 120, 0.2);
  border-radius: 14px;
  background: rgba(223, 246, 242, 0.6);
}

.lab-note > span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-600);
  font-family: Georgia, serif;
  font-weight: 700;
}

.lab-note p {
  margin: 0;
  color: #46636b;
  font-size: 0.8rem;
  line-height: 1.5;
}

.lab-note strong {
  color: var(--navy-900);
}

.local-section {
  background: var(--mist);
}

.local-card {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  overflow: hidden;
  border-radius: 38px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(99, 210, 198, 0.08), transparent 48%),
    var(--navy-900);
  box-shadow: var(--shadow);
}

.local-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 6vw, 4.8rem);
}

.local-copy h2 {
  color: var(--white);
}

.local-copy > p:not(.section-kicker) {
  margin: 1.25rem 0;
  color: #c7dcde;
}

.owner-signoff {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.4rem 0 1.3rem;
}

.owner-initial {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--aqua-400);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
}

.owner-signoff p {
  margin: 0;
  color: #bcd2d4;
  font-size: 0.84rem;
}

.owner-signoff strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.local-copy > a {
  color: var(--aqua-300);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.visit-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  min-height: 570px;
  background: var(--navy-950);
}

.visit-gallery > img,
.visit-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-gallery > img {
  min-height: 0;
}

.visit-main {
  position: relative;
  grid-row: 1 / -1;
  margin: 0;
}

.visit-main figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.42rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 31, 43, 0.7);
  font-size: 0.74rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 125px;
}

.faq-heading > p:last-child {
  margin-top: 1.2rem;
  color: var(--muted);
}

.faq-heading a {
  color: var(--blue-600);
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--blue-600);
  background: var(--aqua-100);
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -0.4rem 3.3rem 1.4rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.final-cta {
  background: var(--mist);
}

.final-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2.5rem;
  overflow: hidden;
  padding: clamp(2.4rem, 6vw, 4.8rem);
  border-radius: 38px;
  color: var(--white);
  background: linear-gradient(125deg, var(--blue-600), var(--navy-900));
  box-shadow: var(--shadow);
}

.final-copy {
  position: relative;
  z-index: 2;
  max-width: 770px;
}

.final-copy h2 {
  color: var(--white);
}

.final-copy > p:last-child {
  max-width: 640px;
  margin: 1rem 0 0;
  color: #d2e6e7;
}

.final-button {
  position: relative;
  z-index: 2;
  min-width: 230px;
  color: var(--navy-950);
  background: var(--aqua-400);
}

.final-button:hover {
  background: var(--aqua-300);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.final-ripple {
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(255, 255, 255, 0.035),
    0 0 0 8rem rgba(255, 255, 255, 0.02);
}

.site-footer {
  padding: 4rem 0 1.3rem;
  color: #c3d6d8;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  width: 190px;
  height: auto;
  padding: 0.45rem;
  border-radius: 12px;
  background: var(--white);
}

.footer-brand p {
  max-width: 390px;
  margin: 1rem 0 0;
  color: #9fb8bc;
  font-size: 0.9rem;
}

.footer-grid h2 {
  margin: 0 0 0.9rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a {
  margin: 0.24rem 0;
  color: #b7ced0;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--aqua-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #76969b;
  font-size: 0.75rem;
}

.mobile-cta {
  display: none;
}

.thank-you-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(99, 210, 198, 0.2), transparent 28rem),
    linear-gradient(138deg, #071f2b 0%, #0a3441 55%, #0b535a 100%);
}

.thank-you-shell {
  display: grid;
  min-height: 100vh;
  padding: 2rem 1rem;
  place-items: center;
}

.thank-you-card {
  width: min(660px, 100%);
  padding: clamp(2rem, 7vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.thank-you-card > img {
  width: 170px;
  height: auto;
  margin: 0 auto 2rem;
}

.success-mark {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--aqua-400);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  place-items: center;
  box-shadow: 0 12px 30px rgba(64, 190, 179, 0.25);
}

.thank-you-card .section-kicker {
  margin-bottom: 0.45rem;
}

.thank-you-card h1 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 7vw, 3.8rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.thank-you-card > p:not(.section-kicker):not(.thank-you-call) {
  max-width: 520px;
  margin: 1rem auto 0;
  color: var(--muted);
}

.thank-you-next {
  margin: 1.6rem 0;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--mist);
  text-align: left;
}

.thank-you-next strong {
  color: var(--navy-900);
  font-family: var(--font-heading);
}

.thank-you-next ol {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.thank-you-call {
  color: var(--muted);
  font-size: 0.92rem;
}

.thank-you-call a {
  color: var(--blue-600);
  font-weight: 700;
}

.thank-you-card > .primary-button {
  margin-top: 0.6rem;
}

@media (max-width: 1050px) {
  .header-note {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 4.6rem);
  }

  .hero-visual > img {
    height: 280px;
  }

  .clue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 145px;
  }

  .brand-divider,
  .domain-mark,
  .phone-link {
    display: none;
  }

  .hero {
    padding-top: 3.8rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.8rem;
  }

  .hero-copy {
    max-width: 720px;
    margin-inline: auto;
  }

  .hero-form-card {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 0.5rem 0;
  }

  .trust-grid > div {
    padding: 0.9rem 0.3rem;
  }

  .trust-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-grid,
  .scope-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .scope-image {
    max-width: 620px;
  }

  .local-card {
    grid-template-columns: 1fr;
  }

  .visit-gallery {
    min-height: 520px;
  }

  .faq-heading {
    position: static;
  }

  .final-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-button {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 85px;
  }

  body {
    padding-bottom: 74px;
    font-size: 16px;
  }

  .container {
    width: min(100% - 1.35rem, 1180px);
  }

  .announcement p {
    min-height: 31px;
    font-size: 0.72rem;
  }

  .announcement b,
  .header-button {
    display: none;
  }

  .brand-bridge-inner {
    justify-content: center;
    min-height: 38px;
    text-align: center;
  }

  .brand-bridge p {
    font-size: 0.74rem;
  }

  .brand-bridge-link {
    display: none;
  }

  .site-header {
    position: relative;
  }

  .brand img {
    width: 153px;
  }

  .hero {
    padding: 3rem 0 3.8rem;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13.2vw, 4rem);
    line-height: 1;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-promises {
    display: grid;
    gap: 0.55rem;
    font-size: 0.86rem;
  }

  .hero-visual > img {
    height: 250px;
    border-radius: 22px 22px 60px 22px;
  }

  .visual-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 1rem);
    margin: -1rem 0.5rem 0;
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero-form-card {
    border-radius: 24px;
  }

  .lead-form {
    padding: 1.4rem 1rem 1.2rem;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .field input,
  .field textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .form-heading {
    padding-right: 1rem;
  }

  .form-heading h2 {
    font-size: 1.85rem;
  }

  .form-corner {
    top: 0.9rem;
    right: -3.15rem;
    font-size: 0.61rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-heading h2,
  .process-copy h2,
  .scope-copy h2,
  .local-copy h2,
  .faq-heading h2,
  .final-copy h2 {
    font-size: clamp(2.2rem, 10.5vw, 3rem);
    line-height: 1.07;
  }

  .clue-grid {
    grid-template-columns: 1fr;
  }

  .clue-card {
    min-height: 0;
  }

  .clues-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-steps li {
    grid-template-columns: 46px 1fr;
    gap: 0.9rem;
  }

  .process-steps li > span {
    width: 42px;
    height: 42px;
  }

  .scope-image > img {
    border-radius: 28px 28px 80px 28px;
  }

  .scope-float {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -1.4rem 0.75rem 0;
  }

  .local-card {
    border-radius: 26px;
  }

  .local-copy {
    padding: 2.5rem 1.25rem;
  }

  .visit-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.4fr 0.7fr;
    min-height: 530px;
  }

  .visit-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .final-card {
    gap: 1.8rem;
    padding: 2.6rem 1.3rem;
    border-radius: 26px;
  }

  .final-button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2000;
    display: block;
    padding: 0.65rem;
    border-top: 1px solid rgba(7, 31, 43, 0.11);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -10px 30px rgba(7, 31, 43, 0.13);
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 49px;
    border-radius: 999px;
    color: var(--navy-950);
    background: var(--aqua-400);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
  }
}

@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;
  }
}
