/* =========================================================
   MICHELLE SITE STYLES

   1. Shared / Base
   2. Header / Navigation
   3. HOME
   4. BROTHERS
   5. MENU / SCHEDULE
   6. ONLINE SHOP
   7. Footer

   現在のHTMLとJavaScriptが参照するスタイルだけを、
   ページとコンポーネント単位で整理しています。
   ========================================================= */

/* =========================================================
   Shared / Base
   ========================================================= */

/* Shared / Buttons */
button {
  font: inherit;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 4px 4px 0 var(--paper);
}

@media (max-width: 520px) {
  .button {
    width: 100%;
  }
}

.button {
  min-height: 52px;
  display: inline-grid;
  place-items: center;
  padding: 13px 24px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.button:active {
  transform: translateY(1px);
}

.button-outline {
  color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  box-shadow: 4px 4px 0 var(--ink);
}

/* Shared / Motion */
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

body.page-ready::before {
  transform: scaleY(0);
}

body.page-leaving::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-item {
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-intro {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  transform: translateY(0);
  transition: transform 0.72s cubic-bezier(0.76, 0, 0.24, 1);
}

.site-intro::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.site-intro.is-playing::after {
  transform: scaleX(1);
}

.site-intro.is-opening {
  transform: translateY(-100%);
}

.site-intro-mark {
  display: grid;
  justify-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.5s ease 0.12s, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.site-intro.is-playing .site-intro-mark {
  opacity: 1;
  transform: none;
}

.site-intro-mark img {
  width: clamp(116px, 13vw, 180px);
  height: auto;
  object-fit: contain;
}

.site-intro-mark span {
  color: var(--yellow);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  letter-spacing: 0.2em;
}

body.intro-active {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .site-intro {
    display: none;
  }

  body.intro-active {
    overflow: auto;
  }
}

/* Shared / Inner Pages */
.inner-page {
  padding-top: 72px;
}

.page-title {
  padding: 80px max(32px, calc((100vw - var(--max)) / 2));
  background: var(--yellow);
  border-bottom: var(--line);
}

.page-title > p {
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.page-title > div {
  max-width: 600px;
  margin-top: 28px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .inner-page {
    padding-top: 62px;
  }

  .page-title {
    padding: 56px 24px;
  }

  .page-title h1 {
    font-size: clamp(3.7rem, 16vw, 5.2rem);
    letter-spacing: -0.09em;
  }
}

.page-title h1 {
  margin: 0;
  max-width: 960px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.82;
  font-size: clamp(6rem, 11vw, 11rem);
}

@media (max-width: 768px) {
  .page-title h1 {
    font-size: clamp(5rem, 23vw, 7rem);
  }
}

/* Shared / Base */
:root {
  --yellow: #f5b800;
  --paper: #f2efe7;
  --ink: #151515;
  --muted: #6d6a62;
  --line: 4px solid var(--ink);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.section {
  scroll-margin-top: 76px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-family: "Yu Gothic UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Zen Kaku Gothic New", sans-serif;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.015em;
}

body::before {
  content: "";
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: var(--ink);
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.56s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}

.brothers-hero-copy h1 span {
  display: block;
  background: transparent;
}

.brothers-home-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  min-height: 680px;
  color: var(--paper);
  background: var(--ink);
}

.brothers-home-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(44px, 7vw, 110px);
}

.brothers-home-copy > p {
  margin: 0 0 24px;
  color: var(--yellow);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.brothers-home-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(5rem, 8vw, 9rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0.015em;
}

.brothers-home-lead {
  display: grid;
  gap: 12px;
  max-width: 34em;
  margin-top: clamp(34px, 4vw, 54px);
  padding: 24px;
  border: 2px solid var(--yellow);
  box-shadow: 0 0 6px rgba(255, 196, 0, 0.8), 0 0 14px rgba(255, 196, 0, 0.45), inset 0 0 8px rgba(255, 196, 0, 0.15);
}

.brothers-home-lead strong {
  color: var(--yellow);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.4;
}

.brothers-home-lead span {
  color: #d3cfc5;
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  font-weight: 500;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-top: 42px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

.text-link:active {
  transform: translate(4px, 1px);
}

.brothers-home-photos {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-width: 0;
  border-left: 1px solid #494741;
}

.brothers-home-photos img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.brothers-home-photos img:first-child {
  object-position: 54% center;
}

.brothers-home-photos img:last-child {
  border-left: 1px solid #494741;
}

.brothers-hero-copy {
  position: absolute;
  left: clamp(28px, 6vw, 96px);
  bottom: clamp(130px, 16vh, 180px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 108px);
  background: var(--yellow);
}

.brothers-hero-copy > p {
  margin: 0 0 22px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
}

.brothers-hero-copy h1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  color: #fff;
  max-width: 7em;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 8.3rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.brothers-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.brothers-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: calc(100dvh - 82px);
  object-fit: cover;
  object-position: 58% center;
}

@media (max-width: 600px) {
  .brothers-home-copy {
    min-height: 420px;
    padding: 58px 24px;
  }

  .brothers-home-copy h2 {
    font-size: clamp(4.8rem, 22vw, 6.4rem);
  }

  .brothers-home-photos {
    grid-template-columns: 1fr 0.72fr;
    min-height: 420px;
  }

  .brothers-home-photos img {
    min-height: 420px;
  }

  .brothers-hero-copy {
    min-height: 470px;
    padding: 58px 24px;
  }

  .brothers-hero-copy h1 {
    font-size: clamp(3.6rem, 19vw, 5.8rem);
  }

  .brothers-hero-photo img {
    min-height: 460px;
  }
}

.hero-brothers-note {
  position: absolute;
  z-index: 4;
  top: clamp(-140px, -9vw, -102px);
  right: auto;
  left: clamp(190px, 18vw, 270px);
  display: grid;
  gap: 3px;
  min-width: max-content;
  padding: 18px 28px 15px;
  color: var(--yellow);
  background: var(--ink);
  box-shadow: 5px 5px 0 rgb(21 21 21 / 0.18);
  text-decoration: none;
  transform: rotate(-3deg);
  transform-origin: center;
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero-brothers-note span {
  font-family: "Yusei Magic", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.hero-brothers-note small {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.hero-brothers-note:hover {
  color: var(--paper);
  transform: rotate(-1.5deg) translateY(-3px);
}

.hero-brothers-note:active {
  transform: rotate(-1.5deg) translateY(-1px);
}

.hero-brothers-note:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

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

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  *:before {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  body::before {
    display: none;
  }

  .text-link {
    transition: none;
  }

  .hero-brothers-note {
    transition: none;
  }
}

.poster-brothers-hero .brothers-hero-copy {
  position: absolute;
  z-index: 4;
  inset: 0 auto 0 0;
  display: flex;
  width: 72%;
  min-height: 100%;
  padding: clamp(58px, 7vw, 112px);
  background: transparent;
}

.poster-brothers-hero .brothers-hero-copy > p {
  margin-bottom: 24px;
  font-size: clamp(1rem, 1.15vw, 1.2rem);
}

.poster-brothers-hero .brothers-hero-copy h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(4.8rem, 7.4vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.poster-brothers-hero .brothers-hero-copy h1 span {
  display: block;
  width: max-content;
  max-width: none;
}

.poster-brothers-hero .brothers-hero-copy h1 span:last-child {
  margin-top: 0.03em;
  margin-left: clamp(18px, 2.4vw, 38px);
  font-size: 1.04em;
  white-space: nowrap;
  transform: scaleX(0.86);
  transform-origin: left center;
}

.poster-brothers-hero .brothers-hero-photo {
  position: absolute;
  z-index: 1;
  inset: -3% -3% -3% 27%;
  width: auto;
  height: 106%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
  opacity: 1;
  mix-blend-mode: normal;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 0.18) 15%, #000 42%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 0.18) 15%, #000 42%, #000 100%);
}

.poster-brothers-hero .brothers-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: brightness(1.01) saturate(0.94) contrast(1.07);
}

@media (max-width: 1050px) and (min-width: 769px) {
  .poster-brothers-hero .brothers-hero-copy {
    width: 76%;
    padding-inline: 44px;
  }

  .poster-brothers-hero .brothers-hero-copy h1 {
    font-size: clamp(4.2rem, 8.4vw, 6rem);
  }

  .poster-brothers-hero .brothers-hero-photo {
    left: 18%;
  }
}

@media (max-width: 768px) {
  .hero-brothers-note {
    top: -82px;
    right: auto;
    left: 4px;
    padding: 13px 18px 11px;
    box-shadow: 3px 3px 0 rgb(21 21 21 / 0.16);
    transform: rotate(-2deg);
  }

  .hero-brothers-note span {
    font-size: clamp(1.4rem, 6.3vw, 1.85rem);
  }

  .hero-brothers-note small {
    font-size: 0.64rem;
  }

  .poster-brothers-hero .brothers-hero-copy {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    padding: clamp(62px, 12vh, 104px) 20px 180px;
  }

  .poster-brothers-hero .brothers-hero-copy > p {
    margin-bottom: 20px;
  }

  .poster-brothers-hero .brothers-hero-copy h1 {
    font-size: clamp(3.6rem, 17vw, 5.3rem);
    line-height: 0.95;
  }

  .poster-brothers-hero .brothers-hero-copy h1 span:last-child {
    margin-top: 0.08em;
    margin-left: 0;
    font-size: 0.87em;
    transform: none;
  }

  .poster-brothers-hero .brothers-hero-photo {
    position: absolute;
    inset: 0 -22% 0 -18%;
    width: auto;
    height: 100%;
    min-height: 100%;
    opacity: 1;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 0.45) 24%, #000 60%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 0.45) 24%, #000 60%, #000 100%);
  }

  .poster-brothers-hero .brothers-hero-photo img {
    min-height: 100%;
    object-position: 65% center;
  }
}

.main-rich-home .brothers-home-intro {
  position: relative;
  display: block;
  min-height: 108svh;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.main-rich-home .brothers-home-copy {
  position: relative;
  z-index: 3;
  width: min(52vw, 760px);
  min-height: 108svh;
  padding: clamp(82px, 12vh, 146px) 0 76px clamp(24px, 7vw, 112px);
}

.main-rich-home .brothers-home-copy h2 {
  font-size: clamp(5.8rem, 12vw, 12.5rem);
  text-shadow: 4px 4px 0 rgb(245 184 0 / 0.78);
}

.main-rich-home .brothers-home-lead {
  width: min(390px, 84%);
  padding: 24px;
  background: var(--ink);
  border: 1px solid #555149;
}

.main-rich-home .brothers-home-photos {
  position: absolute;
  inset: clamp(48px, 8vw, 118px) clamp(22px, 5vw, 78px) clamp(48px, 7vw, 102px) 34%;
  display: block;
  min-height: 0;
  border: 0;
}

.main-rich-home .brothers-home-photos img {
  position: absolute;
  min-height: 0;
  border: 0;
}

.main-rich-home .brothers-home-photos img:first-child {
  inset: 0 0 10% 0;
  width: 78%;
  height: 90%;
  object-position: 54% center;
  box-shadow: 20px 20px 0 var(--yellow);
}

.main-rich-home .brothers-home-photos img:last-child {
  right: 0;
  bottom: 0;
  width: 43%;
  height: 48%;
  border: 10px solid var(--ink);
  object-position: center center;
}

.main-rich-brothers .poster-brothers-hero .brothers-hero-photo {
  position: absolute;
  z-index: 1;
  inset: 72px 0 0;
  width: 100%;
  height: auto;
  margin: 0;
  -webkit-mask-image: none;
  mask-image: none;
}

.main-rich-brothers .poster-brothers-hero .brothers-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 769px) {
  .main-rich-brothers .poster-brothers-hero .brothers-hero-photo img {
    object-position: center 30%;
  }
}

.main-rich-brothers .poster-brothers-hero .brothers-hero-copy {
  position: absolute;
  z-index: 4;
  inset: 72px 0 0;
  width: 100%;
  min-height: 0;
  padding: clamp(60px, 10vh, 112px) clamp(24px, 7vw, 112px);
  background: transparent;
}

.main-rich-brothers .poster-brothers-hero .brothers-hero-copy > p {
  width: fit-content;
  padding: 5px 10px;
  color: var(--ink);
  background: var(--yellow);
}

.main-rich-brothers .poster-brothers-hero .brothers-hero-copy h1 {
  position: absolute;
  right: auto;
  bottom: 17%;
  left: 6%;
  width: min(39vw, 680px);
  max-width: 78%;
  color: var(--paper);
  font-size: clamp(4.8rem, 6.5vw, 7.6rem);
  line-height: 0.88;
  text-shadow: none;
}

.main-rich-brothers .poster-brothers-hero .brothers-hero-copy h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 0;
  color: var(--paper);
  background: transparent;
}

.main-rich-brothers .poster-brothers-hero .brothers-hero-copy h1 span:last-child {
  margin: 0.06em 0 0;
  color: var(--paper);
  font-size: 0.72em;
  white-space: nowrap;
  transform: none;
}

@media (max-width: 900px) {
  .brothers-home-intro {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brothers-home-copy {
    min-height: 480px;
  }

  .brothers-home-photos {
    min-height: 560px;
    border-top: 1px solid #494741;
    border-left: 0;
  }

  .brothers-home-photos img {
    min-height: 560px;
  }

  .brothers-hero-copy {
    min-height: 520px;
  }

  .brothers-hero-photo img {
    min-height: 620px;
  }

  .main-rich-home .brothers-home-copy {
    min-height: 0;
    width: 100%;
    padding: 76px clamp(24px, 6vw, 48px) 52px;
  }

  .main-rich-home .brothers-home-intro {
    min-height: 0;
  }

  .main-rich-home .brothers-home-photos {
    position: relative;
    inset: auto;
    width: auto;
    height: clamp(500px, 75vw, 620px);
    min-height: 0;
    margin: 0 clamp(24px, 6vw, 48px) 48px;
  }

  .main-rich-home .brothers-home-photos img:first-child {
    inset: 0 auto auto 0;
    width: 100%;
    height: 84%;
  }

  .main-rich-home .brothers-home-lead {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(560px, 100%);
  }

  .main-rich-home .brothers-home-copy .text-link {
    position: relative;
    bottom: auto;
    margin-top: 30px;
  }
}

@media (max-width: 700px) {
  .main-rich-home .brothers-home-intro {
    min-height: 0;
  }

  .main-rich-home .brothers-home-copy {
    min-height: 0;
    width: 100%;
    padding: 68px 20px 46px;
  }

  .main-rich-home .brothers-home-copy h2 {
    font-size: clamp(5.1rem, 24vw, 6.8rem);
  }

  .main-rich-home .brothers-home-photos {
    height: clamp(440px, 125vw, 560px);
    margin: 0 18px 44px 48px;
  }

  .main-rich-home .brothers-home-photos img:first-child {
    object-position: 66% center;
  }

  .main-rich-home .brothers-home-photos img:last-child {
    width: 48%;
    height: 42%;
    border-width: 6px;
  }

  .main-rich-brothers .poster-brothers-hero .brothers-hero-copy {
    inset: 62px 0 0;
    padding: 40px 20px;
  }

  .main-rich-brothers .poster-brothers-hero .brothers-hero-copy h1 {
    right: 18px;
    bottom: 148px;
    left: 18px;
    width: auto;
    max-width: none;
    font-size: clamp(3.6rem, 16vw, 5rem);
  }

  .main-rich-brothers .poster-brothers-hero .brothers-hero-copy h1 span:last-child {
    margin-left: 0;
    font-size: 0.66em;
  }
}

/* =========================================================
   Header / Navigation
   ========================================================= */

/* Header / Navigation */
.nav-toggle {
  display: none;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: -80px;
  left: 16px;
  padding: 10px 16px;
  background: var(--paper);
  font-weight: 900;
}

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

.header-sentinel {
  position: absolute;
  top: 0;
}

.site-menu a:last-child {
  border-right: 1px solid #3a3a3a;
}

.header-cta {
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--ink);
  background: var(--yellow);
}

.header-cta:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -4px;
}

.brand-mark:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -4px;
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -4px;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .topbar {
    grid-template-columns: 170px minmax(0, 1fr) 128px;
  }

  .site-menu a {
    padding-inline: 14px;
    font-size: 0.9rem;
  }
}

.social-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mobile-social-link {
  display: none !important;
}

.header-socials .header-cta:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid var(--yellow);
  outline-offset: -4px;
}

@media (max-width: 768px) {
  .site-menu {
    inset: 60px 0 auto;
  }

  .topbar {
    height: 60px;
    grid-template-columns: 126px 1fr 46px 46px 60px;
  }

  .brand-mark {
    justify-content: flex-start;
    width: 126px;
    min-width: 126px;
    padding: 7px 12px;
  }

  .brand-mark img {
    width: 92px;
    max-width: 92px;
  }

  .header-socials {
    grid-column: 3 / 5;
  }

  .nav-toggle {
    grid-column: 5;
  }
}

.topbar {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  color: var(--paper);
  background: var(--ink);
  border-bottom: var(--line);
  align-items: stretch;
  height: 64px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
}

.brand-mark {
  align-items: center;
  justify-content: center;
  display: grid;
  place-items: center;
  width: 64px;
  min-width: 64px;
  height: 64px;
  padding: 8px;
  overflow: hidden;
  background: var(--ink);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}

.site-menu {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
}

.site-menu a {
  padding: 0 22px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border-right: 0;
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  padding-inline: clamp(18px, 2.3vw, 34px);
  color: var(--paper);
  border-left: 1px solid #3a3a3a;
  white-space: nowrap;
  transition: color 0.22s ease, background-color 0.22s ease;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .site-menu a {
    font-size: 0.9rem;
  }
}

.site-menu a:hover {
  color: var(--yellow);
  background: #202020;
}

.site-menu a::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 0;
  left: 18%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.site-menu a:hover::after {
  transform: scaleX(1);
}

.site-menu .is-current::after {
  transform: scaleX(1);
}

.site-menu .is-current {
  color: var(--paper);
}

.main-rich-home .site-menu .is-current::after {
  background: var(--paper);
}

.site-menu a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: -4px;
}

