/* NOLA Broadband theme */

:root {
  --ink: #151f25;
  --ink-soft: #1c2a33;
  --slate: #4a5a66;
  --mist: #eef2f4;
  --paper: #f7f8f9;
  --white: #ffffff;
  --amber: #ff9009;
  --amber-deep: #dd8502;
  --line: rgba(21, 31, 37, 0.12);
  --radius: 3px;
  --max: 1080px;
  --font-display: "Archivo", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #1677e5;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--amber-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.55em;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.2rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 761px) {
  .container {
    width: min(100% - 2.5rem, var(--max));
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: var(--ink);
  padding: 0.75rem 1rem;
  z-index: 10000;
}

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

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(21, 31, 37, 0.72) 0%, rgba(21, 31, 37, 0.28) 70%, transparent 100%);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(21, 31, 37, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
  padding: calc(0.55rem + env(safe-area-inset-top, 0px)) 0 0.55rem;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--white);
  position: relative;
  z-index: 1002;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
  padding: 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 1.75rem;
  min-width: 0;
}

.nav .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav .menu > li > a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 0.5rem 0.65rem;
  white-space: nowrap;
  border-radius: var(--radius);
}

.nav .menu > li > a:hover,
.nav .current-menu-item > a,
.nav a[aria-current="page"] {
  color: var(--amber);
}

.nav-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 1rem;
  padding-left: 0.35rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-phone,
.nav-email {
  display: none;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-phone:hover,
.nav-email:hover {
  color: var(--amber);
}

.nav-contact,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 1.05rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
}

.nav-contact {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.nav-contact:hover {
  background: var(--white);
  color: var(--ink) !important;
  border-color: var(--white);
}

.nav-cta {
  background: var(--amber);
  color: var(--ink) !important;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--ink) !important;
}

