/* ================================
   HERO
================================ */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("../assets/img/misc/hero.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.38) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  z-index: 3;
  top: 51.5%;
  left: 50%;
  width: min(100% - 4rem, 82rem);
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 7.25vw, 7.65rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-white);
  text-align: center;
}

.hero-title span {
  display: block;
  text-align: center;
  white-space: nowrap;
}

.hero-accent {
  position: relative;
  z-index: 4;
  margin: -0.42em 0 0;
  font-family: var(--font-accent);
  font-size: clamp(2.1rem, 3.75vw, 3.85rem);
  line-height: 0.85;
  color: var(--color-primary);
  transform: translateX(20.2rem) rotate(-1.5deg);
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 32rem;
  margin: 1rem auto 0;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}


/* ================================
   MERCH PREVIEW
================================ */

.merch-preview {
  background: var(--color-white);
  color: var(--color-black);
  padding: clamp(5rem, 9vw, 8rem) var(--page-padding) clamp(5rem, 8vw, 7rem);
}

.merch-preview__inner {
  width: min(100%, 82rem);
  margin: 0 auto;
}

.merch-preview__header {
  display: grid;
  justify-items: center;
  gap: clamp(2.25rem, 4vw, 3.4rem);
  margin-bottom: 4rem;
}

.merch-preview__header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: 0.015em;
  margin-bottom: 1em;
  margin-top: 1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-black);
}

.merch-preview__header h2 span {
  display: block;
  white-space: nowrap;
}

.merch-tabs {
  width: min(100%, 39rem);
  min-height: 3.05rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: var(--color-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}

.merch-tab {
  border: 0;
  background: transparent;
  color: var(--color-black);
  min-height: 2.35rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.merch-tab.is-active {
  background: var(--color-primary);
  color: var(--color-white);
}

.merch-preview__topline {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}

.merch-preview__shop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--color-black);
  transition: opacity 0.2s ease;
}

.merch-preview__shop-link:hover {
  opacity: 0.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.4vw, 2.4rem);
}

.product-card {
  min-width: 0;
}

.product-card__image {
  display: block;
  aspect-ratio: 0.8 / 1;
  border-radius: 0.45rem;
  overflow: hidden;
  background: var(--color-grey);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.product-card:hover .product-card__image img {
  transform: scale(1.045);
}

.product-card__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 0.9rem;
}

.product-card__info h3,
.product-card__info p,
.product-card__price {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.product-card__info h3 {
  color: var(--color-black);
}

.product-card__info p {
  color: var(--color-black);
}

.product-card__price {
  flex: 0 0 auto;
  color: rgba(17, 17, 17, 0.72);
  text-align: right;
  white-space: nowrap;
}



.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 0.45rem;
  background: var(--color-grey);
}

.product-card__image {
  display: block;
  aspect-ratio: 0.8 / 1;
  overflow: hidden;
  background: var(--color-grey);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.product-card:hover .product-card__image img {
  transform: scale(1.045);
}

.product-card__add {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  min-height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(0.75rem);
  transition:
    opacity 0.25s ease,
    transform 0.25s var(--ease-out),
    background 0.2s ease;
}

.product-card:hover .product-card__add,
.product-card:focus-within .product-card__add {
  opacity: 1;
  transform: translateY(0);
}

.product-card__add:hover {
  background: var(--color-primary);
}

.product-card__add:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: rgba(17, 17, 17, 0.58);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 0.45rem;
  background: var(--color-grey);
}