.header-socials {
  grid-template-columns: 1fr 1fr;
  min-width: 0;
  display: flex;
  width: auto;
  height: 100%;
}

.header-socials .header-cta {
  padding-inline: 14px;
  font-size: 0.82rem;
  white-space: nowrap;
  display: grid;
  place-items: center;
  width: 58px;
  min-width: 58px;
  padding: 0;
  background: var(--ink);
  border-left: 1px solid #3a3a3a;
  transition: background-color 0.22s ease;
}

.header-socials .social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.22s ease;
}

.header-socials .header-cta:hover {
  background: var(--yellow);
  filter: none;
}

.header-socials .header-cta:hover .social-icon {
  transform: scale(1.08);
}

.header-tiktok {
  color: inherit;
  background: var(--ink);
}

@media (max-width: 900px) {
  .nav-toggle:before {
    content: "☰";
    font-size: 1.45rem;
  }

  .nav-toggle[aria-expanded="true"]:before {
    content: "×";
    font-size: 2rem;
  }

  .header-cta {
    display: none;
  }

  .mobile-social-link {
    display: none !important;
  }

  .topbar {
    height: 60px;
    grid-template-columns: 60px minmax(0, 1fr) 52px 52px 64px;
  }

  .brand-mark {
    justify-content: flex-start;
    padding-left: 18px;
    grid-column: 1;
    grid-row: 1;
    width: 60px;
    min-width: 60px;
    height: 60px;
    padding: 7px;
  }

  .brand-mark img {
    width: 100%;
    height: 100%;
    max-width: 46px;
    max-height: 46px;
    object-fit: contain;
  }

  .header-socials {
    grid-column: 3 / 5;
    grid-row: 1;
    display: grid;
    grid-template-columns: 52px 52px;
    width: 104px;
    height: 60px;
  }

  .header-socials .header-cta {
    border-left: 1px solid var(--ink);
    display: grid;
    place-items: center;
    width: 52px;
    min-width: 52px;
    height: 60px;
    padding: 0;
  }

  .header-socials .social-icon {
    display: block;
    width: 26px;
    height: 26px;
  }

  .nav-toggle {
    border: 0;
    border-left: var(--line);
    color: var(--paper);
    background: var(--ink);
    font-size: 0;
    cursor: pointer;
    grid-column: 5;
    grid-row: 1;
    display: grid;
    place-items: center;
    width: 64px;
    min-width: 64px;
    height: 60px;
    padding: 0;
    margin: 0;
  }

  .site-menu {
    inset: 62px 0 auto;
    position: fixed;
    z-index: 99;
    top: 60px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink);
    border-bottom: var(--line);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    min-height: 58px;
    justify-content: start;
    padding: 0 24px;
    border: 0;
    border-top: 1px solid #444;
  }

  .site-menu a::after {
    right: auto;
    bottom: 0;
    left: 24px;
    width: 44px;
  }

  .site-menu .mobile-social-link {
    display: none !important;
  }
}

