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

    :root {
      --deep-charcoal: #1A1A2E;
      --deep-charcoal-hover: #2A2A3E;
      --warm-white: #FFFFFF;
      --mid-gray: #6A6A70;
      --soft-gray: #E0DFDB;
      --true-white: #FFFFFF;
    }

    html {
      scroll-behavior: smooth;
    }

    /* Lock page to vertical-only scrolling across all viewports. Applying
       overflow-x: hidden to html (not body) keeps the root element as the
       single scroll container — per spec, any non-visible overflow-x forces
       overflow-y to auto, so placing this on body would turn body into a
       second scroll container and break window scrolling. This reliably
       clips full-bleed children like .footer-divider (width: 100vw). */
    html {
      overflow-x: hidden;
    }

    body {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      color: var(--deep-charcoal);
      background: var(--warm-white);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ── Scroll Nav (hidden until past hero) ── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: var(--warm-white);
      border-bottom: 1px solid var(--soft-gray);
      box-shadow: 0 1px 4px rgba(0,0,0,0.04);
      padding: 0 24px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-100%);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

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

    .nav-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 16px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-wordmark {
      font-weight: 600;
      font-size: 20px;
      letter-spacing: 0.04em;
      color: var(--deep-charcoal);
      text-decoration: none;
      line-height: 1;
    }

    .nav-link {
      font-weight: 500;
      font-size: 14px;
      color: var(--deep-charcoal);
      text-decoration: none;
      transition: opacity 0.2s ease;
    }

    .nav-link:hover {
      opacity: 0.65;
    }

    /* ── Hero ── */
    .hero {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image: image-set(url('hero-aerial.webp') type('image/webp'), url('hero-aerial.jpg') type('image/jpeg'));
      background-size: cover;
      background-position: center 72%;
      filter: brightness(1.08) contrast(1.1);
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(0,0,0,0.2) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding-top: 22vh;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-brand {
      font-weight: 600;
      font-size: 24px;
      color: #FFFFFF;
      letter-spacing: 0.04em;
      text-shadow: 0 1px 8px rgba(0,0,0,0.3);
      margin-bottom: 64px;
    }

    .hero-headline {
      font-weight: 600;
      font-size: 48px;
      line-height: 1.15;
      color: #FFFFFF;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }

    .hero-cta {
      display: inline-block;
      margin-top: 28px;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: var(--deep-charcoal);
      background: #FFFFFF;
      width: auto;
      align-self: auto;
      border: none;
      border-radius: 6px;
      padding: 16px 36px;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.25s ease, box-shadow 0.25s ease;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

    .hero-cta:hover {
      background: #F0EFEB;
      box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    }

    /* ── Section: What You Get ── */
    .what-you-get {
      background: var(--true-white);
      padding: 96px 24px;
    }

    .what-you-get-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-weight: 400;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--deep-charcoal);
      margin-bottom: 12px;
    }

    .section-heading {
      font-weight: 600;
      font-size: 28px;
      letter-spacing: -0.005em;
      color: var(--deep-charcoal);
    }

    .section-subtext {
      margin-top: 16px;
      font-weight: 400;
      font-size: 17px;
      line-height: 1.6;
      color: var(--mid-gray);
      max-width: 600px;
    }

    .service-timeline {
      margin-top: 48px;
      position: relative;
    }

    .svc-step {
      display: grid;
      grid-template-columns: 1fr 56px 1fr;
      align-items: start;
    }

    .svc-step + .svc-step {
      margin-top: 48px;
    }

    /* Image placeholder — left side */
    .svc-step-image {
      background: var(--warm-white);
      border-radius: 8px;
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .svc-step-image-placeholder {
      font-weight: 400;
      font-size: 12px;
      color: var(--soft-gray);
      text-align: center;
      padding: 16px;
    }

    /* Center column — number + line */
    .svc-step-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      height: 100%;
    }

    .svc-step-num {
      font-weight: 600;
      font-size: 32px;
      color: var(--deep-charcoal);
      line-height: 1;
      position: relative;
      z-index: 1;
      background: var(--true-white);
      padding: 4px 0;
    }

    .svc-step-line {
      width: 2px;
      flex: 1;
      background: var(--soft-gray);
    }

    .svc-step:last-child .svc-step-line {
      display: none;
    }

    /* Content — right side */
    .svc-step-content {
      padding-left: 28px;
      padding-top: 4px;
    }

    .svc-step-title {
      font-weight: 500;
      font-size: 17px;
      color: var(--deep-charcoal);
    }

    .svc-step-desc {
      font-weight: 400;
      font-size: 15px;
      line-height: 1.7;
      color: var(--mid-gray);
      margin-top: 6px;
      max-width: 480px;
    }

    /* Time estimates */
    .time-estimates {
      margin-top: 64px;
    }

    .time-heading {
      font-weight: 500;
      font-size: 22px;
      color: var(--deep-charcoal);
      margin-top: 12px;
    }

    /* Timeline — desktop (horizontal) */
    .timeline {
      margin-top: 32px;
      padding: 48px 0 32px;
      position: relative;
    }

    .timeline-track {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      position: relative;
    }

    .timeline-track::before {
      content: '';
      position: absolute;
      top: 0;
      left: calc(12.5% - 1px);
      right: calc(12.5% - 1px);
      height: 2px;
      background: var(--soft-gray);
    }

    .timeline-node {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
    }

    .timeline-dot {
      border-radius: 50%;
      background: var(--deep-charcoal);
      border: 3px solid var(--true-white);
      position: relative;
      top: 0;
      transform: translateY(-50%);
      flex-shrink: 0;
      box-shadow: 0 0 0 1px var(--soft-gray);
    }

    .timeline-node:nth-child(1) .timeline-dot { width: 12px; height: 12px; }
    .timeline-node:nth-child(2) .timeline-dot { width: 16px; height: 16px; }
    .timeline-node:nth-child(3) .timeline-dot { width: 20px; height: 20px; }
    .timeline-node:nth-child(4) .timeline-dot { width: 24px; height: 24px; }

    .timeline-info {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .timeline-size {
      font-weight: 600;
      font-size: 17px;
      color: var(--deep-charcoal);
    }

    .timeline-hours {
      font-weight: 500;
      font-size: 14px;
      color: var(--deep-charcoal);
      margin-top: 4px;
    }

    .timeline-complexity {
      font-weight: 400;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--mid-gray);
      margin-top: 6px;
    }

    .timeline-desc {
      font-weight: 400;
      font-size: 13px;
      line-height: 1.5;
      color: var(--mid-gray);
      margin-top: 6px;
      max-width: 200px;
    }

    /* ── Section: What You Get (two-up pairs) ── */
    .wyg {
      background: var(--true-white);
      padding: 120px 24px;
    }

    .wyg-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .wyg-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .wyg-heading {
      font-weight: 600;
      font-size: 32px;
      color: var(--deep-charcoal);
    }

    .wyg-subtext {
      margin: 16px auto 0;
      font-weight: 400;
      font-size: 17px;
      line-height: 1.7;
      color: var(--mid-gray);
      max-width: 560px;
    }

    .wyg-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 24px;
      row-gap: 64px;
    }

    .wyg-step-image {
      width: 100%;
      height: 360px;
      background: var(--soft-gray);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .wyg-step-image-label {
      font-weight: 400;
      font-size: 13px;
      color: var(--mid-gray);
    }

    .wyg-step-text {
      margin-top: 20px;
      text-align: left;
    }

    .wyg-step-num {
      font-weight: 600;
      font-size: 13px;
      color: var(--mid-gray);
      letter-spacing: 0.06em;
    }

    .wyg-step-title {
      font-weight: 600;
      font-size: 20px;
      color: var(--deep-charcoal);
      margin-top: 6px;
    }

    .wyg-step-desc {
      font-weight: 400;
      font-size: 15px;
      line-height: 1.7;
      color: var(--mid-gray);
      margin-top: 8px;
    }

    @media (max-width: 767px) {
      .wyg {
        padding: 80px 24px;
      }

      .wyg-grid {
        grid-template-columns: 1fr;
        row-gap: 48px;
      }

      .wyg-step-image {
        height: 240px;
        border-radius: 8px;
      }
    }

    /* ── Section: Pricing ── */
    .pricing {
      background: var(--warm-white);
      padding: 96px 24px;
    }

    .pricing-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .pricing-subtext {
      margin-top: 16px;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.6;
      color: var(--mid-gray);
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .pricing-card {
      background: var(--true-white);
      border: 1px solid var(--soft-gray);
      border-radius: 8px;
      padding: 32px;
      text-align: left;
    }

    .pricing-card-size {
      font-weight: 600;
      font-size: 20px;
      color: var(--deep-charcoal);
    }

    .pricing-card-price {
      font-weight: 600;
      font-size: 28px;
      color: var(--deep-charcoal);
      margin-top: 16px;
    }

    .pricing-card-complexity {
      font-weight: 400;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--mid-gray);
      margin-top: 16px;
    }

    .pricing-card-divider {
      height: 1px;
      background: var(--soft-gray);
      margin: 16px 0;
    }

    .pricing-card-desc {
      font-weight: 400;
      font-size: 14px;
      line-height: 1.6;
      color: var(--mid-gray);
    }

    .pricing-cta {
      margin-top: 48px;
      text-align: center;
    }

    .pricing-cta .hero-cta {
      margin-top: 0;
      background: var(--deep-charcoal);
      color: var(--warm-white);
      box-shadow: none;
    }

    .pricing-cta .hero-cta:hover {
      background: var(--deep-charcoal-hover);
      box-shadow: none;
    }

    /* ── Section: How It Works ── */
    .how-it-works {
      background: var(--true-white);
      padding: 96px 24px;
    }

    .how-it-works-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .how-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .steps {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
      gap: 0;
      align-items: start;
    }

    .step {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .step-number {
      font-weight: 600;
      font-size: 48px;
      color: var(--deep-charcoal);
      line-height: 1;
    }

    .step-title {
      font-weight: 500;
      font-size: 17px;
      color: var(--deep-charcoal);
      margin-top: 16px;
    }

    .step-desc {
      font-weight: 400;
      font-size: 14px;
      line-height: 1.6;
      color: var(--mid-gray);
      margin-top: 8px;
      max-width: 220px;
    }

    .step-connector {
      display: flex;
      align-items: center;
      height: 48px;
      padding: 0 4px;
    }

    .step-connector svg {
      color: var(--soft-gray);
    }

    /* ── Section: Why Helm ── */
    .why-helm {
      background: var(--true-white);
      padding: 140px 24px;
    }

    .why-helm-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 80px;
    }

    .why-helm-image {
      flex: 1.22;
      min-width: 0;
    }

    .why-helm-image img {
      width: 100%;
      min-height: 500px;
      object-fit: cover;
      display: block;
      border-radius: 12px;
      border: none;
      box-shadow: 0 8px 32px rgba(26, 26, 46, 0.08);
    }

    .why-helm-text {
      flex: 1;
      min-width: 0;
    }

    .why-helm-headline {
      font-weight: 600;
      font-size: 36px;
      color: var(--deep-charcoal);
      line-height: 1.3;
    }

    .why-helm-body {
      margin-top: 16px;
      font-weight: 400;
      font-size: 18px;
      line-height: 1.7;
      color: var(--mid-gray);
      max-width: 440px;
    }

    .why-helm-cta {
      display: inline-block;
      width: auto;
      min-width: 0;
      margin-top: 36px;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: var(--warm-white);
      background: var(--deep-charcoal);
      border: none;
      border-radius: 6px;
      padding: 16px 36px;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.25s ease;
    }

    .why-helm-cta:hover {
      background: #2A2A3E;
    }

    /* ── Section: Beyond Starlink ── */
    .beyond {
      background: var(--true-white);
      padding: 96px 24px;
    }

    .beyond-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .beyond-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .beyond-heading {
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.3;
    }

    .beyond-subtext {
      margin-top: 16px;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.6;
      color: var(--mid-gray);
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .beyond-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .beyond-card {
      background: var(--true-white);
      border: 1px solid var(--soft-gray);
      border-radius: 8px;
      padding: 28px;
    }

    .beyond-card-title {
      font-weight: 500;
      font-size: 16px;
      color: var(--deep-charcoal);
      margin-bottom: 6px;
    }

    .beyond-card-desc {
      font-weight: 400;
      font-size: 14px;
      line-height: 1.6;
      color: var(--mid-gray);
    }

    /* ── Section: FAQ ── */
    .faq {
      background: var(--warm-white);
      padding: 96px 24px;
    }

    .faq-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .faq-list {
      max-width: 720px;
      margin: 0 auto;
    }

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

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
      cursor: pointer;
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 16px;
      color: var(--deep-charcoal);
      gap: 16px;
    }

    .faq-question:hover {
      opacity: 0.75;
    }

    .faq-icon {
      flex-shrink: 0;
      font-size: 18px;
      color: var(--mid-gray);
      transition: transform 0.3s ease;
      line-height: 1;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .faq-answer-inner {
      padding: 0 0 20px 0;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.7;
      color: var(--mid-gray);
    }

    /* ── Section: Pricing (split with image) ── */
    .pricing-split {
      background: var(--true-white);
      padding: 120px 24px;
    }
    .pricing-split-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 64px;
    }
    .pricing-split-image { flex: 1; }
    .pricing-split-image .photo-placeholder {
      min-height: 480px;
      background: var(--soft-gray);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    .pricing-split-text { flex: 1; }
    .pricing-split-heading {
      font-weight: 600;
      font-size: 28px;
      color: var(--deep-charcoal);
    }
    .pricing-split-tiers { margin-top: 24px; }
    .pricing-split-tier {
      padding: 20px 0;
      border-bottom: 1px solid var(--soft-gray);
    }
    .pricing-split-tier:first-child {
      border-top: 1px solid var(--soft-gray);
    }
    .pricing-split-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }
    .pricing-split-size {
      font-weight: 600;
      font-size: 17px;
      color: var(--deep-charcoal);
    }
    .pricing-split-price {
      font-weight: 600;
      font-size: 17px;
      color: var(--deep-charcoal);
      text-align: left;
      flex: 0 0 160px;
    }
    .pricing-split-meta {
      padding-right: 160px;
    }
    .pricing-split-meta {
      font-weight: 400;
      font-size: 13px;
      color: var(--mid-gray);
      margin-top: 4px;
    }
    .pricing-split-cta {
      display: inline-block;
      margin-top: 32px;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: var(--true-white);
      background: var(--deep-charcoal);
      border: none;
      border-radius: 6px;
      padding: 16px 36px;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.25s ease;
    }
    .pricing-split-cta:hover { background: #2A2A3E; }
    .photo-placeholder-label {
      font-weight: 400;
      font-size: 13px;
      color: var(--mid-gray);
    }

    /* ── Section: How It Works (dark strip) ── */
    .hiw-dark {
      background: var(--deep-charcoal);
      padding: 96px 24px;
    }
    .hiw-dark-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .hiw-dark-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .hiw-dark-heading {
      font-weight: 600;
      font-size: 28px;
      color: var(--true-white);
    }
    .hiw-dark-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }
    .hiw-dark-grid--three {
      grid-template-columns: repeat(3, 1fr);
    }
    .hiw-dark-step {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hiw-dark-num {
      font-weight: 600;
      font-size: 48px;
      color: var(--true-white);
      line-height: 1;
    }
    .hiw-dark-title {
      font-weight: 500;
      font-size: 16px;
      color: var(--true-white);
      margin-top: 16px;
    }
    .hiw-dark-desc {
      font-weight: 400;
      font-size: 14px;
      line-height: 1.6;
      color: var(--mid-gray);
      margin-top: 8px;
      max-width: 220px;
    }

    /* ── Section: Beyond Starlink (split) ── */
    .beyond-split {
      background: var(--true-white);
      padding: 120px 24px;
    }
    .beyond-split-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 64px;
    }
    .beyond-split-text { flex: 1; }
    .beyond-split-image { flex: 1; }
    .beyond-split-image .photo-placeholder {
      min-height: 480px;
      background: var(--soft-gray);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    .beyond-split-heading {
      font-weight: 600;
      font-size: 32px;
      color: var(--deep-charcoal);
      line-height: 1.3;
    }
    .beyond-split-subtext {
      margin-top: 16px;
      font-weight: 400;
      font-size: 17px;
      line-height: 1.7;
      color: var(--mid-gray);
      max-width: 400px;
    }
    .beyond-split-items {
      margin-top: 32px;
    }
    .beyond-split-item {
      padding: 20px 0;
      border-bottom: 1px solid var(--soft-gray);
    }
    .beyond-split-item:first-child {
      border-top: 1px solid var(--soft-gray);
    }
    .beyond-split-item-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 16px;
    }
    .beyond-split-item-title {
      font-weight: 600;
      font-size: 17px;
      color: var(--deep-charcoal);
    }
    .beyond-split-item-tagline {
      font-weight: 400;
      font-size: 13px;
      color: var(--mid-gray);
      text-align: right;
    }
    .beyond-split-item-desc {
      font-weight: 400;
      font-size: 13px;
      color: var(--mid-gray);
      margin-top: 4px;
    }
    .beyond-split-cta {
      display: inline-block;
      margin-top: 32px;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: var(--true-white);
      background: var(--deep-charcoal);
      border: none;
      border-radius: 6px;
      padding: 16px 36px;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.25s ease;
    }
    .beyond-split-cta:hover { background: #2A2A3E; }

    /* FAQ overrides: section 120px padding, 24px question/answer padding, 20px icon */
    .faq { padding: 120px 24px; }
    .faq-question { padding: 24px 0; }
    .faq-icon { font-size: 20px; }
    .faq-answer-inner { padding: 0 0 24px 0; }

    /* Inquiry heading: 40px big headline per I1 */
    .inquiry-heading { font-size: 40px !important; }

    @media (max-width: 1023px) {
      .hiw-dark-grid { grid-template-columns: 1fr 1fr; row-gap: 48px; }
    }
    @media (max-width: 767px) {
      .pricing-split, .beyond-split { padding: 80px 24px; }
      .pricing-split-inner {
        flex-direction: column;
        gap: 32px;
        text-align: center;
      }
      .pricing-split-image, .pricing-split-text { flex: 0 0 auto; width: 100%; }
      .beyond-split-inner {
        flex-direction: column-reverse;
        gap: 32px;
        text-align: center;
      }
      .beyond-split-text, .beyond-split-image { flex: 0 0 auto; width: 100%; }
      .beyond-split-subtext { margin-left: auto; margin-right: auto; }
      .hiw-dark-grid { grid-template-columns: 1fr; }
    }

    /* ── Section: Inquiry + Footer ── */
    .inquiry-section {
      background: var(--deep-charcoal);
      padding: 96px 24px 0;
    }

    /* Subpages embed the inquiry section above their own .page-footer
       (homepage embeds .footer-divider + .site-footer inside the section,
       which is why default bottom padding is 0). */
    .inquiry-section--standalone {
      padding-bottom: 96px;
    }
    @media (max-width: 767px) {
      .inquiry-section--standalone {
        padding-bottom: 72px;
      }
    }

    .inquiry-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .inquiry-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .inquiry-heading {
      color: var(--warm-white);
    }

    .inquiry-subtext {
      margin-top: 16px;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.6;
      color: var(--soft-gray);
    }

    .inquiry-form {
      max-width: 600px;
      margin: 0 auto;
    }

    /* Wizard */
    .wizard-progress {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 42px;
    }
    .wizard-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(224, 223, 219, 0.25);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .wizard-dot.is-active {
      background: var(--true-white);
      transform: scale(1.25);
    }
    .wizard-dot.is-complete {
      background: rgba(224, 223, 219, 0.75);
    }
    .wizard-line {
      width: 48px;
      height: 1px;
      background: rgba(224, 223, 219, 0.25);
      transition: background-color 0.3s ease;
    }
    .wizard-line.is-complete {
      background: rgba(224, 223, 219, 0.75);
    }
    .wizard-caption {
      display: none;
    }
    .wizard-caption-sep { opacity: 0.5; margin: 0 8px; }

    .wizard-step { display: none; animation: wizardFadeIn 0.3s ease both; }
    .wizard-step.is-active { display: block; }
    @keyframes wizardFadeIn {
      from { opacity: 0; transform: translateY(4px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .form-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    @media (max-width: 540px) {
      .form-grid-2 { grid-template-columns: 1fr; }
    }

    .form-field-unit { position: relative; }
    .form-field-unit .form-field { padding-right: 44px; }
    .form-field-unit-suffix {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 14px;
      color: var(--soft-gray);
      pointer-events: none;
    }
    /* Hide suffix until the field has a value */
    .form-field-unit-hide-empty .form-field:placeholder-shown + .form-field-unit-suffix { display: none; }

    .wizard-nav {
      display: flex;
      gap: 12px;
      margin-top: 28px;
    }
    .wizard-back {
      flex: 0 0 auto;
      padding: 18px 28px;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: var(--true-white);
      background: transparent;
      border: 1px solid rgba(224, 223, 219, 0.4);
      border-radius: 6px;
      cursor: pointer;
      transition: border-color 0.2s ease;
    }
    .wizard-back:hover { border-color: var(--true-white); }
    .wizard-next, .wizard-submit { flex: 1 1 auto; margin-top: 0 !important; }

    /* Fleet toggle — segmented pill shown at the top of step 2 */
    .fleet-toggle {
      display: inline-flex;
      align-self: center;
      margin: 0 auto 20px;
      padding: 4px;
      background: rgba(224, 223, 219, 0.08);
      border: 1px solid rgba(224, 223, 219, 0.2);
      border-radius: 999px;
    }
    .fleet-toggle-btn {
      padding: 8px 18px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--soft-gray);
      background: transparent;
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      transition: background-color 0.2s ease, color 0.2s ease;
    }
    .fleet-toggle-btn:hover { color: var(--true-white); }
    .fleet-toggle-btn.is-active {
      background: var(--true-white);
      color: #1A1A2E;
    }
    .fleet-toggle-wrap { display: flex; justify-content: center; }
    .wizard-step [hidden] { display: none !important; }

    .fleet-helper {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      line-height: 1.5;
      color: var(--soft-gray);
      text-align: center;
      margin-top: 4px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-full {
      grid-column: 1 / -1;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      font-weight: 400;
      font-size: 13px;
      color: var(--mid-gray);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: var(--warm-white);
      background: transparent;
      border: 1px solid rgba(224, 223, 219, 0.4);
      border-radius: 6px;
      padding: 14px 16px;
      outline: none;
      transition: border-color 0.3s ease;
      -webkit-appearance: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--soft-gray);
    }

    .form-group select {
      color: var(--soft-gray);
      cursor: pointer;
    }

    .form-group select option {
      background: var(--deep-charcoal);
      color: var(--warm-white);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--deep-charcoal);
    }

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

    /* New form (placeholder-as-label) */
    .form-stack {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-field {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: var(--true-white);
      background: transparent;
      border: 1px solid rgba(224, 223, 219, 0.4);
      border-radius: 6px;
      padding: 18px 20px;
      outline: none;
      transition: border-color 0.3s ease;
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
    }
    .form-field::placeholder { color: var(--soft-gray); }
    .form-field:focus { border-color: var(--true-white); }
    .form-field.form-select { color: var(--soft-gray); cursor: pointer; }
    .form-field.form-select.has-value,
    .form-field.form-select:valid { color: var(--true-white); }
    .form-field.form-select option { background: var(--deep-charcoal); color: var(--true-white); }
    .form-select-wrap { position: relative; }
    .form-select-wrap::after {
      content: '';
      position: absolute;
      right: 22px;
      top: 50%;
      width: 8px;
      height: 8px;
      border-right: 1.5px solid var(--soft-gray);
      border-bottom: 1.5px solid var(--soft-gray);
      transform: translateY(-70%) rotate(45deg);
      pointer-events: none;
    }
    .form-select-wrap .form-field { padding-right: 44px; }
    textarea.form-field { resize: vertical; min-height: 110px; }

    .form-checkgroup {
      border: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .form-checkgroup-legend {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: var(--soft-gray);
      padding: 0;
      margin-bottom: 4px;
    }
    .form-checkoption {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 20px;
      border: 1px solid rgba(224, 223, 219, 0.4);
      border-radius: 6px;
      cursor: pointer;
      transition: border-color 0.2s ease, background-color 0.2s ease;
    }
    .form-checkoption:hover { border-color: var(--true-white); }
    .form-checkoption input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }
    .form-checkbox {
      width: 20px;
      height: 20px;
      border: 1px solid rgba(224, 223, 219, 0.6);
      border-radius: 4px;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.2s ease, border-color 0.2s ease;
    }
    .form-checkoption input:checked ~ .form-checkbox {
      background: var(--true-white);
      border-color: var(--true-white);
    }
    .form-checkoption input:checked ~ .form-checkbox::after {
      content: '';
      width: 10px;
      height: 6px;
      border-left: 2px solid var(--deep-charcoal);
      border-bottom: 2px solid var(--deep-charcoal);
      transform: rotate(-45deg) translate(1px, -1px);
    }
    .form-checkoption:has(input:checked) {
      border-color: var(--true-white);
    }
    .form-checkoption input:focus-visible ~ .form-checkbox {
      outline: 2px solid var(--true-white);
      outline-offset: 2px;
    }
    .form-checkoption-label {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: var(--true-white);
    }

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

    .form-field[aria-invalid="true"] {
      border-color: #ff6b6b;
    }
    .form-field[aria-invalid="true"]:focus {
      border-color: #ff6b6b;
    }
    .form-error {
      margin-top: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      line-height: 1.45;
      color: #ff6b6b;
    }
    .form-error[hidden] { display: none; }

    .form-submit {
      margin-top: 28px;
      width: 100%;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: var(--deep-charcoal);
      background: var(--true-white);
      border: none;
      border-radius: 6px;
      padding: 18px;
      cursor: pointer;
      transition: background 0.25s ease;
    }

    .form-submit:hover {
      background: #F0EFEB;
    }

    /* Footer */
    .footer-divider {
      position: relative;
      left: 50%;
      right: 50%;
      width: 100vw;
      margin-left: -50vw;
      margin-right: -50vw;
      margin-top: 64px;
      height: 1px;
      background: var(--soft-gray);
    }

    .site-footer {
      max-width: 1100px;
      margin: 0 auto;
      padding: 32px 0 40px;
    }

    .footer-row {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .footer-wordmark {
      font-weight: 600;
      font-size: 18px;
      color: var(--warm-white);
      letter-spacing: 0.04em;
      text-decoration: none;
      cursor: pointer;
      transition: opacity 0.2s ease;
    }

    .footer-wordmark:hover {
      opacity: 0.65;
    }

    .footer-location {
      font-weight: 400;
      font-size: 13px;
      color: var(--soft-gray);
    }

    /* Discreet utility link in site-footer (homepage, dark surface) */
    .footer-link {
      font-weight: 500;
      font-size: 13px;
      color: var(--soft-gray);
      text-decoration: none;
      transition: opacity 0.2s ease;
    }
    .footer-link:hover {
      opacity: 0.7;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* Discreet utility link in page-footer (subpages, light surface) */
    .page-footer-link {
      font-weight: 500;
      font-size: 13px;
      color: var(--deep-charcoal);
      text-decoration: none;
      transition: opacity 0.2s ease;
    }
    .page-footer-link:hover {
      opacity: 0.65;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .footer-phone {
      font-weight: 400;
      font-size: 13px;
      color: var(--soft-gray);
      text-decoration: none;
      transition: opacity 0.2s ease;
    }

    .footer-phone:hover {
      opacity: 0.65;
    }

    .footer-copyright {
      margin-top: 24px;
      text-align: center;
      font-weight: 400;
      font-size: 12px;
      color: var(--soft-gray);
      opacity: 1;
    }

    /* ── Responsive ── */
    @media (max-width: 1023px) {
      .pricing-grid {
        grid-template-columns: 1fr 1fr;
      }

      .steps {
        grid-template-columns: 1fr auto 1fr;
        row-gap: 40px;
      }

      .step:nth-child(n+5) {
        /* handled by grid wrap */
      }

      .step-connector:nth-child(6) {
        display: none;
      }

      .why-helm-inner {
        flex-direction: column;
        gap: 32px;
      }

      .why-helm-image img {
        border-radius: 8px;
      }

      .why-helm-text {
        text-align: center;
      }

      .why-helm-body {
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 767px) {
      .hero::before {
        background-position: center 60%;
      }

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

      .hero-headline {
        font-size: 30px;
      }

      .hero-cta {
        padding: 14px 28px;
      }

      .nav-inner {
        padding: 14px 0;
      }

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

      .svc-step {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .svc-step-image {
        aspect-ratio: 16/9;
        max-height: 200px;
      }

      .svc-step-center {
        display: none;
      }

      .svc-step-content {
        padding-left: 0;
        padding-top: 0;
        border-left: 2px solid var(--deep-charcoal);
        padding-left: 20px;
      }

      .steps {
        grid-template-columns: 1fr;
        row-gap: 40px;
      }

      .step-connector {
        display: none;
      }

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

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

      .footer-row {
        gap: 10px;
      }

      .timeline-track {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-left: 24px;
      }

      .timeline-track::before {
        top: 0;
        bottom: 0;
        left: 0;
        right: auto;
        width: 2px;
        height: 100%;
      }

      .timeline-node {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
      }

      .timeline-dot {
        transform: translateX(-25px) translateY(2px);
      }

      .timeline-info {
        margin-top: 0;
        margin-left: 8px;
        align-items: flex-start;
      }

      .timeline-desc {
        max-width: none;
      }

      /* Pricing tier: title + desc on left, price centered on right */
      .pricing-split-tier {
        text-align: left;
        display: grid;
        grid-template-columns: 1fr auto;
        column-gap: 16px;
        align-items: center;
      }
      .pricing-split-row {
        display: contents;
      }
      .pricing-split-size {
        grid-column: 1;
        grid-row: 1;
      }
      .pricing-split-price {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
        text-align: center;
        flex: none;
      }
      .pricing-split-meta {
        grid-column: 1;
        grid-row: 2;
        padding-right: 0;
      }

      /* Beyond Starlink: titles and descriptions left-aligned */
      .beyond-split-items {
        text-align: left;
      }
      .beyond-split-item-row {
        justify-content: flex-start;
      }
    }

    /* Mobile-only line break inside "Three steps. Zero friction." */
    .mobile-only-br {
      display: none;
    }
    @media (max-width: 767px) {
      .mobile-only-br {
        display: inline;
      }
    }

/* ── Subpage primitives (marinas, installations, guides) ── */

/* Persistent nav variant for subpages (no hero to scroll past) */
.nav--static {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  position: sticky;
  position: -webkit-sticky;
}

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--warm-white);
  background: var(--deep-charcoal);
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.nav-cta:hover {
  background: var(--deep-charcoal-hover);
}

/* Subpage hero — editorial, charcoal surface, no photography.
   Pattern: eyebrow → headline → lead → CTA, on a solid charcoal field
   that matches the inquiry section. A 1px hairline at the bottom marks
   the transition to the white article body so the surface change reads
   as intentional rather than empty. */
.subhero {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  background: var(--deep-charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.subhero-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: var(--warm-white);
}

.subhero-eyebrow {
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--soft-gray);
  margin-bottom: 20px;
}

.subhero-headline {
  font-weight: 600;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--warm-white);
  max-width: 860px;
  margin: 0 auto;
}

.subhero-lead {
  margin: 20px auto 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--soft-gray);
  max-width: 680px;
}

.subhero-cta {
  display: inline-block;
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--deep-charcoal);
  background: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.subhero-cta:hover {
  background: #F0EFEB;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* At-a-glance spec table — dense, factual, LLM-extractable */
.specs {
  background: var(--warm-white);
  padding: 96px 24px 48px;
}

.specs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.specs-header {
  margin-bottom: 32px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--soft-gray);
}

.specs-table th,
.specs-table td {
  padding: 16px 0;
  text-align: left;
  border-bottom: 1px solid var(--soft-gray);
  vertical-align: top;
}

.specs-table th {
  font-weight: 500;
  font-size: 14px;
  color: var(--mid-gray);
  width: 34%;
  padding-right: 24px;
}

.specs-table td {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--deep-charcoal);
}

/* Editorial body sections */
.editorial {
  background: var(--warm-white);
  padding: 48px 24px 96px;
}

.editorial-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.editorial-section + .editorial-section {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--soft-gray);
}

.editorial-heading {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.005em;
  color: var(--deep-charcoal);
  margin-top: 8px;
}

.editorial-body {
  margin-top: 20px;
  max-width: 720px;
}

.editorial-body p {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--mid-gray);
}

.editorial-body p + p {
  margin-top: 16px;
}

.editorial-body a {
  color: var(--deep-charcoal);
  text-decoration: underline;
  text-decoration-color: var(--soft-gray);
  text-underline-offset: 3px;
}

.editorial-body a:hover {
  text-decoration-color: var(--deep-charcoal);
}

.editorial-list {
  margin-top: 20px;
  max-width: 720px;
  list-style: none;
  padding: 0;
}

.editorial-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--soft-gray);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--deep-charcoal);
}

