:root {
  color-scheme: only light;
  --ink: #101820;
  --ink-soft: #2c3f4b;
  --paper: #f4f8f7;
  --paper-strong: #e8f0ee;
  --white: #ffffff;
  --line: rgba(16, 24, 32, 0.14);
  --muted: #61717b;
  --navy: #0b1b24;
  --navy-2: #132b36;
  --blue: #1f6f8d;
  --teal: #5d8a78;
  --amber: #f3b72e;
  --amber-soft: #fff1c7;
  --shadow: 0 26px 70px rgba(16, 24, 32, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--amber);
  border-radius: var(--radius);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(16, 24, 32, 0.1);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 245px;
  color: var(--ink);
  text-decoration: none;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand-icon img {
  width: 42px;
  height: 42px;
}

.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-wordmark {
  position: relative;
  display: inline-flex;
  gap: 0.22em;
  width: max-content;
  padding-bottom: 5px;
  border-bottom: 3px solid var(--amber);
  font-size: 1.12rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.brand-wordmark span {
  color: var(--blue);
}

.brand-subline {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a,
.header-call {
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a {
  padding: 10px 12px;
  color: var(--ink-soft);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
  background: rgba(43, 134, 166, 0.1);
}

.header-call {
  padding: 14px 18px;
  color: var(--ink);
  white-space: nowrap;
  background: var(--amber);
  box-shadow: 0 14px 28px rgba(243, 183, 46, 0.26);
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-1px);
  background: #ffd061;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(11, 27, 36, 0.92) 0%, rgba(11, 27, 36, 0.82) 38%, rgba(11, 27, 36, 0.36) 68%, rgba(11, 27, 36, 0.12) 100%),
    linear-gradient(180deg, rgba(11, 27, 36, 0.1) 0%, rgba(11, 27, 36, 0.2) 60%, rgba(11, 27, 36, 0.78) 100%);
}

.hero::after {
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 183, 46, 0.8), transparent);
}

.hero-bg {
  position: absolute;
  inset: -24px 0 0;
  z-index: -2;
  width: 100%;
  height: calc(100% + 48px);
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-image-shift, 0), 0) scale(var(--hero-image-scale, 1.02));
  transform-origin: center;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 0;
  align-items: center;
  width: min(100% - 40px, var(--max));
  min-height: clamp(520px, calc(100svh - 250px), 620px);
  margin: 0 auto;
  padding: clamp(42px, 7.5vw, 76px) 0 clamp(32px, 5vw, 52px);
}

.hero-copy {
  display: grid;
  gap: 16px;
  transform: translate3d(0, var(--hero-copy-shift, 0), 0);
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ed5ee;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(2.18rem, 4vw, 3.26rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 2.9vw, 2.62rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.4;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.anchor-target {
  display: block;
  height: 0;
  scroll-margin-top: 96px;
}

#services,
#problems,
#areas,
#contact {
  scroll-margin-top: 96px;
}

.price-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 690px;
  margin-top: 6px;
  padding: 16px 18px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--amber), #ffd45f);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.price-detail {
  order: 1;
}

.price-amount {
  order: 2;
}

.price-strip strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-strip span {
  color: rgba(16, 24, 32, 0.84);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.35;
}

.price-strip em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-weight: 850;
}

.price-strip b {
  min-width: max-content;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 16px 34px rgba(243, 183, 46, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd061;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.16);
}

.button-light {
  color: var(--ink);
  border-color: rgba(16, 24, 32, 0.12);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: rgba(43, 134, 166, 0.32);
  background: #eef7f5;
}

.button.large {
  min-height: 56px;
  padding-inline: 22px;
}

.hero-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 1.55fr) repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(255, 255, 255, 0.08);
}

.hero-summary > span {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.93rem;
  font-weight: 850;
  text-align: center;
}

