/* Desktop: hide mobile-only nav chrome */
.menu-drawer-head,
.nav-overlay {
  display: none;
}

/* ZIESHINE mobile premium — v20260901opt — iOS + Android */

@media (max-width: 1000px) {
  :root {
    --zs-util-h: 0px;
    --zs-navbar-h: 52px;
    --zs-dock-row: 49px;
    --zs-dock-h: calc(var(--zs-dock-row) + env(safe-area-inset-bottom, 0px));
    --zs-mobile-header: calc(var(--zs-navbar-h) + env(safe-area-inset-top, 0px));
    --zs-fab-offset: 12px;
    --zs-mobile-footer-stack: var(--zs-dock-h);
    --zs-ios-sheet: #f2f2f7;
    --zs-ios-card: #ffffff;
    --zs-ios-sep: rgba(60, 60, 67, 0.16);
  }

  /* Compact header — hide util strip on phone */
  #site-nav {
    position: sticky;
    top: 0;
    z-index: 10050;
    padding-top: env(safe-area-inset-top, 0px);
    background: rgba(251, 250, 247, 0.94);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 0.5px solid var(--zs-ios-sep);
  }
  #site-nav .util {
    display: none;
  }
  #site-nav > nav {
    padding-top: 0 !important;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0;
    box-shadow: none;
  }
  body.nav-open #site-nav {
    z-index: 10050;
  }

  .navbar {
    min-height: var(--zs-navbar-h);
    height: var(--zs-navbar-h);
    padding: 0;
    gap: 10px;
    justify-content: space-between;
  }
  .nav-logo {
    flex: 1;
    min-width: 0;
  }
  .logo {
    height: 16px;
  }
  .navright {
    flex: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .nav-quiet-insights,
  .nav-quiet-resources,
  .nav-quiet,
  .nav-cta {
    display: none !important;
  }

  /* Compact samples pill + minimal burger */
  .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: var(--onyx);
    border: 0;
    white-space: nowrap;
    touch-action: manipulation;
  }
  .nav-mobile-cta:active {
    opacity: 0.88;
  }

  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
    border: 0;
    background: rgba(11, 12, 15, 0.06);
    z-index: 3;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .burger span {
    width: 16px;
    height: 1.5px;
    border-radius: 1px;
    transition: transform 0.24s ease, opacity 0.18s ease;
  }
  .burger.is-open {
    background: rgba(11, 12, 15, 0.1);
  }
  .burger.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .burger.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Overlay */
  body.nav-open::after {
    display: none !important;
  }
  body.zs-mobile-nav-ready .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10040;
    background: rgba(11, 12, 15, 0.38);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.26s ease, visibility 0.26s ease;
  }
  body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Portaled full-screen drawer (escapes nav backdrop-filter trap) */
  body.zs-mobile-nav-ready .menu.zs-drawer-portaled {
    display: flex !important;
    position: fixed !important;
    top: var(--zs-mobile-header) !important;
    left: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    width: min(100%, 400px) !important;
    max-width: 100% !important;
    margin: 0 !important;
    flex-direction: column;
    align-items: stretch;
    list-style: none;
    padding: 0 16px calc(16px + env(safe-area-inset-bottom, 0px)) 16px !important;
    background: var(--zs-ios-sheet) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0 !important;
    border-left: 1px solid rgba(11, 12, 15, 0.08) !important;
    border-radius: 0 !important;
    box-shadow: -20px 0 60px -24px rgba(11, 12, 15, 0.28) !important;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 10045;
    transform: translate3d(104%, 0, 0);
    -webkit-transform: translate3d(104%, 0, 0);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.36s cubic-bezier(0.2, 0.85, 0.2, 1), visibility 0s linear 0.36s;
    -webkit-overflow-scrolling: touch;
  }
  body.zs-mobile-nav-ready .menu.zs-drawer-portaled.open {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.36s cubic-bezier(0.2, 0.85, 0.2, 1), visibility 0s;
  }

  /* iOS Safari — bottom sheet pattern (more reliable than side drawer) */
  @supports (-webkit-touch-callout: none) {
    html.ios body.zs-mobile-nav-ready .menu.zs-drawer-portaled {
      top: var(--zs-mobile-header) !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      max-width: none !important;
      border-left: 0 !important;
      border-radius: 18px 18px 0 0 !important;
      box-shadow: 0 -16px 48px -12px rgba(11, 12, 15, 0.22) !important;
      transform: translate3d(0, 100%, 0);
      -webkit-transform: translate3d(0, 100%, 0);
      visibility: hidden;
      padding-top: 4px !important;
    }
    html.ios body.zs-mobile-nav-ready .menu.zs-drawer-portaled::before {
      content: "";
      display: block;
      width: 36px;
      height: 5px;
      border-radius: 999px;
      background: rgba(60, 60, 67, 0.28);
      margin: 8px auto 12px;
      flex-shrink: 0;
    }
    html.ios body.zs-mobile-nav-ready .menu.zs-drawer-portaled.open {
      transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
      visibility: visible;
    }
    html.ios body.zs-mobile-nav-ready .nav-overlay {
      top: 0 !important;
      background: rgba(11, 12, 15, 0.52);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
    html.ios .burger {
      -webkit-tap-highlight-color: transparent;
    }
    html.ios body.zs-scroll-locked {
      overscroll-behavior: none;
    }
  }

  /* Drawer header */
  body.zs-mobile-nav-ready .menu-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 0 12px;
    margin-bottom: 8px;
    border-bottom: 0;
    list-style: none;
  }
  .menu-drawer-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--onyx);
    margin: 0;
  }
  .menu-drawer-close {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(11, 12, 15, 0.08);
    color: var(--onyx);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .menu-drawer-close span {
    display: block;
    margin-top: -2px;
  }
  .menu-drawer-link {
    display: none;
  }

  body.zs-mobile-nav-ready .menu > li {
    width: 100%;
    border-bottom: 0;
    list-style: none;
  }
  body.zs-mobile-nav-ready .menu > li.menu-cta-mobile {
    display: list-item;
    border-bottom: 1px solid var(--line);
    padding: 12px 0 16px;
    margin-bottom: 4px;
  }
  .menu-cta-mobile .cta {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 11px;
  }

  /* Parent row: link + expand toggle */
  .menu-row {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 48px;
    background: var(--zs-ios-card);
    border-radius: 12px;
    margin-bottom: 6px;
    padding: 0 4px 0 14px;
    box-shadow: 0 1px 2px rgba(11, 12, 15, 0.04);
  }
  body.zs-mobile-nav-ready .menu > li > a,
  body.zs-mobile-nav-ready .menu-row > a {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 0 !important;
    font-size: 17px !important;
    font-weight: 500;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
    opacity: 1 !important;
    color: var(--onyx) !important;
    min-height: 48px;
    text-decoration: none;
    border-bottom: 0 !important;
  }
  body.zs-mobile-nav-ready .menu > li > a::after {
    display: none !important;
  }
  .menu-toggle {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--ash);
    cursor: pointer;
    touch-action: manipulation;
  }
  .menu-toggle .chev {
    width: 12px;
    height: 12px;
    display: block !important;
    opacity: 0.75;
    transition: transform 0.28s ease;
  }
  body.zs-mobile-nav-ready .menu > li.touch-open .menu-toggle .chev {
    transform: rotate(180deg);
  }
  body.zs-mobile-nav-ready .menu > li.touch-open .menu-toggle {
    background: rgba(11, 12, 15, 0.06);
  }

  /* Submenu — override legacy + iOS rules that hide descriptions */
  body.zs-mobile-nav-ready .menu .drop {
    display: none !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 0 10px 0 !important;
    margin: -2px 0 8px !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  body.zs-mobile-nav-ready .menu > li.touch-open > .drop {
    display: grid !important;
  }
  body.zs-mobile-nav-ready .menu .drop .hd {
    display: none !important;
  }
  body.zs-mobile-nav-ready .menu .drop .item {
    display: block !important;
    padding: 12px 14px !important;
    margin: 0;
    min-height: 44px;
    border-radius: 0;
    background: var(--zs-ios-card);
    border: 0 !important;
    border-bottom: 0.5px solid var(--zs-ios-sep) !important;
    box-shadow: none;
  }
  body.zs-mobile-nav-ready .menu .drop .item:first-child {
    border-radius: 12px 12px 0 0;
  }
  body.zs-mobile-nav-ready .menu .drop .item:last-child {
    border-radius: 0 0 12px 12px;
    border-bottom: 0 !important;
  }
  body.zs-mobile-nav-ready .menu .drop .item:only-child {
    border-radius: 12px;
  }
  body.zs-mobile-nav-ready .menu .drop .item b {
    display: block !important;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 2px;
    color: var(--onyx);
  }
  body.zs-mobile-nav-ready .menu .drop .item span {
    display: block !important;
    font-size: 12px;
    line-height: 1.35;
    color: var(--ash);
  }

  /* Quick actions footer inside drawer */
  body.zs-mobile-nav-ready .menu-quick-wrap {
    list-style: none;
    border: 0;
    margin: 0;
    padding: 0;
  }
  body.zs-mobile-nav-ready .menu-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 0;
  }
  .menu-quick a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px;
    border-radius: 12px;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--onyx);
    background: var(--zs-ios-card);
    border: 0;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 1px 2px rgba(11, 12, 15, 0.04);
  }
  .menu-quick a.menu-quick-primary {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
  }
  html.nav-open {
    overflow: hidden;
    height: 100%;
  }
  body.zs-scroll-locked {
    overflow: hidden !important;
    touch-action: none;
  }

  /* Bottom dock — iOS tab bar */
  .zs-mobile-bar {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9000;
    width: 100%;
    max-width: 100vw;
    height: var(--zs-dock-h);
    max-height: var(--zs-dock-h);
    min-height: 0;
    margin: 0;
    padding: 0 max(8px, env(safe-area-inset-right, 0px)) env(safe-area-inset-bottom, 0px) max(8px, env(safe-area-inset-left, 0px));
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: var(--zs-dock-row);
    align-items: center;
    align-content: start;
    gap: 0;
    background: rgba(255, 255, 255, 0.88);
    border-top: 0.5px solid var(--zs-ios-sep);
    box-shadow: none;
    box-sizing: border-box;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }
  @supports (-webkit-touch-callout: none) {
    .zs-mobile-bar {
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
    }
  }
  body.nav-open .zs-mobile-bar,
  body.zs-ai-open .zs-mobile-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  body.has-mobile-bar {
    padding-bottom: var(--zs-dock-h);
  }
  body.has-mobile-bar #zs-ai-fab {
    bottom: calc(var(--zs-fab-offset) + var(--zs-mobile-footer-stack)) !important;
  }
  body.has-mobile-bar #zs-cart-btn,
  body.has-mobile-bar.has-zs-ai #zs-cart-btn {
    bottom: calc(var(--zs-fab-offset) + var(--zs-mobile-footer-stack)) !important;
  }
  body.has-mobile-bar #zs-cart-toast,
  body.has-mobile-bar.has-zs-ai #zs-cart-toast {
    bottom: calc(56px + var(--zs-mobile-footer-stack)) !important;
  }
  body.has-mobile-bar .zs-cookie-bar {
    bottom: calc(var(--zs-fab-offset) + var(--zs-mobile-footer-stack));
  }
  body:not(.has-mobile-bar) #zs-ai-fab,
  body:not(.has-mobile-bar) #zs-cart-btn {
    bottom: var(--zs-fab-offset) !important;
  }
  body.has-mobile-bar[data-page="contact"] .zs-mobile-bar,
  body.has-mobile-bar[data-page="studio"] .zs-mobile-bar {
    display: none;
  }
  body.has-mobile-bar[data-page="contact"],
  body.has-mobile-bar[data-page="studio"] {
    padding-bottom: 0;
  }
  .zs-mb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: var(--zs-dock-row);
    max-height: var(--zs-dock-row);
    min-height: 0;
    align-self: center;
    padding: 4px 2px;
    border-radius: 8px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    text-decoration: none;
    color: #8e8e93;
    border: 0;
    background: transparent;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    overflow: hidden;
    transition: color 0.15s ease;
  }
  .zs-mb-item span {
    display: block;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-size: 10px;
  }
  .zs-mb-item svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    opacity: 0.9;
  }
  .zs-mb-primary {
    color: var(--onyx);
    font-weight: 600;
  }
  .zs-mb-primary svg {
    stroke-width: 1.65;
  }
  .zs-mb-item:active {
    opacity: 0.65;
  }

  /* Facts strip — horizontal snap (better than cramped 2×2) */
  .facts-line--snap {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0 !important;
    margin-inline: calc(-1 * max(16px, env(safe-area-inset-left, 0px)));
    padding-inline: max(16px, env(safe-area-inset-left, 0px));
    scrollbar-width: none;
  }
  .facts-line--snap::-webkit-scrollbar {
    display: none;
  }
  .facts-line--snap > a,
  .facts-line--snap > div {
    flex: 0 0 auto;
    min-width: 132px;
    scroll-snap-align: start;
    border-right: 1px solid var(--line) !important;
    border-bottom: 0 !important;
    padding: 16px 20px 16px 0 !important;
  }
  .facts-line--snap > a:last-child,
  .facts-line--snap > div:last-child {
    padding-right: 8px !important;
    border-right: 0 !important;
  }
  .facts-line--snap b {
    font-size: clamp(24px, 6.5vw, 32px) !important;
  }

  /* Resource / MENA cards */
  .res-grid {
    gap: 12px;
  }
  .res-card {
    border-radius: 14px;
    padding: 20px 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 1px 0 rgba(11, 12, 15, 0.04);
  }
  .res-card:active {
    transform: scale(0.99);
  }

  /* Forward pack */
  .fp-fields input,
  .fp-fields select {
    min-height: 48px;
    font-size: 16px;
    border-radius: 12px;
  }
  .fp-actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .fp-preview {
    font-size: 16px;
    border-radius: 12px;
  }

  /* Resources download row — full width on phone */
  .res-download-row .btn,
  .res-download-row a.btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  /* Global touch targets (all mobile, not only Android) */
  .zs-touch-target,
  .btn,
  .cta,
  .cf input,
  .cf select,
  .cf textarea,
  .pc-inq,
  .pc-add-cart {
    min-height: 44px;
  }
  html.android .zs-touch-target,
  html.android .btn,
  html.android .cta {
    min-height: 48px;
  }

  /* Insights sample CTA band */
  .insights-sample-band {
    margin-inline: calc(-1 * max(16px, env(safe-area-inset-left, 0px)));
    padding-inline: max(16px, env(safe-area-inset-left, 0px));
    border-radius: 0;
  }
  .insights-sample-band .hbtns {
    flex-direction: column;
    align-items: stretch;
  }
  .insights-sample-band .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    border-radius: 12px;
  }

  /* MENA hub */
  .mena-hero .mena-meta {
    border-radius: 14px;
    overflow: hidden;
  }
  .swim-path-cards {
    gap: 10px;
  }
  .swim-path {
    border-radius: 14px;
    padding: 18px 16px;
  }

  /* Product cards — cleaner mobile grid */
  .pcard {
    border-radius: 12px;
    border: 1px solid rgba(11, 12, 15, 0.06);
    box-shadow: 0 2px 12px -8px rgba(11, 12, 15, 0.12);
  }
  .pc-img {
    border-radius: 12px 12px 0 0;
  }

  /* Deal sheet table */
  .res-compare-row {
    padding: 12px 0;
    font-size: 13px;
    line-height: 1.45;
  }
  .res-compare-row span:first-child {
    font-weight: 600;
  }

  /* Nav CTA hidden — drawer has CTA */
  .nav-cta {
    display: none !important;
  }

  /* ===== iOS final polish ===== */
  html.ios {
    --zs-dock-row: 49px;
    --zs-dock-h: calc(var(--zs-dock-row) + env(safe-area-inset-bottom, 0px));
  }
  html.ios #site-nav {
    background: rgba(251, 250, 247, 0.82);
  }
  html.ios .zs-mobile-bar {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(190%) blur(22px);
    -webkit-backdrop-filter: saturate(190%) blur(22px);
  }
  html.ios .menu-row {
    box-shadow: 0 1px 0 rgba(11, 12, 15, 0.03);
  }

  /* ===== Android Material polish ===== */
  html.android {
    --zs-dock-row: 56px;
    --zs-dock-h: calc(var(--zs-dock-row) + env(safe-area-inset-bottom, 0px));
    --zs-android-surface: #fafafa;
    --zs-android-elev: 0 -2px 12px rgba(11, 12, 15, 0.12);
  }
  html.android #site-nav {
    background: var(--zs-android-surface);
    box-shadow: 0 1px 0 rgba(11, 12, 15, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  html.android .burger {
    border-radius: 50%;
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    background: transparent;
  }
  html.android .burger:active {
    background: rgba(11, 12, 15, 0.08);
  }
  html.android .nav-mobile-cta {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 18px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: none;
    box-shadow: 0 1px 3px rgba(11, 12, 15, 0.14);
  }
  html.android .nav-mobile-cta:active {
    box-shadow: none;
    transform: scale(0.98);
  }
  html.android .zs-mobile-bar {
    background: var(--zs-android-surface);
    border-top: 0;
    box-shadow: var(--zs-android-elev);
  }
  html.android .zs-mb-item {
    position: relative;
    min-height: 48px;
    border-radius: 16px;
    font-size: 11px;
    font-family: var(--body);
    letter-spacing: 0.01em;
  }
  html.android .zs-mb-item:active {
    opacity: 1;
    background: rgba(11, 12, 15, 0.06);
  }
  html.android .zs-mb-primary {
    color: var(--onyx);
    font-weight: 600;
  }
  html.android .zs-mb-item svg {
    width: 22px;
    height: 22px;
  }
  /* Android: bottom sheet drawer (not side panel) */
  html.android body.zs-mobile-nav-ready .menu.zs-drawer-portaled {
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    max-height: min(90dvh, calc(100dvh - var(--zs-mobile-header) - 8px));
    border-left: 0 !important;
    border-radius: 28px 28px 0 0 !important;
    box-shadow: 0 -8px 32px rgba(11, 12, 15, 0.18) !important;
    transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    visibility: hidden;
    padding-top: 8px !important;
    background: var(--zs-android-surface) !important;
  }
  html.android body.zs-mobile-nav-ready .menu.zs-drawer-portaled::before {
    content: "";
    display: block;
    width: 32px;
    height: 4px;
    border-radius: 999px;
    background: rgba(11, 12, 15, 0.2);
    margin: 6px auto 14px;
    flex-shrink: 0;
  }
  html.android body.zs-mobile-nav-ready .menu.zs-drawer-portaled.open {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  html.android body.zs-mobile-nav-ready .nav-overlay {
    top: 0 !important;
    background: rgba(11, 12, 15, 0.45);
  }
  html.android .menu-row {
    border-radius: 16px;
    margin-bottom: 8px;
    box-shadow: none;
    border: 0;
    background: #fff;
  }
  html.android body.zs-mobile-nav-ready .menu .drop .item {
    border-radius: 0;
    background: #fff;
  }
  html.android .menu-drawer-title {
    font-family: var(--body);
    font-size: 22px;
    font-weight: 500;
  }
  html.android .menu-drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(11, 12, 15, 0.06);
  }
  html.android .zs-touch-target {
    min-height: 48px;
  }
  html.android .btn,
  html.android .cta {
    min-height: 48px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  /* Hero typography breathing room */
  .page-hero h1,
  .manifesto-hero h1 {
    font-size: clamp(26px, 7.2vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.02em;
  }
  .page-hero .psub,
  .manifesto-hero .psub {
    font-size: 15px;
    line-height: 1.55;
    max-width: 36ch;
  }

  /* Section headers */
  .sintro {
    font-size: clamp(22px, 5.8vw, 28px);
    max-width: 18ch;
  }

  /* Contact trust pills row */
  .home-trust-rail-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 8px;
    margin-inline: calc(-1 * max(16px, env(safe-area-inset-left, 0px)));
    padding-inline: max(16px, env(safe-area-inset-left, 0px));
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .home-trust-rail-inner::-webkit-scrollbar {
    display: none;
  }
  .home-trust-pill {
    flex: 0 0 auto;
    min-width: 140px;
    scroll-snap-align: start;
    border-radius: 12px;
  }

  /* Footer stack on phone */
  .f-shell .f-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .f-col a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* PDP sticky overlap with mobile bar */
  body.has-mobile-bar[data-page="pdp"] .pdp-info {
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
  }
  body.has-mobile-bar[data-page="pdp"] #pdp-sticky-bar,
  body.has-mobile-bar[data-page="pdp"] .pdp-sticky-bar {
    bottom: calc(var(--zs-mobile-footer-stack) + 8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .zs-mobile-bar,
  .res-card,
  .pcard {
    transition: none !important;
  }
}

/* util-kill-desktop — Rams: one less chrome strip; email lives in footer/contact */
@media (min-width:1001px){
  #site-nav .util{display:none!important}
  :root{--zs-util-h:0px}
}
