:root {
  color-scheme: dark;
  --ink: #172029;
  --panel: rgba(255, 255, 255, 0.68);
  --line: rgba(23, 32, 41, 0.16);
  --text: #fff9ee;
  --dark-text: #16202a;
  --muted: rgba(255, 249, 238, 0.76);
  --warm-muted: #64717b;
  --gold: #f26100;
  --amber: #ff6500;
  --cyan: #2078a7;
  --steel: #d4d1c8;
  --sand: #f1eadc;
  --bg-soft: #e7edf2;
  --card: rgba(255, 255, 255, 0.78);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 7rem;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--sand);
  color: var(--dark-text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

.cursor-light {
  position: fixed;
  inset: auto;
  z-index: 30;
  width: 26rem;
  height: 26rem;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.2), transparent 66%);
  opacity: 0.8;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  right: auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max));
  min-height: 4.35rem;
  padding: 0.58rem 0.85rem 0.58rem 0.85rem;
  color: #0f1d29;
  transform: translateX(-50%);
  border: 1px solid rgba(210, 239, 255, 0.62);
  border-radius: 999px;
  background: rgba(218, 240, 250, 0.78);
  box-shadow: 0 1.3rem 3rem rgba(8, 30, 45, 0.16);
  backdrop-filter: blur(24px) saturate(1.25);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.95rem;
  height: 3.95rem;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0.55rem 1.1rem rgba(8, 30, 45, 0.12);
  font-weight: 800;
  backdrop-filter: blur(20px);
}

.brand-mark img {
  width: 92%;
  height: 92%;
  border-radius: 22px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 29, 41, 0.04);
  transform: none;
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 760;
  color: #122232;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.8rem);
  color: rgba(15, 29, 41, 0.74);
  font-size: 0.83rem;
  text-transform: uppercase;
  font-weight: 760;
}

.nav-links a,
.nav-action {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: #0b1620;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  min-width: 0;
}

.nav-menu {
  position: relative;
}

.mobile-action-menu {
  display: none;
}

.nav-menu summary {
  list-style: none;
  cursor: pointer;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 29, 41, 0.08);
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  color: #111820;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(20px);
}

.nav-action-icon {
  display: none;
}

.nav-action-text {
  display: inline;
}

.nav-caret {
  margin-left: 0.42rem;
  font-size: 0.7rem;
  transition: transform 220ms ease;
}

.nav-menu[open] .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.72rem);
  right: 0;
  min-width: 13rem;
  padding: 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(237, 247, 250, 0.78);
  box-shadow: 0 1rem 2.6rem rgba(8, 30, 45, 0.18);
  backdrop-filter: blur(22px) saturate(1.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.45rem) scale(0.97);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-menu[open] .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.82rem 0.95rem;
  border-radius: 18px;
  color: #111820;
  font-size: 0.86rem;
  font-weight: 760;
}

.nav-dropdown a:first-child {
  background: linear-gradient(135deg, rgba(255, 101, 0, 0.92), rgba(255, 191, 83, 0.7));
}

.nav-dropdown span {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-dropdown strong {
  font-weight: 760;
}

.login-action {
  border-color: rgba(32, 120, 167, 0.18);
  background: rgba(236, 250, 255, 0.86);
  color: #0c3550;
}

.nav-action:hover {
  border-color: rgba(255, 101, 0, 0.9);
  background: rgba(255, 101, 0, 0.2);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  place-items: center end;
  overflow: hidden;
  isolation: isolate;
  padding: 7rem clamp(1rem, 5vw, 4.5rem) 3.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(15, 21, 26, 0.01), rgba(15, 21, 26, 0.12) 34%, rgba(11, 16, 21, 0.6) 62%, rgba(11, 16, 21, 0.92)),
    linear-gradient(180deg, rgba(12, 18, 24, 0.04), rgba(12, 18, 24, 0.14) 54%, rgba(23, 32, 41, 0.82));
}

.hero-bg,
.hero-grid,
.light-lanes {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.hero-grid {
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 249, 238, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 249, 238, 0.06) 1px, transparent 1px);
  background-size: 8rem 8rem;
  mask-image: linear-gradient(transparent, black 24%, black 70%, transparent);
  opacity: 0.3;
}

