:root {
  --red: #c93b27;
  --red-deep: #a82a1c;
  --ink: #050505;
  --paper: #fbf8f2;
  --soft: #ede6dc;
  --muted: #8b8680;
  --line: 1px solid var(--ink);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.18;
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: end start;
  padding: 24px;
  color: white;
  background: var(--ink);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader img {
  position: absolute;
  top: 34px;
  left: 28px;
  width: 96px;
  opacity: 0.9;
}

.preloader__percent {
  font-size: clamp(72px, 17vw, 220px);
  line-height: 0.85;
}

.preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}

.logo-sticker,
.pill-button,
.header-actions {
  pointer-events: auto;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.logo-sticker {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  mix-blend-mode: multiply;
  transform: rotate(-7deg);
}

.logo-sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pill-button {
  min-height: 40px;
  padding: 8px 20px;
  border: var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: white;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.pill-button:hover {
  color: white;
  background: var(--ink);
  transform: translateY(-1px);
}

.pill-button.dark {
  color: white;
  border-color: white;
  background: var(--ink);
  box-shadow: none;
}

.pill-button.dark:hover {
  color: var(--ink);
  background: white;
}

.nav-panel {
  position: fixed;
  z-index: 180;
  top: 18px;
  right: 18px;
  width: min(420px, calc(100vw - 36px));
  padding: 22px;
  border: var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-panel nav {
  display: grid;
  margin-top: 24px;
  border-top: var(--line);
}

.nav-panel nav button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 28px;
}

.nav-panel nav button::after {
  content: "→";
}

.nav-panel nav button:hover {
  color: var(--red);
}

.scroll-progress {
  position: fixed;
  z-index: 60;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 3px;
  background: rgba(0, 0, 0, 0.15);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--ink);
}

.site-shell {
  height: 100vh;
  overflow: hidden;
}

.track {
  display: flex;
  width: max-content;
  height: 100vh;
  will-change: transform;
}

.panel {
  position: relative;
  flex: 0 0 auto;
  min-width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--paper);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(420px, 42vw) minmax(680px, 58vw);
  border-right: var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 12vh 30px 8vh 22px;
  background: white;
  border-right: var(--line);
}

.eyebrow {
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
  font-weight: 400;
}

h1 {
  font-size: clamp(82px, 9.5vw, 172px);
  line-height: 0.85;
}

.hero-logo-title {
  display: block;
  line-height: 1;
}

.hero-logo-title span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero-logo-title img {
  width: clamp(260px, 36vw, 460px);
  max-width: 100%;
  height: auto;
  transform: rotate(-2deg);
  transform-origin: left center;
}

h2 {
  font-size: clamp(30px, 4.2vw, 76px);
  line-height: 0.95;
}

h3 {
  font-size: 24px;
}

.lead,
.hero-copy p:not(.eyebrow),
.info-panel p,
.collage-copy p,
.black-copy p,
address {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.18;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
    var(--red);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 64px 64px;
}

.paper-a {
  position: absolute;
  z-index: 1;
  left: 4vw;
  top: 10vh;
  width: 68%;
  transform: rotate(-2deg);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.2));
}

.hero-cover {
  position: absolute;
  z-index: 4;
  right: 6vw;
  bottom: 12vh;
  width: min(560px, 48vw);
  border: var(--line);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.giant-word {
  position: absolute;
  z-index: 3;
  left: -6vw;
  bottom: -14vh;
  color: var(--ink);
  font-size: clamp(260px, 48vw, 620px);
  line-height: 0.75;
}

.sticker {
  position: absolute;
  z-index: 6;
  pointer-events: none;
}

.sticker-eye {
  top: 34px;
  left: 48px;
  width: 120px;
  transform: rotate(-9deg);
}

.sticker-ok {
  right: 34px;
  bottom: 32px;
  width: 118px;
  transform: rotate(-9deg);
}

.image-panel {
  display: flex;
  min-width: 1220px;
  border-right: var(--line);
}

.image-panel.reverse {
  flex-direction: row-reverse;
  min-width: 1180px;
}

.image-slab {
  position: relative;
  width: min(56vw, 700px);
  min-width: 560px;
  height: 100%;
  overflow: hidden;
  background: var(--ink);
}

.image-slab > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storefront-mark {
  position: absolute;
  top: 27%;
  left: 50%;
  width: 150px;
  transform: translate(-50%, -50%) rotate(-2deg);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  width: 560px;
  padding: 22px;
  background: white;
  border-left: var(--line);
}

.info-panel h2 {
  padding-top: 70px;
}

.title-panel {
  display: flex;
  min-width: 1320px;
  background: white;
  border-right: var(--line);
}

.section-title {
  flex: 0 0 320px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 20px 0;
  border-left: var(--line);
  border-right: var(--line);
  color: var(--red);
  font-size: clamp(100px, 13vw, 190px);
  line-height: 0.86;
  text-transform: uppercase;
}

.section-title.slim {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 260px;
  writing-mode: vertical-rl;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(330px, 1fr));
  width: 1000px;
  height: 100%;
}