/* Desktop: logo | centered links | account */
@media (min-width: 1025px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
  }

  .nav {
    display: contents;
  }

  .nav .menu {
    justify-self: center;
    justify-content: center;
  }

  .nav-actions {
    justify-self: end;
    border-left: 0;
    padding-left: 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn-primary {
  background: var(--amber);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

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

.btn-dark:hover {
  background: var(--amber);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.page-hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.page-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(21, 31, 37, 0.45) 0%, rgba(21, 31, 37, 0.2) 40%, rgba(21, 31, 37, 0.78) 75%, rgba(21, 31, 37, 0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  max-width: 36rem;
}

.hero-content.is-ready > * {
  animation: rise 0.8s var(--ease) both;
}

.hero-content.is-ready > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content.is-ready > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content.is-ready > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content.is-ready > *:nth-child(4) { animation-delay: 0.35s; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-brand {
  margin: 0 0 1rem;
  line-height: 0;
}

.hero-brand img {
  display: block;
  width: min(100%, 14rem);
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}

.hero-brand--home img {
  width: min(100%, 22rem);
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34ch;
  margin: 0 0 1.5rem;
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.section-head p {
  color: var(--slate);
  font-size: 1.08rem;
}

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

.section-ink .section-head p,
.section-ink p {
  color: rgba(255, 255, 255, 0.78);
}

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

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.65rem;
}

.section-ink .kicker {
  color: var(--amber);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Legal pages must remain readable even if reveal JS never runs. */
.legal-prose.reveal {
  opacity: 1;
  transform: none;
}

/* Services list */
.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.service-item h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  margin: 0 0 0.25rem;
}

.service-item p {
  color: var(--slate);
  margin: 0;
}

.service-arrow {
  font-size: 1.35rem;
  color: var(--amber-deep);
}

.service-item:hover h3 {
  color: var(--amber-deep);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.split-visual {
  overflow: hidden;
  min-height: 280px;
}

.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.plan {
  background: var(--white);
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
}

.plan-price {
  font-family: var(--font-body);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

.plan-price small {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  margin-top: 0.35rem;
}

.plan-speed {
  font-weight: 700;
  color: #1677e5;
  font-size: 0.95rem;
  margin: 0;
}

.plan ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.plan li {
  padding: 0.35rem 0;
  color: var(--slate);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(21, 31, 37, 0.06);
}

.plan li:last-child {
  border-bottom: 0;
}

.plan .btn {
  width: 100%;
}

.plan-featured {
  background: var(--ink);
  color: var(--white);
}

.plan-featured .plan-speed,
.plan-featured li,
.plan-featured .plan-price small {
  color: rgba(255, 255, 255, 0.8);
}

.plan-note {
  margin-top: 1.15rem;
  font-size: 0.92rem;
  color: var(--slate);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0;
  max-width: 46rem;
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 2rem 1.1rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.05rem;
  color: var(--amber-deep);
  font-size: 1.35rem;
}

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

.faq-item .faq-body {
  padding: 0 0 1.15rem;
  color: var(--slate);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
}

.contact-details {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.3rem;
}

.contact-details a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--amber-deep);
}

.form {
  display: grid;
  gap: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  width: 100%;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--amber);
  outline-offset: 1px;
  border-color: transparent;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-status.success {
  background: rgba(23, 158, 131, 0.14);
  color: #0b6b58;
}

.form-status.error {
  background: rgba(224, 91, 73, 0.12);
  color: #b33b2d;
}

.form-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--slate);
  margin: 0.5rem 0 1rem;
}

.form-consent input {
  width: auto;
  margin-top: 0.25rem;
  flex: 0 0 auto;
}

.nola-turnstile {
  margin: 0 0 1rem;
}

.nola-turnstile .cf-turnstile {
  max-width: 100%;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

/* Inner page hero */
.page-hero {
  position: relative;
  min-height: 42svh;
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.page-hero .hero-content {
  padding: calc(var(--header-h) + 2rem) 0 2.5rem;
  max-width: 34rem;
}

.page-hero .hero-brand {
  margin-bottom: 0.75rem;
}

.page-hero .hero-brand img {
  width: min(100%, 11.5rem);
}

.page-hero h1 {
  font-size: clamp(1.55rem, 3.4vw, 2.25rem);
  max-width: none;
}

/* Facilities */
.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.facility h2 {
  font-size: 1.55rem;
}

.facility h3 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin: 1.15rem 0 0.45rem;
}

.facility ul {
  color: var(--slate);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 1.75rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .brand img {
  width: 120px;
  margin-bottom: 0.85rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--amber);
}

.footer-col h3 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.85rem;
}

.footer-col ul,
.footer-col .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-size: 0.9rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-size: 1.55rem;
  margin-top: 1.75rem;
}

.band-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.band-cta h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin: 0;
  max-width: 18ch;
}

/* Tablet */
@media (max-width: 960px) {
  .plans {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .contact-grid,
  .facility-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .split-visual {
    order: -1;
  }
}

/* Tablet + phone: collapse header into drawer */
@media (max-width: 1024px) {
  :root {
    --header-h: 4rem;
  }

  .brand img {
    width: 96px;
  }

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

  .nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: rgba(21, 31, 37, 0.98);
    padding: calc(var(--header-h) + 1.25rem) 1.35rem max(1.5rem, env(safe-area-inset-bottom));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease);
    overflow-y: auto;
    z-index: 1001;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav .menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav .menu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav .menu > li > a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0.35rem 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    white-space: normal;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 0.25rem;
    padding-left: 0;
    border-left: 0;
  }

  .nav-phone,
  .nav-email {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-contact,
  .nav-cta {
    width: 100%;
    min-height: 52px;
    margin-top: 0.35rem;
    font-size: 1rem;
  }

  .nav .menu .sub-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: 0;
    padding: 0 0 0.5rem 0.85rem;
    min-width: 0;
  }
}