.light-lanes {
  z-index: -2;
  overflow: hidden;
}

.light-lanes span {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(113, 230, 255, 0.72), transparent);
  transform: rotate(-12deg);
  animation: lanePulse 5.5s ease-in-out infinite;
}

.light-lanes span:nth-child(1) {
  top: 34%;
}

.light-lanes span:nth-child(2) {
  top: 53%;
  animation-delay: 1.2s;
  background: linear-gradient(90deg, transparent, rgba(255, 101, 0, 0.68), transparent);
}

.light-lanes span:nth-child(3) {
  top: 70%;
  animation-delay: 2.4s;
}

.hero-copy {
  width: min(42rem, 100%);
  text-align: right;
  transform: translateY(-0.95rem);
  color: var(--text);
}

.eyebrow {
  margin: 0 0 1.05rem;
  color: var(--amber);
  font-size: clamp(0.72rem, 1.2vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 100%;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  color: rgba(255, 249, 238, 0.86);
  letter-spacing: 0.05em;
  text-transform: none;
}

.status-chip::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0.34rem rgba(255, 101, 0, 0.18);
}

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

h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.8rem, 6.7vw, 7.4rem);
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-line {
  max-width: 38rem;
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.hero-actions.centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #111820;
  background: var(--amber);
  box-shadow: 0 1rem 2rem rgba(255, 101, 0, 0.24);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.hero-panel {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  right: clamp(1rem, 4vw, 3rem);
  bottom: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 64rem;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(24px) saturate(1.35);
}

.hero-panel div {
  min-width: 0;
  padding: 1rem clamp(0.8rem, 2vw, 1.5rem);
  background: rgba(14, 20, 26, 0.46);
}

.metric {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--text);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 760;
}

.hero-panel span:last-child {
  color: var(--muted);
  font-size: clamp(0.74rem, 1.2vw, 0.92rem);
}

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

.trust-band,
.photo-story,
.service-band,
.coverage,
.network,
.contact {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 4.5rem);
}

.trust-band {
  background:
    radial-gradient(circle at 15% 10%, rgba(32, 120, 167, 0.14), transparent 27rem),
    linear-gradient(180deg, #f4f7f8, #e9eef1);
}

.photo-story {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 101, 0, 0.1), transparent 22rem),
    linear-gradient(180deg, #e9eef1, #f6f2e9);
}

.photo-story-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.photo-copy {
  max-width: 34rem;
}

.photo-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 5.4vw, 5.4rem);
  line-height: 0.96;
}

.photo-copy p:last-child {
  color: var(--warm-muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: end;
}

.photo-tile {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(22, 32, 42, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1.5rem 3.5rem rgba(21, 40, 55, 0.12);
}

.photo-tile.tall {
  min-height: 31rem;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 600ms ease;
}

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

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 101, 0, 0.18), transparent 24%),
    linear-gradient(180deg, transparent 48%, rgba(8, 18, 28, 0.78));
}

.photo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 3.6rem 3.6rem;
  opacity: 0.16;
  mask-image: linear-gradient(transparent, black 35%, black 80%);
}

.photo-tile figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.service-band {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 101, 0, 0.14), transparent 26rem),
    linear-gradient(180deg, #edf2f4, #dfe7eb);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(1rem, 5vw, 5rem);
  align-items: end;
  max-width: 78rem;
  margin: 0 auto 2rem;
}

.section-heading.stacked {
  display: block;
  max-width: 54rem;
  margin-left: 0;
}

.section-subtitle {
  max-width: 42rem;
  color: var(--warm-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.6;
}

.section-heading h2,
.network h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.trust-card {
  min-height: 13rem;
  padding: 1.6rem;
  border: 1px solid rgba(22, 32, 42, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 1rem 2.5rem rgba(21, 40, 55, 0.06);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.trust-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1.5rem 3.5rem rgba(21, 40, 55, 0.1);
}

.icon-dot {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 2.1rem;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 101, 0, 0.12);
  font-weight: 900;
}

.trust-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.trust-card p {
  color: var(--warm-muted);
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 78rem;
  margin: 0 auto;
}

.service-card {
  min-height: 18rem;
  padding: 1.35rem;
  border: 1px solid rgba(22, 32, 42, 0.16);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(255, 251, 242, 0.66)),
    rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: 0 1.4rem 3rem rgba(75, 55, 28, 0.11);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.card-index {
  display: block;
  margin-bottom: 5rem;
  color: var(--gold);
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.38rem;
}

.service-card p,
.network-copy p {
  color: var(--warm-muted);
  line-height: 1.65;
}

.network {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  min-height: 42rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(32, 120, 167, 0.12), transparent 28rem),
    linear-gradient(180deg, #eef4f7, #f7f3ea);
  color: var(--dark-text);
}

.coverage {
  color: var(--dark-text);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 101, 0, 0.12), transparent 28rem),
    linear-gradient(180deg, #f6f9fa, #e9f0f3);
  border-radius: 46px 46px 0 0;
}

