:root {
  --rock-navy: #102838;
  --rock-blue: #18384d;
  --rock-gold: #3574b7;
  --rock-gold-dark: #be1e2d;
  --rock-sand: #f4efe6;
  --rock-cream: #faf7f0;
  --rock-text: #24313a;
  --rock-muted: #6b747b;
  --rock-emergency: #be1e2d;

  --white: #fff;
  --shadow: 0 24px 70px rgba(16, 40, 56, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--rock-text);
  background: var(--white);
}

.logo img {
  height: 55px;
  width: auto;
  display: block;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 44px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-header .logo {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-header nav a {
  color: var(--rock-blue);
  text-decoration: none;
  font-weight: 800;
}

.site-header nav a:hover {
  color: var(--rock-gold);
}

.site-header nav a.active {
  color: var(--rock-gold);
  position: relative;
}

.site-header nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--rock-gold);
}

.header-call {
  background: var(--rock-gold);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

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

.section-pad {
  padding: 95px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rock-gold-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 15px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--rock-gold);
  color: var(--rock-cream);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--rock-gold-dark);
}

.btn-secondary {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-dark {
  background: var(--rock-emergency);
  color: var(--white);
}

/* HERO - FULL IMAGE */

.hero-full {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: white;
}

.hero-full__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 24, 36, 0.92) 0%,
      rgba(8, 24, 36, 0.7) 43%,
      rgba(8, 24, 36, 0.2) 100%
    ),
    linear-gradient(0deg, rgba(8, 24, 36, 0.72), rgba(8, 24, 36, 0.1));
  z-index: 1;
}

.hero-full__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0 190px;
}

.hero-full .eyebrow {
  color: var(--rock-gold);
}

.hero-full h1 {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}
.hero-full h1,
.hero-full__lead {
  color: #fff;
}

.btn-glass {
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-full__lead {
  max-width: 660px;
  margin: 0;
  font-size: 21px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.hero-full__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn-glass {
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.hero-full__trust {
  position: relative;
  z-index: 3;
  margin: 40px auto 0;
  transform: none;
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-full__trust div {
  background: rgba(255, 255, 255, 0.92);
  color: var(--rock-navy);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.hero-full__trust strong {
  display: block;
  color: var(--rock-gold-dark);
  font-size: 34px;
  line-height: 1;
}

.hero-full__trust span {
  display: block;
  margin-top: 8px;
  font-weight: 900;
}

/* NAME CHANGE INTRO */

.name-change-intro {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #fff;
}

.name-change-parallax-bg {
  position: absolute;
  inset: -100px 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  z-index: 0;
}

.name-change-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.15),
    transparent 40%
  );
  z-index: 1;
}

.name-change-container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.name-change-left h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.name-change-left p {
  max-width: 640px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.7;
}

.intro-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-button {
  display: inline-flex;
  margin-top: 20px;
  padding: 14px 26px;
  border-radius: 999px;
  background: #fff;
  color: #102838;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.name-change-card {
  padding: 34px;
  border-radius: 26px;
  background: #fff;
  color: #102838;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.name-change-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.name-change-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.name-change-card li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

.name-change-card li:first-child {
  border-top: 0;
}

.name-change-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #3574b7;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
}

/* MOBILE */

@media (max-width: 980px) {
  .name-change-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .name-change-left h2 {
    font-size: 40px;
  }
}

/* SCROLL REVEAL ANIMATIONS */

.reveal-block,
.reveal-item,
.reveal-title {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-title {
  transform: translateY(36px);
}

.reveal-block.is-visible,
.reveal-item.is-visible,
.reveal-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-item:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal-item:nth-child(3) {
  transition-delay: 0.18s;
}
.reveal-item:nth-child(4) {
  transition-delay: 0.24s;
}

.name-change-card {
  transform: translateY(34px) scale(0.97);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    box-shadow 0.3s ease;
}

.name-change-right.is-visible .name-change-card {
  transform: translateY(0) scale(1);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal-block,
  .reveal-item,
  .reveal-title,
  .name-change-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* TRUST STRIP */

.trust-strip {
  background: var(--rock-gold);
}

.trust-strip__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__inner div {
  padding: 22px 18px;
  text-align: center;
  font-weight: 900;
  color: var(--rock-cream);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.sr-agency-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
}

.sr-agency-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 24, 34, 0.92),
      rgba(10, 24, 34, 0.55),
      rgba(10, 24, 34, 0.18)
    ),
    linear-gradient(0deg, rgba(10, 24, 34, 0.75), rgba(10, 24, 34, 0.1));
}

.sr-agency-hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 90px;
}