/* =========================================================
   HOME
   ========================================================= */

/* HOME / Links and Event */
.home-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  border-bottom: var(--line);
}

.home-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 390px;
  color: var(--paper);
  border-right: var(--line);
}

.home-link:last-child {
  border-right: 0;
}

.home-link:hover img {
  transform: scale(1.03);
}

.home-link > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.home-link p {
  margin: 16px 0 0;
  font-weight: 700;
}

.event-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 72px max(32px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
  border-bottom: var(--line);
}

.event-strip p {
  margin: 18px 0 0;
}

@media (max-width: 900px) {
  .home-links {
    grid-template-columns: 1fr;
    border-top: 12px solid var(--yellow);
  }

  .home-link {
    grid-template-columns: 1fr;
    min-height: 0;
    border-right: 0;
    border-bottom: var(--line);
  }

  .home-link:last-child {
    border-bottom: 0;
  }

  .home-link picture {
    height: 280px;
  }

  .home-link-photo-coming-soon {
    height: 280px;
  }

  .home-link > div {
    order: -1;
    min-height: 150px;
    padding: 28px;
    border-bottom: var(--line);
  }

  .event-strip {
    grid-template-columns: 1fr;
    padding: 54px 24px;
  }

  .event-strip .button {
    justify-self: start;
  }
}

.home-link picture {
  overflow: hidden;
}

.home-link img {
  transform: scale(1.045);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-link-photo-coming-soon {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 32px;
  color: var(--paper);
  text-align: center;
  background: #24231f;
  box-shadow: inset 0 0 0 1px #4f4c44;
}

.home-link-photo-coming-soon span,
.product-photo-coming-soon span {
  color: var(--yellow);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.16em;
}

.home-link-photo-coming-soon strong,
.product-photo-coming-soon strong {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.home-link-photo-coming-soon small,
.product-photo-coming-soon small {
  color: #d3cfc5;
  font-size: 0.85rem;
  font-weight: 700;
}

.home-link.is-visible img {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .home-link img {
    transform: none;
    transition: none;
  }
}

.home-link h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 0.95;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.025em;
}

.event-strip h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.025em;
}

/* HOME / Hero */
.poster-hero {
  min-height: 760px;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  background: var(--yellow);
  border-bottom: var(--line);
}

.hero-panel {
  order: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 112px);
  border-right: var(--line);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.hero-lead {
  max-width: 510px;
  margin: 30px 0 0;
  font-size: 1.02rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

@media (max-width: 520px) {
  .hero-actions {
    display: grid;
  }
}

.hero-panel h1 {
  margin: 0;
  max-width: 700px;
  font-family: "Yu Gothic UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.94;
  font-size: clamp(4.6rem, 7vw, 7.4rem);
}

.hero-photo {
  min-height: 688px;
  overflow: hidden;
}

.hero-photo img {
  transform: scale(1.045);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-photo.is-visible img {
  transform: scale(1);
}

.hero-panel .reveal-item {
  transform: translateY(34px);
}

.hero-panel .reveal-item.is-visible {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .poster-hero {
    min-height: auto;
    padding-top: 62px;
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 52vh;
    border-bottom: var(--line);
  }

  .hero-panel {
    order: 1;
    padding: 48px 24px 54px;
    border: 0;
  }

  .hero-lead {
    margin-top: 22px;
  }

  .hero-panel h1 {
    font-size: clamp(3.8rem, 17vw, 5.4rem);
    letter-spacing: -0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo img {
    transform: none;
    transition: none;
  }
}

.hero-content {
  width: 100%;
  max-width: 540px;
}

.home-hero .eyebrow {
  margin-bottom: clamp(18px, 2.2vw, 30px);
  font-size: clamp(0.82rem, 0.9vw, 1rem);
  line-height: 1.2;
  letter-spacing: 0.18em;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-cta {
  display: inline-flex;
  min-height: 60px;
  gap: 28px;
  justify-content: space-between;
  padding: 16px 22px 16px 26px;
  font-size: 0.92rem;
}

.button-arrow {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  background: #292929;
  box-shadow: 0 8px 0 rgb(21 21 21 / 0.16);
}

.hero-cta:hover .button-arrow {
  transform: translateX(4px);
}

.hero-cta:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 4px;
  transform: translateY(-2px);
}

@media (max-width: 1024px) and (min-width: 769px) {
  .home-hero .hero-panel {
    padding: clamp(34px, 4vw, 56px);
  }

  .home-hero .hero-panel h1 {
    font-size: clamp(3.5rem, 5.6vw, 4.4rem);
  }
}

@media (max-width: 360px) {
  .home-hero .hero-panel h1 {
    font-size: clamp(2.7rem, 13vw, 3rem);
  }

  .home-hero .hero-panel {
    padding-inline: 20px;
  }
}

.home-hero {
  /* Hero entrance: tune these values to adjust the rise and fade. */
  --hero-enter-ease: cubic-bezier(0.23, 1, 0.32, 1);
  --hero-burger-enter-y: clamp(52px, 7vh, 76px);
  --hero-burger-enter-scale: 0.96;
  --hero-burger-display-scale: 1;
  --hero-burger-enter-duration: 900ms;
  --hero-burger-enter-delay: 300ms;
  /* Preserve the desktop composition after removing the former 88px CTA + 16px gap. */
  --hero-desktop-cta-reserve: 104px;
  width: 100%;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  position: relative;
  display: block;
  isolation: isolate;
  height: 100dvh;
  min-height: 720px;
  padding-top: 64px;
  overflow: hidden;
  background: var(--yellow);
  --hero-rise: clamp(40px, 5vh, 64px);
}

.home-hero::after {
  content: "MICHELLE";
  position: absolute;
  z-index: 0;
  right: -0.02em;
  bottom: -0.18em;
  color: rgb(21 21 21 / 0.07);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(13rem, 26vw, 28rem);
  line-height: 0.8;
  pointer-events: none;
}

.home-hero .hero-photo {
  min-width: 0;
  position: absolute;
  inset: 64px 0 0;
  min-height: 0;
  border: 0;
  z-index: 2;
  top: calc(250px - var(--hero-rise) + clamp(15px, 1.5vw, 25px));
  right: clamp(44px, 6vw, 104px);
  bottom: auto;
  left: auto;
  width: min(59vw, 820px);
  height: calc(100% - 82px);
  background: transparent;
  pointer-events: none;
}

.home-hero .hero-photo.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.home-hero .hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.22) 0%, transparent 46%);
  pointer-events: none;
  display: none;
}