.category-card {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 50vh;
  overflow: hidden;
  border-right: var(--line);
  border-bottom: var(--line);
  color: white;
  background: var(--ink);
  cursor: pointer;
}

.category-card::before,
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.category-card::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.28) 46%, rgba(5, 5, 5, 0.76) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 48%);
  transition: background 0.2s ease;
}

.category-card::after {
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
  mix-blend-mode: screen;
}

.category-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transform: scale(1.02);
  transition: opacity 0.25s ease, transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.category-card__body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 50vh;
  padding: 22px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}

.category-card__title {
  font-size: clamp(46px, 5.4vw, 84px);
  line-height: 0.92;
}

.category-card p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  line-height: 1.12;
}

.category-card__hint {
  align-self: flex-start;
  margin-top: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: white;
  background: rgba(5, 5, 5, 0.35);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 15px;
  line-height: 1;
  text-shadow: none;
}

.category-card:hover {
  color: white;
}

.category-card:hover::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.36) 46%, rgba(5, 5, 5, 0.82) 100%),
    linear-gradient(90deg, rgba(201, 59, 39, 0.28), rgba(255, 255, 255, 0) 52%);
}

.category-card:hover .category-card__image,
.category-card:focus-visible .category-card__image {
  opacity: 1;
  transform: scale(1.08);
}

.category-card:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -8px;
}

.collage-panel {
  display: flex;
  align-items: stretch;
  min-width: 1500px;
  background: var(--soft);
  border-right: var(--line);
}

.collage-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 520px;
  padding: 22px;
  background: white;
  border-right: var(--line);
}

.collage-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 24px;
}

.collage-copy li {
  padding-top: 10px;
  border-top: var(--line);
}

.photo-strip {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
}

.photo-strip img {
  width: 360px;
  height: calc(100vh - 40px);
  object-fit: cover;
  border: var(--line);
}

.scroll-gallery {
  width: 980px;
  overflow: hidden;
}

.gallery-column {
  width: 31.8%;
  height: calc(100vh - 40px);
  overflow: hidden;
  border: var(--line);
  background: white;
}

.gallery-run {
  animation: gallery-scroll 30s linear infinite;
}

.gallery-column.reverse-run .gallery-run {
  animation-direction: reverse;
  animation-duration: 34s;
}

.scroll-gallery:hover .gallery-run {
  animation-play-state: paused;
}

.gallery-run img {
  width: 100%;
  height: calc(100vh - 40px);
  margin-bottom: 18px;
  border: 0;
  object-fit: cover;
}

@keyframes gallery-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.sticker-hi {
  right: 70px;
  top: 48px;
  width: 150px;
  transform: rotate(11deg);
}

.black-panel {
  display: flex;
  min-width: 1340px;
  color: white;
  background: var(--ink);
  border-right: 1px solid white;
}

.big-letter {
  position: absolute;
  left: -30px;
  bottom: -80px;
  color: var(--red);
  opacity: 0.9;
  font-size: clamp(220px, 42vw, 560px);
  line-height: 0.76;
}

.black-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 640px;
  padding: 24px;
}

.publication {
  position: relative;
  z-index: 3;
  align-self: center;
  width: 650px;
  margin-left: auto;
  margin-right: 60px;
  border: 1px solid white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.publication-stack {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 18px;
  align-items: center;
  width: 720px;
  margin: 22px 60px 22px auto;
}

.publication-stack img {
  width: 50%;
  height: calc(100vh - 44px);
  object-fit: cover;
  border: 1px solid white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.audience-panel {
  display: flex;
  min-width: 1120px;
  background: white;
  border-right: var(--line);
}

.audience-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 500px;
  padding: 22px;
  border-right: var(--line);
}

.audience-copy h2 {
  color: var(--red);
  font-size: clamp(64px, 7.2vw, 118px);
}

.audience-copy p:last-child {
  font-size: 30px;
  line-height: 1.15;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 16px;
  width: 620px;
  padding: 70px 26px 26px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
    url("./assets/site/paper-wide.png") center / cover;
}

.audience-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  padding: 12px 24px;
  border: var(--line);
  border-radius: 999px;
  background: white;
  box-shadow: var(--shadow);
  font-size: clamp(26px, 3.5vw, 44px);
}