.sr-kicker {
  margin: 25px 0 18px;
  color: var(--rock-gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.sr-agency-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.sr-agency-hero__content p:not(.sr-kicker) {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.sr-agency-hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 36px 0 45px 0;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: white;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

/* HEADINGS */

.section-heading {
  max-width: 1000px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.split-feature h2,
.service-area-map h2 {
  color: var(--rock-navy);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

.section-heading p,
.split-feature p,
.service-area-map p {
  color: var(--rock-muted);
  font-size: 18px;
  line-height: 1.7;
}

/* MODERN SERVICE SHOWCASE */

.service-showcase-modern {
  position: relative;
  z-index: 5;
  background: #f6f8fb;
  padding: 120px 0;
}

.service-showcase-modern .container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.service-modern-header {
  max-width: 760px;
  margin: 0 0 54px;
}

.service-modern-header h2 {
  margin: 0 0 18px;
  color: var(--rock-navy);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.service-modern-header p:not(.eyebrow) {
  margin: 0;
  color: var(--rock-muted);
  font-size: 19px;
  line-height: 1.7;
}

.service-modern-list {
  display: grid;
  gap: 28px;
}

.service-modern-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 300px;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  color: var(--rock-text);
  text-decoration: none;
  box-shadow: 0 24px 70px rgba(16, 40, 56, 0.11);
  border: 1px solid rgba(16, 40, 56, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.service-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(16, 40, 56, 0.18);
}

.service-modern-card:nth-child(even) {
  grid-template-columns: 1fr 42%;
}

.service-modern-card:nth-child(even) .service-modern-image {
  order: 2;
}

.service-modern-image {
  min-height: 300px;
  overflow: hidden;
}

.service-modern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-modern-card:hover .service-modern-image img {
  transform: scale(1.06);
}

.service-modern-content {
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-modern-number {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(53, 116, 183, 0.1);
  color: var(--rock-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-modern-content h3 {
  margin: 0 0 14px;
  color: var(--rock-navy);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.service-modern-content p {
  max-width: 520px;
  margin: 0 0 24px;
  color: var(--rock-muted);
  font-size: 18px;
  line-height: 1.65;
}

.service-modern-content strong {
  color: var(--rock-gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .service-showcase-modern {
    padding: 82px 0;
  }

  .service-showcase-modern .container {
    width: min(100% - 36px, 1180px);
  }

  .service-modern-card,
  .service-modern-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-modern-card:nth-child(even) .service-modern-image {
    order: 0;
  }

  .service-modern-image {
    min-height: 240px;
  }

  .service-modern-content {
    padding: 30px;
  }
}
/* SPLIT FEATURE */

.split-feature__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.split-feature__image img {
  height: 560px;
  width: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rock-gold);
}

/* PROCESS - MODERN TIMELINE */

.process-band {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 40, 56, 0.96), rgba(53, 116, 183, 0.82)),
    url("/assets/images/rock-texture.jpg");
  background-size: cover;
  background-position: center;
}

.process-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.14),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(53, 116, 183, 0.28),
      transparent 36%
    );
  pointer-events: none;
}

.process-band .container {
  position: relative;
  z-index: 2;
}

.process-header {
  max-width: 760px;
  margin: 0 0 58px;
}

.process-header .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.process-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
}

.process-step {
  position: relative;
  padding: 34px 28px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.process-step-number {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: #fff;
  color: #3574b7;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.24);
}

.process-step-content h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 25px;
  line-height: 1.05;
}

.process-step-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
}

.process-step:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}

.process-step {
  transition:
    transform 0.28s ease,
    background 0.28s ease;
}

@media (max-width: 950px) {
  .process-band {
    padding: 86px 0;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 29px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    align-items: start;
  }

  .process-step-number {
    margin-bottom: 0;
  }
}
/* EMERGENCY */

.emergency-cta {
  background: var(--rock-gold);
  padding: 42px 0;
}

.emergency-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.emergency-cta h2 {
  margin: 0 0 8px;
  color: var(--rock-cream);
  font-size: 34px;
}

.emergency-cta p {
  margin: 0;
  color: var(--rock-cream);
  font-weight: 700;
}

/* SERVICE AREA */

.service-area-map {
  background: white;
}

.service-area-map__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.location-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  border-radius: 30px;
  padding: 34px;
}

.location-cloud span {
  background: white;
  border: 1px solid rgba(16, 40, 56, 0.1);
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 900;
  color: var(--rock-navy);
}

/* FAQ - MODERN ACCORDION (ANIMATED) */

.faq-teaser-modern {
  margin: 55px 0;
}

.faq-modern-card {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(16, 40, 56, 0.08);
  box-shadow: 0 18px 50px rgba(16, 40, 56, 0.08);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-modern-card:hover {
  box-shadow: 0 24px 60px rgba(16, 40, 56, 0.12);
}

.faq-modern-card summary {
  cursor: pointer;
  list-style: none;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.faq-modern-card summary span {
  color: var(--rock-navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
}

.faq-modern-card summary strong {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(53, 116, 183, 0.12);
  color: var(--rock-gold);
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  transition: all 0.3s ease;
}

/* ICON ANIMATION */
.faq-modern-card[open] summary strong {
  transform: rotate(45deg);
  background: var(--rock-gold);
  color: #fff;
}

/* SMOOTH CONTENT ANIMATION */
.faq-modern-card p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 28px;
  color: var(--rock-muted);
  font-size: 17px;
  line-height: 1.7;
  transition: all 0.35s ease;
}

.faq-modern-card[open] p {
  max-height: 300px;
  padding: 0 28px 26px;
  opacity: 1;
}

.faq-modern-card:not([open]) p {
  opacity: 0;
}

@media (max-width: 700px) {
  .faq-teaser-modern {
    padding: 82px 0;
  }

  .faq-teaser-modern .container {
    width: min(100% - 36px, 980px);
  }

  .faq-modern-card summary {
    padding: 22px;
  }

  .faq-modern-card p {
    padding: 0 22px 24px;
  }
}
/* Logos */

.logo-marquee-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0;
  background: #fff;
  border-top: 1px solid rgba(49, 49, 73, 0.1);
  border-bottom: 1px solid rgba(49, 49, 73, 0.1);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoMarquee 34s linear infinite;
}

.logo-marquee-section:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee-item {
  flex: 0 0 auto;
  width: 190px;
  height: 76px;
  margin: 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-marquee-item img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition:
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.logo-marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

.logo-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.logo-marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 700px) {
  .logo-marquee-item {
    width: 150px;
    margin: 0 24px;
  }

  .logo-marquee-fade {
    width: 70px;
  }
}

/* FINAL CTA */

.final-cta {
  text-align: center;
  color: white;
  background: var(--rock-navy);
  padding: 105px 0;
}

.final-cta h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

.final-cta p {
  max-width: 1000px;
  margin: 0 auto 30px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

/* RESPONSIVE */

@media (max-width: 950px) {
  .split-feature__grid,
  .service-area-map__grid {
    grid-template-columns: 1fr;
  }

  .hero-full {
    min-height: auto;
  }

  .hero-full__content {
    padding: 100px 0 42px;
  }

  .hero-full__trust {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    grid-template-columns: 1fr;
    margin: 0 auto 32px;
  }

  .service-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .emergency-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .container,
  .hero-full__content,
  .hero-full__trust,
  .trust-strip__inner {
    width: min(100% - 28px, 1180px);
  }

  .hero-full h1 {
    font-size: 46px;
  }

  .hero-full__lead {
    font-size: 18px;
  }

  .hero-full__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 68px 0;
  }
}

/* WELL DRILLING PAGE */

.well-page {
  background: #fff;
}

.well-container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.well-kicker {
  margin: 0 0 18px;
  color: var(--rock-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.well-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: url("/assets/images/solid-rock-drilling-garden.jpg") center/cover
    no-repeat;
}

.well-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 24, 36, 0.94),
      rgba(8, 24, 36, 0.62),
      rgba(8, 24, 36, 0.18)
    ),
    linear-gradient(0deg, rgba(8, 24, 36, 0.72), rgba(8, 24, 36, 0.1));
}