.home-hero .hero-photo picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.home-hero .hero-photo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: 50% 55%;
  opacity: 0;
  filter: drop-shadow(16px 22px 18px rgb(0 0 0 / 18%));
  transform: translateY(var(--hero-burger-enter-y)) scale(var(--hero-burger-enter-scale));
  transform-origin: center bottom;
  transition:
    opacity 520ms var(--hero-enter-ease) var(--hero-burger-enter-delay),
    transform var(--hero-burger-enter-duration) var(--hero-enter-ease) var(--hero-burger-enter-delay);
}

.home-hero .hero-photo.is-visible img {
  opacity: 1;
  transform: scale(var(--hero-burger-display-scale));
}

@media (min-width: 769px) {
  .home-hero {
    /* Desktop burger size: raise/lower this value for quick visual tuning. */
    --hero-burger-display-scale: 1.40;
    --hero-burger-enter-scale: 1.075;
  }

  .home-hero .hero-photo {
    overflow: visible;
  }
}

.home-hero .hero-panel {
  align-items: flex-start;
  position: absolute;
  min-height: 0;
  z-index: 1;
  left: clamp(28px, 6vw, 96px);
  bottom: calc(clamp(32px, 7vh, 72px) + var(--hero-rise));
  width: min(650px, 53vw);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-hero .hero-content {
  max-width: 650px;
}

.home-hero .hero-lead {
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.9;
  margin-top: clamp(20px, 2vw, 28px);
  max-width: 31rem;
  padding-bottom: var(--hero-desktop-cta-reserve);
}

.home-hero .hero-lead span {
  display: block;
  white-space: nowrap;
}

.home-hero .hero-mobile-link {
  display: none;
}

.home-hero .hero-panel h1 {
  max-width: none;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.82;
  font-size: clamp(6.2rem, 9.2vw, 10.5rem);
}

.home-hero .hero-title-line:last-child {
  font-size: 0.66em;
  letter-spacing: 0.025em;
}

@media (max-width: 768px) {
  .home-hero .hero-photo::after {
    background: linear-gradient( 180deg, transparent 35%, rgb(0 0 0 / 0.22) 100% );
  }

  .home-hero .eyebrow {
    margin-bottom: 16px;
  }

  .home-hero {
    grid-template-columns: 1fr;
    display: block;
    height: 100svh;
    padding-top: 60px;
    min-height: 720px;
    --hero-rise: 0px;
  }

  .home-hero::after {
    left: 50%;
    right: auto;
    bottom: 0.02em;
    transform: translateX(-50%);
    font-size: 32vw;
    white-space: nowrap;
  }

  .home-hero .hero-panel {
    order: -1;
    min-height: auto;
    border-right: 0;
    border-bottom: var(--line);
    position: absolute;
    z-index: 3;
    top: clamp(86px, 12dvh, 112px);
    left: 22px;
    right: 22px;
    bottom: auto;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-hero .hero-content {
    max-width: 100%;
  }

  .home-hero .hero-lead {
    margin-top: 18px;
    line-height: 1.7;
    max-width: 21rem;
    padding-bottom: 0;
    font-size: 0.9rem;
  }

  .home-hero .hero-mobile-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 0;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.035em;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

  .home-hero .hero-mobile-link:active {
    transform: translateY(1px);
  }

  .home-hero .hero-photo {
    order: 1;
    border-bottom: 0;
    position: absolute;
    z-index: 2;
    inset: auto 0 0 auto;
    width: 100%;
    height: 64%;
  }

  .home-hero .hero-photo img {
    object-fit: contain;
    object-position: 65% 100%;
    filter: drop-shadow(14px 18px 14px rgb(0 0 0 / 18%));
  }

  .hero-cta {
    min-height: 54px;
    padding-block: 13px;
    width: min(100%, 320px);
  }

  .home-hero .hero-panel h1 {
    line-height: 0.92;
    font-size: clamp(4.7rem, 21vw, 6.5rem);
  }
}

/* HOME / Hero Note */
.copy-only-hero .hero-title-lockup {
  position: relative;
  width: max-content;
  max-width: 100%;
}

.copy-only-hero .hero-title-lockup h1 {
  max-width: none;
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(6.2rem, 9.2vw, 10.5rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.015em;
}

.copy-only-hero .hero-title-lockup .hero-title-line {
  display: block;
}

.copy-only-hero .hero-title-lockup .hero-title-line:last-child {
  font-size: 0.66em;
  letter-spacing: 0.025em;
}

@media (max-width: 768px) {
  .copy-only-hero .hero-title-lockup {
    width: 100%;
    margin-top: 96px;
  }

  .copy-only-hero .hero-title-lockup h1 {
    font-size: clamp(4.7rem, 21vw, 6.5rem);
  }
}

.copy-only-hero .hero-panel {
  z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero .hero-photo img {
    opacity: 1;
    transform: scale(var(--hero-burger-display-scale));
    transition: none;
  }
}

/* HOME / Rich Brothers Intro */
@media (max-width: 700px) {
  .main-rich-home .home-link {
    border-bottom: 8px solid var(--yellow);
  }

  .main-rich-home .home-link:last-child {
    border-bottom: 0;
  }
}

/* =========================================================
   BROTHERS
   ========================================================= */

/* BROTHERS / Origin */
.brothers-origin {
  display: grid;
  grid-template-columns: minmax(440px, 0.9fr) minmax(0, 1.1fr);
  min-height: min(820px, calc(100dvh - 82px));
  color: var(--paper);
  background: var(--ink);
}

.brothers-origin-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 126px) clamp(36px, 5vw, 80px);
}

.brothers-origin-label {
  margin: 0 0 24px;
  color: var(--yellow);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.brothers-origin-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 4.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.075em;
}

.brothers-origin-copy h2 span {
  display: block;
  white-space: nowrap;
}

.brothers-origin-text {
  max-width: 35em;
  margin-top: clamp(38px, 5vw, 68px);
  padding-top: 28px;
  border-top: 1px solid #494741;
}

.brothers-origin-text p {
  margin: 0 0 1.35em;
  color: #d3cfc5;
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  font-weight: 500;
  line-height: 1.9;
}

.brothers-origin-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.55fr);
  grid-template-rows: 1fr 1fr;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid #494741;
}

.brothers-origin-stack-stage {
  display: contents;
}

.brothers-origin-stack-card {
  display: contents;
}

.brothers-origin-visual figure {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.brothers-origin-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brothers-origin-photo-main {
  grid-row: 1 / 3;
}

.brothers-origin-photo-main img {
  object-position: 54% center;
}

.brothers-origin-photo-sub {
  border-bottom: 4px solid var(--ink);
  border-left: 4px solid var(--ink);
}

.brothers-origin-type {
  position: absolute;
  right: clamp(16px, 2.6vw, 42px);
  bottom: clamp(14px, 2.4vw, 38px);
  margin: 0;
  color: var(--yellow);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 0.76;
  text-align: right;
  letter-spacing: 0.015em;
}

@media (max-width: 900px) {
  .brothers-origin {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brothers-origin-copy {
    min-height: 620px;
  }

  .brothers-origin-visual {
    min-height: 680px;
    border-top: 1px solid #494741;
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .brothers-origin-copy {
    min-height: auto;
    padding: 76px 24px 82px;
  }

  .brothers-origin-copy h2 {
    font-size: clamp(3rem, 14.5vw, 4.6rem);
  }

  .brothers-origin-copy h2 span {
    white-space: normal;
  }

  .brothers-origin-visual {
    grid-template-columns: 1fr 0.55fr;
    min-height: 520px;
  }

  .brothers-origin-type {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }
}

/* BROTHERS / Hero */
.brothers-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient( 90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.72) 28%, rgba(10, 10, 10, 0.35) 46%, rgba(10, 10, 10, 0) 65% );
}

.brothers-statement::before {
  content: "";
  width: 72px;
  height: 4px;
  margin-bottom: 14px;
  background: var(--yellow);
}

.brothers-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  min-height: calc(100dvh - 82px);
  border-bottom: 1px solid var(--ink);
}

.brothers-statement {
  position: absolute;
  left: clamp(28px, 6vw, 96px);
  bottom: clamp(40px, 6vh, 72px);
  z-index: 2;
  color: #f1ede4;
  display: grid;
  gap: 5px;
  margin-top: clamp(42px, 7vh, 82px);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  font-weight: 900;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .brothers-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.poster-brothers-hero {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: calc(100dvh - 82px);
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
}

.poster-brothers-hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient( 90deg, var(--yellow) 0%, rgb(245 184 0 / 0.96) 26%, rgb(245 184 0 / 0.68) 46%, rgb(245 184 0 / 0.28) 66%, rgb(245 184 0 / 0.08) 82%, rgb(245 184 0 / 0.02) 100% );
  pointer-events: none;
}

.poster-brothers-hero::after {
  content: "FAMILY";
  position: absolute;
  z-index: 3;
  left: -0.025em;
  bottom: -0.06em;
  color: rgb(21 21 21 / 0.06);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(12rem, 20vw, 23rem);
  line-height: 0.8;
  letter-spacing: -0.035em;
  white-space: nowrap;
  pointer-events: none;
}

