.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(22,22,22,.12);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.nav-toggle:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle-lines span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: currentColor;
  border-radius: 999px;
}
.nav-account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(22,22,22,.12);
  color: var(--ink2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s;
}
.nav-account-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 240;
  background: rgba(22,22,22,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 250;
  width: min(420px, 88vw);
  height: 100vh;
  background: var(--cream);
  color: var(--ink);
  transform: translateX(100%);
  transition: transform .32s ease;
  box-shadow: -12px 0 40px rgba(22,22,22,.16);
  display: flex;
  flex-direction: column;
}
body.nav-open {
  overflow: hidden;
}
body.nav-open .nav-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}
body.nav-open .nav-drawer {
  transform: translateX(0);
}
.nav-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px var(--gut) 20px;
  border-bottom: 1px solid rgba(22,22,22,.08);
}
.nav-drawer-top img {
  height: 72px;
  width: auto;
  object-fit: contain;
}
.nav-drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(22,22,22,.12);
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.nav-drawer-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.nav-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px var(--gut) 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.nav-drawer-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(22,22,22,.08);
}
.nav-drawer-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(22,22,22,.45);
}
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav-drawer-links a {
  font-family: var(--font-h);
  font-size: 24px;
  line-height: 1.12;
  color: var(--ink);
  transition: color .2s;
}
.nav-drawer-links a:hover {
  color: var(--red);
}
.nav-drawer-utility {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.nav-drawer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 100px;
  border: 1px solid rgba(22,22,22,.12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: border-color .2s, color .2s, background .2s;
}
.nav-drawer-chip:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.nav-drawer-chip .cart-badge {
  position: static;
  width: auto;
  height: auto;
  min-width: 16px;
  padding: 1px 5px;
  border-radius: 999px;
  line-height: 1.2;
}
.nav-drawer-note {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(22,22,22,.6);
}
.nav-drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-drawer-contact a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
}