.well-hero .well-container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.well-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.86;
  letter-spacing: -0.075em;
  font-weight: 900;
  text-transform: uppercase;
}

.well-hero__lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 700;
}

.well-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.well-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.22s ease;
}

.well-btn:hover {
  transform: translateY(-2px);
}

.well-btn-primary {
  background: var(--rock-gold);
  color: #fff;
}

.well-btn-outline {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.well-intro {
  padding: 120px 0 90px;
  background: #fff;
}

.well-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.well-intro h2,
.well-benefits-copy h2,
.well-final-cta h2 {
  margin: 0;
  color: var(--rock-navy);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 900;
  margin-bottom: 20px;
}

.well-intro p:not(.well-kicker),
.well-benefits-copy p {
  margin: 0 0 20px;
  color: var(--rock-muted);
  font-size: 19px;
  line-height: 1.75;
}

.well-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.well-service-pills span {
  padding: 15px 22px;
  border-radius: 999px;
  background: rgba(53, 116, 183, 0.1);
  border: 1px solid rgba(53, 116, 183, 0.18);
  color: var(--rock-blue);
  font-weight: 900;
}

.well-benefits {
  padding: 120px 0;
  background: #f6f8fb;
}

.well-benefits-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.well-benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.well-benefits-list div {
  position: relative;
  padding: 20px 22px 20px 56px;
  border-radius: 22px;
  background: #fff;
  color: var(--rock-navy);
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(16, 40, 56, 0.08);
}

.well-benefits-list div::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--rock-gold);
  color: #fff;
  font-size: 13px;
}