.poster-brothers-hero .brothers-statement {
  position: absolute;
  z-index: 4;
  left: clamp(58px, 7vw, 112px);
  bottom: clamp(82px, 11vh, 124px);
  display: grid;
  gap: 5px;
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 1050px) and (min-width: 769px) {
  .poster-brothers-hero::before {
    background: linear-gradient( 90deg, var(--yellow) 0%, rgb(245 184 0 / 0.96) 34%, rgb(245 184 0 / 0.62) 58%, rgb(245 184 0 / 0.22) 78%, rgb(245 184 0 / 0.05) 100% );
  }

  .poster-brothers-hero .brothers-statement {
    left: 44px;
  }
}

@media (max-width: 768px) {
  .poster-brothers-hero {
    display: block;
    min-height: calc(100dvh - 62px);
    overflow: hidden;
  }

  .poster-brothers-hero::before {
    display: block;
    background: linear-gradient( 90deg, rgb(245 184 0 / 0.98) 0%, rgb(245 184 0 / 0.92) 36%, rgb(245 184 0 / 0.62) 64%, rgb(245 184 0 / 0.3) 84%, rgb(245 184 0 / 0.14) 100% );
  }

  .poster-brothers-hero::after {
    z-index: 3;
    top: auto;
    bottom: -0.02em;
    font-size: clamp(8rem, 37vw, 11.5rem);
  }

  .poster-brothers-hero .brothers-statement {
    position: absolute;
    z-index: 4;
    right: 20px;
    bottom: 34px;
    left: 20px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    font-size: 1rem;
  }
}

/* BROTHERS / Rich Hero */
.main-rich-brothers .poster-brothers-hero {
  position: relative;
  display: block;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.main-rich-brothers .poster-brothers-hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 72px 0 0;
  display: block;
  width: auto;
  height: auto;
  background: linear-gradient( 90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.68) 25%, rgba(10, 10, 10, 0.3) 45%, rgba(10, 10, 10, 0) 65% );
  pointer-events: none;
}

.main-rich-brothers .poster-brothers-hero::after {
  z-index: 3;
  top: 9%;
  right: -0.08em;
  bottom: auto;
  left: auto;
  content: "FAMILY";
  color: var(--yellow);
  font-size: clamp(7rem, 17vw, 17rem);
  line-height: 0.75;
  writing-mode: vertical-rl;
  opacity: 0.9;
}

.main-rich-brothers .poster-brothers-hero .brothers-statement {
  z-index: 5;
  bottom: 5%;
  left: 6%;
  color: var(--paper);
}

@media (max-width: 700px) {
  .main-rich-brothers .poster-brothers-hero {
    min-height: 760px;
  }

  .main-rich-brothers .poster-brothers-hero::before {
    display: block;
    background: linear-gradient(
      180deg,
      rgb(10 10 10 / 0) 38%,
      rgb(10 10 10 / 0.28) 52%,
      rgb(10 10 10 / 0.78) 72%,
      rgb(10 10 10 / 0.96) 100%
    );
  }

  .main-rich-brothers .poster-brothers-hero::after {
    top: 86px;
    right: -0.14em;
    font-size: 6rem;
  }

  .main-rich-brothers .poster-brothers-hero .brothers-statement {
    bottom: 34px;
    left: 20px;
  }
}

/* BROTHERS / Profiles */
.brothers-page {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.brother-profiles {
  padding: clamp(82px, 11vw, 168px) clamp(24px, 8vw, 126px);
  color: var(--paper);
  background: var(--ink);
}

.brother-profiles-heading {
  max-width: 850px;
  margin-bottom: clamp(68px, 9vw, 120px);
}

.brother-profiles-heading h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(3.2rem, 7vw, 8.4rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.brother-profiles-heading p {
  max-width: 42em;
  margin: 30px 0 0;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 700;
  line-height: 1.8;
}

.brother-profile {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
  max-width: 1260px;
  margin-inline: auto;
  padding-block: clamp(62px, 9vw, 124px);
  border-top: 1px solid #4a4842;
}

.brother-profile-hinata .brother-photo-placeholder {
  grid-column: 2;
  grid-row: 1;
}

.brother-profile-hinata .brother-profile-copy {
  grid-column: 1;
  grid-row: 1;
}

.brother-photo-placeholder span {
  position: absolute;
  top: 34px;
  left: 34px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

.brother-profile-copy {
  max-width: 620px;
}

.brother-role {
  margin: 0 0 14px;
  color: var(--yellow);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
}

.brother-profile-copy h3 {
  margin: 0;
  font-size: clamp(4.4rem, 8vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.brother-profile-lead {
  margin: 32px 0 12px !important;
  color: var(--yellow);
  font-size: clamp(1.25rem, 2vw, 1.8rem) !important;
  font-weight: 900 !important;
}

.brother-profile-copy > p:not(.brother-role, .brother-profile-lead) {
  max-width: 34em;
  margin: 0;
  line-height: 1.9;
}

.brother-tiktok-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 520px;
  margin-top: 42px;
  padding: 18px 20px;
  border: 1px solid var(--yellow);
  color: var(--ink);
  background: var(--yellow);
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.brother-tiktok-link:hover {
  background: #ffd04a;
  transform: translate(4px, -4px);
}

.brother-tiktok-link:active {
  transform: translate(2px, -2px);
}

.brother-tiktok-link:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 4px;
}

.brother-tiktok-link img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brother-tiktok-link span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 900;
}

.brother-tiktok-link small {
  display: block;
  margin-bottom: 2px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
}

.brother-tiktok-link b {
  font-size: 1.4rem;
}

.brother-official-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid #77736b;
  color: #b8b4aa;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.brother-official-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.brother-official-link:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 5px;
}

@media (max-width: 900px) {
  .brother-profile {
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
    gap: 42px;
  }
}

@media (max-width: 700px) {
  .brother-profiles {
    padding: 84px 22px;
  }

  .brother-profiles-heading {
    margin-bottom: 52px;
  }

  .brother-profiles-heading h2 {
    font-size: clamp(3.4rem, 17vw, 5.3rem);
  }

  .brother-profile {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 58px;
  }

  .brother-profile-hinata {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 58px;
  }

  .brother-profile-hinata .brother-photo-placeholder {
    grid-column: 1;
    grid-row: auto;
  }

  .brother-profile-hinata .brother-profile-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .brother-photo-placeholder {
    width: 100%;
    aspect-ratio: 4 / 4.6;
  }

  .brother-photo-placeholder strong {
    right: 18px;
    bottom: -0.08em;
    font-size: clamp(4.4rem, 20vw, 5.6rem);
  }

  .brother-profile-copy h3 {
    font-size: clamp(4.8rem, 24vw, 7rem);
  }

  .brother-tiktok-link {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 14px;
    width: 100%;
    padding: 16px;
  }

  .brother-tiktok-link img {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brother-tiktok-link {
    transition: none;
  }

  .brother-official-link {
    transition: none;
  }
}

.brother-photo-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  min-width: 0;
  color: var(--ink);
  position: absolute;
  overflow: visible;
  background: transparent;
  border: 0;
}

.brother-photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  z-index: 0;
  background: var(--yellow);
}

.brother-photo-placeholder::after {
  border: 1px solid rgb(21 21 21 / 0.34);
  display: none;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient( 180deg, rgb(0 0 0 / 0.02) 0%, rgb(0 0 0 / 0.14) 100% );
  pointer-events: none;
}

.brother-photo-placeholder img {
  display: block;
  object-position: 50% 35%;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid var(--ink);
}

.brother-photo-placeholder strong {
  right: 20px;
  position: absolute;
  z-index: 3;
  bottom: -0.08em;
  color: var(--ink);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(6rem, 11vw, 11rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.04em;
  mix-blend-mode: normal;
}

.brother-profile-kaede .brother-photo-placeholder strong {
  right: auto;
  left: -0.02em;
}

.brother-profile-hinata .brother-photo-placeholder strong {
  left: auto;
  right: -0.02em;
}

/* BROTHERS / Rich Origin */
.main-rich-brothers .brothers-origin {
  position: relative;
  display: block;
  min-height: 126svh;
  padding: clamp(64px, 9vw, 130px);
  overflow: hidden;
}

.main-rich-brothers .brothers-origin-visual {
  position: absolute;
  inset: 9% 5% 8% 26%;
  display: block;
  border: 0;
}

.main-rich-brothers .brothers-origin-photo-main {
  position: absolute;
  inset: 0 18% 0 0;
}

.main-rich-brothers .brothers-origin-photo-main img {
  object-position: 48% center;
}

.main-rich-brothers .brothers-origin-photo-sub {
  position: absolute;
  right: 0;
  bottom: 3%;
  width: 38%;
  height: 45%;
  border: 10px solid var(--ink);
}

.main-rich-brothers .brothers-origin-photo-sub img {
  object-position: center 38%;
}

.main-rich-brothers .brothers-origin-copy {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 7vw, 112px);
  bottom: 8%;
  width: min(52vw, 720px);
  padding: clamp(30px, 5vw, 66px);
  background: var(--ink);
  border: 1px solid #555149;
  box-shadow: 0 0 6px rgba(255, 196, 0, 0.8), 0 0 14px rgba(255, 196, 0, 0.45), inset 0 0 8px rgba(255, 196, 0, 0.15);
}

.main-rich-brothers .brothers-origin-type {
  top: 2%;
  right: 0;
  bottom: auto;
}

@media (max-width: 700px) {
  .main-rich-brothers .brothers-origin {
    min-height: 1080px;
    padding: 0;
  }

  .main-rich-brothers .brothers-origin-visual {
    inset: 48px 0 360px 34px;
  }

  .main-rich-brothers .brothers-origin-photo-main {
    right: 8%;
  }

  .main-rich-brothers .brothers-origin-copy {
    right: 20px;
    bottom: 48px;
    left: 20px;
    width: auto;
    padding: 28px 24px;
  }
}

@media (max-width: 900px) {
  .main-rich-brothers .brothers-origin {
    overflow: visible;
    overflow-x: clip;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    padding: 48px 20px 32px;
  }

  .main-rich-brothers .brothers-origin-visual {
    --stack-card-height: clamp(400px, 120vw, 520px);
    --stack-open-gap: clamp(240px, 30vw, 270px);
    position: relative;
    inset: auto;
    isolation: isolate;
    order: 2;
    width: 100%;
    max-width: 680px;
    height: auto;
    aspect-ratio: auto;
    margin: -44px auto var(--stack-open-gap);
    padding-bottom: 0;
    overflow: visible;
  }

  .main-rich-brothers .brothers-origin-stack-stage {
    position: relative;
    top: auto;
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: 0;
  }

  .main-rich-brothers .brothers-origin-stack-stage::after {
    display: block;
    height: calc(clamp(300px, 80vw, 520px) + var(--stack-open-gap));
    content: "";
  }

  .main-rich-brothers .brothers-origin-stack-card {
    display: block;
    height: var(--stack-card-height);
  }

  .main-rich-brothers .brothers-origin-stack-card-main {
    position: sticky;
    z-index: 1;
    top: 76px;
  }

  .main-rich-brothers .brothers-origin-stack-card-sub {
    position: sticky;
    z-index: 2;
    top: calc(76px + var(--stack-open-gap));
    width: 92%;
    height: calc(var(--stack-card-height) - var(--stack-open-gap));
    margin-top: calc(-1 * var(--stack-card-height) + 16px);
    margin-left: auto;
  }

  .main-rich-brothers .brothers-origin-visual figure {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 1;
    transform: none;
    transition: none;
    background: var(--ink);
  }

  .main-rich-brothers .brothers-origin-visual .brothers-origin-photo-main {
    z-index: auto;
  }

  .main-rich-brothers .brothers-origin-visual .brothers-origin-photo-sub {
    z-index: auto;
    width: 100%;
    height: var(--stack-card-height);
    aspect-ratio: auto;
    margin: 0;
    border-width: 6px;
  }

  .main-rich-brothers .brothers-origin-type {
    display: none;
  }

  .main-rich-brothers .brothers-origin-copy {
    position: relative;
    z-index: 3;
    inset: auto;
    order: 1;
    width: calc(100% - 24px);
    max-width: 680px;
    margin: 0 auto 0 0;
    padding: 28px 24px;
  }

  .main-rich-brothers .brothers-origin-copy h2 {
    font-size: clamp(2.25rem, 9.3vw, 2.6rem);
    letter-spacing: -0.065em;
  }

  .main-rich-brothers .brothers-origin-copy h2 span {
    white-space: nowrap;
  }
}

/* BROTHERS / Rich Profiles */
.main-rich-brothers .brothers-page {
  overflow: hidden;
}

.main-rich-brothers .brother-profiles {
  padding-inline: 0;
}

.main-rich-brothers .brother-profiles-heading {
  margin-left: clamp(24px, 8vw, 126px);
}

.main-rich-brothers .brother-profiles-heading h2 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.12em;
}