.editorial-list li strong {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.editorial-list li span {
  color: var(--mid-gray);
  font-size: 15px;
}

/* CTA band — dark surface, before footer */
.cta-band {
  background: var(--deep-charcoal);
  padding: 96px 24px;
  text-align: center;
}

.cta-band-heading {
  font-weight: 600;
  font-size: 32px;
  color: var(--warm-white);
  max-width: 720px;
  margin: 0 auto;
}

.cta-band-sub {
  margin: 16px auto 0;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
}

.cta-band-btn {
  display: inline-block;
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--deep-charcoal);
  background: #FFFFFF;
  border-radius: 6px;
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.cta-band-btn:hover {
  background: #F0EFEB;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* Subpage footer — mirrors the homepage .site-footer: dark bg, centered
   column layout, soft-gray utility text, white wordmark, soft-gray
   full-width divider line above (matches .footer-divider on the homepage). */
.page-footer {
  background: var(--deep-charcoal);
  border-top: 1px solid var(--soft-gray);
  padding: 32px 24px 40px;
}

.page-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.page-footer-wordmark {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--warm-white);
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.page-footer-wordmark:hover {
  opacity: 0.65;
}

.page-footer-link {
  font-weight: 500;
  font-size: 13px;
  color: var(--soft-gray);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.page-footer-link:hover {
  opacity: 0.7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-footer-meta {
  font-weight: 400;
  font-size: 13px;
  color: var(--soft-gray);
}

.page-footer-copyright {
  margin-top: 12px;
  font-size: 12px;
  color: var(--soft-gray);
}

@media (max-width: 767px) {
  .subhero {
    min-height: 40vh;
    padding: 80px 24px;
  }
  .subhero-headline {
    font-size: 30px;
  }
  .subhero-lead {
    font-size: 16px;
  }
  .specs {
    padding: 64px 24px 32px;
  }
  .specs-table th {
    width: 40%;
    padding-right: 16px;
  }
  .editorial {
    padding: 32px 24px 64px;
  }
  .editorial-heading {
    font-size: 24px;
  }
  .cta-band {
    padding: 72px 24px;
  }
  .cta-band-heading {
    font-size: 26px;
  }
}

/* ── Index/hub pages (field-notes, marinas, installations) ── */
.index-hero {
  background: var(--warm-white);
  padding: 96px 24px 48px;
  border-bottom: 1px solid var(--soft-gray);
}

.index-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.index-hero-headline {
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--deep-charcoal);
  margin-top: 12px;
  max-width: 760px;
}

.index-hero-lead {
  margin-top: 16px;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--mid-gray);
  max-width: 640px;
}

.index-list {
  background: var(--warm-white);
  padding: 64px 24px 96px;
}

.index-list-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.index-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 32px 0;
  border-top: 1px solid var(--soft-gray);
  transition: opacity 0.2s ease;
}

.index-card:hover {
  opacity: 0.72;
}

.index-card:last-child {
  border-bottom: 1px solid var(--soft-gray);
}

.index-card-meta {
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid-gray);
  margin-bottom: 12px;
}