.well-image-band {
  padding: 0 0 120px;
  background: #f6f8fb;
}

.well-image-band img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(16, 40, 56, 0.18);
}

.well-final-cta {
  padding: 120px 0;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.14),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(16, 40, 56, 0.98), rgba(53, 116, 183, 0.86));
}

.well-final-cta h2 {
  max-width: 1300px;
  margin: 0 auto 20px;
  color: #fff;
}

.well-final-cta p {
  max-width: 1000px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
}

@media (max-width: 900px) {
  .well-container {
    width: min(100% - 36px, 1180px);
  }

  .well-hero {
    min-height: 640px;
  }

  .well-intro-grid,
  .well-benefits-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .well-image-band img {
    height: 360px;
  }
}

/* WATER PUMP PAGE */

.pump-hero {
  background: url("/assets/images/solid-rock-drilling-garden.jpg") center/cover
    no-repeat;
}

/* CONTACT PAGE */

.contact-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: url("/assets/images/dramaticshotwell.jpg") center/cover no-repeat;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 24, 36, 0.94),
      rgba(8, 24, 36, 0.62),
      rgba(8, 24, 36, 0.18)
    ),
    linear-gradient(0deg, rgba(8, 24, 36, 0.72), rgba(8, 24, 36, 0.1));
}

.contact-hero .well-container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.contact-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.86;
  letter-spacing: -0.075em;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-hero p:not(.well-kicker) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 700;
}

.contact-info-section {
  padding: 120px 0;
  background: #f6f8fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.contact-card {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 40, 56, 0.08);
  border: 1px solid rgba(16, 40, 56, 0.08);
}

.contact-card-main {
  grid-row: span 2;
}

.contact-card h2 {
  margin: 0 0 24px;
  color: var(--rock-navy);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.contact-card h3 {
  margin: 0 0 18px;
  color: var(--rock-navy);
  font-size: 26px;
  line-height: 1.05;
}

.contact-card p {
  margin: 0 0 16px;
  color: var(--rock-muted);
  font-size: 18px;
  line-height: 1.65;
}

.contact-card a {
  color: var(--rock-gold);
  font-weight: 900;
  text-decoration: none;
}

.contact-link-button {
  display: inline-flex;
  margin-top: 16px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--rock-gold);
  color: #fff !important;
  text-decoration: none;
  font-weight: 900;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-pills span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(53, 116, 183, 0.1);
  color: var(--rock-blue);
  font-weight: 900;
}

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

  .contact-card-main {
    grid-row: auto;
  }
}

/* WATER SYSTEMS */

.systems-hero {
  background: url("/assets/images/solid-rock-welding.jpeg") center/cover
    no-repeat;
}

.systems-feature-section {
  padding: 120px 0;
  background: #fff;
}

.systems-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.systems-feature-card {
  padding: 42px;
  border-radius: 34px;
  background: #f6f8fb;
  border: 1px solid rgba(16, 40, 56, 0.08);
  box-shadow: 0 18px 50px rgba(16, 40, 56, 0.08);
}

.systems-feature-card-dark {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.15),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(16, 40, 56, 0.98), rgba(53, 116, 183, 0.86));
  color: #fff;
}