.product-card__image {
  display: block;
  aspect-ratio: 0.8 / 1;
  overflow: hidden;
  background: var(--color-grey);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.product-card:hover .product-card__image img {
  transform: scale(1.045);
}

.product-card__quick {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 4;
  display: grid;
  gap: 0.55rem;
  padding: 0.65rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1rem 2.5rem rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(0.75rem);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s var(--ease-out);
}

.product-card:hover .product-card__quick,
.product-card:focus-within .product-card__quick {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-card__quick-options {
  display: grid;
  gap: 0.55rem;
}

.product-card__option-group {
  display: grid;
  gap: 0.4rem;
}

.product-card__option-group.is-locked {
  display: none;
}

.product-card__option-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card__option-topline span {
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(17, 17, 17, 0.56);
}

.product-card__option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.product-card__option-button {
  min-height: 2rem;
  padding: 0 0.7rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0.5rem;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;
}

.product-card__option-button[data-option-type="color"] {
  min-width: 3.2rem;
}

.product-card__option-button:hover {
  border-color: var(--color-black);
}

.product-card__option-button.is-selected {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.product-card__option-button:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.product-card__quick .product-card__add {
  position: static;
  width: 100%;
  min-height: 2.55rem;
  margin: 0;
  border: 0;
  border-radius: 0.65rem;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 900;
  opacity: 1;
  transform: none;
  transition:
    background 0.2s ease,
    opacity 0.2s ease;
}

.product-card__quick .product-card__add:hover {
  background: var(--color-primary);
}

.product-card__quick .product-card__add:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: rgba(17, 17, 17, 0.62);
}

.merch-tabs {
  position: relative;
  isolation: isolate;
}

.merch-tabs__indicator {
  position: absolute;
  z-index: 0;
  top: 0.35rem;
  left: 0;
  bottom: 0.35rem;
  width: 0;
  border-radius: 999px;
  background: var(--color-primary);
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.42s var(--ease-out),
    width 0.42s var(--ease-out);
  pointer-events: none;
}

.merch-tabs .merch-tab {
  position: relative;
  z-index: 1;
}

.merch-tabs.is-animated .merch-tab.is-active {
  background: transparent;
  color: var(--color-white);
}

.merch-preview__header h2 span,
.merch-tabs,
.merch-preview__topline,
.merch-preview .product-grid,
.merch-preview .product-card {
  will-change: transform, opacity;
}

.product-grid.is-loading-products .product-card {
  opacity: 0;
  transform: translateY(1rem);
}

.product-grid.has-loaded-products .product-card {
  animation: productCardReveal 0.55s var(--ease-out) both;
}

.product-grid.has-loaded-products .product-card:nth-child(1) {
  animation-delay: 0.02s;
}

.product-grid.has-loaded-products .product-card:nth-child(2) {
  animation-delay: 0.06s;
}

.product-grid.has-loaded-products .product-card:nth-child(3) {
  animation-delay: 0.1s;
}

.product-grid.has-loaded-products .product-card:nth-child(4) {
  animation-delay: 0.14s;
}

@keyframes productCardReveal {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
  HORIZONTAL GALLERY
================================ */

body {
  overflow-x: hidden;
  margin: 0;
}

.row,
.section,
section {
  position: relative;
  overflow: hidden;
}

.section,
section {
  text-align: center;
}

.panel.plain {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--color-white);
  color: var(--color-black);
}


.panel.plain:not(.panel--copy) h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.container-fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.horiz-gallery-strip,
.horiz-gallery-wrapper {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  position: relative;
}

.project-wrap {
  width: 33vw;
  height: 33vw;
  padding: 2rem;
  box-sizing: content-box;
  flex: 0 0 auto;
}

.project-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Body text panel */
.panel.plain.panel--copy {
  min-height: 70svh;
  padding: clamp(4rem, 8vw, 6rem) var(--page-padding);
}

.panel.plain.panel--copy .panel__body-text {
  width: min(100%, 42rem);
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.015em;
  text-transform: none;
  color: rgba(17, 17, 17, 0.72);
}

/* This is Xen intro panel */
.panel.plain.panel--intro {
  min-height: 90svh;
  padding: clamp(5rem, 8vw, 7rem) var(--page-padding);
}

.panel-intro__inner {
  width: min(100%, 44rem);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.panel-intro__inner h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.84;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-black);
}

.panel-intro__inner p {
  width: min(100%, 34rem);
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(17, 17, 17, 0.68);
}


/* ================================
   COLLECTION PREVIEW SECTIONS
================================ */

.collection-preview {
  background: var(--color-white);
  color: var(--color-black);
  padding: clamp(4.5rem, 8vw, 7rem) var(--page-padding);
}

.collection-preview + .collection-preview {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.collection-preview__inner {
  width: min(100%, 82rem);
  margin: 0 auto;
}

.collection-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.collection-preview__header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 0.9;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--color-black);
}

.collection-preview__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--color-black);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.collection-preview__link:hover {
  opacity: 0.55;
}