.index-card-title {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.005em;
  line-height: 1.3;
  color: var(--deep-charcoal);
}

.index-card-lead {
  margin-top: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mid-gray);
  max-width: 720px;
}

@media (max-width: 767px) {
  .index-hero { padding: 72px 24px 32px; }
  .index-hero-headline { font-size: 28px; }
  .index-hero-lead { font-size: 16px; }
  .index-list { padding: 48px 24px 72px; }
  .index-card { padding: 24px 0; }
  .index-card-title { font-size: 20px; }
}

/* Tag filter (article index) */
.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--soft-gray);
}

.tag-chip {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--deep-charcoal);
  background: transparent;
  border: 1px solid var(--soft-gray);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.tag-chip:hover {
  background: var(--warm-white-hover, #F0EFEB);
  border-color: var(--deep-charcoal);
}

.tag-chip.is-active {
  background: var(--deep-charcoal);
  color: #FFFFFF;
  border-color: var(--deep-charcoal);
}

.index-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.tag-chip-mini {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid-gray);
  background: transparent;
  border: 1px solid var(--soft-gray);
  border-radius: 999px;
  padding: 4px 10px;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}

a.tag-chip-mini:hover {
  color: var(--deep-charcoal);
  border-color: var(--deep-charcoal);
}

.index-empty {
  margin-top: 32px;
  font-size: 15px;
  color: var(--mid-gray);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  margin-bottom: 28px;
  justify-content: center;
}