.audience-note {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

.audience-note p {
  padding-top: 10px;
  border-top: var(--line);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.audience-eye {
  right: 44px;
  bottom: 36px;
  width: 150px;
  transform: rotate(-8deg);
}

.marquee {
  display: flex;
  gap: 36px;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  white-space: nowrap;
}

.marquee span {
  min-width: max-content;
  animation: marquee 20s linear infinite;
  font-size: 24px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 36px));
  }
}

.cooperation-panel {
  display: flex;
  min-width: 1380px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("./assets/site/grid.png") center / 280px auto;
  border-right: var(--line);
}

.cooperation-title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 420px;
  padding: 22px;
  background: var(--red);
  color: white;
  border-right: var(--line);
}

.cooperation-title h2 {
  font-size: clamp(64px, 7vw, 92px);
  font-family: inherit;
  font-weight: 400;
}

.cooperation-title p:last-child {
  font-size: 18px;
  line-height: 1.32;
}

.cooperation-list {
  display: grid;
  align-content: start;
  gap: 14px;
  width: 860px;
  height: 100vh;
  padding: 22px;
  overflow-y: auto;
}

.coop-item {
  border: var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.coop-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 104px;
  padding: 18px;
  border: 0;
  color: var(--ink);
  background: white;
  cursor: pointer;
}

.coop-toggle span {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 0.92;
}

.coop-toggle strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: var(--line);
  border-radius: 50%;
  font-weight: 400;
}

.coop-toggle:hover {
  color: white;
  background: var(--ink);
}

.coop-toggle:hover strong {
  border-color: white;
}

.coop-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.coop-detail p {
  padding: 0 18px 22px;
  font-size: 19px;
  line-height: 1.35;
}

.benefit-label {
  display: inline-block;
  margin: 0 18px 10px;
  padding: 6px 12px;
  border: var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-size: 14px;
}

.coop-detail ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0 18px 20px;
  list-style: none;
}

.coop-detail li {
  padding-top: 8px;
  border-top: var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.25;
}

.coop-item.is-open .coop-detail {
  max-height: 520px;
}

.coop-item.is-open .coop-toggle strong {
  color: white;
  background: var(--ink);
}

.sticker-haha {
  right: 40px;
  bottom: 38px;
  width: 150px;
  transform: rotate(9deg);
}

.sticker-wall {
  background: var(--red);
}

.sticker-omg {
  width: 155px;
  left: 38px;
  bottom: 72px;
  transform: rotate(-8deg);
}

.sticker-wow {
  width: 130px;
  right: 34px;
  top: 42px;
  transform: rotate(12deg);
}

.final-panel {
  display: grid;
  min-width: 100vw;
  color: white;
  background: var(--red);
}

.final-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 62px 62px;
}

.final-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px 180px;
  gap: 40px;
  align-items: end;
  padding: 22px;
}

.final-grid h2 {
  max-width: 850px;
  font-size: clamp(70px, 12vw, 180px);
  line-height: 0.82;
}

address {
  font-style: normal;
}

.back-button {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: white;
  cursor: pointer;
}

.back-button:hover {
  color: white;
  border-color: white;
  background: var(--ink);
}

.back-button span {
  font-size: 18px;
}

.final-cta {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: 30px;
}

.sticker-bye {
  z-index: 3;
  right: 30px;
  bottom: 40px;
  width: 170px;
  transform: rotate(-7deg);
}

.hover-preview {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 220px;
  height: 170px;
  border: var(--line);
  background: white center / cover no-repeat;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(20px, 20px, 0) scale(0.96);
  transition: opacity 0.12s ease, transform 0.12s ease;
}