.coverage .section-subtitle,
.coverage p {
  color: var(--warm-muted);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  margin-top: 3rem;
}

.map-card,
.quote-card {
  position: relative;
  min-height: 26rem;
  overflow: hidden;
  border: 1px solid rgba(22, 32, 42, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1.4rem 3.2rem rgba(21, 40, 55, 0.08);
}

.map-card {
  padding: 2rem;
  background:
    linear-gradient(90deg, rgba(22, 32, 42, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(22, 32, 42, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: 4rem 4rem;
}

.map-card h3,
.quote-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.08;
}

.map-card h3 {
  max-width: 29rem;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.route-line {
  position: absolute;
  inset: 5rem 3.5rem;
  border: 2px solid rgba(255, 101, 0, 0.58);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-9deg);
}

.city {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(22, 32, 42, 0.12);
  border-radius: 999px;
  padding: 0.65rem 0.82rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--warm-muted);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.city.la {
  left: 2rem;
  bottom: 5rem;
}

.city.tx {
  left: 42%;
  top: 7.8rem;
}

.city.us {
  right: 3rem;
  bottom: 7rem;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.quote-list {
  display: grid;
  gap: 0.1rem;
  margin-top: 1.8rem;
}

.quote-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(22, 32, 42, 0.12);
  color: var(--warm-muted);
  font-weight: 700;
}

.quote-list strong {
  color: var(--dark-text);
}

.map-art {
  position: relative;
  min-height: 26rem;
  border-block: 1px solid rgba(22, 32, 42, 0.14);
  background:
    linear-gradient(90deg, rgba(22, 32, 42, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(22, 32, 42, 0.1) 1px, transparent 1px);
  background-size: 4rem 4rem;
  overflow: hidden;
}

.route,
.node {
  position: absolute;
  display: block;
}

.route {
  height: 2px;
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--amber), var(--cyan), transparent);
  box-shadow: 0 0 1rem rgba(113, 230, 255, 0.5);
}

.route-a {
  top: 34%;
  left: 8%;
  width: 78%;
  transform: rotate(8deg);
}

.route-b {
  top: 58%;
  left: 18%;
  width: 66%;
  transform: rotate(-16deg);
}

.route-c {
  top: 73%;
  left: 5%;
  width: 54%;
  transform: rotate(18deg);
}

.node {
  width: 0.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fffaf0;
  box-shadow: 0 0 1.4rem 0.35rem rgba(255, 101, 0, 0.3);
}

.node-one {
  left: 16%;
  top: 31%;
}

.node-two {
  right: 14%;
  top: 43%;
}

.node-three {
  left: 54%;
  bottom: 18%;
}

.network-copy {
  max-width: 34rem;
}

.contact {
  position: relative;
  min-height: 28rem;
  display: grid;
  align-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--text);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 20, 27, 0.58), rgba(12, 20, 27, 0.24)),
    linear-gradient(rgba(23, 32, 41, 0.1), rgba(23, 32, 41, 0.72));
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.contact p {
  margin: 1rem auto 0;
  max-width: 38rem;
  color: rgba(255, 249, 238, 0.72);
  font-size: 1.1rem;
}

.contact a {
  justify-self: center;
}