.main-rich-brothers .brother-profiles-heading h2 span {
  white-space: nowrap;
}

.main-rich-brothers .brother-profile {
  position: relative;
  display: block;
  max-width: none;
  min-height: 104svh;
  padding: clamp(72px, 9vw, 128px) clamp(24px, 8vw, 126px);
  overflow: hidden;
}

.main-rich-brothers .brother-profile-copy {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 13%;
  width: min(46vw, 610px);
  padding: clamp(28px, 4vw, 58px);
  background: var(--ink);
  border: 1px solid #5b5850;
}

.main-rich-brothers .brother-profile-hinata .brother-profile-copy {
  right: auto;
  left: 7%;
}

@media (max-width: 700px) {
  .main-rich-brothers .brother-profiles {
    padding-top: 80px;
  }

  .main-rich-brothers .brother-profiles-heading {
    margin: 0 20px 72px;
  }

  .main-rich-brothers .brother-profile {
    min-height: 900px;
    padding: 0;
  }

  .main-rich-brothers .brother-photo-placeholder {
    top: 48px;
    right: 20px;
    bottom: 330px;
    left: 20px;
    width: auto;
  }

  .main-rich-brothers .brother-profile-hinata .brother-photo-placeholder {
    top: 48px;
    right: 20px;
    bottom: 330px;
    left: 20px;
    width: auto;
  }

  .main-rich-brothers .brother-profile-copy {
    right: 20px;
    bottom: 48px;
    left: 20px;
    width: auto;
    padding: 26px 22px;
  }

  .main-rich-brothers .brother-profile-hinata .brother-profile-copy {
    right: 20px;
    bottom: 48px;
    left: 20px;
    width: auto;
    padding: 26px 22px;
  }

  .main-rich-brothers .brother-profile-copy h3 {
    font-size: 4.5rem;
  }

  .main-rich-brothers .brother-tiktok-link {
    margin-top: 24px;
  }
}

.main-rich-brothers .brother-profile-kaede .brother-photo-placeholder {
  top: 11%;
  bottom: auto;
  left: 7%;
  width: 54%;
  height: 81svh;
}

.main-rich-brothers .brother-profile-kaede .brother-photo-placeholder img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 50% 28%;
}

.main-rich-brothers .brother-photo-placeholder {
  position: absolute;
  top: 9%;
  bottom: 9%;
  left: 7%;
  aspect-ratio: auto;
  width: 54%;
}

.main-rich-brothers .brother-profile-hinata .brother-photo-placeholder {
  right: 7%;
  left: auto;
  width: 58%;
}

@media (max-width: 900px) {
  .main-rich-brothers .brothers-page {
    overflow: visible;
    overflow-x: clip;
  }

  .main-rich-brothers .brother-profile {
    min-height: 0;
    padding: 48px 20px 72px;
    overflow: visible;
  }

  .main-rich-brothers .brother-photo-placeholder {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 680px;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: 0 auto clamp(62px, 12vw, 76px);
  }

  .main-rich-brothers .brother-profile-kaede .brother-photo-placeholder {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 680px;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: 0 auto clamp(62px, 12vw, 76px);
  }

  .main-rich-brothers .brother-profile-hinata .brother-photo-placeholder {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 680px;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: 0 auto clamp(62px, 12vw, 76px);
  }

  .main-rich-brothers .brother-profile-copy {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }

  .main-rich-brothers .brother-profile-hinata .brother-profile-copy {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }

  .main-rich-brothers .brother-photo-placeholder strong {
    bottom: -0.12em;
    font-size: clamp(4.4rem, 21vw, 5.5rem);
  }

  .main-rich-brothers .brother-profile-hinata .brother-photo-placeholder img {
    object-position: 85% 35%;
  }
}

/* =========================================================
   MENU / SCHEDULE
   ========================================================= */

/* MENU / Schedule */
.schedule-feature {
  width: min(calc(100% - 64px), var(--max));
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: var(--line);
}

.schedule-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 80px);
  background: var(--ink);
  color: var(--paper);
}

.schedule-feature p {
  margin: 0 0 26px;
}

.schedule-feature .button {
  align-self: flex-start;
  background: var(--yellow);
  color: var(--ink);
}

@media (max-width: 900px) {
  .schedule-feature {
    width: min(calc(100% - 32px), var(--max));
    margin: 48px auto;
    grid-template-columns: 1fr;
  }

  .schedule-feature picture {
    min-height: 390px;
    border-right: 0;
    border-bottom: var(--line);
  }

  .schedule-feature > div {
    padding: 36px 26px;
  }
}

.schedule-feature picture {
  min-height: 480px;
  border-right: var(--line);
  overflow: hidden;
}

.schedule-feature img {
  transform: scale(1.045);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.schedule-feature.is-visible img {
  transform: scale(1);
}

.schedule-feature h2 {
  margin: 0 0 30px;
  color: var(--yellow);
  font-size: 4rem;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.025em;
}

.schedule-visual {
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 0;
  width: 60%;
  display: block;
  padding: 0;
  color: inherit;
  background: transparent;
  pointer-events: none;
}

.schedule-feature.schedule-poster > .schedule-visual {
  display: block;
  padding: 0;
  color: inherit;
  background: transparent;
}

.schedule-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 10%;
  bottom: 7%;
  width: 76%;
  height: 9%;
  border-radius: 50%;
  background: rgb(21 21 21 / 0.2);
  filter: blur(18px);
}

.schedule-visual > span {
  position: absolute;
  z-index: -2;
  left: 1%;
  bottom: -0.08em;
  color: rgb(21 21 21 / 0.06);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(9rem, 17vw, 16rem);
  line-height: 0.8;
  white-space: nowrap;
}