@media (max-width: 1180px) {
  .nav {
    grid-template-columns: 1fr auto auto !important;
    height: 92px !important;
  }
  .nav > .nav-links,
  .nav-r > .nav-links {
    display: none !important;
  }
  .nav-logo {
    justify-self: center;
  }
  .nav-logo img {
    height: 76px !important;
  }
  .nav-r {
    gap: 10px !important;
  }
  .nav-r > .nav-account-link {
    margin-right: 0 !important;
  }
  .nav-toggle {
    display: inline-flex;
  }

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

  .feat-grid,
  .story-grid,
  .founder-grid,
  .corp-hero-grid,
  .conc-hero-grid,
  .contact-grid,
  .corp-contact-grid,
  .inquiry-grid,
  .subscribe-grid,
  .pd-grid,
  .post-body-wrap,
  .faq-cols,
  .post-comments-grid,
  .pd-reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .pd-gallery,
  .post-sidebar {
    position: static !important;
    top: auto !important;
  }

  .values-grid,
  .art-grid,
  .testi-grid,
  .process-grid,
  .timeline-grid,
  .brand-boxes,
  .more-grid,
  .related-grid,
  .quick-grid,
  .products-grid,
  .hiw-grid,
  .addons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

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

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

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

  .filter-wrap {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .filter-pill {
    flex: 0 0 auto;
  }
}

@media (max-width: 900px) {
  .announce {
    font-size: 11px !important;
    line-height: 1.55;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .values-grid,
  .art-grid,
  .testi-grid,
  .process-grid,
  .timeline-grid,
  .brand-boxes,
  .more-grid,
  .related-grid,
  .products-grid,
  .hiw-grid,
  .addons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .tiers-grid,
  .hiw-steps,
  .quick-grid {
    grid-template-columns: 1fr !important;
  }

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

  .post-meta,
  .post-comments-head,
  .pd-reviews-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .post-img-half,
  .form-row,
  .field-row,
  .form-row.cols-2,
  .pd-form-row {
    grid-template-columns: 1fr !important;
  }

  .post-cta {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .corp-stats,
  .corp-hero-actions,
  .thc-hero-btns,
  .faq-cta-btns {
    justify-content: flex-start !important;
  }

  .corp-contact-info,
  .inquiry-panel,
  .subscribe-panel {
    padding-top: 0 !important;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .btn {
    padding: 14px 20px !important;
    letter-spacing: .14em !important;
  }

  .nav {
    grid-template-columns: 1fr auto !important;
    height: 132px !important;
    gap: 12px !important;
  }
  .nav-logo {
    justify-self: start;
  }
  .nav-logo img {
    height: 118px !important;
  }
  .nav-r {
    justify-self: end;
  }
  .nav-r > .nav-account-link,
  .nav-r > .cart-w {
    display: none !important;
  }
  .nav-toggle,
  .nav-drawer-close {
    width: 42px;
    height: 42px;
  }
  .nav-drawer {
    width: min(360px, 100vw);
  }
  .nav-drawer-top img {
    height: 76px;
  }
  .nav-drawer-links a {
    font-size: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding-top: 52px !important;
    padding-bottom: 36px !important;
  }
  .footer-top > div,
  .footer-top > section,
  .footer-top > article {
    min-width: 0 !important;
  }
  .f-logo img {
    height: 92px !important;
    margin-left: 0 !important;
  }
  .f-soc {
    flex-wrap: wrap !important;
  }
  .footer-bot,
  .f-legal {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .f-nl-form {
    max-width: 100% !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: stretch !important;
  }
  .f-nl-i {
    width: 100% !important;
    border-right: 1px solid rgba(22,22,22,.15) !important;
  }
  .f-nl-b {
    width: 100% !important;
    justify-content: center !important;
  }
  .f-desc,
  .f-links a,
  .f-nl-note,
  .f-copy,
  .f-legal a {
    font-size: 12px !important;
    line-height: 1.7 !important;
  }

  .page-hero,
  .jh,
  .ph,
  .faq-hero,
  .shop-hero,
  .cart-hero,
  .checkout-hero,
  .corp-hero,
  .conc-hero,
  .post-hero {
    padding-top: 56px !important;
  }

  .page-hero h1,
  .faq-hero h1,
  .shop-hero h1,
  .post-hero-title,
  .corp-hero h1,
  .conc-hero h1 {
    font-size: clamp(34px, 11vw, 48px) !important;
  }

  .story-grid,
  .jh-grid,
  .founder-grid,
  .feat-grid,
  .contact-grid,
  .corp-contact-grid,
  .inquiry-grid,
  .subscribe-grid,
  .faq-cols,
  .more-grid,
  .related-grid,
  .values-grid,
  .testi-grid,
  .quick-grid,
  .art-grid,
  .timeline-grid,
  .brand-boxes,
  .process-grid,
  .hiw-grid,
  .addons-grid {
    grid-template-columns: 1fr !important;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .occ-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  .occ-card {
    min-height: 160px !important;
    padding: 20px 14px 16px !important;
  }
  .occ-name {
    font-size: 16px !important;
  }

  .filter-bar {
    padding: 18px 0 !important;
  }

  .shop-hero {
    min-height: auto !important;
  }

  .jh {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .jh-grid {
    gap: 28px !important;
  }
  .jh-visual {
    width: 100% !important;
    justify-self: stretch !important;
  }
  .jh-img {
    aspect-ratio: 4 / 3 !important;
  }

  .post-hero-img,
  .ec--feat .ec-img {
    aspect-ratio: 4 / 3 !important;
  }

  .post-content blockquote,
  .post-pullquote,
  .post-cta,
  .summary-card,
  .checkout-summary,
  .pd-custom,
  .pd-review-form-card,
  .post-comment-form-card,
  .inquiry-panel,
  .subscribe-panel {
    padding: 22px !important;
  }

  .pd-atc,
  .corp-hero-actions,
  .thc-hero-btns,
  .faq-cta-btns,
  .form-actions {
    width: 100%;
  }
  .pd-atc .btn,
  .corp-hero-actions .btn,
  .thc-hero-btns .btn,
  .faq-cta-btns .btn,
  .post-cta .btn,
  .form-actions .btn {
    width: 100%;
    justify-content: center !important;
  }

  .masonry {
    columns: 1 !important;
  }
}

@media (max-width: 480px) {
  .products-grid,
  .more-grid,
  .related-grid,
  .brand-boxes,
  .timeline-grid,
  .testi-grid {
    grid-template-columns: 1fr !important;
  }

  .occ-grid,
  .hiw-grid,
  .addons-grid {
    grid-template-columns: 1fr !important;
  }
}
