:root {
  --charcoal: #111716;
  --museum-green: #1a221d;
  --olive-sage: #829476;
  --soft-moss: #a5b495;
  --muted-sand: #d8cec1;
  --warm-ivory: #eee5d8;
  --ink: #101614;
  --border: rgba(216, 206, 193, 0.24);
  --border-strong: rgba(216, 206, 193, 0.42);
  --muted: rgba(238, 229, 216, 0.72);
  --quiet: rgba(238, 229, 216, 0.54);
  --panel: rgba(26, 34, 29, 0.84);
  --panel-soft: rgba(238, 229, 216, 0.07);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--charcoal);
  color: var(--warm-ivory);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

:focus-visible {
  outline: 2px solid var(--soft-moss);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  transform: translateY(-150%);
  background: var(--warm-ivory);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border: 1px solid var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px clamp(10px, 2vw, 18px);
  background: linear-gradient(180deg, rgba(17, 23, 22, 0.94), rgba(17, 23, 22, 0.72));
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 60px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: stretch;
  border: 1px solid var(--border-strong);
  background: rgba(17, 23, 22, 0.76);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0 1.45rem;
  border-right: 1px solid var(--border-strong);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted-sand);
  min-width: 150px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 0.72rem;
  border: 1px solid var(--border);
  background: rgba(238, 229, 216, 0.06);
  color: var(--soft-moss);
  font-size: 0.72rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.42rem 1rem;
}

.nav-menu a,
.footer-legal a {
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.05rem;
  border: 1px solid transparent;
  background: rgba(238, 229, 216, 0.05);
  color: var(--muted-sand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  border-color: var(--border);
  background: rgba(216, 206, 193, 0.1);
  color: var(--warm-ivory);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 58px;
  border: 0;
  border-left: 1px solid var(--border-strong);
  background: rgba(238, 229, 216, 0.04);
  color: var(--warm-ivory);
  cursor: pointer;
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-bars {
  position: relative;
}

.menu-bars::before,
.menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-bars::before {
  top: -7px;
}

.menu-bars::after {
  top: 7px;
}

.nav-open .menu-bars {
  transform: rotate(45deg);
}

.nav-open .menu-bars::before {
  transform: translateY(7px) rotate(90deg);
}

.nav-open .menu-bars::after {
  opacity: 0;
}

.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 48px;
  border: 1px solid var(--border-strong);
  padding: 0.78rem 1.05rem 0.78rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn {
  background: transparent;
  color: var(--warm-ivory);
}

.btn-primary {
  background: var(--soft-moss);
  color: var(--ink);
  border-color: var(--soft-moss);
}

.btn-secondary {
  color: var(--muted-sand);
  background: rgba(238, 229, 216, 0.04);
}

.btn:hover,
.text-link:hover {
  transform: translateY(-2px);
  border-color: var(--soft-moss);
}

.btn-primary:hover {
  background: var(--olive-sage);
}

.btn-icon,
.mini-arrow {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--warm-ivory);
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 180ms ease;
}

.btn:hover .btn-icon,
.text-link:hover .mini-arrow,
.mini-link:hover .mini-arrow {
  transform: translateX(3px);
}

.nav-cta {
  align-self: center;
  margin-right: 6px;
  min-height: 46px;
}

.section-inner,
.hero-inner,
.footer-inner {
  width: min(100% - 32px, 1360px);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 80px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(17, 23, 22, 0.96) 0%, rgba(17, 23, 22, 0.78) 43%, rgba(17, 23, 22, 0.32) 100%),
    linear-gradient(0deg, rgba(17, 23, 22, 0.92) 0%, rgba(17, 23, 22, 0.05) 48%, rgba(17, 23, 22, 0.76) 100%),
    url("../images/hero-provider-rank.webp") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(216, 206, 193, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 206, 193, 0.06) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(0deg, var(--charcoal), rgba(17, 23, 22, 0));
}