/* Light variant for chips on dark surfaces (article hero) */
.article-tags .tag-chip-mini {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.32);
}

a.article-tags .tag-chip-mini:hover,
.article-tags a.tag-chip-mini:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

@media (max-width: 767px) {
  .tag-filter { padding-bottom: 16px; }
  .tag-chip { font-size: 12px; padding: 6px 12px; }
}

/* Persistent-nav link sits left of the CTA */
.nav-link-static {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--deep-charcoal);
  text-decoration: none;
  margin-right: 24px;
  transition: opacity 0.2s ease;
}

.nav-link-static:hover {
  opacity: 0.65;
}

.nav-actions {
  display: flex;
  align-items: center;
}

/* ─────────────────────────────────────────────────────────────
   Article page redesign — premium magazine layout
   Scoped via body.article-page so other subpages are untouched.
   ───────────────────────────────────────────────────────────── */

/* Hero */
body.article-page .subhero {
  min-height: auto;
  padding: 140px 24px 80px;
  background: #1A1A2E;
  border-bottom: none;
  display: block;
}
body.article-page .subhero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
body.article-page .subhero-eyebrow {
  font-weight: 400;
  font-size: 13px;
  color: #8A8A8E;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 16px;
}
body.article-page .subhero-headline {
  font-weight: 600;
  font-size: 44px;
  line-height: 1.2;
  color: #FFFFFF;
  max-width: 720px;
  margin: 0 auto;
}
body.article-page .subhero-lead {
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: #8A8A8E;
  max-width: 640px;
}

