    :root {
      --ink: #f5edd8;
      --muted: rgba(245,237,216,0.58);
      --line: rgba(201,169,110,0.16);
      --paper: #1a1408;
      --white: #2e1f0a;
      --leaf: #4e7c40;
      --leaf-dark: #3a5c30;
      --field: #c9a96e;
      --sky: #7bb0d0;
      --clay: #ca7a55;
      --shadow: 0 18px 42px rgba(0,0,0,0.45);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    #network,
    #products,
    #specs {
      scroll-margin-top: 96px;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
    }

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

    a {
      color: inherit;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(26,20,8,0.92);
      border-bottom: 1px solid rgba(201,169,110,0.12);
      backdrop-filter: blur(14px);
    }

    .nav {
      width: min(1160px, calc(100% - 32px));
      min-height: 72px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--ink);
      text-decoration: none;
      font-weight: 800;
      font-size: 1.05rem;
    }

    .brand img {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 22px;
      list-style: none;
      margin: 0;
      padding: 0;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      text-decoration: none;
    }

    .nav-links a:hover {
      color: #8ab87a;
    }

    .nav-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 16px;
      border: 1px solid var(--leaf);
      border-radius: 6px;
      color: #f5edd8;
      background: var(--leaf);
      text-decoration: none;
      font-weight: 800;
      font-size: 0.92rem;
    }

    .hero {
      position: relative;
      min-height: 84vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(26,20,8,0.62) 0%, rgba(26,20,8,0) 24%),
        linear-gradient(90deg, rgba(26,20,8,0.9) 0%, rgba(26,20,8,0.6) 32%, rgba(26,20,8,0.12) 60%, rgba(26,20,8,0) 100%),
        url("../assets/farm-overview-background.png") center 38% / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 110px;
      background: linear-gradient(180deg, rgba(26,20,8,0), var(--paper));
      z-index: -1;
    }

    .hero-inner {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
      padding: 72px 0 80px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      color: #8ab87a;
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 3px;
      background: var(--field);
      border-radius: 2px;
    }

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

    h1 {
      max-width: 620px;
      margin-bottom: 22px;
      font-size: clamp(3.2rem, 7vw, 5.3rem);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 600px;
      margin-bottom: 30px;
      color: rgba(245,237,216,0.78);
      font-size: 1.22rem;
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 6px;
      border: 1px solid var(--leaf);
      color: #f5edd8;
      background: var(--leaf);
      text-decoration: none;
      font-weight: 850;
    }

    .button:hover,
    .nav-action:hover {
      background: var(--leaf-dark);
      border-color: var(--leaf-dark);
    }

    .button.secondary {
      color: var(--ink);
      background: rgba(46,31,10,0.72);
      border-color: rgba(201,169,110,0.22);
    }

    .button.secondary:hover {
      color: #8ab87a;
      background: var(--white);
      border-color: var(--leaf);
    }

    .section {
      padding: 76px 0;
    }

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

    .section.leaf {
      color: #f5edd8;
      background: var(--leaf-dark);
    }

    .intro-section {
      padding: 58px 0 62px;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
    }

    .intro-copy {
      width: min(980px, calc(100% - 32px));
      margin: 0 auto;
    }

    .intro-copy h2 {
      max-width: 760px;
      margin-bottom: 16px;
      font-size: 2.3rem;
    }

    .intro-copy > p {
      max-width: 820px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: 1.12rem;
    }

    .intro-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      margin-top: 26px;
    }

    .intro-point {
      padding-top: 16px;
      border-top: 3px solid var(--field);
    }

    .intro-point h3 {
      margin-bottom: 8px;
      font-size: 1.05rem;
    }

    .intro-point p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .wrap {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
      gap: 36px;
      align-items: end;
      margin-bottom: 34px;
    }

    h2 {
      margin-bottom: 0;
      font-size: 2.75rem;
      line-height: 1.05;
      letter-spacing: 0;
    }

    .section-head p,
    .lead {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .leaf .section-head p,
    .leaf .lead {
      color: rgba(245,237,216,0.76);
    }

    .starter {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
      gap: 28px;
      align-items: stretch;
    }

    .starter-gallery {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 14px;
    }

    .starter-gallery img {
      width: 100%;
      height: 100%;
      min-height: 230px;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid rgba(201,169,110,0.18);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    }

    .starter-gallery .stack {
      display: grid;
      gap: 14px;
    }

    .starter-panel {
      padding: 30px;
      border-radius: 8px;
      background: rgba(46,31,10,0.08);
      border: 1px solid rgba(201,169,110,0.16);
    }

    .starter-panel h3 {
      margin-bottom: 16px;
      font-size: 1.55rem;
      line-height: 1.15;
    }

    .starter-list {
      list-style: none;
      padding: 0;
      margin: 0 0 26px;
      display: grid;
      gap: 14px;
    }

    .starter-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 12px;
      align-items: start;
    }

    .check {
      display: inline-flex;
      width: 28px;
      height: 28px;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      color: var(--ink);
      background: var(--field);
      font-weight: 900;
    }

    .starter-list strong {
      display: block;
      margin-bottom: 2px;
    }

    .starter-list span {
      color: rgba(245,237,216,0.72);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 16px;
    }

    .product-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    }

    .product-card img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      background: #2e1f0a;
      border-bottom: 1px solid var(--line);
    }

    .product-card img.portrait-top {
      object-position: center 30%;
    }

    .product-card img.portrait-mid {
      object-position: center 42%;
    }

    .product-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: 18px;
    }

    .product-kicker {
      margin-bottom: 10px;
      color: var(--sky);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .product-body h3 {
      margin-bottom: 9px;
      font-size: 1.12rem;
      line-height: 1.2;
    }

    .product-body h3,
    .install-body h3 {
      overflow-wrap: anywhere;
      word-break: normal;
      hyphens: auto;
      text-wrap: balance;
    }

    .product-body p {
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .product-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: auto;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 27px;
      padding: 0 9px;
      border-radius: 4px;
      background: #2e1f0a;
      color: #8ab87a;
      font-size: 0.78rem;
      font-weight: 800;
    }

    .soil-spec-panel {
      display: grid;
      grid-template-columns: 1fr;
      margin-top: 20px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #2e1f0a;
    }

    .soil-spec-copy h3 {
      margin-bottom: 10px;
      font-size: 1.55rem;
      line-height: 1.15;
    }

    .soil-spec-copy p {
      max-width: 720px;
      margin-bottom: 18px;
      color: var(--muted);
    }

    .spec-groups {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .spec-group {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
    }

    .spec-group h4 {
      margin: 0;
      padding: 10px 12px;
      color: #f5edd8;
      background: #07566c;
      font-size: 0.92rem;
      line-height: 1.2;
    }

    .spec-group dl {
      display: grid;
      grid-template-columns: minmax(110px, 0.55fr) minmax(0, 1fr);
      margin: 0;
      font-size: 0.88rem;
    }

    .spec-group dt,
    .spec-group dd {
      margin: 0;
      padding: 8px 10px;
      border-top: 1px solid rgba(201,169,110,0.16);
    }

    .spec-group dt {
      color: rgba(245,237,216,0.62);
      font-weight: 800;
    }

    .spec-group dd {
      color: var(--ink);
    }

    .network {
      display: grid;
      grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.58fr);
      gap: 42px;
      align-items: center;
    }

    .network-steps {
      display: grid;
      gap: 14px;
    }

    .network-step {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--line);
    }

    .network-step:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .step-number {
      display: inline-flex;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      color: #f5edd8;
      background: var(--sky);
      font-weight: 900;
    }

    .network-step h3 {
      margin-bottom: 4px;
      font-size: 1.08rem;
    }

    .network-step p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .network-diagram {
      margin: 34px 0 0;
      position: relative;
      cursor: zoom-in;
    }

    .network-diagram img {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #2e1f0a;
      box-shadow: var(--shadow);
    }

    .diagram-open {
      position: absolute;
      right: 14px;
      bottom: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0 13px;
      border: 1px solid rgba(201,169,110,0.36);
      border-radius: 6px;
      color: #f5edd8;
      background: rgba(78,124,64,0.96);
      box-shadow: 0 12px 28px rgba(0,0,0,0.2);
      font: inherit;
      font-size: 0.86rem;
      font-weight: 850;
      cursor: zoom-in;
    }

    .diagram-open:hover,
    .diagram-open:focus-visible {
      background: var(--leaf-dark);
    }

    .diagram-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: none;
      background: #050806;
    }

    .diagram-modal[aria-hidden="false"] {
      display: block;
    }

    .diagram-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8, 13, 10, 0.78);
      backdrop-filter: blur(8px);
    }

    .diagram-modal-panel {
      position: absolute;
      inset: 0;
      padding: 18px;
      display: flex;
      align-items: stretch;
      justify-content: center;
    }

    .diagram-modal-scroll {
      width: 100%;
      height: 100%;
      padding: 16px;
      overflow: auto;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      border-radius: 8px;
      background: #2e1f0a;
      -webkit-overflow-scrolling: touch;
    }

    .diagram-modal-scroll img {
      flex: 0 0 auto;
      width: max(960px, calc(100vw - 32px));
      max-width: none;
      height: auto;
      border-radius: 6px;
      box-shadow: 0 16px 42px rgba(0,0,0,0.26);
    }

    .diagram-modal-scroll.is-gesture-ready img {
      transform: translate3d(var(--diagram-pan-x, 0px), var(--diagram-pan-y, 0px), 0) scale(var(--diagram-scale, 1));
      transform-origin: center center;
      transition: transform 0.16s ease;
      will-change: transform;
      user-select: none;
      -webkit-user-drag: none;
      touch-action: none;
    }

    .diagram-modal-scroll.is-pinching img,
    .diagram-modal-scroll.is-dragging img {
      transition: none;
    }

    .diagram-modal-scroll.is-zoomed,
    .diagram-modal-scroll.is-zoomed img {
      cursor: grab;
    }

    .diagram-modal-scroll.is-dragging,
    .diagram-modal-scroll.is-dragging img {
      cursor: grabbing;
    }

    .diagram-close {
      position: fixed;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(201,169,110,0.16);
      border-radius: 999px;
      color: var(--ink);
      background: var(--white);
      box-shadow: 0 12px 28px rgba(0,0,0,0.22);
      font: inherit;
      font-size: 1.6rem;
      line-height: 1;
      cursor: pointer;
    }

    .diagram-close:hover,
    .diagram-close:focus-visible {
      color: #8ab87a;
    }

    .diagram-modal-panel:fullscreen {
      padding: 0;
      background: #050806;
    }

    .diagram-modal-panel:fullscreen .diagram-modal-scroll {
      padding: 0;
      overflow: hidden;
      align-items: center;
      justify-content: center;
      border-radius: 0;
      background: #050806;
    }

    .diagram-modal-panel:fullscreen .diagram-modal-scroll img {
      width: 100vw;
      height: 100vh;
      height: 100svh;
      max-width: none;
      max-height: none;
      object-fit: contain;
      border-radius: 0;
      box-shadow: none;
    }

    .diagram-modal-panel:fullscreen .diagram-close {
      top: max(8px, env(safe-area-inset-top));
      right: max(8px, env(safe-area-inset-right));
      border-color: rgba(201,169,110,0.24);
      color: #f5edd8;
      background: rgba(0,0,0,0.72);
      box-shadow: none;
      backdrop-filter: blur(10px);
    }

    body.diagram-modal-open {
      overflow: hidden;
    }

    @media (orientation: portrait) and (max-width: 700px) {
      .diagram-modal-panel {
        padding: 0;
      }

      .diagram-modal-scroll {
        height: 100vh;
        height: 100svh;
        padding: 56px 12px 18px;
        border-radius: 0;
      }

      .diagram-modal-scroll img,
      .diagram-modal-panel:fullscreen .diagram-modal-scroll img {
        width: max(1040px, calc(100vw - 24px));
        height: auto;
        border-radius: 6px;
        box-shadow: 0 16px 42px rgba(0,0,0,0.26);
      }

      .diagram-modal-panel:fullscreen .diagram-modal-scroll {
        padding: 56px 12px 18px;
        overflow: auto;
        align-items: flex-start;
        justify-content: flex-start;
        background: #2e1f0a;
      }
    }

    @media (orientation: landscape) {
      .diagram-modal-backdrop {
        background: #050806;
        backdrop-filter: none;
      }

      .diagram-modal-panel {
        padding: 0;
      }

      .diagram-modal-scroll {
        padding: 0;
        overflow: hidden;
        align-items: center;
        justify-content: center;
        border-radius: 0;
        background: #050806;
        touch-action: none;
      }

      .diagram-modal-scroll img {
        width: 100vw;
        height: 100vh;
        height: 100svh;
        max-width: none;
        max-height: none;
        object-fit: contain;
        border-radius: 0;
        box-shadow: none;
      }

      .diagram-close {
        top: max(8px, env(safe-area-inset-top));
        right: max(8px, env(safe-area-inset-right));
        border-color: rgba(201,169,110,0.24);
        color: #f5edd8;
        background: rgba(0,0,0,0.72);
        box-shadow: none;
        backdrop-filter: blur(10px);
      }

      .diagram-close:hover,
      .diagram-close:focus-visible {
        color: #f5edd8;
        background: rgba(78,124,64,0.92);
      }
    }

    .network-photo {
      position: relative;
    }

    .network-photo img {
      width: 100%;
      aspect-ratio: 5 / 4;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .install-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
    }

    .install-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    }

    .install-card img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      background: #2e1f0a;
      border-bottom: 1px solid var(--line);
    }

    .install-card img.contain {
      object-fit: contain;
      padding: 14px;
    }

    .install-card img.focus-right {
      object-position: 64% center;
    }

    .install-card img.drawing-focus {
      object-fit: cover;
      object-position: 76% 68%;
      filter: contrast(1.04);
    }

    .install-body {
      padding: 22px;
    }

    .install-body h3 {
      margin-bottom: 8px;
      font-size: clamp(1.08rem, 1vw, 1.14rem);
      line-height: 1.24;
    }

    .install-body p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .metric-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      overflow: hidden;
      margin-top: 18px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--line);
    }

    .metric {
      padding: 18px;
      background: var(--white);
    }

    .metric strong {
      display: block;
      margin-bottom: 3px;
      color: #8ab87a;
      font-size: 1.45rem;
      line-height: 1;
    }

    .metric span {
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 750;
    }

    .cta-band {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
      padding: 34px;
      border-radius: 8px;
      color: #f5edd8;
      background: #241a08;
    }

    .cta-band h2 {
      margin-bottom: 10px;
      font-size: 2rem;
    }

    .cta-band p {
      max-width: 680px;
      margin-bottom: 0;
      color: rgba(245,237,216,0.72);
    }

    .footer {
      padding: 30px 0;
      color: var(--muted);
      background: var(--white);
      border-top: 1px solid var(--line);
      font-size: 0.9rem;
    }

    .footer-inner {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
    }

    .footer-links {
      display: flex;
      gap: 16px;
    }

    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-weight: 750;
    }

    .footer-links a:hover {
      color: #8ab87a;
    }

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

      .products-grid .product-card:first-child {
        grid-column: span 2;
      }

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

      .soil-spec-panel,
      .spec-groups {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 820px) {
      #network,
      #products,
      #specs {
        scroll-margin-top: 128px;
      }

      .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
        gap: 14px;
      }

      .nav-links {
        width: 100%;
        overflow: visible;
        gap: 8px 14px;
        padding-bottom: 2px;
      }

      .nav-action {
        display: none;
      }

      .hero {
        min-height: auto;
        background:
          radial-gradient(700px 360px at 50% -10%, rgba(78,124,64,0.16), transparent 60%),
          var(--paper);
      }

      .hero-inner {
        padding: 44px 0 56px;
      }

      h1 {
        max-width: 420px;
        font-size: 3.35rem;
      }

      .hero-copy {
        font-size: 1.04rem;
      }

      .section {
        padding: 56px 0;
      }

      .intro-section {
        padding: 44px 0 48px;
      }

      .section-head,
      .intro-points,
      .starter,
      .network,
      .install-grid,
      .cta-band {
        grid-template-columns: 1fr;
      }

      h2 {
        font-size: 2.2rem;
      }

      .starter-gallery {
        grid-template-columns: 1fr;
      }

      .starter-gallery .stack {
        grid-template-columns: 1fr 1fr;
      }

      .network-diagram {
        overflow: visible;
        margin-right: 0;
        margin-left: 0;
        padding: 0;
      }

      .network-diagram img {
        width: 100%;
        max-width: 100%;
      }

      .cta-band {
        padding: 26px;
      }
    }

    @media (max-width: 620px) {
      .nav {
        width: min(1160px, calc(100% - 24px));
      }

      .brand {
        font-size: 1rem;
      }

      .brand img {
        width: 32px;
        height: 32px;
      }

      .nav-links {
        gap: 6px 12px;
        font-size: 0.84rem;
      }

      h1 {
        font-size: 2.75rem;
      }

      h2 {
        font-size: 1.85rem;
      }

      .hero-inner {
        padding: 38px 0 108px;
      }

      .eyebrow {
        font-size: 0.7rem;
      }

      .intro-copy h2 {
        font-size: 1.8rem;
      }

      .intro-copy > p,
      .section-head p,
      .lead {
        font-size: 1rem;
      }

      .button {
        width: 100%;
      }

      .products-grid,
      .products-grid .product-card:first-child,
      .install-grid,
      .starter-gallery .stack,
      .metric-strip {
        grid-template-columns: 1fr;
      }

      .products-grid .product-card:first-child {
        grid-column: auto;
      }

      .product-card img {
        aspect-ratio: 1 / 1;
      }

      .product-body,
      .install-body,
      .starter-panel {
        padding: 22px;
      }

      .soil-spec-panel {
        padding: 16px;
      }

      .spec-group dl {
        grid-template-columns: 1fr;
      }

      .spec-group dd {
        padding-top: 0;
        border-top: 0;
      }

      .network-diagram img {
        width: 100%;
        max-width: 100%;
      }

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

      .footer-links {
        flex-wrap: wrap;
      }
    }

    @media (orientation: landscape) and (max-height: 520px) and (max-width: 960px) {
      .site-header {
        position: static;
      }

      .nav {
        width: min(1160px, calc(100% - 20px));
        min-height: 48px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 6px 0;
      }

      .brand {
        flex: 0 0 auto;
        font-size: 0.92rem;
        gap: 8px;
      }

      .brand img {
        width: 28px;
        height: 28px;
      }

      .nav-links {
        flex: 1 1 auto;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        padding: 0 0 2px;
        font-size: 0.78rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }

      .nav-links::-webkit-scrollbar {
        display: none;
      }

      #network.section {
        padding: 0 0 18px;
        scroll-margin-top: 0;
      }

      #products.section {
        scroll-margin-top: 0;
      }

      #network .wrap {
        width: 100%;
        display: flex;
        flex-direction: column;
      }

      .network-diagram {
        order: -1;
        display: grid;
        min-height: 100svh;
        place-items: start center;
        overflow: visible;
        margin: 0;
        padding: 6px;
      }

      .network-diagram img {
        width: min(1160px, calc(100vw - 12px));
        height: auto;
        max-width: none;
        max-height: none;
        border-radius: 6px;
      }

      .network {
        width: min(1160px, calc(100% - 24px));
        margin: 12px auto 0;
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
        gap: 16px;
        align-items: start;
      }

      .network .eyebrow,
      .network .lead,
      .metric-strip,
      .network-step p {
        display: none;
      }

      .network h2 {
        font-size: clamp(1.25rem, 4.4vw, 1.65rem);
        line-height: 1.05;
      }

      .network-steps {
        gap: 8px;
      }

      .network-step {
        grid-template-columns: 30px 1fr;
        gap: 8px;
        padding-bottom: 8px;
      }

      .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.72rem;
      }

      .network-step h3 {
        margin-bottom: 0;
        font-size: 0.9rem;
      }
    }
    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