.systems-card-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(53, 116, 183, 0.12);
  color: var(--rock-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.systems-feature-card-dark .systems-card-label {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.systems-feature-card h2 {
  margin: 0 0 18px;
  color: var(--rock-navy);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.systems-feature-card-dark h2 {
  color: #fff;
}

.systems-feature-card p {
  margin: 0 0 16px;
  color: var(--rock-muted);
  font-size: 18px;
  line-height: 1.7;
}

.systems-feature-card-dark p {
  color: rgba(255, 255, 255, 0.84);
}

/* COMMON WATER ISSUES */

.water-issues-section {
  padding: 0 0 120px 0;
  background: #f6f8fb;
}

.water-issues-header {
  max-width: 820px;
  margin: 0 0 54px;
}

.water-issues-header h2 {
  margin: 0 0 18px;
  color: var(--rock-navy);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.water-issues-header p:not(.well-kicker) {
  margin: 0;
  color: var(--rock-muted);
  font-size: 19px;
  line-height: 1.7;
}

.water-issues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.water-issue-card {
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(16, 40, 56, 0.08);
  box-shadow: 0 18px 50px rgba(16, 40, 56, 0.08);
}

.water-issue-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(53, 116, 183, 0.12);
  color: var(--rock-gold);
  font-weight: 900;
}

.water-issue-card h3 {
  margin: 0 0 12px;
  color: var(--rock-navy);
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.water-issue-card p {
  margin: 0;
  color: var(--rock-muted);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 1000px) {
  .water-issues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .water-issues-section {
    padding: 82px 0;
  }

  .water-issues-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .systems-feature-section {
    padding: 82px 0;
  }

  .systems-feature-grid {
    grid-template-columns: 1fr;
  }

  .systems-feature-card {
    padding: 30px;
  }
}

/* SERVICE AREAS */

.areas-hero {
  background: url("/assets/images/solid-rock-drilling.jpg") center/cover
    no-repeat;
}

.areas-intro-panel {
  background: #fff;
  padding: 0 0 90px;
}

.areas-intro-card {
  margin-top: -70px;
  position: relative;
  z-index: 5;
  padding: 44px;
  border-radius: 34px;
  background: #fff;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  box-shadow: 0 28px 80px rgba(16, 40, 56, 0.16);
}

.areas-intro-card h2,
.areas-feature-copy h2,
.areas-counties-modern h2,
.areas-services-card h2 {
  margin: 0;
  color: var(--rock-navy);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.areas-intro-card p:not(.well-kicker),
.areas-feature-copy p {
  margin: 0;
  color: var(--rock-muted);
  font-size: 19px;
  line-height: 1.75;
}

.areas-feature-section {
  padding: 120px 0;
  background: #f6f8fb;
}

.areas-feature-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.areas-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.areas-grid-modern span {
  padding: 22px 24px;
  border-radius: 22px;
  background: #fff;
  color: var(--rock-navy);
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(16, 40, 56, 0.08);
  border: 1px solid rgba(16, 40, 56, 0.08);
}

.areas-counties-modern {
  padding: 120px 0;
  background: #fff;
}

.areas-county-cards {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.areas-county-cards div {
  min-height: 150px;
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.16),
      transparent 35%
    ),
    linear-gradient(135deg, rgba(16, 40, 56, 0.98), rgba(53, 116, 183, 0.86));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 18px 50px rgba(16, 40, 56, 0.16);
}

.areas-county-cards strong {
  font-size: 25px;
  line-height: 1;
}

.areas-county-cards span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.areas-services-band {
  padding: 0 0 120px;
  background: #fff;
}

.areas-services-card {
  padding: 50px;
  border-radius: 36px;
  background: #f6f8fb;
  border: 1px solid rgba(16, 40, 56, 0.08);
}

.areas-service-marquee {
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.areas-service-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scrollServices 25s linear infinite;
}

.areas-service-track span {
  white-space: nowrap;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  font-weight: 900;
  color: var(--rock-navy);
}

@keyframes scrollServices {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .areas-intro-card,
  .areas-feature-grid {
    grid-template-columns: 1fr;
  }

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

  .areas-grid-modern {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .areas-intro-card,
  .areas-services-card {
    padding: 30px;
  }

  .areas-county-cards {
    grid-template-columns: 1fr;
  }
}
/* FOOTER */

.site-footer {
  background: #081824;
  color: #fff;
}

.footer-main {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img {
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-brand p,
.footer-col p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0 0 16px;
}

.footer-formerly {
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(53, 116, 183, 0.18);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}

.footer-col h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 20px;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 800;
}

.footer-col a:hover {
  color: var(--rock-gold);
}

.footer-cta {
  display: inline-flex !important;
  width: fit-content;
  margin-top: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--rock-gold);
  color: #fff !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 950px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .footer-main,
  .footer-bottom {
    width: min(100% - 36px, 1180px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 60px 0 44px;
  }
}