/* Body container */
body.article-page .editorial {
  background: #FFFFFF;
  padding: 0 24px;
}
body.article-page .editorial-inner {
  max-width: 680px;
  margin: 0 auto;
}

/* Sections */
body.article-page .editorial-section {
  padding: 80px 0 0;
  margin: 0;
  border-top: none;
}
body.article-page .editorial-section:first-child {
  padding-top: 80px;
}
body.article-page .editorial-section + .editorial-section {
  margin-top: 0;
  padding-top: 80px;
  border-top: 1px solid #E0DFDB;
}
body.article-page .editorial-section + .editorial-section::before {
  /* achieve: 80px above divider, 32px below divider */
  /* padding-top above uses 80px as space above divider (divider = border-top), so we
     need 32px space below the border via margin-top on inner content */
}
body.article-page .editorial-section + .editorial-section > .section-label,
body.article-page .editorial-section + .editorial-section > .editorial-body:first-child {
  margin-top: 32px;
}

/* When a pull-quote precedes a section, drop the divider + extra padding */
body.article-page .article-pull + .editorial-section {
  padding-top: 0;
  border-top: none;
}

/* Final section — space before the inquiry form */
body.article-page .editorial-section:last-child {
  padding-bottom: 80px;
}

/* Section label */
body.article-page .editorial-section .section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #8A8A8E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