.supergold-summary {
  display: grid;
  grid-template-columns: minmax(98px, 0.42fr) minmax(190px, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 14px 18px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--amber), #ffd45f);
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.supergold-summary-mobile {
  display: none;
}

.supergold-summary:hover {
  background: linear-gradient(135deg, #f9c447, #ffdc78);
}

.supergold-summary:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid var(--white);
  outline-offset: -5px;
  box-shadow: inset 0 0 0 6px var(--navy);
}

.supergold-logo-wrap {
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--navy);
}

.supergold-logo-wrap img {
  width: 100%;
  height: auto;
}

.supergold-offer-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.3;
}

.supergold-offer-copy strong {
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.15;
}

.supergold-offer-link {
  width: max-content;
  margin-top: 2px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.2em;
}

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

.section {
  padding: clamp(56px, 7vw, 84px) 0;
}

.section-band {
  padding: clamp(54px, 7vw, 76px) 0 clamp(48px, 6vw, 66px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.diagnostic-method {
  padding-top: clamp(46px, 5vw, 60px);
  padding-bottom: clamp(30px, 4vw, 42px);
}

.services {
  padding-top: clamp(34px, 4vw, 46px);
  padding-bottom: clamp(38px, 4vw, 48px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
}

.section-heading > *,
.why-panel > div:first-child > *,
.contact-copy > *,
.fault-copy > * {
  margin-bottom: 0;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading p,
.intro-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-copy {
  display: grid;
  gap: 16px;
}

.intro-copy p {
  margin: 0;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diagnostic-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(30px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 240, 238, 0.68)),
    var(--white);
  box-shadow: 0 24px 64px rgba(16, 24, 32, 0.1);
}

.diagnostic-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--amber), var(--blue), var(--teal));
  content: "";
}

.diagnostic-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.diagnostic-copy > * {
  margin-bottom: 0;
}

.diagnostic-copy p:not(.eyebrow),
.diagnostic-steps p {
  color: var(--muted);
}

.diagnostic-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.diagnostic-steps article {
  min-height: 232px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.diagnostic-steps span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.path-grid li,
.service-groups article,
.why-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 24, 32, 0.08);
}

.path-grid li {
  min-height: 230px;
  padding: 24px;
}

.path-grid span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.path-grid p,
.service-groups li,
.core-service p,
.why-list li,
.problem-list li {
  color: var(--ink-soft);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.core-service {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  padding: 0;
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0b1b24, #173240 64%, #24352c);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.core-service::before {
  display: none;
}

.core-service-image {
  width: 100%;
  max-height: 178px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.95) contrast(1.04);
}

.core-service-body {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
}

.core-service span {
  align-self: start;
  width: max-content;
  margin-top: 0;
  padding: 8px 10px;
  color: var(--ink);
  border-radius: 999px;
  background: var(--amber);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.core-service h3 {
  max-width: 13ch;
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(1.56rem, 2.35vw, 2.15rem);
  line-height: 1.02;
}

.core-service p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 42px;
}

.service-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-groups article {
  min-height: 260px;
  padding: 24px;
}

.service-card-head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 8px;
}

.service-card-head img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

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

ul {
  padding-left: 0;
  list-style: none;
}

.service-groups ul,
.why-list,
.problem-list,
.area-pills {
  margin: 0;
}

.service-groups li {
  position: relative;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.service-groups li:first-child {
  border-top: 0;
}

.starlink-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0b1b24, #173240 64%, #24352c);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.starlink-image {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.95) contrast(1.04);
}

.starlink-body {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: clamp(24px, 3.4vw, 44px);
}

.starlink-body h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.56rem, 2.35vw, 2.15rem);
  line-height: 1.05;
}

.starlink-body p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.starlink-body .button {
  width: max-content;
  margin-top: 6px;
}

.fault-guide {
  padding: clamp(42px, 5vw, 56px) 0 clamp(38px, 4vw, 48px);
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(11, 27, 36, 0.97), rgba(19, 43, 54, 0.96)),
    radial-gradient(circle at 12% 12%, rgba(243, 183, 46, 0.2), transparent 30%);
}

