:root {
      --ink: #18211f;
      --muted: #5d6a66;
      --soft: #f5f7f2;
      --paper: #ffffff;
      --sage: #dfe8dd;
      --line: #d9e1db;
      --teal: #0f766e;
      --teal-dark: #0b514b;
      --coral: #d95f3d;
      --gold: #b4832f;
      --charcoal: #24302d;
      --max: 1180px;
      --radius: 8px;
      --shadow: 0 18px 48px rgba(24, 33, 31, 0.12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--soft);
      line-height: 1.6;
    }

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

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

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

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

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(16px);
      box-shadow: 0 10px 28px rgba(24, 33, 31, 0.06);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      min-height: 78px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--ink);
      flex-shrink: 0;
    }

    .brand-mark {
      display: inline-grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: var(--radius);
      color: white;
      background: linear-gradient(135deg, var(--teal-dark), var(--teal));
      font-size: 0.95rem;
      font-weight: 900;
      box-shadow: 0 12px 24px rgba(15, 118, 110, 0.22);
    }

    .brand-copy {
      display: grid;
      gap: 0.05rem;
    }

    .brand-copy span {
      font-weight: 900;
      line-height: 1.1;
    }

    .brand-copy small {
      font-size: 0.78rem;
      font-weight: 800;
      color: var(--teal);
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.25rem;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.94rem;
      font-weight: 800;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0.55rem 0.65rem;
      border-radius: var(--radius);
    }

    .nav-links a:hover {
      color: var(--teal-dark);
      background: #eef5f0;
    }

    .nav-links .nav-cta {
      margin-left: 0.35rem;
      padding-inline: 0.9rem;
      color: white;
      background: var(--teal);
    }

    .nav-links .nav-cta:hover {
      color: white;
      background: var(--teal-dark);
    }

    .nav-status {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      margin-left: 0.4rem;
      color: var(--teal-dark);
      font-size: 0.82rem;
      font-weight: 900;
    }

    .nav-status::before {
      content: "";
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 999px;
      background: var(--coral);
      box-shadow: 0 0 0 4px rgba(217, 95, 61, 0.12);
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0.82rem 1rem;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-weight: 800;
      line-height: 1.1;
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .button:hover {
      transform: translateY(-1px);
    }

    .button-primary {
      background: var(--teal);
      color: white;
    }

    .button-primary:hover {
      background: var(--teal-dark);
    }

    .button-secondary {
      color: var(--ink);
      background: rgba(255, 255, 255, 0.88);
      border-color: rgba(255, 255, 255, 0.45);
    }

    .button-outline {
      color: var(--teal-dark);
      background: transparent;
      border-color: var(--teal);
    }

    .hero {
      position: relative;
      min-height: 76svh;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: white;
      background:
        linear-gradient(90deg, rgba(16, 26, 24, 0.92) 0%, rgba(16, 26, 24, 0.72) 48%, rgba(16, 26, 24, 0.22) 100%),
        url("hero-operations.png") center right / cover no-repeat;
    }

    .hero-content {
      width: min(720px, 100%);
      padding: 6rem 0;
    }

    .eyebrow {
      margin: 0 0 1rem;
      color: #b7f0e8;
      font-size: 0.9rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    h1,
    h2,
    h3,
    p {
      overflow-wrap: anywhere;
    }

    h1 {
      margin: 0;
      max-width: 12ch;
      font-size: clamp(3rem, 8vw, 6.8rem);
      line-height: 0.95;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 62ch;
      margin: 1.25rem 0 0;
      color: rgba(255, 255, 255, 0.88);
      font-size: clamp(1rem, 2vw, 1.25rem);
    }

    .hero-actions,
    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .signal-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 1.4rem;
      color: rgba(255, 255, 255, 0.86);
      font-size: 0.95rem;
      font-weight: 700;
    }

    .signal-row span {
      padding: 0.38rem 0.58rem;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.09);
    }

    section {
      padding: 4.8rem 0;
    }

    .band-white {
      background: var(--paper);
    }

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

    .section-header {
      max-width: 760px;
      margin-bottom: 1.8rem;
    }

    .section-kicker {
      margin: 0 0 0.5rem;
      color: var(--coral);
      font-size: 0.9rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .band-ink .section-kicker {
      color: #f6bd9d;
    }

    .section-header h2,
    .cta h2 {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1.05;
      letter-spacing: 0;
    }

    .section-header p,
    .cta p {
      margin: 0.9rem 0 0;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .band-ink .section-header p,
    .band-ink .card p,
    .band-ink .muted {
      color: rgba(255, 255, 255, 0.78);
    }

    .grid {
      display: grid;
      gap: 1rem;
    }

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

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

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

    .card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.35rem;
      box-shadow: 0 10px 28px rgba(24, 33, 31, 0.06);
    }

    .band-ink .card {
      color: white;
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.14);
      box-shadow: none;
    }

    .card h3 {
      margin: 0;
      font-size: 1.16rem;
      line-height: 1.2;
    }

    .card p {
      margin: 0.7rem 0 0;
      color: var(--muted);
    }

    .number {
      display: inline-grid;
      place-items: center;
      width: 2.4rem;
      height: 2.4rem;
      margin-bottom: 0.9rem;
      border-radius: 6px;
      background: var(--sage);
      color: var(--teal-dark);
      font-weight: 900;
    }

    .stat-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      overflow: hidden;
      box-shadow: var(--shadow);
      transform: translateY(-2.2rem);
    }

    .stat {
      padding: 1.2rem;
      border-right: 1px solid var(--line);
    }

    .stat:last-child {
      border-right: 0;
    }

    .stat strong {
      display: block;
      color: var(--teal-dark);
      font-size: clamp(1.45rem, 3vw, 2rem);
      line-height: 1;
    }

    .stat span {
      display: block;
      margin-top: 0.4rem;
      color: var(--muted);
      font-weight: 700;
      font-size: 0.92rem;
    }

    .service-card {
      min-height: 100%;
      border-top: 4px solid var(--teal);
    }

    .service-card:nth-child(2),
    .service-card:nth-child(5) {
      border-top-color: var(--coral);
    }

    .service-card:nth-child(3),
    .service-card:nth-child(6) {
      border-top-color: var(--gold);
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 1rem;
    }

    .tag {
      display: inline-flex;
      border: 1px solid var(--line);
      border-radius: 5px;
      padding: 0.28rem 0.48rem;
      color: var(--teal-dark);
      background: #f8fbf7;
      font-size: 0.82rem;
      font-weight: 800;
    }

    .feature-split {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 2rem;
      align-items: center;
    }

    .profile-block {
      display: grid;
      grid-template-columns: 160px minmax(0, 1fr);
      gap: 1.2rem;
      align-items: center;
      padding: 1.2rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: var(--shadow);
    }

    .profile-block img {
      width: 160px;
      height: 160px;
      border-radius: var(--radius);
      object-fit: cover;
      object-position: center 18%;
    }

    .profile-block h3 {
      margin: 0;
      font-size: 1.4rem;
    }

    .profile-block p {
      margin: 0.5rem 0 0;
      color: var(--muted);
    }

    .check-list {
      display: grid;
      gap: 0.75rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 1.55rem;
      color: var(--muted);
    }

    .check-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.58rem;
      width: 0.65rem;
      height: 0.65rem;
      border-radius: 2px;
      background: var(--teal);
    }

    .project-card {
      padding: 0;
      overflow: hidden;
    }

    .project-image {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      border-bottom: 1px solid var(--line);
      background: #e7ece8;
    }

    .project-body {
      padding: 1.35rem;
    }

    .project-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 1rem;
    }

    .project-link {
      color: var(--teal-dark);
      font-weight: 900;
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 3px;
    }

    .plans {
      align-items: stretch;
    }

    .plan-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .plan-card strong {
      display: block;
      margin-top: 1rem;
      color: var(--teal-dark);
      font-size: 1.1rem;
    }

    .plan-card .button {
      margin-top: auto;
      align-self: flex-start;
    }

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

    .video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 9 / 16;
      overflow: hidden;
      border-radius: var(--radius);
      background: #111;
      border: 1px solid var(--line);
      margin-top: 1rem;
    }

    .video-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .cta {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      gap: 2rem;
      align-items: start;
      padding: 2rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: var(--shadow);
    }

    .booking {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 2rem;
      align-items: start;
    }

    .booking-panel {
      position: sticky;
      top: 106px;
    }

    .booking-points {
      display: grid;
      gap: 0.75rem;
      margin-top: 1.3rem;
    }

    .booking-point {
      padding: 0.9rem 1rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      color: var(--muted);
      font-weight: 700;
    }

    .booking-point strong {
      display: block;
      color: var(--ink);
      margin-bottom: 0.2rem;
    }

    .booking-widget {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: var(--shadow);
    }

    .contact-form {
      display: grid;
      gap: 0.9rem;
    }

    body.funnel-open {
      overflow: hidden;
    }

    .lead-funnel-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .lead-funnel-modal.is-open {
      display: flex;
    }

    .lead-funnel-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(16, 26, 24, 0.68);
      backdrop-filter: blur(8px);
    }

    .lead-funnel-dialog {
      position: relative;
      width: min(100%, 860px);
      max-height: min(92vh, 840px);
      overflow: auto;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 30px 80px rgba(16, 26, 24, 0.34);
    }

    .lead-funnel-topbar {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.25rem 1.25rem 1rem;
      border-bottom: 1px solid var(--line);
      background: #f8fbf7;
    }

    .lead-funnel-topbar h2 {
      margin: 0.1rem 0 0;
      font-size: clamp(1.7rem, 4vw, 2.8rem);
      line-height: 1.05;
      letter-spacing: 0;
    }

    .lead-funnel-topbar p {
      margin: 0.35rem 0 0;
      color: var(--muted);
    }

    .lead-funnel-kicker {
      margin: 0;
      color: var(--teal-dark);
      font-size: 0.78rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .lead-funnel-close {
      display: inline-grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      color: var(--ink);
      background: white;
      font-weight: 900;
      cursor: pointer;
    }

    .lead-funnel-form {
      display: grid;
      gap: 1rem;
      padding: 1.25rem;
    }

    .lead-funnel-progress {
      height: 9px;
      overflow: hidden;
      border-radius: 999px;
      background: #e7eee8;
    }

    .lead-funnel-progress span {
      display: block;
      width: 20%;
      height: 100%;
      border-radius: inherit;
      background: var(--teal);
      transition: width 0.2s ease;
    }

    .lead-funnel-error {
      display: none;
      padding: 0.72rem 0.82rem;
      border: 1px solid rgba(217, 95, 61, 0.35);
      border-radius: var(--radius);
      color: #8f341d;
      background: rgba(217, 95, 61, 0.08);
      font-weight: 800;
    }

    .lead-funnel-error:not(:empty) {
      display: block;
    }

    .lead-funnel-step {
      display: none;
      gap: 0.9rem;
    }

    .lead-funnel-step.is-active {
      display: grid;
    }

    .lead-funnel-step h3 {
      margin: 0;
      font-size: clamp(1.35rem, 3vw, 2rem);
      line-height: 1.1;
      letter-spacing: 0;
    }

    .lead-funnel-step p {
      margin: 0;
      color: var(--muted);
    }

    .lead-funnel-field-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.85rem;
    }

    .lead-funnel-field,
    .lead-funnel-group {
      display: grid;
      gap: 0.4rem;
      padding: 0;
      margin: 0;
      border: 0;
    }

    .lead-funnel-field span,
    .lead-funnel-group legend {
      color: var(--ink);
      font-size: 0.92rem;
      font-weight: 900;
    }

    .lead-funnel-field input,
    .lead-funnel-field select,
    .lead-funnel-field textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 0.85rem;
      color: var(--ink);
      background: #fbfcfa;
    }

    .lead-funnel-field textarea {
      min-height: 145px;
      resize: vertical;
    }

    .lead-funnel-choice-grid {
      display: grid;
      gap: 0.6rem;
    }

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

    .lead-funnel-choice {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      min-height: 48px;
      padding: 0.8rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      color: var(--muted);
      background: #fbfcfa;
      font-weight: 800;
      cursor: pointer;
    }

    .lead-funnel-choice:focus-within,
    .lead-funnel-choice:hover {
      border-color: rgba(15, 118, 110, 0.46);
      background: #f2faf7;
    }

    .lead-funnel-choice input {
      margin-top: 0.2rem;
      accent-color: var(--teal);
      flex-shrink: 0;
    }

    .lead-funnel-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 0.75rem;
      padding-top: 0.25rem;
    }

    .intake-layout {
      grid-template-columns: 0.78fr 1.22fr;
    }

    .form-summary {
      display: grid;
      gap: 0.55rem;
      margin-top: 1.4rem;
    }

    .form-summary span {
      display: flex;
      align-items: center;
      min-height: 42px;
      padding: 0.72rem 0.82rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      color: var(--teal-dark);
      background: #f8fbf7;
      font-weight: 900;
    }

    .intake-form {
      gap: 1rem;
    }

    .form-progress {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.55rem;
    }

    .progress-step {
      display: grid;
      place-items: center;
      min-height: 42px;
      padding: 0.55rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      color: var(--muted);
      background: #fbfcfa;
      font-size: 0.82rem;
      font-weight: 900;
      text-align: center;
    }

    .progress-step.is-active,
    .progress-step.is-complete {
      color: white;
      background: var(--teal);
      border-color: var(--teal);
    }

    .form-step {
      display: grid;
      gap: 0.9rem;
    }

    .has-js .form-step {
      display: none;
    }

    .has-js .form-step.is-active {
      display: grid;
    }

    .form-step-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 0.25rem;
    }

    .form-error {
      padding: 0.72rem 0.82rem;
      border: 1px solid rgba(217, 95, 61, 0.35);
      border-radius: var(--radius);
      color: #8f341d;
      background: rgba(217, 95, 61, 0.08);
      font-weight: 800;
    }

    .form-error:empty {
      display: none;
    }

    .field {
      display: grid;
      gap: 0.35rem;
    }

    .field label {
      color: var(--ink);
      font-weight: 800;
      font-size: 0.92rem;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 0.85rem;
      color: var(--ink);
      background: #fbfcfa;
    }

    .field textarea {
      min-height: 135px;
      resize: vertical;
    }

    .option-group {
      display: grid;
      gap: 0.6rem;
      padding: 0;
      margin: 0;
      border: 0;
    }

    .option-group > span {
      color: var(--ink);
      font-weight: 800;
      font-size: 0.92rem;
    }

    .choice-list {
      display: grid;
      gap: 0.55rem;
      padding: 0;
      margin: 0;
      border: 0;
    }

    .choice {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      padding: 0.72rem 0.8rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fbfcfa;
      color: var(--muted);
      font-weight: 700;
    }

    .choice input {
      width: auto;
      margin-top: 0.25rem;
      accent-color: var(--teal);
      flex-shrink: 0;
    }

    .form-section-title {
      margin: 0;
      color: var(--teal-dark);
      font-size: 0.92rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0;
    }

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

    .form-note {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .hidden-field {
      display: none;
    }

    .contact-links {
      display: grid;
      gap: 0.65rem;
      margin-top: 1.5rem;
    }

    .contact-links a {
      display: block;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--line);
      color: var(--teal-dark);
      font-weight: 900;
    }

    .site-footer {
      padding: 3.6rem 0 1.4rem;
      color: rgba(255, 255, 255, 0.74);
      background: var(--charcoal);
      border-top: 1px solid var(--line);
      font-size: 0.94rem;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.3fr repeat(3, minmax(0, 0.75fr));
      gap: 2rem;
      align-items: start;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      color: white;
      font-weight: 900;
    }

    .footer-logo .brand-mark {
      box-shadow: none;
    }

    .footer-logo small {
      display: block;
      color: #a8ded7;
      font-size: 0.78rem;
      font-weight: 800;
    }

    .footer-copy {
      max-width: 38ch;
      margin: 1rem 0 0;
      color: rgba(255, 255, 255, 0.74);
    }

    .footer-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 1.1rem;
    }

    .footer-badge {
      display: inline-flex;
      padding: 0.32rem 0.48rem;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 5px;
      color: #d9fff9;
      background: rgba(255, 255, 255, 0.06);
      font-size: 0.78rem;
      font-weight: 900;
    }

    .footer-col h3 {
      margin: 0 0 0.8rem;
      color: white;
      font-size: 0.92rem;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .footer-col a,
    .footer-col span {
      display: block;
      margin-top: 0.55rem;
      color: rgba(255, 255, 255, 0.74);
      font-weight: 700;
    }

    .footer-col a:hover {
      color: white;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 2.8rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.62);
    }

    @media (max-width: 1050px) {
      .grid-4,
      .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

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

      .stat:nth-child(2) {
        border-right: 0;
      }

      .stat:nth-child(1),
      .stat:nth-child(2) {
        border-bottom: 1px solid var(--line);
      }
    }

    @media (max-width: 860px) {
      .nav-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 0.9rem 0;
      }

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

      .nav-status {
        margin-left: 0;
      }

      .hero {
        min-height: 72svh;
        background:
          linear-gradient(90deg, rgba(16, 26, 24, 0.92), rgba(16, 26, 24, 0.72)),
          url("hero-operations.png") center / cover no-repeat;
      }

      h1 {
        max-width: 100%;
      }

      .grid-2,
      .grid-3,
      .feature-split,
      .cta,
      .booking,
      .intake-layout,
      .footer-main {
        grid-template-columns: 1fr;
      }

      .booking-panel {
        position: static;
      }

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

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

      section {
        padding: 3.4rem 0;
      }

      .hero-content {
        padding: 4rem 0;
      }

      .grid-4,
      .video-grid,
      .stat-strip,
      .form-grid,
      .lead-funnel-field-grid,
      .lead-funnel-choice-grid-2,
      .profile-block {
        grid-template-columns: 1fr;
      }

      .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .stat:last-child {
        border-bottom: 0;
      }

      .profile-block img {
        width: 100%;
        height: 260px;
      }

      .button {
        width: 100%;
      }

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

      .nav-links a {
        justify-content: center;
        text-align: center;
      }

      .nav-links .nav-cta,
      .nav-status {
        grid-column: 1 / -1;
        justify-content: center;
      }

      .project-meta,
      .hero-actions,
      .actions,
      .lead-funnel-actions {
        width: 100%;
      }

      .lead-funnel-dialog {
        max-height: 94vh;
      }

      .lead-funnel-topbar,
      .lead-funnel-form {
        padding: 1rem;
      }
    }

    .nav-links a[aria-current="page"] {
      color: var(--teal-dark);
      background: #eef5f0;
    }

    .page-hero {
      position: relative;
      padding: 5.6rem 0 4.8rem;
      color: white;
      background:
        linear-gradient(90deg, rgba(16, 26, 24, 0.94), rgba(16, 26, 24, 0.68)),
        url("hero-operations.png") center right / cover no-repeat;
    }

    .page-hero h1 {
      max-width: 13ch;
    }

    .page-hero .hero-copy {
      color: rgba(255, 255, 255, 0.86);
    }

    .page-hero .eyebrow {
      color: #b7f0e8;
    }

    .page-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .final-cta {
      padding: 2rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: var(--shadow);
    }

    .final-cta h2 {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1.05;
      letter-spacing: 0;
    }

    .final-cta p {
      max-width: 68ch;
      color: var(--muted);
      margin: 0.9rem 0 0;
    }