/* Section heading */
body.article-page .editorial-heading {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  color: #1A1A2E;
  margin: 0 0 24px;
  max-width: none;
}

/* Body copy */
body.article-page .editorial-body {
  margin-top: 0;
  max-width: none;
}
body.article-page .editorial-body p {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.85;
  color: #1A1A2E;
  margin: 0 0 24px;
}
body.article-page .editorial-body p:last-child {
  margin-bottom: 0;
}
body.article-page .editorial-body p + p {
  margin-top: 0;
}

/* Inline subheadings (the h3s inside editorial-body) */
body.article-page .editorial-body h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #1A1A2E;
  margin: 40px 0 16px;
}
body.article-page .editorial-body h3:first-child {
  margin-top: 0;
}

/* Links in body */
body.article-page .editorial-body a {
  color: #1A1A2E;
  text-decoration: underline;
  text-decoration-color: #1A1A2E;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
body.article-page .editorial-body a:hover {
  color: #8A8A8E;
}

/* Numbered lists — counters on both ol and ul so existing markup works */
body.article-page .editorial-body ol,
body.article-page .editorial-body ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  counter-reset: article-counter;
}
body.article-page .editorial-body li {
  counter-increment: article-counter;
  position: relative;
  padding-left: 32px;
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.85;
  color: #8A8A8E;
}
body.article-page .editorial-body li:last-child {
  margin-bottom: 0;
}
body.article-page .editorial-body li::before {
  content: counter(article-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  font-size: 15px;
  color: #1A1A2E;
  line-height: 2.1;
}
body.article-page .editorial-body li strong {
  font-weight: 600;
  font-size: 17px;
  color: #1A1A2E;
}
body.article-page .editorial-body li a {
  color: #1A1A2E;
}

/* Pull quote */
body.article-page .article-pull {
  max-width: 560px;
  margin: 64px auto;
  padding: 0;
  text-align: center;
}
body.article-page .article-pull::before {
  content: "";
  display: block;
  width: 3px;
  height: 40px;
  background: #1A1A2E;
  margin: 0 auto 16px;
}
body.article-page .article-pull p {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #1A1A2E;
  margin: 0;
}

/* Footer — helm left, location right, copyright centered below */

/* Mobile */
@media (max-width: 767px) {
  body.article-page .subhero {
    padding: 100px 24px 56px;
  }
  body.article-page .subhero-headline {
    font-size: 30px;
  }
  body.article-page .subhero-lead {
    font-size: 16px;
  }
  body.article-page .editorial-heading {
    font-size: 24px;
  }
  body.article-page .editorial-body p,
  body.article-page .editorial-body li {
    font-size: 16px;
  }
  body.article-page .editorial-body h3 {
    font-size: 18px;
  }
  body.article-page .article-pull {
    margin: 40px auto;
  }
  body.article-page .article-pull p {
    font-size: 20px;
  }
}