.hero-inner {
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(2.6rem, 5vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.58fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: end;
}

.hero-content {
  max-width: 920px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.2rem;
  color: var(--muted-sand);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--soft-moss);
  box-shadow: 0 0 18px var(--soft-moss);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
.display-heading,
.section-title,
.provider-card h3,
.footer-links a {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 1080px;
  margin-bottom: 1.3rem;
  color: var(--muted-sand);
  font-size: clamp(2.8rem, 5vw, 7.2rem);
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.hero-title-line {
  display: inline;
}

.hero-title-line + .hero-title-line::before {
  content: " ";
}

.serif,
.hero-script,
.card-note,
.step-number,
.footer-signature {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
}

.hero-script {
  max-width: 100%;
  margin-bottom: 1rem;
  color: var(--warm-ivory);
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  line-height: 0.98;
  overflow-wrap: break-word;
}

.hero-script span {
  display: inline;
}

.hero-script span + span::before {
  content: " ";
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-visual {
  min-height: 540px;
  position: relative;
}

.screen-frame {
  position: absolute;
  left: 0;
  top: 3rem;
  width: min(72%, 430px);
  margin: 0;
  border: 1px solid var(--border);
  background: rgba(17, 23, 22, 0.62);
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0.84;
}

.screen-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: saturate(0.72) contrast(1.08) brightness(0.78);
}

.rank-board {
  position: absolute;
  right: 0;
  bottom: 2rem;
  width: min(100%, 530px);
  min-height: 430px;
}

.rank-card {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(88%, 440px);
  min-height: 255px;
  padding: 1.4rem;
  border: 1px solid var(--border-strong);
  background: rgba(26, 34, 29, 0.84);
  box-shadow: var(--shadow);
  transform-origin: center bottom;
}

.rank-card:nth-child(1) {
  right: 8%;
  bottom: 11%;
  transform: rotate(-8deg);
  background: rgba(130, 148, 118, 0.84);
  color: var(--ink);
}

.rank-card:nth-child(2) {
  right: 1%;
  bottom: 2%;
  transform: rotate(3deg);
  background: rgba(216, 206, 193, 0.92);
  color: var(--ink);
}

.rank-card:nth-child(3) {
  right: 15%;
  bottom: 22%;
  transform: rotate(-2deg);
}

.rank-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.1rem;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.rank-card strong {
  display: block;
  max-width: 300px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 0.96;
  text-transform: uppercase;
  font-weight: 500;
}

.rank-card p {
  margin: 1.2rem 0 0;
  color: currentColor;
  opacity: 0.78;
}

.caption-row {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted-sand);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.caption-line {
  width: 72px;
  height: 1px;
  background: var(--border-strong);
}

.intro {
  background: var(--olive-sage);
  color: var(--ink);
  border-bottom: 1px solid rgba(16, 22, 20, 0.22);
}

.intro .section-inner {
  padding: clamp(5rem, 9vw, 9rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.intro .eyebrow {
  color: rgba(16, 22, 20, 0.72);
}

.intro .eyebrow::before {
  background: var(--ink);
  box-shadow: none;
}

.section-title {
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 6.5vw, 7.5rem);
  line-height: 0.94;
}

.section-title .serif {
  display: block;
  text-transform: none;
  font-weight: 500;
}

.section-copy {
  max-width: 670px;
  margin-bottom: 1.7rem;
  color: rgba(16, 22, 20, 0.76);
  font-size: 1.05rem;
}

.tilt-stack {
  position: relative;
  min-height: 440px;
}

.tilt-card {
  position: absolute;
  width: min(86%, 450px);
  min-height: 250px;
  padding: 1.35rem;
  border: 1px solid rgba(16, 22, 20, 0.58);
  background: rgba(216, 206, 193, 0.12);
  box-shadow: 0 16px 40px rgba(16, 22, 20, 0.12);
}

.tilt-card:nth-child(1) {
  left: 1%;
  top: 14%;
  transform: rotate(-6deg);
}

.tilt-card:nth-child(2) {
  left: 23%;
  top: 4%;
  transform: rotate(0deg);
  background: rgba(238, 229, 216, 0.12);
}

.tilt-card:nth-child(3) {
  right: 1%;
  top: 20%;
  transform: rotate(7deg);
}

.tilt-card span,
.feature-card span,
.provider-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.32rem 0.55rem;
  border: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.tilt-card h3 {
  margin: 2rem 0 1.2rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.card-note {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.1rem;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.18;
}

.dark-section,
.services,
.location,
.article-section,
.faq-section {
  background: var(--charcoal);
}

.dark-section .section-inner,
.services .section-inner,
.location .section-inner,
.article-section .section-inner,
.faq-section .section-inner {
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-header p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.provider-list {
  display: grid;
  gap: 1rem;
}

.provider-card {
  display: grid;
  grid-template-columns: 0.22fr 0.88fr 0.58fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: 330px;
  padding: clamp(1.3rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(238, 229, 216, 0.035), rgba(130, 148, 118, 0.055));
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.provider-card:hover {
  transform: translateY(-4px);
  border-color: var(--soft-moss);
  background-color: rgba(238, 229, 216, 0.025);
}

.step-number {
  color: var(--olive-sage);
  font-size: clamp(4.4rem, 8vw, 8.6rem);
  line-height: 0.8;
}

.provider-card h3 {
  margin-bottom: 1rem;
  color: var(--muted-sand);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.96;
}

.provider-card p {
  color: var(--muted);
  max-width: 680px;
}

.provider-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.provider-tag {
  color: var(--soft-moss);
  border-color: rgba(165, 180, 149, 0.5);
}

.provider-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  color: var(--muted-sand);
  list-style: none;
}

.provider-card li {
  position: relative;
  padding-left: 1.15rem;
}

.provider-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  background: var(--olive-sage);
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--warm-ivory);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.services {
  background: var(--museum-green);
  border-block: 1px solid var(--border);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.feature-card {
  min-height: 260px;
  padding: 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(238, 229, 216, 0.025);
}

.feature-card h3 {
  margin: 2.2rem 0 0.85rem;
  color: var(--muted-sand);
  font-size: 1.35rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-card span {
  color: var(--soft-moss);
  border-color: rgba(165, 180, 149, 0.5);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}

.location-panel {
  display: grid;
  align-content: space-between;
  min-height: 540px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(17, 23, 22, 0.34), rgba(17, 23, 22, 0.88)),
    url("../images/provider-map.webp") center / cover no-repeat;
  overflow: hidden;
  position: relative;
}

.location-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.62) brightness(0.62);
}

.location-panel::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(238, 229, 216, 0.22);
  transform: rotate(-5deg);
}

.map-pin {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  align-self: end;
  justify-self: end;
  padding: 1.2rem;
  border: 1px solid var(--border-strong);
  background: rgba(17, 23, 22, 0.82);
}

.map-pin strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted-sand);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
  font-weight: 500;
}