.hover-preview.is-visible {
  opacity: 1;
  transform: translate3d(20px, 20px, 0) scale(1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-modal,
.category-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 18px;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-modal.is-open,
.category-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.contact-card,
.category-modal__card {
  position: relative;
  width: min(520px, calc(100vw - 36px));
  min-height: calc(100vh - 36px);
  padding: 24px;
  border: var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
  transform: translateX(-110%);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.contact-modal.is-open .contact-card {
  transform: translateX(0);
}

.category-modal {
  justify-content: center;
  align-items: center;
}

.category-modal__card {
  width: min(1120px, calc(100vw - 36px));
  min-height: unset;
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  transform: translateY(30px) scale(0.98);
}

.category-modal.is-open .category-modal__card {
  transform: translateY(0) scale(1);
}

.category-modal__card h2 {
  margin-top: 10px;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
}

.category-modal__copy {
  max-width: 760px;
  margin-top: 14px;
  font-size: 22px;
  line-height: 1.25;
}

.category-modal__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.category-modal__gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: var(--line);
}

.close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.close-button:hover {
  color: white;
  background: var(--ink);
}

.contact-card h2 {
  margin-top: 12px;
  margin-bottom: 34px;
  font-size: clamp(42px, 5.5vw, 64px);
  white-space: nowrap;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 18px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 44px;
  padding: 8px 10px;
  border: var(--line);
  border-radius: 0;
  background: white;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.file-field span,
.form-message {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.form-message.is-error {
  color: var(--red-deep);
}

.form-message.is-success {
  color: #166534;
}

.submit-button {
  width: 160px;
  justify-self: start;
  margin-top: 8px;
}

.submit-button:disabled {
  opacity: 0.55;
  cursor: wait;
}

@media (max-width: 899px) {
  body {
    overflow-x: hidden;
  }

  body.is-locked {
    overflow: hidden;
  }

  .site-shell {
    height: auto;
    overflow: visible;
  }

  .track {
    display: block;
    width: 100%;
    height: auto;
    transform: none !important;
  }

  .panel,
  .image-panel,
  .image-panel.reverse,
  .title-panel,
  .collage-panel,
  .black-panel,
  .audience-panel,
  .cooperation-panel,
  .final-panel {
    display: block;
    min-width: 100%;
    height: auto;
    min-height: unset;
    overflow: hidden;
  }

  .scroll-progress {
    display: none;
  }

  .site-header {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .logo-sticker {
    width: 56px;
    height: 56px;
  }

  .header-actions {
    gap: 6px;
  }

  .site-header .pill-button {
    min-height: 36px;
    padding: 7px 13px;
    box-shadow: 0 12px 42px rgba(0, 0, 0, 0.12);
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    isolation: isolate;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
    padding: 118px 18px 34px;
    color: white;
    background: var(--red);
    border-right: 0;
  }

  .hero-copy::before,
  .hero-copy::after {
    content: "";
    position: absolute;
    pointer-events: none;
  }

  .hero-copy::before {
    inset: 0;
    z-index: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 42px 42px;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-copy > * {
    position: relative;
    z-index: 2;
  }

  .hero-copy .eyebrow {
    align-self: flex-start;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.18);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-size: 13px;
  }

  .hero-visual {
    display: none;
  }

  .paper-a {
    left: -20vw;
    top: 16vh;
    width: 120vw;
  }

  .hero-cover {
    left: 14px;
    right: 14px;
    bottom: 36px;
    width: calc(100% - 28px);
  }

  .giant-word {
    display: none;
  }

  .image-slab {
    width: 100%;
    min-width: 0;
    height: 72vh;
  }

  .storefront-mark {
    top: 25%;
    width: 118px;
  }

  .info-panel,
  .collage-copy,
  .black-copy {
    width: 100%;
    padding: 16px;
    border-left: 0;
    border-right: 0;
  }

  .info-panel h2 {
    padding-top: 48px;
  }

  .lead,
  .hero-copy p:not(.eyebrow),
  .info-panel p,
  .collage-copy p,
  .black-copy p,
  address {
    font-size: 25px;
  }

  .hero-copy .lead {
    max-width: 94vw;
    margin-top: auto;
    font-size: 24px;
    line-height: 1.18;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.22);
  }

  .hero-copy p:not(.eyebrow):not(.lead) {
    max-width: 94vw;
    padding-top: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 11px;
    line-height: 1.34;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.22);
  }

  h1 {
    font-size: 84px;
  }

  .hero-logo-title img {
    width: 100%;
    margin: 0 auto;
    transform: none;
  }

  .hero-logo-title {
    position: relative;
    align-self: center;
    width: min(66vw, 258px);
    margin: 18px 0 22px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.2));
    transform: rotate(-2deg);
  }

  .hero-logo-title::before,
  .hero-logo-title::after {
    display: none;
  }

  h2 {
    font-size: 46px;
  }

  .section-title,
  .section-title.slim {
    position: relative;
    display: block;
    width: auto;
    padding: 16px;
    border: 0;
    border-top: var(--line);
    border-bottom: var(--line);
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 60px;
    line-height: 0.9;
  }

  .category-grid {
    display: block;
    width: 100%;
  }

  .category-card {
    min-height: 62vh;
    padding: 0;
    border-right: 0;
  }

  .category-card::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.22) 40%, rgba(5, 5, 5, 0.82) 100%),
      linear-gradient(90deg, rgba(201, 59, 39, 0.28), rgba(255, 255, 255, 0) 58%);
  }

  .category-card::after {
    background-size: 34px 34px;
    opacity: 0.28;
  }

  .category-card__body {
    min-height: 62vh;
    padding: 18px 16px;
  }

  .category-card__title {
    font-size: 50px;
    max-width: 86vw;
  }

  .category-card p {
    max-width: 82vw;
    font-size: 20px;
    line-height: 1.2;
  }

  .category-card__hint {
    margin-top: 18px;
    padding: 8px 13px;
    font-size: 14px;
  }

  .photo-strip {
    display: block;
    padding: 0;
  }

  .photo-strip img {
    width: 100%;
    height: 68vh;
    border: 0;
    border-bottom: var(--line);
  }

  .scroll-gallery {
    width: 100%;
    overflow: visible;
  }

  .gallery-column {
    width: 100%;
    height: auto;
    border: 0;
    border-bottom: var(--line);
  }

  .gallery-run {
    display: flex;
    gap: 0;
    overflow-x: auto;
    animation: none;
    scroll-snap-type: x mandatory;
  }

  .gallery-run img {
    flex: 0 0 82vw;
    height: 62vh;
    margin-bottom: 0;
    border-right: var(--line);
    scroll-snap-align: start;
  }

  .gallery-duplicate {
    display: none;
  }

  .black-panel {
    min-height: 100vh;
    padding-bottom: 28px;
  }

  .black-copy {
    min-height: 72vh;
  }

  .big-letter {
    display: none;
  }

  .publication {
    width: calc(100% - 32px);
    margin: 0 16px;
  }

  .publication-stack {
    width: 100%;
    margin: 0;
    padding: 0 16px 28px;
    overflow-x: auto;
  }

  .publication-stack img {
    flex: 0 0 82vw;
    width: 82vw;
    height: 62vh;
  }

  .audience-copy {
    display: block;
    width: 100%;
    min-height: 70vh;
    padding: 18px 16px 24px;
    border-right: 0;
    border-bottom: var(--line);
  }

  .audience-copy h2 {
    margin-top: 76px;
    font-size: 72px;
  }

  .audience-copy p:last-child {
    margin-top: 28px;
    font-size: 24px;
  }

  .audience-tags {
    width: 100%;
    padding: 20px 16px 92px;
  }

  .audience-tags span {
    min-height: 52px;
    padding: 9px 16px;
    font-size: 24px;
  }

  .audience-note {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .audience-note p {
    font-size: 17px;
  }

  .cooperation-panel {
    padding-bottom: 16px;
  }

  .cooperation-title {
    display: block;
    width: 100%;
    padding: 18px 16px 22px;
    border-right: 0;
    border-bottom: var(--line);
  }

  .cooperation-title h2 {
    margin-top: 48px;
    font-size: 72px;
  }

  .cooperation-title p:last-child {
    margin-top: 24px;
    font-size: 18px;
  }

  .cooperation-list {
    display: grid;
    width: 100%;
    height: auto;
    padding: 16px;
    overflow: visible;
  }

  .coop-toggle {
    min-height: 82px;
    padding: 14px;
  }

  .coop-toggle span {
    font-size: 38px;
  }

  .coop-detail p {
    padding: 0 14px 18px;
    font-size: 17px;
  }

  .benefit-label {
    margin: 0 14px 10px;
  }

  .coop-detail ul {
    grid-template-columns: 1fr;
    padding: 0 14px 18px;
  }

  .coop-item.is-open .coop-detail {
    max-height: 680px;
  }

  .sticker-haha {
    right: 18px;
    bottom: 22px;
    width: 112px;
  }

  .final-panel {
    min-height: 100vh;
  }

  .final-grid {
    display: block;
    padding: 96px 16px 120px;
  }

  .final-grid h2 {
    margin-bottom: 36px;
    font-size: 74px;
  }

  .back-button {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 74px;
    height: 74px;
  }

  .final-cta {
    top: 18px;
    right: 16px;
  }

  .sticker-bye {
    bottom: 98px;
    width: 135px;
  }

  .category-modal__card {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 16px;
  }

  .category-modal__card h2 {
    padding-right: 44px;
    font-size: 50px;
  }

  .category-modal__copy {
    font-size: 18px;
  }

  .category-modal__gallery {
    grid-template-columns: 1fr;
  }

  .category-modal__gallery img {
    height: 58vh;
  }
}