footer {
  padding: 2rem clamp(1rem, 5vw, 4.5rem) 3rem;
  background: #f4f7f8;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(22, 32, 42, 0.12);
  color: var(--warm-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes lanePulse {
  0%,
  100% {
    opacity: 0.08;
    transform: translateX(-8%) rotate(-17deg);
  }
  45% {
    opacity: 0.82;
    transform: translateX(7%) rotate(-17deg);
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    top: 0.75rem;
    width: min(calc(100% - 1rem), var(--max));
  }

  .nav-links {
    display: none;
  }

  .brand-name {
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }

  .hero {
    min-height: 100svh;
    align-items: start;
    place-items: start;
    padding: 7.7rem 1rem 15rem;
  }

  .hero-copy {
    text-align: left;
    transform: none;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-line {
    margin-left: 0;
  }

  .hero-panel,
  .section-heading,
  .service-grid,
  .trust-grid,
  .photo-story-inner,
  .photo-grid,
  .coverage-grid,
  .network {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .hero-panel div {
    padding: 0.8rem 0.9rem;
  }

  .card-index {
    margin-bottom: 3rem;
  }

  .network {
    min-height: auto;
    gap: 2rem;
    padding-block: 5rem;
  }

  .photo-tile,
  .photo-tile.tall {
    min-height: 20rem;
  }

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

@media (max-width: 540px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: calc(100% - 1rem);
    padding: 0.42rem 0.48rem;
    gap: 0.42rem;
    min-height: 0;
    border-radius: 999px;
  }

  .brand-mark {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 18px;
  }

  .brand-mark img {
    border-radius: 16px;
  }

  .brand-name {
    max-width: none;
    min-width: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: clamp(0.72rem, 3.45vw, 0.9rem);
    line-height: 1.05;
  }

  .header-actions {
    display: flex;
    width: auto;
    gap: 0.3rem;
  }

  .desktop-action {
    display: none;
  }

  .mobile-action-menu {
    display: block;
  }

  .nav-action {
    height: 2.45rem;
    min-height: 0;
    padding: 0 0.9rem;
    font-size: 0.95rem;
    text-align: center;
    transition: width 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .mobile-action-trigger {
    width: 3.05rem;
  }

  .nav-menu[open] .mobile-action-trigger {
    width: 6.9rem;
    border-color: #0a74d8;
    box-shadow: inset 0 0 0 2px rgba(10, 116, 216, 0.72);
  }

  .nav-action-icon {
    display: inline;
    line-height: 1;
  }

  .nav-action-text {
    display: inline;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-0.2rem);
    transition: max-width 220ms ease, opacity 180ms ease, transform 220ms ease;
  }

  .nav-caret {
    max-width: 0;
    margin-left: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 220ms ease, margin 220ms ease, opacity 180ms ease, transform 220ms ease;
  }

  .nav-menu[open] .mobile-action-trigger .nav-action-text {
    max-width: 3.45rem;
    margin-left: 0.42rem;
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu[open] .mobile-action-trigger .nav-caret {
    max-width: 1rem;
    margin-left: 0.3rem;
    opacity: 1;
  }

  .nav-dropdown {
    top: calc(100% + 0.62rem);
    right: 0;
    min-width: 11.5rem;
    border-radius: 22px;
    padding: 0.5rem;
  }

  .nav-dropdown a {
    padding: 0.78rem 0.82rem;
    font-size: 0.82rem;
  }

  .hero {
    padding: 6.8rem 1rem 14rem;
  }

  section {
    scroll-margin-top: 6.75rem;
  }

  .status-chip {
    padding: 0.52rem 0.68rem;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.4rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .hero-actions {
    width: 100%;
    flex-wrap: nowrap;
    gap: 0.45rem;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 2.9rem;
    padding-inline: 0.72rem;
    font-size: clamp(0.74rem, 3.3vw, 0.9rem);
  }

  .hero-panel {
    font-size: 0.8rem;
  }

  .hero-panel div {
    padding: 0.7rem;
  }

  .metric {
    font-size: 1.15rem;
  }

  .section-inner,
  .service-band,
  .network,
  .contact,
  footer {
    padding-inline: 1rem;
  }

  .trust-grid,
  .service-grid,
  .coverage-grid,
  .photo-grid {
    gap: 1rem;
  }

  .photo-tile,
  .photo-tile.tall {
    min-height: 18rem;
    border-radius: 22px;
  }

  .map-card,
  .quote-card {
    border-radius: 22px;
    padding: 1.25rem;
  }
}