.map-pin p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.fact {
  min-height: 150px;
  padding: 1rem;
  border: 1px solid var(--border);
  background: rgba(238, 229, 216, 0.03);
}

.fact span {
  display: block;
  margin-bottom: 1rem;
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fact strong {
  color: var(--muted-sand);
  font-size: 1.55rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.article-section {
  background: linear-gradient(180deg, var(--charcoal), #151d19);
  border-top: 1px solid var(--border);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 100px;
  padding: 1.2rem;
  border: 1px solid var(--border);
  background: rgba(238, 229, 216, 0.035);
}

.article-aside a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(216, 206, 193, 0.14);
  color: var(--muted-sand);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.article-aside a:last-child {
  border-bottom: 0;
}

.article-body {
  max-width: 880px;
}

.article-body h2 {
  margin: 3.2rem 0 1rem;
  color: var(--muted-sand);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 500;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 2rem 0 0.65rem;
  color: var(--soft-moss);
  font-size: 1.55rem;
  line-height: 1.15;
}

.article-body p {
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.article-lead {
  color: var(--warm-ivory) !important;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem) !important;
}

.article-callout {
  margin: 2.2rem 0;
  padding: 1.3rem;
  border: 1px solid var(--border-strong);
  background: rgba(130, 148, 118, 0.12);
  color: var(--muted-sand);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--border);
  background: rgba(238, 229, 216, 0.03);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  padding: 1.1rem 1.3rem;
  color: var(--muted-sand);
  cursor: pointer;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.2;
  text-transform: uppercase;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid var(--border);
  color: var(--soft-moss);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "-";
}

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

.closing-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 23, 22, 0.96), rgba(17, 23, 22, 0.66)),
    url("../images/bonus-dashboard.webp") center / cover no-repeat;
  border-block: 1px solid var(--border);
}

