:root {
  --bg: #f6f7f8;
  --surface: #ffffff;
  --ink: #121212;
  --muted: #666d74;
  --border: #e3e6ea;
  --product-bg: #f2f4f7;
  --dark: #101010;
  --container: 1280px;
  --radius: 14px;
  --radius-lg: 18px;
  --pill: 999px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #fbfcfd 0, #f2f4f6 220px, #f6f7f8 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

html.is-loading,
html.is-loading body {
  overflow: hidden;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: -999px;
  z-index: 9999;
  background: #111;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
}

.skip-link:focus {
  left: 10px;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #fff;
  display: grid;
  place-items: center;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#preloader img {
  width: clamp(120px, 16vw, 200px);
  animation: breathe 1.8s ease-in-out infinite;
}

html.is-loaded #preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.announce {
  margin: 0;
  min-height: 38px;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  border-bottom: 1px solid #080808;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  padding: 6px 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.top-nav {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  position: relative;
}

.menu-btn {
  display: none;
  height: 40px;
  width: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  place-items: center;
}

.menu-icon {
  width: 18px;
  height: 14px;
  display: grid;
  align-content: space-between;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #111;
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: Barlow, Inter, sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-right {
  justify-content: flex-end;
  justify-self: end;
}

.nav-left a,
.nav-right a {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #232323;
}

.nav-left a,
.nav-right a {
  position: relative;
  padding: 4px 0;
}

.nav-left a::after,
.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #111;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 390px);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border-left: 1px solid #d9dde2;
  padding: calc(16px + env(safe-area-inset-top)) 18px 18px;
  z-index: 260;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 250;
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 10px 2px;
  border-bottom: 1px solid #e7e9ec;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #16191d;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.drawer a:first-child {
  border-top: 1px solid #e7e9ec;
}

.drawer a:hover {
  color: #000;
  border-color: #cfd3d8;
}

main {
  padding-bottom: 20px;
}

.section-block,
.lifestyle,
#reviews,
#faq,
#newsletter,
footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

#collection,
#reviews,
#faq,
#newsletter,
#why {
  scroll-margin-top: 110px;
}

#collection.container {
  width: min(1880px, calc(100% - 12px));
}

.hero-feature {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #0f1011;
  overflow: hidden;
  position: relative;
  min-height: clamp(280px, 50vh, 470px);
}

.hero-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-feature--noimage {
  min-height: clamp(130px, 18vh, 200px);
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #121315, #1a1d21);
}

.hero-feature--landing {
  min-height: 0;
  aspect-ratio: 614 / 240;
  background: #f3f4f6;
}

.hero-feature--landing img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(20px, 4vw, 34px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 70%);
  color: #fff;
}

.hero-overlay--plain {
  position: static;
  background: transparent;
  padding: 0;
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-overlay h1 {
  margin: 10px 0 14px;
  font-family: Barlow, Inter, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.05;
  max-width: 14ch;
}

.section-block {
  padding-top: clamp(22px, 3.4vw, 36px);
}

.section-head {
  margin-bottom: 14px;
}

.label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #2e343b;
}

.section-head h2,
.why h2 {
  margin: 0;
  font-family: Barlow, Inter, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.12;
}

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

.feature-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 280px;
  position: relative;
  contain: layout paint;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

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

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  contain: layout paint;
}