/* Phone content layout */
@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: calc(var(--header-h) + 1.25rem) 0 max(1.75rem, env(safe-area-inset-bottom));
    max-width: none;
  }

  .hero-brand img {
    width: min(100%, 12rem);
  }

  .hero-brand--home img {
    width: min(100%, 16.5rem);
  }

  .hero-lead {
    font-size: 1rem;
    max-width: none;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn {
    width: 100%;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 38svh;
  }

  .page-hero .hero-content {
    padding-bottom: 1.75rem;
  }

  .band-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .band-cta .cta-row .btn,
  .band-cta > .btn {
    width: 100%;
  }

  .section {
    padding: 2.75rem 0;
  }

  .service-item {
    padding: 1.15rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-content > *,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* Value props */
.value-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-row h2,
.value-row h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.value-row p {
  color: var(--slate);
  margin: 0;
}

@media (max-width: 960px) {
  .value-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .value-row {
    grid-template-columns: 1fr;
  }
}

.plan-tech {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-deep);
}

.plan-featured .plan-tech {
  color: var(--amber);
}

/* Broadband Facts */
.broadband-facts {
  margin-top: 0.85rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.plan-featured .broadband-facts {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.broadband-facts summary {
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.broadband-facts summary::-webkit-details-marker {
  display: none;
}

.broadband-facts__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
}

.broadband-facts__plan {
  font-size: 0.85rem;
  opacity: 0.85;
}

.broadband-facts__body {
  padding: 0 0.85rem 0.95rem;
  font-size: 0.9rem;
}

.broadband-facts__provider {
  margin: 0;
  font-weight: 700;
}

.broadband-facts__plan-heading {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.05rem;
}

.broadband-facts__disclosure {
  margin: 0 0 0.25rem;
}

.broadband-facts__section {
  border-top: 1px solid var(--line);
  padding: 0.75rem 0 0.25rem;
  margin-top: 0.55rem;
}

.plan-featured .broadband-facts__section {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.broadband-facts__section h4 {
  font-size: 0.92rem;
  margin: 0 0 0.35rem;
}

.broadband-facts__price {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}

.broadband-facts__id code {
  font-size: 0.8rem;
}

.broadband-facts__fcc,
.broadband-facts__note {
  font-size: 0.82rem;
  color: var(--slate);
}

.plan-featured .broadband-facts__fcc,
.plan-featured .broadband-facts__note {
  color: rgba(255, 255, 255, 0.72);
}

.broadband-facts a {
  color: inherit;
}

/* Coverage */
.coverage-frame {
  border: 1px solid var(--line);
  background: #f3f5f7;
  min-height: 960px;
  overflow: hidden;
}

.coverage-frame iframe {
  display: block;
  width: 100%;
  height: 960px;
  border: 0;
  background: #f3f5f7;
}

.coverage-fallback {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  color: var(--slate);
}

@media (max-width: 760px) {
  .coverage-frame {
    min-height: 640px;
    margin-inline: calc(-1 * max(0px, (100vw - 100%) / 2));
    width: 100vw;
    max-width: 100vw;
    border-left: 0;
    border-right: 0;
  }

  .coverage-frame iframe {
    height: 640px;
  }
}

.selected-plan {
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 144, 9, 0.12);
  border-left: 4px solid var(--amber);
}

.selected-plan p {
  margin: 0 0 0.35rem;
}

.contact-heading {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.contact-help {
  margin-top: 0.45rem;
  color: var(--slate);
  font-size: 0.92rem;
}

.legal-prose h2 {
  font-size: 1.25rem;
}

.nav .menu .sub-menu {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0 0 0 0.85rem;
  display: grid;
  gap: 0.35rem;
}

@media (min-width: 1025px) {
  .nav .menu .menu-item-has-children {
    position: relative;
  }

  .nav .menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12rem;
    padding: 0.75rem;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }

  .nav .menu .menu-item-has-children:hover > .sub-menu,
  .nav .menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}