.closing-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.66) brightness(0.68);
}

.closing-cta .section-inner {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.closing-copy {
  max-width: 900px;
}

.closing-copy p {
  max-width: 610px;
  color: var(--muted);
}

.site-footer {
  background: var(--charcoal);
  color: var(--muted-sand);
}

.footer-inner {
  padding: clamp(4rem, 7vw, 7rem) 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr) minmax(260px, 0.45fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.footer-cta h2 {
  margin-bottom: 1.2rem;
  color: var(--muted-sand);
  font-size: clamp(2.5rem, 5.6vw, 6rem);
  line-height: 0.96;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-signature {
  display: block;
  margin: 2.2rem 0 1.6rem;
  color: var(--warm-ivory);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.responsible-note {
  max-width: 560px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.footer-links a {
  color: var(--muted-sand);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.footer-links a:hover {
  color: var(--soft-moss);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 1.7rem;
}

.footer-contact h3 {
  margin-bottom: 0.4rem;
  color: var(--warm-ivory);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-contact p,
.footer-contact a {
  margin: 0;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--border-strong);
  color: var(--quiet);
  font-size: 0.86rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-legal a:hover {
  color: var(--soft-moss);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: 82px 10px auto;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--border-strong);
    background: rgba(17, 23, 22, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-menu {
    display: flex;
  }

  .nav-menu a {
    justify-content: flex-start;
    width: 100%;
  }

  .brand {
    min-width: 0;
  }

  .hero-grid,
  .intro .section-inner,
  .section-header,
  .location-layout,
  .article-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .rank-board {
    left: 0;
    right: auto;
  }

  .article-aside {
    position: static;
  }

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

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

  .provider-meta {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 0;
  }

  .nav-shell {
    border-inline: 0;
  }

  .brand {
    padding-inline: 0.9rem;
    font-size: 0.95rem;
  }

  .brand-mark {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .section-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 24px, 1360px);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 5rem;
  }

  h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.2rem);
    line-height: 1;
  }

  .hero-title-line {
    display: block;
  }

  .hero-title-line + .hero-title-line::before {
    content: "";
  }

  .hero-script {
    font-size: clamp(1.45rem, 6.6vw, 1.85rem);
    line-height: 1.05;
  }

  .hero-script span {
    display: block;
  }

  .hero-script span + span::before {
    content: "";
  }

  .hero-copy {
    max-width: 34ch;
    font-size: 0.98rem;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: space-between;
  }

  .hero-visual {
    min-height: 360px;
  }

  .rank-card {
    width: 92%;
    min-height: 210px;
  }

  .intro .section-inner,
  .dark-section .section-inner,
  .services .section-inner,
  .location .section-inner,
  .article-section .section-inner,
  .faq-section .section-inner,
  .closing-cta .section-inner {
    padding-block: 4rem;
  }

  .tilt-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .tilt-card,
  .tilt-card:nth-child(n) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    transform: none;
  }

  .card-note {
    position: static;
    margin-top: 1.5rem;
  }

  .provider-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .provider-meta {
    grid-column: auto;
  }

  .feature-grid,
  .location-facts {
    grid-template-columns: 1fr;
  }

  .location-panel {
    min-height: 420px;
  }

  .article-body h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