/* ================================
   COMMUNITY SECTION
================================ */

.community-section {
  background: var(--color-white);
  color: var(--color-black);
  padding: clamp(4.5rem, 7vw, 6.5rem) var(--page-padding) clamp(6rem, 8vw, 7.5rem);
  text-align: center;
  overflow: hidden;
}

.community-section__inner {
  width: min(100%, 94rem);
  margin: 0 auto;
}

.community-section__header {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.community-section__header h2 {
  width: min(100%, 29rem);
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.75vw, 3rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: var(--color-black);
}

.community-section__header p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(17, 17, 17, 0.72);
}

.community-section__visual {
  position: relative;
  width: min(100%, 95rem);
  margin: 0 auto;
}

.community-section__media {
  display: block;
  width: 100%;
  aspect-ratio: 19 / 10;
  border-radius: clamp(1.3rem, 2vw, 2rem);
  overflow: hidden;
  background: var(--color-grey);
}

.community-section__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.community-section__button {
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0.9rem 2rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: max-content;
  white-space: nowrap;
  letter-spacing: 0.03rem;
  font-weight: 700;
  border-radius: 500px;
  overflow: hidden;
  background: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
  z-index: 3;
}

.community-section__button span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}

.community-section__button:hover span {
  color: var(--color-white);
}

.community-section__button::before,
.community-section__button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.community-section__button::before {
  content: "";
  background: var(--color-white);
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.community-section__button:hover::before {
  transform: translate3d(100%, 0, 0);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
  .hero-content {
    width: min(100% - 3rem, 66rem);
  }

  .hero-title {
    font-size: clamp(3.4rem, 8vw, 6.4rem);
  }

  .hero-accent {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    transform: translateX(8rem) rotate(-1.5deg);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .merch-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .merch-tabs::-webkit-scrollbar {
    display: none;
  }

  .merch-tab {
    flex: 0 0 auto;
  }

  .project-wrap {
    width: 45vw;
    height: 45vw;
    padding: 1.25rem;
  }

  .collection-preview__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  html,
  body {
    overflow-x: hidden;
  }

  /* HERO */
  .hero {
    min-height: 88svh;
  }

  .hero-bg {
    background-position: center top;
  }

  .hero-content {
    top: 51%;
    width: calc(100% - 2rem);
  }

  .hero-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.45rem, 10.5vw, 3.8rem);
    line-height: 0.92;
    overflow: visible;
  }

  .hero-title span {
    white-space: nowrap;
  }

  .hero-accent {
    margin-top: -0.28em;
    font-size: clamp(1.65rem, 7.5vw, 2.5rem);
    transform: translateX(1.5rem) rotate(-1.5deg);
  }

  .hero-text {
    max-width: 19rem;
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.38;
  }

  /* MERCH PREVIEW */
  .merch-preview {
    padding: 4rem 1.25rem 4.75rem;
  }

  .merch-preview__inner {
    width: 100%;
  }

  .merch-preview__header {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .merch-preview__header h2 {
    width: 100%;
    max-width: 100%;
    margin: 0 0 0.75rem;
    font-size: clamp(2.1rem, 9.5vw, 3rem);
    line-height: 0.88;
    overflow: visible;
  }

  .merch-preview__header h2 span {
    white-space: normal;
  }

  .merch-tabs::-webkit-scrollbar {
    display: none;
  }

  .merch-preview__topline {
    justify-content: flex-end;
    margin: 0.75rem 0 1.25rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-card__media,
  .product-card__image {
    border-radius: 0.75rem;
  }

  .product-card__image {
    aspect-ratio: 1 / 1.05;
  }

  .product-card__info {
    gap: 0.8rem;
    padding-top: 0.85rem;
  }

  .product-card__info h3,
  .product-card__info p,
  .product-card__price {
    font-size: 0.98rem;
  }

  .product-card__quick {
    position: static;
    margin-top: 0.7rem;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    background: var(--color-grey);
    backdrop-filter: none;
  }

  .product-card__option-group.is-locked {
    display: grid;
    opacity: 0.45;
  }

  .product-card__option-values {
    gap: 0.4rem;
  }

  .product-card__option-button {
    min-height: 2.15rem;
  }

  .product-card__quick .product-card__add {
    min-height: 2.65rem;
  }

  /* THIS IS XEN INTRO */
  .panel.plain {
    min-height: auto;
  }

  .panel.plain.panel--intro {
    min-height: auto;
    padding: 6.25rem 1.5rem 4.25rem;
  }

  .panel-intro__inner {
    width: 100%;
    max-width: 22rem;
    gap: 0.85rem;
  }

  .panel-intro__inner h3 {
    font-size: clamp(1.9rem, 8vw, 2.65rem);
    line-height: 0.88;
    white-space: nowrap;
  }

  .panel-intro__inner p {
    max-width: 20rem;
    font-size: 1rem;
    line-height: 1.42;
  }

  /* HORIZONTAL GALLERY */
  #portfolio {
    overflow: hidden;
  }

  .horiz-gallery-wrapper {
    min-height: 72svh;
    align-items: center;
  }

  .horiz-gallery-strip {
    align-items: center;
    padding-left: 0.75rem;
  }

  .project-wrap {
    width: 76vw;
    height: 76vw;
    padding: 0.65rem;
  }

  .project-wrap img {
    border-radius: 0.75rem;
  }

  .panel.plain.panel--copy {
    min-height: auto;
    padding: 4rem 1.5rem;
  }

  .panel.plain.panel--copy .panel__body-text {
    max-width: 22rem;
    font-size: 1rem;
  }

  /* COLLECTION PREVIEWS */
  .collection-preview {
    padding: 4rem 1.25rem;
  }

  .collection-preview + .collection-preview {
    padding-top: 2rem;
  }

  .collection-preview__inner {
    width: 100%;
  }

  .collection-preview__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
  }

  .collection-preview__header h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 0.88;
  }

  .collection-preview__link {
    align-self: flex-end;
  }

  /* COMMUNITY */