.schedule-panel h2 {
  margin: 0;
  color: var(--yellow);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(4rem, 6vw, 6.4rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.9;
}

.schedule-panel p {
  max-width: 31rem;
  margin: 26px 0 0;
  color: var(--paper);
  font-size: clamp(0.94rem, 1vw, 1.05rem);
  line-height: 1.9;
}

.schedule-button {
  align-self: auto;
  margin-top: 30px;
  min-height: 56px;
  padding: 15px 25px;
  color: var(--ink);
  background: var(--yellow);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.schedule-button:hover {
  color: var(--ink);
  background: #ffd04a;
  transform: translateY(-3px);
  box-shadow: 0 8px 0 rgb(0 0 0 / 0.2);
}

.schedule-button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 5px;
}

.schedule-feature.schedule-poster {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  height: clamp(560px, 48vw, 660px);
  margin: 90px auto;
  overflow: visible;
  border: 0;
  background: transparent;
}

.schedule-panel {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
  top: 30px;
  right: 0;
  bottom: 30px;
  width: 52%;
  border: 0;
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
}

.schedule-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 7%;
  width: 5px;
  background: var(--yellow);
  transform: skewX(-6deg);
}

.schedule-panel-content {
  width: 100%;
  max-width: 520px;
  padding: clamp(42px, 5vw, 72px) clamp(36px, 4.5vw, 68px) clamp(42px, 5vw, 72px) clamp(130px, 11vw, 176px);
  padding-left: clamp(150px, 12vw, 190px);
}

.schedule-visual img {
  position: absolute;
  left: -1%;
  bottom: 5%;
  width: 100%;
  height: 92%;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(20px 28px 22px rgb(0 0 0 / 24%));
  transform: none;
  transition: none;
  will-change: transform, opacity;
}

.schedule-poster.is-visible .schedule-visual img {
  transform: none;
  animation: truck-drive-in 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (max-width: 900px) and (min-width: 769px) {
  .schedule-visual {
    width: 60%;
  }

  .schedule-panel-content {
    padding-right: 34px;
    padding-left: 122px;
  }
}

@media (max-width: 768px) {
  .schedule-visual {
    position: relative;
    inset: auto;
    width: 100%;
    height: 340px;
  }

  .schedule-visual > span {
    left: -0.03em;
    bottom: 0.06em;
    font-size: 36vw;
  }

  .schedule-visual img {
    left: -4%;
    bottom: 0;
    width: 108%;
    height: 100%;
    object-position: center bottom;
    filter: drop-shadow(12px 18px 14px rgb(0 0 0 / 22%));
  }

  .schedule-panel h2 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .schedule-panel p {
    margin-top: 20px;
  }

  .schedule-button {
    width: 100%;
    margin-top: 26px;
  }

  .schedule-feature.schedule-poster {
    display: grid;
    height: auto;
    min-height: 0;
    width: 100%;
    margin: 54px auto;
    overflow: hidden;
  }

  .schedule-panel {
    position: relative;
    z-index: 1;
    inset: auto;
    min-height: 330px;
    border: 0;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -34px;
    clip-path: none;
  }

  .schedule-panel::before {
    inset: 0 0 auto;
    width: auto;
    height: 5px;
    transform: none;
  }

  .schedule-panel-content {
    max-width: none;
    padding: 70px 26px 38px;
  }

  .schedule-poster.is-visible .schedule-visual img {
    animation-name: truck-drive-in-mobile;
  }
}

@media (prefers-reduced-motion: reduce) {
  .schedule-feature img {
    transform: none;
    transition: none;
  }

  .schedule-poster.is-visible .schedule-visual img {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* MENU / Menu Board */
.menu-showcase {
  width: 100%;
  margin: 0 auto 90px;
  background: var(--ink);
}

.menu-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr);
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 460px;
  background: var(--ink);
}

.menu-collage figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.menu-photo-main {
  grid-row: 1 / 3;
}

.menu-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-collage figure:hover img {
  transform: scale(1.035);
}

.menu-photo-main figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 9px 15px;
  color: var(--ink);
  background: var(--yellow);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.menu-board-pro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 72px);
  border-top: 4px solid var(--yellow);
  color: var(--paper);
  background: var(--ink);
}