.product-card:hover {
  transform: translateY(-3px);
  border-color: #cfd5db;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.product-media {
  position: relative;
  overflow: hidden;
  background: #f6f7f8;
  aspect-ratio: 4 / 5;
  contain: paint;
  isolation: isolate;
  touch-action: pan-y;
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s linear;
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.product-media .img-b {
  opacity: 0;
}

/* Keep hoodie sleeves visible on front/back hover swap */
.product-card--hoodie .product-media img {
  object-fit: contain;
  object-position: center;
  transform: none;
}

.product-card--new-hoodie .product-media img {
  object-fit: contain;
  object-position: center 48%;
  transform: scale(1.17);
}

.product-card--new-sweatpant .product-media img {
  object-fit: contain;
  object-position: center;
  transform: scale(1.30);
}

.product-media--blank {
  display: grid;
  place-items: center;
  background: #f6f7f8;
}

.placeholder-label {
  border: 1px solid #cfd6df;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a5562;
}

.product-card:hover .img-a {
  opacity: 0;
}

.product-card:hover .img-b {
  opacity: 1;
}

.product-media.is-back .img-a {
  opacity: 0;
}

.product-media.is-back .img-b {
  opacity: 1;
}

.badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  border-radius: var(--pill);
  background: #111;
  color: #fff;
  padding: 6px 8px;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.product-body {
  padding: 10px 10px 12px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid var(--border);
  min-height: 84px;
  display: grid;
  align-content: center;
}

.product-body h3 {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-body p {
  margin: 7px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.lifestyle {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  margin-inline: auto;
}

.lifestyle figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #eceff2;
  aspect-ratio: 3 / 4;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  contain: layout paint;
}

.lifestyle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.lifestyle figure:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.lifestyle figure:hover img {
  transform: scale(1.012);
}

.why {
  max-width: 820px;
}

.why p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.community-grid {
  max-width: 1020px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-inline: auto;
}

.community-grid figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #edf0f2;
  aspect-ratio: 3 / 4;
  contain: layout paint;
}

.community-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-note {
  text-align: center;
  color: var(--muted);
  margin-top: 10px;
  font-size: 0.88rem;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 12px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.newsletter {
  max-width: 760px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  display: grid;
  gap: 10px;
  margin-inline: auto;
}

.newsletter__row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.newsletter input {
  border: 0;
  border-right: 1px solid var(--border);
  outline: 0;
  border-radius: 0;
  min-height: 50px;
  padding: 0 14px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #1a1f24;
  text-align: left;
}

.newsletter input::placeholder {
  color: #8a919a;
  font-weight: 500;
}

#newsletter {
  text-align: center;
}

#newsletter .section-head {
  display: grid;
  place-items: center;
}

#newsletter small {
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #6f7780;
  text-align: center;
}

small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.newsletter-success {
  margin: 0;
  border: 1px solid #cfe2c9;
  background: #edf8e8;
  color: #2f5b28;
  border-radius: 10px;
  padding: 12px;
}

.form-error {
  margin: 0;
  color: #b10f22;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  min-height: 1.1em;
  grid-column: 1 / -1;
}

.newsletter .btn {
  min-height: 50px;
  align-self: stretch;
  border: 0;
  border-left: 1px solid #111;
  border-radius: 0;
  padding-inline: 20px;
  min-width: 124px;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.btn {
  border: 1px solid #111;
  background: #111;
  color: #fff;
  border-radius: var(--pill);
  min-height: 44px;
  padding: 11px 18px;
  font: 700 0.84rem/1 Inter, sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #000;
  transform: translateY(-1px);
}

@media (hover: none) and (pointer: coarse) {
  .product-card:hover {
    transform: none;
    border-color: var(--border);
    box-shadow: none;
  }

  .product-card:hover .img-a {
    opacity: 1;
  }

  .product-card:hover .img-b {
    opacity: 0;
  }

  .lifestyle figure:hover {
    transform: none;
    box-shadow: none;
  }

  .lifestyle figure:hover img {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }

  .site-header,
  .drawer-backdrop,
  .modal-backdrop {
    backdrop-filter: none !important;
  }

  .product-media img {
    will-change: auto;
    transform: none;
    backface-visibility: visible;
  }
}

@media (hover: hover) and (pointer: fine) {
  .product-card,
  .lifestyle figure {
    will-change: transform;
  }
}

footer {
  margin-top: 24px;
  padding: 30px 20px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: #6f7780;
}

footer nav {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

footer a {
  text-decoration: underline;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
}

.modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(13, 16, 22, 0.72), rgba(0, 0, 0, 0.6));
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 92vw);
  max-height: 88vh;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid #dfe4ea;
  background: #fff;
  padding: 24px 22px 20px;
  box-shadow: 0 28px 70px rgba(10, 14, 20, 0.24), 0 2px 10px rgba(0, 0, 0, 0.08);
}