.fault-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.fault-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.fault-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.fault-button {
  min-height: 42px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.fault-button:hover,
.fault-button:focus-visible,
.fault-button.is-active {
  color: var(--ink);
  background: var(--amber);
}

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

.fault-panel {
  position: relative;
  padding: 28px;
  color: var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
}

.fault-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--amber), var(--blue), var(--teal));
  border-radius: var(--radius) var(--radius) 0 0;
  content: "";
}

.fault-panel span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fault-panel p {
  color: var(--ink-soft);
}

.problem-list-wrap {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px 28px;
}

.problem-list li {
  position: relative;
  min-height: 54px;
  padding: 14px 0 14px 28px;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.problem-list li::before {
  position: absolute;
  top: 25px;
  left: 0;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

.why-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  padding: clamp(28px, 5vw, 48px);
}

.why {
  padding-top: clamp(38px, 4vw, 52px);
  padding-bottom: clamp(34px, 4vw, 46px);
}

.why-panel > div:first-child,
.contact-copy,
.fault-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.why-panel p:not(.eyebrow) {
  color: var(--muted);
}

.why-list {
  display: grid;
  gap: 14px;
  padding-top: 2px;
}

.why-list li {
  position: relative;
  padding-left: 30px;
}

.why-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

.areas {
  padding-top: 10px;
  padding-bottom: clamp(44px, 5vw, 62px);
}

.area-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  padding: clamp(28px, 5vw, 52px);
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 27, 36, 0.98), rgba(23, 50, 64, 0.96)),
    var(--navy);
  box-shadow: var(--shadow);
}

.area-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--amber), var(--blue), var(--teal));
  content: "";
}

.area-copy,
.area-detail {
  display: grid;
  gap: 16px;
  align-content: start;
}

.area-copy h2 {
  max-width: 12ch;
}

.area-copy > * {
  margin-bottom: 0;
}

.area-copy .eyebrow {
  color: #8ed5ee;
}

.area-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.area-copy .button {
  width: max-content;
  margin-top: 6px;
}

.area-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.area-note {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.area-note span {
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.2;
}

.area-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.area-pills li {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 12px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.contact-section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 18px 0 76px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.86fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
}

.contact-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--amber), var(--blue), var(--teal));
  content: "";
}

.contact-panel {
  position: relative;
}