.community-section {
  padding: 4rem 1.25rem 5rem;
}

.community-section__inner {
  width: 100%;
}

.community-section__header {
  gap: 0.7rem;
  margin-bottom: 2rem;
  overflow: visible;
}

.community-section__header h2 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(1.75rem, 7.6vw, 2.45rem);
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-align: center;
  overflow: visible;
}

.community-section__header p {
  width: 100%;
  max-width: 18rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.35;
}

.community-section__media {
  aspect-ratio: 1 / 1.08;
  border-radius: 1.1rem;
}

.community-section__button {
  top: 50%;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
}
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(2.15rem, 9.8vw, 3rem);
  }

  .hero-accent {
    transform: translateX(1rem) rotate(-1.5deg);
  }

  .merch-preview__header h2 {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
  }

  .panel-intro__inner h3 {
    font-size: clamp(1.75rem, 7.5vw, 2.25rem);
  }

  .project-wrap {
    width: 82vw;
    height: 82vw;
  }

  .product-grid {
    gap: 1.75rem;
  }
}

/* ================================
   MOBILE MERCH TABS FIX
================================ */

@media (max-width: 700px) {
  .merch-tabs {
    width: 100%;
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.45rem;
    border-radius: 1.25rem;
    overflow: visible;
  }

  .merch-tabs__indicator {
    display: none;
  }

  .merch-tab {
    width: 100%;
    min-width: 0;
    min-height: 2.75rem;
    padding: 0 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.95rem;
    text-align: center;
  }

  .merch-tabs.is-animated .merch-tab.is-active,
  .merch-tab.is-active {
    background: var(--color-primary);
    color: var(--color-white);
  }
}

/* ================================
   MOBILE HERO ACCENT FIX
================================ */

@media (max-width: 700px) {
  .hero-content {
    top: 52%;
    width: calc(100% - 2rem);
    overflow: visible;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.65rem);
    line-height: 0.92;
  }

  .hero-title span {
    white-space: nowrap;
  }

  .hero-accent {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: 100%;
    margin: -0.18em auto 0;
    font-size: clamp(1.9rem, 10vw, 3rem);
    line-height: 0.85;
    color: var(--color-primary);
    transform: translateX(0) rotate(-1.5deg);
    text-align: center;
    white-space: nowrap;
    z-index: 6;
  }

  .hero-text {
    margin-top: 1rem;
  }
}