.modal-panel--offer {
  width: min(560px, 92vw);
  border-radius: 18px;
  padding: 26px 22px 20px;
  background: #ffffff;
}

.modal-panel--offer h3 {
  margin: 0 0 10px;
  font-family: Barlow, Inter, sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: 0;
  line-height: 1.08;
}

.offer-sub {
  margin: 0 0 16px;
  color: #5e6771;
  line-height: 1.52;
  font-size: 0.9rem;
  max-width: 42ch;
}

#klaviyoPopup .newsletter {
  max-width: 100%;
  margin: 0;
}

#klaviyoPopup .newsletter__row--offer {
  grid-template-columns: 1fr;
  gap: 9px;
  border: 0;
  background: transparent;
}

#klaviyoPopup .newsletter__row--offer input {
  border: 1px solid #d8dee6;
  border-radius: 12px;
  min-height: 50px;
  padding-inline: 14px;
  font-size: 0.9rem;
  background: #fff;
}

#klaviyoPopup .btn--offer {
  min-height: 50px;
  border-radius: 12px;
  border: 1px solid #111;
  letter-spacing: 0.08em;
}

.offer-fineprint {
  margin: 12px 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #7a818a;
}

.modal-panel h3 {
  margin: 0 0 8px;
  font-family: Barlow, Inter, sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
}

.modal-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid #dde2e8;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease;
}

.modal-close:hover {
  border-color: #bcc4cf;
  color: #111;
}

.contact-form {
  margin-top: 14px;
  display: grid;
  gap: 11px;
  max-width: 560px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #303742;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d8dee6;
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  font-size: 0.92rem;
  color: #1b2129;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: #aeb7c2;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.05);
}

.contact-form .btn {
  min-height: 50px;
  border-radius: 12px;
}

.form-success {
  margin: 0;
  color: #1f5a2f;
  background: #edf8ef;
  border: 1px solid #cde7d3;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.82rem;
  line-height: 1.4;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  background: #111;
  color: #fff;
  border-radius: var(--pill);
  padding: 10px 14px;
  font-size: 0.82rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 600;
}

.toast.is-shown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  #collection.container {
    width: min(1600px, calc(100% - 8px));
  }

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

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


  .top-nav {
    grid-template-columns: auto 1fr;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 700px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  #collection.container {
    width: min(var(--container), calc(100% - 24px));
  }

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


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

  .lifestyle {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 440px;
  }

  .lifestyle figure {
    border-radius: 12px;
    aspect-ratio: 3 / 4;
  }

  .community-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 440px;
  }

  .community-grid figure {
    border-radius: 12px;
    aspect-ratio: 3 / 4;
  }

  .announce {
    min-height: 34px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    padding: 6px 10px;
  }

  .drawer {
    width: min(88vw, 380px);
    padding: 18px 16px;
  }

  .hero-feature {
    min-height: clamp(230px, 38vh, 310px);
  }

  .hero-feature--landing {
    min-height: 0;
    aspect-ratio: 614 / 240;
  }

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

  .top-nav {
    min-height: 64px;
  }

  .brand {
    font-size: 1.05rem;
    letter-spacing: 0.2em;
  }

  .site-header {
    backdrop-filter: none;
  }

  .product-card--new-hoodie .product-media img {
    transform: scale(1.12);
  }

  .product-card--new-sweatpant .product-media img {
    transform: scale(1.24);
  }

  .section-block {
    padding-top: 18px;
  }

  #collection,
  #reviews,
  #faq,
  #newsletter,
  #why {
    scroll-margin-top: 86px;
  }

  .product-body {
    min-height: 74px;
    padding: 9px 8px 10px;
  }

  .product-body h3 {
    font-size: 0.8rem;
  }

  .product-body p {
    font-size: 0.85rem;
    margin-top: 5px;
  }

  .newsletter {
    border-radius: 14px;
    padding: 10px;
    gap: 10px;
  }

  .newsletter__row {
    background: transparent;
    border: 0;
    border-radius: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
  }

  .newsletter input {
    border: 1px solid var(--border);
    border-radius: 12px;
    min-height: 46px;
  }

  .newsletter .btn {
    border: 1px solid #111;
    border-radius: 12px;
    min-height: 46px;
    min-width: 0;
  }

  .newsletter input {
    min-height: 46px;
    text-align: center;
    font-size: 0.92rem;
  }

  .newsletter .btn {
    width: 100%;
    min-height: 46px;
  }

  .modal-panel--offer {
    border-radius: 14px;
    padding: 20px 14px 14px;
  }

  .offer-sub {
    font-size: 0.88rem;
  }
}

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

  .brand {
    font-size: 0.96rem;
    letter-spacing: 0.18em;
  }

  .announce {
    font-size: 0.54rem;
  }

  #collection,
  #reviews,
  #faq,
  #newsletter,
  #why {
    scroll-margin-top: 80px;
  }
}