.contact-list {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.contact-copy .supergold-reminder {
  max-width: 620px;
  padding: 14px 16px;
  color: var(--ink);
  border: 1px solid rgba(243, 183, 46, 0.52);
  border-radius: var(--radius);
  background: var(--amber-soft);
  font-size: 0.98rem;
  line-height: 1.45;
}

.supergold-reminder strong {
  font-weight: 950;
}

.contact-list div {
  padding: 18px;
  background: #f9fcfb;
}

.contact-list dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.disclaimer {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 40px;
  padding: 20px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

.disclaimer p {
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.site-footer strong {
  display: block;
  color: var(--white);
}

.site-footer p {
  margin: 5px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--white);
}

.mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 28;
  display: none;
  background: var(--navy);
  border-top: 3px solid var(--amber);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 8px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.mobile-cta a:first-child {
  flex: 1.35;
  color: var(--ink);
  background: var(--amber);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1140px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: none;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 9px 12px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    font-weight: 900;
    cursor: pointer;
  }

  .menu-toggle i,
  .menu-toggle i::before,
  .menu-toggle i::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    content: "";
  }

  .menu-toggle i {
    position: relative;
  }

  .menu-toggle i::before,
  .menu-toggle i::after {
    position: absolute;
    left: 0;
  }

  .menu-toggle i::before {
    top: -6px;
  }

  .menu-toggle i::after {
    top: 6px;
  }

  body.nav-open .menu-toggle i {
    background: transparent;
  }

  body.nav-open .menu-toggle i::before,
  body.nav-open .menu-toggle i::after {
    top: 0;
    background: currentColor;
  }

  body.nav-open .menu-toggle i::before {
    transform: rotate(45deg);
  }

  body.nav-open .menu-toggle i::after {
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    justify-self: stretch;
    display: grid;
    gap: 4px;
    width: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: #0b1b24;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .main-nav {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

  .hero-shell,
  .intro-grid,
  .section-heading,
  .diagnostic-panel,
  .service-layout,
  .starlink-panel,
  .fault-layout,
  .why-panel,
  .area-panel,
  .contact-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .starlink-image {
    max-height: 260px;
  }

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

  .hero-summary,
  .path-grid,
  .service-groups,
  .diagnostic-steps,
  .area-notes,
  .problem-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supergold-summary {
    grid-template-columns: minmax(96px, 0.38fr) minmax(190px, 1fr);
  }

  .core-service {
    min-height: 0;
  }

  .core-service h3 {
    max-width: 16ch;
  }

  .contact-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 9px 16px;
  }

  .header-call {
    display: none;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand-icon img {
    width: 34px;
    height: 34px;
  }

  .brand-wordmark {
    padding-bottom: 4px;
    border-bottom-width: 2px;
    font-size: 1rem;
  }

  .brand-subline {
    max-width: 170px;
    font-size: 0.62rem;
    line-height: 1.22;
  }

  .main-nav {
    top: 70px;
  }

  .hero-shell {
    width: min(100% - 32px, var(--max));
    gap: 28px;
    min-height: auto;
    padding: 58px 0 28px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(1.96rem, 9.5vw, 2.52rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(1.62rem, 7.1vw, 2.12rem);
  }

  .hero-copy {
    gap: 15px;
  }

  .price-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }

  .price-detail {
    order: 2;
  }

  .price-amount {
    order: 1;
  }

  .price-strip b {
    font-size: 1.58rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .button {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .area-copy .button,
  .starlink-body .button {
    width: 100%;
  }

  .hero-bg {
    object-position: 64% center;
  }

  .hero-summary,
  .path-grid,
  .service-groups,
  .diagnostic-steps,
  .area-notes,
  .problem-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .supergold-summary {
    grid-template-columns: 108px minmax(0, 1fr);
    min-height: 128px;
    padding: 16px;
  }

  .supergold-summary-mobile {
    display: grid;
  }

  .supergold-summary-desktop {
    display: none;
  }

  .hero-summary > span {
    min-height: 56px;
  }

  .section-inner,
  .section,
  .contact-section,
  .disclaimer {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 52px 0;
  }

  #services,
  #problems,
  #areas,
  #contact {
    scroll-margin-top: 78px;
  }

  .areas {
    padding-top: 8px;
    padding-bottom: 42px;
  }

  .section-band {
    padding: 50px 0 44px;
  }

  .diagnostic-method {
    padding-top: 40px;
    padding-bottom: 28px;
  }

  .services {
    padding-top: 32px;
    padding-bottom: 38px;
  }

  .fault-guide {
    padding: 44px 0 38px;
  }

  .why {
    padding-top: 38px;
    padding-bottom: 30px;
  }

  .path-grid li,
  .diagnostic-steps article,
  .service-groups article,
  .fault-panel,
  .why-panel,
  .area-panel,
  .contact-panel {
    padding: 22px;
  }

  .path-grid li {
    min-height: auto;
  }

  .path-grid span,
  .diagnostic-steps span {
    margin-bottom: 34px;
  }

  .core-service {
    min-height: 0;
  }

  .core-service-body {
    padding: 24px;
  }

  .fault-buttons {
    display: grid;
  }

  .fault-button {
    width: 100%;
    border-radius: var(--radius);
  }

  .area-panel {
    gap: 20px;
  }

  .area-copy h2 {
    max-width: 14ch;
  }

  .area-note {
    padding: 18px;
  }

  .area-note span {
    margin-bottom: 14px;
  }

  .area-note strong {
    font-size: 1.02rem;
  }

  .area-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-pills li {
    justify-content: center;
  }

  body {
    padding-bottom: 57px;
  }

  .mobile-cta {
    display: flex;
  }
}

@media print {
  .site-header,
  .mobile-cta {
    display: none;
  }
}

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

  .hero-bg,
  .hero-copy,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