.menu-board-pro header > p {
  margin: 0 0 10px;
  color: var(--yellow);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.menu-board-pro h2 {
  margin: 0;
  color: var(--paper);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(4.8rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.82;
}

.menu-board-pro header > div {
  margin-top: 22px;
  color: #c7c2b6;
  font-size: 0.96rem;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 88px);
  margin: 38px 0 0;
}

.menu-category h3 {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin: 0;
  color: var(--paper);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.menu-category h3 span {
  color: var(--yellow);
  font-size: 1.2rem;
}

.menu-items {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.menu-items li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid #555;
}

.menu-items h4 {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.menu-items p {
  margin: 8px 0 0;
  color: #c7c2b6;
  font-size: 0.88rem;
}

.menu-description-line {
  display: block;
}

.menu-items .menu-item-name {
  margin-top: 9px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.menu-items .menu-item-highlight {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 3px 8px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.menu-item-price {
  color: var(--yellow);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.menu-site-note {
  margin: 28px 0 0;
  padding: 18px 20px;
  border: 1px solid #5a5a5a;
  color: #c7c2b6;
  font-size: 0.82rem;
  line-height: 1.75;
}

.menu-site-note strong {
  display: block;
  color: var(--yellow);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .menu-collage {
    height: 560px;
  }
}

@media (max-width: 600px) {
  .menu-showcase {
    width: 100%;
    margin: 0 auto 52px;
  }

  .menu-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(360px, 1.5fr) minmax(180px, 0.7fr);
    height: 580px;
  }

  .menu-photo-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .menu-board-pro {
    padding: 38px 24px;
  }

  .menu-board-pro h2 {
    font-size: clamp(4.8rem, 23vw, 6.4rem);
  }

  .menu-categories {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .menu-items li {
    gap: 12px;
  }

  .menu-item-price {
    font-size: 1.45rem;
  }

  .menu-site-note {
    padding: 16px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-collage img {
    transition: none;
  }

  .menu-collage figure:hover img {
    transform: none;
  }
}

/* =========================================================
   ONLINE SHOP
   ========================================================= */

/* SHOP / Page Title */
.shop-page .page-title {
  color: var(--ink);
}

.shop-page .page-title h1 {
  font-size: clamp(4.8rem, 8vw, 8rem);
}

.shop-page-lead {
  max-width: none !important;
}

.shop-page-lead span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .shop-page .page-title h1 {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .shop-page-lead {
    font-size: clamp(0.78rem, 3.6vw, 0.9rem);
  }
}

/* SHOP / Purchase Information */
.shop-status {
  width: min(calc(100% - 64px), var(--max));
  margin: 24px auto 0;
  color: #aaa69c;
  font-size: 0.78rem;
}

.purchase-note {
  width: min(calc(100% - 64px), var(--max));
  margin: 50px auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #555;
}

.purchase-note p {
  margin: 0;
  padding: 26px 26px 0 0;
  color: #c7c2b6;
}

.purchase-note strong {
  display: block;
  color: var(--yellow);
}

@media (max-width: 900px) {
  .shop-status {
    width: min(calc(100% - 32px), var(--max));
  }

  .purchase-note {
    width: min(calc(100% - 32px), var(--max));
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .purchase-note p {
    padding: 20px 0;
    border-bottom: 1px solid #555;
  }
}

.shop-launch-note {
  width: min(calc(100% - 64px), var(--max));
  margin: 72px auto 0;
  padding: clamp(38px, 6vw, 76px);
  color: var(--ink);
  background: var(--yellow);
}

.shop-launch-note > p {
  margin: 0 0 14px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
}

.shop-launch-note h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 1.15;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.shop-launch-note h2 span {
  display: inline;
}

.shop-launch-note .button {
  margin-top: 30px;
  background: var(--ink);
  color: var(--paper);
}

.shop-launch-note .button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .shop-launch-note {
    width: min(calc(100% - 32px), var(--max));
    margin-top: 48px;
    padding: 38px 24px;
  }

  .shop-launch-note h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    white-space: normal;
  }

  .shop-launch-note h2 span {
    display: block;
  }

  .shop-launch-note .button {
    width: 100%;
  }
}

/* SHOP / Products */
.product-card:last-child {
  border: 0;
}

.sample-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 3px 8px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  border: 4px solid var(--paper);
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.product-card > picture {
  aspect-ratio: 4/4.6;
  border-bottom: 4px solid var(--paper);
  overflow: hidden;
}

.product-card:first-child > picture {
  aspect-ratio: 4/5.2;
}

.product-copy {
  flex: 1;
  padding: 28px;
}

.product-copy h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.1;
}

.product-copy > p {
  margin: 12px 0 0;
  color: #c7c2b6;
  font-size: 0.9rem;
}

.product-button {
  display: inline-block;
  margin-top: 20px;
  border-bottom: 2px solid var(--yellow);
  color: var(--yellow);
  font-weight: 900;
}

.shop-page {
  background: var(--ink);
  color: var(--paper);
}

.shop-page .shop-grid {
  margin-top: 80px;
}

.product-card picture {
  overflow: hidden;
}

.product-card img {
  transform: scale(1.045);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card.is-visible img {
  transform: scale(1);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 4px solid var(--paper);
  margin: 0;
  transition: background-color 0.35s ease;
}

.product-card:hover {
  background: #202020;
}

.product-card:hover img {
  transform: scale(1.025);
}

.stripe-payment-slot {
  margin-top: 24px;
}

.stripe-payment-slot .product-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 13px 18px;
  border: 2px solid var(--yellow);
  color: var(--ink);
  background: var(--yellow);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.stripe-payment-slot .product-button:not(.is-disabled):hover {
  background: #ffd04a;
  transform: translateY(-3px);
}

.stripe-payment-slot .product-button:not(.is-disabled):focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 4px;
}

.stripe-payment-slot .product-button.is-disabled {
  border-color: #5d5a54;
  color: #aaa69c;
  background: transparent;
  cursor: not-allowed;
}

.product-gallery {
  min-width: 0;
  background: var(--ink);
}

.product-gallery-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.product-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.product-gallery-viewport:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
}

.product-gallery-track {
  display: flex;
}

.product-gallery-slide {
  flex: 0 0 100%;
  aspect-ratio: 4 / 4.6;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.product-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-photo-coming-soon {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 32px;
  color: var(--paper);
  text-align: center;
  background: #24231f;
  box-shadow: inset 0 0 0 1px #4f4c44;
}

.main-rich-shop .product-gallery.is-coming-soon .product-gallery-viewport,
.main-rich-shop .product-gallery.is-coming-soon .product-gallery-track,
.main-rich-shop .product-gallery.is-coming-soon .product-gallery-slide {
  height: 100%;
}

.product-gallery-controls {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  min-height: 48px;
  border-top: 1px solid #555;
  border-bottom: 4px solid var(--paper);
}

.product-gallery-controls button {
  border: 0;
  color: var(--ink);
  background: var(--yellow);
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
}

.product-gallery-controls button:first-child {
  border-right: 1px solid var(--ink);
}

.product-gallery-controls button:last-child {
  border-left: 1px solid var(--ink);
}

.product-gallery-controls button:hover:not(:disabled) {
  background: #ffd04a;
}

.product-gallery-controls button:active:not(:disabled) {
  transform: translateY(1px);
}

.product-gallery-controls button:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid var(--paper);
  outline-offset: -4px;
}

.product-gallery-controls button:disabled {
  color: #77736b;
  background: #2a2926;
  cursor: default;
}

.product-gallery-controls span {
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

@media (max-width: 900px) {
  .product-card {
    border: 0;
    border-bottom: 4px solid var(--paper);
  }

  .product-card:last-child {
    border: 0;
    border-bottom: 0;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    width: min(calc(100% - 32px), var(--max));
  }

  .product-card > picture {
    aspect-ratio: 4/3.7;
  }

  .product-card:first-child > picture {
    aspect-ratio: 4/3.7;
  }

  .shop-page .shop-grid {
    margin-top: 48px;
  }

  .product-gallery-slide {
    aspect-ratio: 4 / 3.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card img {
    transform: none;
    transition: none;
  }

  .product-gallery-viewport {
    scroll-behavior: auto;
  }
}

/* SHOP / Rich Page Title */
.main-rich-shop .page-title {
  position: relative;
  min-height: 72svh;
  padding: 13vh clamp(24px, 7vw, 112px) 7vh;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.main-rich-shop .page-title::after {
  position: absolute;
  right: -0.05em;
  bottom: -0.13em;
  content: "WORKSHOP";
  color: var(--yellow);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(8rem, 21vw, 21rem);
  line-height: 0.8;
}

.main-rich-shop .page-title > p {
  position: relative;
  z-index: 1;
}

.main-rich-shop .page-title h1 {
  position: relative;
  z-index: 1;
  max-width: 9em;
  color: var(--paper);
  font-size: clamp(4.8rem, 9vw, 9rem);
}

.main-rich-shop .shop-page-lead {
  position: relative;
  z-index: 1;
  max-width: 34em;
  margin-top: 9vh;
  padding-left: 14%;
}

@media (max-width: 700px) {
  .main-rich-shop .page-title {
    min-height: 620px;
    padding: 100px 20px 48px;
  }

  .main-rich-shop .page-title h1 {
    font-size: clamp(4.5rem, 20vw, 6rem);
  }

  .main-rich-shop .page-title::after {
    right: -0.08em;
    bottom: 0;
    font-size: 7rem;
    writing-mode: vertical-rl;
  }

  .main-rich-shop .shop-page-lead {
    width: 80%;
    margin-top: 70px;
    padding-left: 0;
  }

  .main-rich-shop .shop-page-lead span {
    white-space: normal;
  }
}

/* SHOP / Rich Products */
.main-rich-shop .shop-grid {
  display: block;
  border: 0;
  background: var(--paper);
}

.main-rich-shop .product-card {
  position: relative;
  display: block;
  min-height: 88svh;
  padding: clamp(56px, 7vw, 100px) clamp(24px, 7vw, 112px);
  overflow: hidden;
  border: 0;
  color: var(--ink);
  background: var(--paper);
}

.main-rich-shop .product-card:nth-child(2) {
  background: var(--paper);
}

.main-rich-shop .product-card:nth-child(2)::before {
  color: var(--yellow);
  opacity: 0.18;
}

.main-rich-shop .product-card::before {
  position: absolute;
  top: 5%;
  left: 3%;
  content: attr(data-product-index);
  color: var(--ink);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(6rem, 12vw, 12rem);
  line-height: 0.8;
  opacity: 0.07;
}

.main-rich-shop .product-gallery {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 7%;
  width: 55%;
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--yellow);
}

.main-rich-shop .product-card:nth-child(even) .product-gallery {
  right: 7%;
  left: auto;
  box-shadow: -12px 12px 0 var(--ink);
}

.main-rich-shop .product-gallery-viewport {
  height: calc(100% - 48px);
}

.main-rich-shop .product-gallery-track {
  height: calc(100% - 48px);
}

.main-rich-shop .product-gallery-slide {
  height: calc(100% - 48px);
  aspect-ratio: auto;
}

.main-rich-shop .product-copy {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 14%;
  width: min(38vw, 520px);
  padding: clamp(28px, 3.2vw, 46px);
  color: var(--paper);
  background: rgb(21 21 21 / 0.96);
  border: 2px solid var(--yellow);
  box-shadow: 8px 8px 0 rgb(21 21 21 / 0.18);
}

.main-rich-shop .product-card:nth-child(even) .product-copy {
  right: auto;
  left: 7%;
}

.main-rich-shop .product-copy h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.3rem, 3.8vw, 4.4rem);
  line-height: 1;
}

.main-rich-shop .product-copy > p {
  color: #d8d3c9;
}

@media (max-width: 900px) {
  .main-rich-shop .product-copy {
    width: min(54vw, 560px);
  }
}

@media (max-width: 700px) {
  .main-rich-shop .product-card {
    min-height: 820px;
    padding: 0;
  }

  .main-rich-shop .product-gallery {
    top: 48px;
    right: 20px;
    bottom: 320px;
    left: 20px;
    width: auto;
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .main-rich-shop .product-card:nth-child(even) .product-gallery {
    top: 48px;
    right: 20px;
    bottom: 320px;
    left: 20px;
    width: auto;
    box-shadow: -9px 9px 0 var(--ink);
  }

  .main-rich-shop .product-copy {
    right: 20px;
    bottom: 48px;
    left: 20px;
    width: auto;
    padding: 24px 20px;
    border-width: 2px;
  }

  .main-rich-shop .product-card:nth-child(even) .product-copy {
    right: 20px;
    bottom: 48px;
    left: 20px;
    width: auto;
    padding: 24px 20px;
    border-width: 2px;
  }

  .main-rich-shop .product-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .main-rich-shop .product-copy {
    right: 20px;
    bottom: 48px;
    left: 20px;
    width: auto;
    padding: 24px 20px;
    border-width: 2px;
  }

  .main-rich-shop .product-card:nth-child(even) .product-copy {
    right: 20px;
    bottom: 48px;
    left: 20px;
    width: auto;
    padding: 24px 20px;
    border-width: 2px;
  }

  .main-rich-shop .product-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.15;
  }
}

/* =========================================================
   Footer
   ========================================================= */

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 58px 6vw;
  color: var(--paper);
  background: var(--ink);
}

.footer-brand {
  color: var(--yellow);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  letter-spacing: 0.02em;
  line-height: 0.85;
}

.footer-meta {
  text-align: right;
  font-size: 0.78rem;
  color: #aaa69c;
}

@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }

  .footer-meta {
    text-align: left;
  }
}

/* =========================================================
   Keyframes / Other At-rules
   ========================================================= */

@keyframes truck-drive-in {
  0% {
    opacity: 0;
    transform: translateX(58%) translateY(12px) rotate(2deg);
  }
  74% {
    opacity: 1;
    transform: translateX(-2.5%) translateY(-4px) rotate(-0.7deg);
  }
  88% {
    transform: translateX(0.8%) translateY(2px) rotate(0.25deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0);
  }
}

@keyframes truck-drive-in-mobile {
  0% {
    opacity: 0;
    transform: translateX(45%) translateY(8px) rotate(2deg);
  }
  76% {
    opacity: 1;
    transform: translateX(-2%) translateY(-2px) rotate(-0.5deg);
  }
  90% {
    transform: translateX(0.5%) translateY(1px) rotate(0.2deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