/* ===== Premium Collection Overhaul (Represent-inspired) ===== */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #111111;
  --muted: #60666d;
  --border: #dedede;
  --product-bg: #f2f2f2;
  --radius: 0;
  --radius-lg: 0;
  --shadow: none;
}

body {
  background: var(--bg);
  color: var(--ink);
}

.announce {
  min-height: 40px;
  border-bottom: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 0.64rem;
  letter-spacing: 0.17em;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.top-nav {
  min-height: 70px;
}

.brand {
  font-family: Barlow, Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.nav-left a,
.nav-right a {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.section-block {
  padding-top: clamp(26px, 3.2vw, 42px);
}

.collection-head {
  margin: 0 0 18px;
  padding: 0 2px;
}

.collection-kicker {
  margin: 0 0 10px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5b626a;
}

.collection-head__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.collection-head h1 {
  margin: 0;
  font-family: Barlow, Inter, sans-serif;
  font-size: clamp(1.24rem, 2.4vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.06;
}

.collection-count {
  margin: 0;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #5e656d;
  white-space: nowrap;
  font-weight: 700;
}

.collection-copy {
  margin: 12px 0 0;
  max-width: 72ch;
  color: #5f666f;
  font-size: 0.88rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.collection-toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 14px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--border);
}

.collection-toolbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--border);
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.62rem;
  font-weight: 700;
  color: #2a2f35;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.collection-toolbar a:hover,
.collection-toolbar a.is-active {
  border-color: #111;
  color: #111;
  background: #fcfcfc;
}

.section-head {
  margin-bottom: 16px;
}

.label {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  color: #525961;
}

.section-head h2,
.why h2 {
  font-family: Barlow, Inter, sans-serif;
  font-size: clamp(1.22rem, 2vw, 1.52rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

#collection.container {
  width: 100%;
}

.products-grid {
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-card {
  border: 1px solid var(--border);
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  transition: border-color 0.22s ease, background 0.22s ease;
}

.product-card > a {
  display: block;
  height: 100%;
}

.product-card:hover {
  transform: none;
  box-shadow: none;
  border-color: #cfd3d8;
  background: #fcfcfc;
}

.product-media {
  border-radius: 0;
  background: var(--product-bg);
}

.product-media img {
  transition: opacity 0.22s ease;
}

.badge {
  display: none;
}

.product-body {
  min-height: 76px;
  padding: 10px 14px 11px;
  border-top: 1px solid var(--border);
  background: #fff;
  text-align: left;
}

.product-body h3 {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: none;
  line-height: 1.32;
}

.product-meta {
  margin-top: 6px !important;
  font-size: 0.76rem !important;
  color: #747b83;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.product-price {
  margin-top: 9px !important;
  font-size: 1rem !important;
  color: #111;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.lifestyle,
.community-grid {
  gap: 12px;
}

.lifestyle figure,
.community-grid figure {
  border-radius: 0;
  border: 1px solid var(--border);
  background: var(--product-bg);
}

.lifestyle figure:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.lifestyle figure:hover img {
  transform: scale(1.015);
}

.why p {
  font-size: 0.99rem;
  line-height: 1.72;
  color: #5d636a;
}

.faq details {
  border-radius: 0;
  border: 1px solid var(--border);
  background: #fff;
}

.faq summary {
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.newsletter {
  max-width: 840px;
}

.newsletter__row {
  border: 1px solid #d6d9de;
  border-radius: 0;
  background: #fff;
}

.newsletter input {
  min-height: 52px;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.newsletter .btn {
  border-left: 1px solid #111;
  min-height: 52px;
  min-width: 132px;
}

.btn {
  border-radius: 0;
  font-size: 0.72rem;
  letter-spacing: 0.19em;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

footer {
  border-top: 1px solid var(--border);
  color: #5f666e;
}

.modal-panel,
.modal-panel--offer {
  border-radius: 0;
  box-shadow: none;
}

.modal-close {
  border-radius: 0;
}

.products-grid .product-card.reveal:nth-child(1) { transition-delay: 0.02s; }
.products-grid .product-card.reveal:nth-child(2) { transition-delay: 0.05s; }
.products-grid .product-card.reveal:nth-child(3) { transition-delay: 0.08s; }
.products-grid .product-card.reveal:nth-child(4) { transition-delay: 0.11s; }
.products-grid .product-card.reveal:nth-child(5) { transition-delay: 0.14s; }
.products-grid .product-card.reveal:nth-child(6) { transition-delay: 0.17s; }

@media (max-width: 900px) {
  .collection-head__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 1024px) {
  #collection.container {
    width: 100%;
  }

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

@media (max-width: 700px) {
  #collection.container {
    width: min(var(--container), calc(100% - 14px));
  }

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

  .announce {
    min-height: 32px;
    font-size: 0.52rem;
    letter-spacing: 0.14em;
    padding: 5px 10px;
  }

  .site-header {
    backdrop-filter: blur(10px);
  }

  .top-nav {
    min-height: 58px;
  }

  .menu-btn {
    width: 40px;
    height: 36px;
    border-radius: 8px;
    border-color: #d7dbe0;
    background: rgba(255, 255, 255, 0.95);
  }

  .menu-icon {
    width: 16px;
    height: 12px;
  }

  .menu-icon span {
    height: 1.5px;
    background: #15181c;
  }

  .brand {
    font-size: 1.08rem;
    letter-spacing: 0.22em;
  }

  .section-block {
    padding-top: 14px;
  }

  .product-media {
    aspect-ratio: 3 / 4;
    background: #f3f3f3;
  }

  .product-body {
    min-height: 68px;
    padding: 9px 10px 10px;
  }

  .product-body h3 {
    font-size: 0.74rem;
    line-height: 1.28;
    font-weight: 700;
  }

  .product-price {
    margin-top: 7px !important;
    font-size: 0.9rem !important;
    line-height: 1;
  }

  .product-meta {
    margin-top: 5px !important;
    font-size: 0.68rem !important;
    color: #767d85;
    font-weight: 600 !important;
  }

  .newsletter__row {
    border: 0;
    background: transparent;
  }

  .newsletter input,
  .newsletter .btn {
    border: 1px solid var(--border);
    border-radius: 0;
  }

  .lifestyle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: none;
  }

  .lifestyle figure {
    aspect-ratio: 3 / 4;
  }

  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: none;
  }

  .community-grid figure {
    aspect-ratio: 3 / 4;
  }

  .community-note {
    margin-top: 8px;
    font-size: 0.75rem;
  }

  .faq details {
    padding: 11px 10px;
  }

  .faq summary {
    font-size: 0.8rem;
  }

  .drawer {
    width: min(90vw, 390px);
    padding: calc(14px + env(safe-area-inset-top)) 16px 16px;
  }

  .drawer a {
    min-height: 46px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  footer {
    padding: 26px 14px 32px;
  }

}


/* Mobile Header System - Unified */
@media (max-width: 860px) {
  .announce {
    min-height: 34px;
    padding: 6px 10px;
    font-size: 0.56rem;
    letter-spacing: 0.12em;
    font-weight: 700;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e8eaed;
    backdrop-filter: blur(10px);
  }

  .top-nav {
    min-height: 60px;
    grid-template-columns: 40px 1fr;
    gap: 8px;
  }

  .menu-btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .menu-btn:focus-visible {
    outline: 2px solid #111;
    outline-offset: 2px;
    border-radius: 6px;
  }

  .menu-icon {
    width: 18px;
    height: 14px;
  }

  .menu-icon span {
    height: 1.6px;
    border-radius: 999px;
    background: #121212;
  }

  .brand {
    font-size: 1.12rem;
    letter-spacing: 0.24em;
    font-weight: 800;
    line-height: 1;
  }

  .drawer {
    width: min(90vw, 390px);
    padding: calc(14px + env(safe-area-inset-top)) 18px 16px;
    background: #fff;
    border-left: 1px solid #e9ebee;
  }

  .drawer a {
    min-height: 48px;
    padding: 11px 0;
    font-size: 0.74rem;
    letter-spacing: 0.13em;
    font-weight: 700;
    border-bottom-color: #eceff2;
  }

  .drawer-backdrop {
    background: rgba(12, 14, 16, 0.34);
    backdrop-filter: blur(2px);
  }
}

@media (max-width: 420px) {
  .top-nav {
    min-height: 56px;
    grid-template-columns: 36px 1fr;
  }

  .menu-btn {
    width: 34px;
    height: 34px;
  }

  .menu-icon {
    width: 17px;
    height: 13px;
  }

  .brand {
    font-size: 1.02rem;
    letter-spacing: 0.2em;
  }
}

/* Designer Polish Pass */
:root {
  --designer-border: #e5e5e5;
  --designer-bg: #f3f3f3;
}

.site-header {
  backdrop-filter: blur(7px) saturate(110%);
}

.brand {
  font-size: 1.56rem;
  letter-spacing: 0.34em;
}

.nav-left a,
.nav-right a {
  letter-spacing: 0.14em;
  color: #1b1b1b;
}

.products-grid {
  border-right-color: var(--designer-border);
  border-bottom-color: var(--designer-border);
}

.product-card {
  border-color: var(--designer-border);
  background: #fff;
  transition: border-color 0.24s ease, background 0.24s ease;
}

.product-card:hover {
  border-color: #c9ced4;
  background: #fff;
}

.product-media {
  background: var(--designer-bg);
}

.product-media img {
  transition: opacity 0.22s ease;
}

.product-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  min-height: 86px;
  padding: 12px 14px 13px;
}

.product-body h3 {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  line-height: 1.3;
  letter-spacing: 0.01em;
  font-weight: 650;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  margin-top: 0 !important;
  font-size: 0.75rem !important;
  color: #727980;
  font-weight: 500 !important;
}

.product-price {
  margin-top: 2px !important;
  font-size: 0.98rem !important;
  font-weight: 650 !important;
  color: #111;
  font-variant-numeric: tabular-nums;
}

.drawer a {
  letter-spacing: 0.12em;
}

@media (max-width: 700px) {
  .brand {
    font-size: 1.04rem;
    letter-spacing: 0.22em;
  }

  .product-body {
    min-height: 78px;
    padding: 10px 10px 11px;
    gap: 3px;
  }

  .product-body h3 {
    font-size: 0.74rem;
    line-height: 1.28;
  }

  .product-meta {
    font-size: 0.66rem !important;
  }

  .product-price {
    font-size: 0.86rem !important;
    margin-top: 1px !important;
  }

  .drawer a {
    font-size: 0.72rem;
    letter-spacing: 0.11em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* High-Visibility Designer Pass */
:root {
  --border: #e1e1e1;
  --product-bg: #f0f0f0;
}

body {
  background: #fff;
}

.announce {
  min-height: 36px;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.site-header {
  background: rgba(255, 255, 255, 0.985);
  border-bottom: 1px solid #dcdcdc;
}

.top-nav {
  min-height: 72px;
}

.brand {
  font-size: 1.34rem;
  letter-spacing: 0.28em;
  font-weight: 800;
}

.nav-left a,
.nav-right a {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}

#collection.container {
  width: 100%;
}

.products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-card {
  border: 1px solid var(--border);
  border-right: 0;
  border-bottom: 0;
  background: #fff;
}

.product-card:hover {
  background: #fbfbfb;
  border-color: #d2d2d2;
}

.product-media {
  background: var(--product-bg);
  aspect-ratio: 4 / 5;
}

.product-body {
  min-height: 96px;
  padding: 14px 14px 15px;
  gap: 6px;
  border-top: 1px solid var(--border);
}

.product-body h3 {
  font-size: clamp(0.86rem, 1.15vw, 0.96rem);
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 700;
}

.product-meta {
  font-size: 0.78rem !important;
  color: #6b7178;
  font-weight: 500 !important;
  margin-top: 0 !important;
}

.product-price {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  margin-top: 2px !important;
  color: #111;
}

.section-head h2,
.why h2 {
  font-size: clamp(1.18rem, 2vw, 1.46rem);
  letter-spacing: 0.08em;
}

.why p {
  max-width: 68ch;
  color: #5b626a;
}

.drawer a {
  min-height: 50px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

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

@media (max-width: 700px) {
  .top-nav {
    min-height: 58px;
  }

  .brand {
    font-size: 1.02rem;
    letter-spacing: 0.22em;
  }

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

  .product-body {
    min-height: 82px;
    padding: 11px 10px 12px;
    gap: 4px;
  }

  .product-body h3 {
    font-size: 0.75rem;
  }

  .product-meta {
    font-size: 0.67rem !important;
  }

  .product-price {
    font-size: 0.88rem !important;
  }
}

/* Home: reactive transparent header */
.site-header{
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  transition: background .24s ease, border-color .24s ease, backdrop-filter .24s ease, box-shadow .24s ease;
}

.site-header .top-nav{
  background: transparent !important;
}

.site-header.is-scrolled{
  background: rgba(255,255,255,.96) !important;
  border-bottom: 1px solid #dfe3e8 !important;
  backdrop-filter: blur(10px) saturate(114%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(114%) !important;
  box-shadow: 0 8px 22px rgba(17, 21, 28, 0.08) !important;
}

/* Final Premium Refinement Pass */
:root{
  --border:#e3e5e8;
  --product-bg:#f3f4f5;
}

body{
  background:#fff !important;
  color:#111 !important;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.top-nav{
  min-height:66px !important;
}

.brand{
  font-size:clamp(1.18rem,1.3vw,1.3rem) !important;
  letter-spacing:.24em !important;
  font-weight:800 !important;
}

.nav-left a,
.nav-right a{
  font-size:.67rem !important;
  letter-spacing:.13em !important;
  font-weight:650 !important;
  color:#1d2126 !important;
}

.announce{
  min-height:36px !important;
  font-size:.62rem !important;
  letter-spacing:.14em !important;
}

#collection.container{
  width:100% !important;
}

.products-grid{
  gap:0 !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  border-right:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.product-card{
  border:1px solid var(--border) !important;
  border-right:0 !important;
  border-bottom:0 !important;
  border-radius:0 !important;
  background:#fff !important;
  box-shadow:none !important;
  transform:none !important;
  transition:background .2s ease,border-color .2s ease !important;
}

.product-card:hover{
  transform:none !important;
  box-shadow:none !important;
  background:#fcfcfc !important;
  border-color:#d3d8de !important;
}

.product-media{
  background:var(--product-bg) !important;
  aspect-ratio:4/5 !important;
}

.product-body{
  min-height:90px !important;
  padding:12px 14px 14px !important;
  gap:4px !important;
  text-align:left !important;
  align-content:start !important;
}

.product-body h3{
  font-size:clamp(.84rem,.95vw,.94rem) !important;
  line-height:1.28 !important;
  font-weight:650 !important;
  letter-spacing:0 !important;
  text-transform:none !important;
  color:#111318 !important;
}

.product-meta{
  margin-top:0 !important;
  color:#727983 !important;
  font-size:.76rem !important;
  font-weight:500 !important;
  letter-spacing:0 !important;
  line-height:1.34 !important;
}

.product-price{
  margin-top:4px !important;
  font-size:1rem !important;
  font-weight:650 !important;
  letter-spacing:0 !important;
  color:#111318 !important;
}

.lifestyle,
.community-grid{
  gap:10px !important;
}

.lifestyle figure,
.community-grid figure{
  border-radius:0 !important;
  border-color:var(--border) !important;
}

.newsletter{
  max-width:840px !important;
}

.newsletter__row{
  border-radius:0 !important;
  border-color:#d7dce2 !important;
}

.newsletter input{
  font-size:.88rem !important;
  color:#171c22 !important;
}

.newsletter .btn{
  min-width:128px !important;
  min-height:50px !important;
}

.btn{
  border-radius:0 !important;
  letter-spacing:.13em !important;
  font-size:.72rem !important;
  font-weight:700 !important;
}

.modal-panel,
.modal-panel--offer{
  border-radius:10px !important;
  border-color:#dde2e8 !important;
  box-shadow:0 18px 38px rgba(10,14,20,.16),0 2px 10px rgba(0,0,0,.08) !important;
}

.drawer{
  border-left:1px solid #d9dde3 !important;
  background:#fff !important;
}

.drawer a{
  min-height:50px !important;
  letter-spacing:.12em !important;
  color:#171b20 !important;
}

@media (max-width:1024px){
  .products-grid{
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  }
}

@media (max-width:700px){
  #collection.container{
    width:min(var(--container),calc(100% - 14px)) !important;
  }

  .top-nav{
    min-height:56px !important;
  }

  .brand{
    font-size:1rem !important;
    letter-spacing:.2em !important;
  }

  .menu-btn{
    width:34px !important;
    height:34px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    padding:0 !important;
  }

  .menu-icon{
    width:17px !important;
    height:13px !important;
  }

  .menu-icon span{
    height:1.6px !important;
    background:#151a20 !important;
  }

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

  .product-body{
    min-height:74px !important;
    padding:9px 10px 11px !important;
  }

  .product-body h3{
    font-size:.73rem !important;
  }

  .product-meta{
    font-size:.66rem !important;
  }

  .product-price{
    font-size:.88rem !important;
    margin-top:3px !important;
  }

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

  .drawer a{
    font-size:.72rem !important;
    letter-spacing:.1em !important;
    min-height:48px !important;
  }
}

@media (max-width:420px){
  .top-nav{
    min-height:54px !important;
  }

  .brand{
    font-size:.96rem !important;
    letter-spacing:.19em !important;
  }
}

/* Brand size lock: keep UNIT 365 consistent and slightly larger */
:root{
  --unit365-brand-desktop: clamp(1.30rem, 1.55vw, 1.44rem);
  --unit365-brand-mobile: 1.08rem;
  --unit365-brand-mobile-tight: 1.03rem;
  --unit365-brand-tracking-desktop: .25em;
  --unit365-brand-tracking-mobile: .22em;
}

.brand{
  font-size: var(--unit365-brand-desktop) !important;
  letter-spacing: var(--unit365-brand-tracking-desktop) !important;
  font-weight: 800 !important;
}

@media (max-width:700px){
  .brand{
    font-size: var(--unit365-brand-mobile) !important;
    letter-spacing: var(--unit365-brand-tracking-mobile) !important;
  }
}

@media (max-width:420px){
  .brand{
    font-size: var(--unit365-brand-mobile-tight) !important;
    letter-spacing: .20em !important;
  }
}
