@font-face {
  font-family: "XiangYu";
  src: url("../assets/font1.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #090909;
  --paper: #f2f0e9;
  --white: #fff;
  --blue: #bfdcf0;
  --electric: #1f52ff;
  --orange: #ff6433;
  --line: rgba(9, 9, 9, 0.24);
  --muted: rgba(9, 9, 9, 0.57);
  --announcement-height: 29px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "XiangYu", "Helvetica Neue", "PingFang SC", sans-serif;
  font-synthesis: none;
}

body.overlay-open {
  overflow: hidden;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

::selection {
  color: var(--white);
  background: var(--ink);
}

.page-progress {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  pointer-events: none;
}

.announcement {
  position: relative;
  z-index: 110;
  height: var(--announcement-height);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: var(--announcement-height);
  white-space: nowrap;
}

.announcement-track {
  display: flex;
  width: max-content;
  animation: announcement-scroll 24s linear infinite;
}

.announcement-track span {
  display: block;
  min-width: 100vw;
  text-align: center;
}

.shop-header {
  position: absolute;
  z-index: 100;
  top: var(--announcement-height);
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding: 0 clamp(22px, 3.2vw, 52px);
}

.shop-brand {
  width: clamp(140px, 11vw, 174px);
  line-height: 0;
}

.shop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 42px);
}

.shop-nav a,
.cart-trigger {
  position: relative;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
}

.shop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.shop-actions {
  display: flex;
  align-items: center;
}

.cart-trigger {
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--ink);
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 8px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 7px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--announcement-height));
  overflow: hidden;
  background: #bcd9ee;
}

.hero-media,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("./assets/shop-hero.jpg") center / cover no-repeat;
  transform: scale(1.015);
  animation: hero-in 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(227, 239, 247, 0.33) 0%, rgba(227, 239, 247, 0.05) 52%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  grid-template-rows: 1fr auto;
  min-height: calc(100svh - var(--announcement-height));
  padding: clamp(145px, 19vh, 210px) clamp(24px, 3.2vw, 52px) 52px;
}

.hero-copy {
  align-self: center;
  max-width: 850px;
}

.eyebrow,
.section-line,
.story-copy > p,
.manifesto > p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.eyebrow {
  margin: 0 0 28px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(78px, 10.2vw, 164px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.83;
}

.hero-description {
  max-width: 360px;
  margin: 42px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.hero-feature {
  align-self: center;
  justify-self: end;
  width: 220px;
  margin-top: 16vh;
}

.hero-feature > p {
  margin: 0 0 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 700;
}

.hero-feature > div {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}

.hero-feature strong {
  font-size: 20px;
  font-weight: 600;
}

.hero-feature span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.hero-cta i {
  font-size: 19px;
  font-style: normal;
  transition: transform 180ms ease;
}

.hero-cta:hover i {
  transform: translateY(5px);
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.page-section {
  padding: 78px 32px 120px;
}

.section-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  border-bottom: 1px solid var(--ink);
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.4fr);
  align-items: end;
  gap: 8vw;
  padding: 92px 0 0;
}

.intro-copy h2,
.story-copy h2,
.manifesto h2,
.newsletter h2 {
  margin: 0;
  font-size: clamp(52px, 7.4vw, 118px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.intro-copy h2 em {
  color: #92918b;
  font-style: normal;
}

.intro-copy > p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.catalog {
  padding: 0 32px 132px;
}

.catalog-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 96px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}

.catalog-toolbar > p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
}

.filter-group {
  display: flex;
  gap: 30px;
}

.filter-button {
  padding: 0 0 5px;
  color: var(--muted);
  background: transparent;
  border-bottom: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
}

.filter-button span {
  margin-left: 4px;
  font-size: 8px;
  vertical-align: top;
}

.filter-button.is-active {
  color: var(--ink);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--ink);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: opacity 220ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card-wide {
  grid-column: span 2;
}

.product-visual {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.06;
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: #ddd;
  text-align: left;
}

.product-card-wide .product-visual {
  aspect-ratio: 2 / 1.06;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-visual:hover img {
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 7px 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-view {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
  transform: translateY(100%);
  transition: transform 220ms ease;
}

.product-visual:hover .product-view {
  transform: translateY(0);
}

.product-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  min-height: 116px;
  padding: 18px 16px;
}

.product-info > div {
  display: flex;
  flex-direction: column;
}

.product-info > div:last-child {
  align-items: flex-end;
  justify-content: space-between;
}

.product-info p {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
}

.product-info span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.add-to-cart {
  padding: 0 0 4px;
  background: transparent;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.add-to-cart:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.product-visual-crop img {
  object-position: 64% 58%;
  transform: scale(1.65);
}

.product-visual-crop:hover img {
  transform: scale(1.7);
}

.product-card-color .product-visual {
  display: grid;
  place-items: center;
}

.product-card-blue .product-visual {
  background: var(--electric);
}

.product-card-orange .product-visual {
  background: var(--orange);
}

.product-card-paper .product-visual {
  background: #c9dfef;
}

.paper-object {
  position: relative;
  width: 52%;
  aspect-ratio: 0.78;
  transform: rotate(-7deg);
}

.paper-object i {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: -9px 10px 0 rgba(9, 9, 9, 0.1);
}

.paper-object i:nth-child(2) {
  background: var(--orange);
  transform: translate(12px, -12px);
}

.paper-object i:nth-child(3) {
  background: #ffd767;
  transform: translate(24px, -24px);
}

.paper-object i:nth-child(4) {
  background: #bfe4f3;
  transform: translate(36px, -36px);
}

.paper-object i:nth-child(5) {
  background: var(--paper);
  transform: translate(48px, -48px);
}

.lanyard-object {
  position: relative;
  width: 43%;
  aspect-ratio: 0.72;
  border: 16px solid var(--electric);
  border-bottom-width: 44px;
  border-radius: 48% 48% 8px 8px !important;
  transform: rotate(8deg);
}

.lanyard-object::before,
.lanyard-object::after {
  position: absolute;
  content: "";
  background: var(--paper);
}

.lanyard-object::before {
  top: -16px;
  left: 50%;
  width: 4px;
  height: 58%;
  transform: translateX(-50%);
}

.lanyard-object::after {
  bottom: -29px;
  left: 50%;
  width: 42%;
  height: 18px;
  border: 3px solid var(--ink);
  background: transparent;
  transform: translateX(-50%);
}

.poster-object {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 54%;
  aspect-ratio: 0.72;
  padding: 8%;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 14px 16px 0 rgba(31, 82, 255, 0.94);
  transform: rotate(4deg);
}

.poster-object small {
  position: relative;
  z-index: 2;
  font-size: clamp(12px, 1.4vw, 23px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.poster-object i {
  position: absolute;
  top: 13%;
  right: -14%;
  width: 72%;
  aspect-ratio: 1;
  border: 18px solid var(--orange);
  border-radius: 50% !important;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 860px;
  color: var(--white);
  background: var(--electric);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 40px 56px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.7);
}

.story-copy > p {
  margin: 0;
}

.story-copy h2 {
  font-size: clamp(53px, 6.3vw, 102px);
}

.story-copy > div > p {
  max-width: 450px;
  margin: 50px 0 56px;
  font-size: 15px;
  line-height: 1.75;
}

.story-copy a {
  display: flex;
  justify-content: space-between;
  width: 230px;
  padding: 12px 0;
  border-bottom: 1px solid var(--white);
  font-size: 12px;
  font-weight: 700;
}

.story-image {
  position: relative;
  min-height: 860px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 9px;
  color: var(--white);
  background: var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.manifesto {
  position: relative;
  min-height: 760px;
  padding: 38px 32px 70px;
  overflow: hidden;
  background: var(--orange);
}

.manifesto > p {
  margin: 0;
}

.manifesto-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.45fr);
  align-items: end;
  gap: 8vw;
  min-height: 640px;
}

.manifesto-main > div > p {
  max-width: 440px;
  margin: 0 0 48px;
  font-size: 15px;
  line-height: 1.75;
}

.manifesto-main ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.manifesto-main li {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.manifesto-main li span {
  font-size: 9px;
}

.manifesto-orbit {
  position: absolute;
  top: 50%;
  left: 52%;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(9, 9, 9, 0.26);
  border-radius: 50% !important;
  transform: translate(-50%, -50%);
}

.manifesto-orbit::before,
.manifesto-orbit::after {
  position: absolute;
  border: 1px solid rgba(9, 9, 9, 0.26);
  border-radius: 50% !important;
  content: "";
}

.manifesto-orbit::before {
  inset: 14%;
}

.manifesto-orbit::after {
  inset: 32%;
}

.manifesto-orbit span {
  position: absolute;
  top: 9%;
  left: 50%;
  width: 18px;
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 50% !important;
}

.newsletter {
  padding-bottom: 140px;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.56fr);
  align-items: end;
  gap: 8vw;
  padding: 94px 0 10px;
}

.newsletter h2 {
  font-size: clamp(54px, 7vw, 110px);
}

.newsletter-content > div > p {
  max-width: 450px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.newsletter-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.newsletter-form > div {
  display: flex;
  border-bottom: 1px solid var(--ink);
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 15px 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 16px;
}

.newsletter-form button {
  padding: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.form-message {
  min-height: 18px;
  margin: 12px 0 0;
  color: var(--electric);
  font-size: 11px;
  font-weight: 700;
}

.shop-footer {
  padding: 54px 32px 20px;
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  min-height: 340px;
  padding-bottom: 50px;
}

.footer-top > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-top img {
  width: min(200px, 70%);
  filter: invert(1);
}

.footer-top > div:first-child p {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 68px);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links p {
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-links a {
  margin-bottom: 13px;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

.footer-bottom a {
  text-align: right;
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  z-index: 1500;
  inset: 0;
  visibility: hidden;
  background: rgba(9, 9, 9, 0.36);
  opacity: 0;
  transition:
    opacity 250ms ease,
    visibility 250ms ease;
}

.drawer-backdrop.is-open,
.modal-backdrop.is-open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 1600;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(520px, 100%);
  height: 100dvh;
  padding: 30px;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--ink);
}

.cart-head p {
  margin: 0 0 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.cart-head h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.cart-head h2 .cart-count {
  display: inline;
  color: inherit;
  background: none;
  font-size: 15px;
  vertical-align: top;
}

.cart-close,
.modal-close {
  width: 42px;
  height: 42px;
  background: transparent;
  font-size: 31px;
  font-weight: 300;
  line-height: 1;
}

.cart-items {
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-visual {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  background: #c8dfee;
}

.cart-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-info strong {
  font-size: 13px;
}

.cart-item-info span {
  color: var(--muted);
  font-size: 10px;
}

.cart-item-remove {
  align-self: end;
  padding: 0 0 2px;
  background: transparent;
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
}

.cart-empty {
  margin: auto 0;
  text-align: center;
}

.cart-empty p {
  margin: 0 0 9px;
  font-size: 24px;
  font-weight: 600;
}

.cart-empty span {
  color: var(--muted);
  font-size: 12px;
}

.cart-summary {
  display: none;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.cart-summary.is-visible {
  display: block;
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.cart-summary span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.cart-summary strong {
  font-size: 22px;
}

.cart-summary > button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 18px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.cart-summary > button:hover {
  background: var(--electric);
}

.cart-summary > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.product-modal {
  position: fixed;
  z-index: 1600;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  width: min(1040px, calc(100% - 64px));
  max-height: calc(100dvh - 64px);
  overflow: auto;
  visibility: hidden;
  background: var(--paper);
  opacity: 0;
  transform: translate(-50%, -47%);
  transition:
    opacity 250ms ease,
    transform 250ms ease,
    visibility 250ms ease;
}

.product-modal.is-open {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
}

.modal-visual {
  min-height: 620px;
  background: var(--blue);
}

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

.modal-visual.is-color {
  background:
    linear-gradient(135deg, var(--electric) 0 48%, var(--orange) 48% 52%, var(--paper) 52%);
}

.modal-copy {
  display: flex;
  flex-direction: column;
  padding: 70px 42px 38px;
}

.modal-copy > p:first-child {
  margin: 0 0 55px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.modal-copy h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.modal-en {
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.modal-price {
  margin-top: 32px;
  font-size: 22px;
}

.modal-description {
  margin: 42px 0 34px;
  font-size: 13px;
  line-height: 1.72;
}

.modal-add {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 17px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.modal-add:hover {
  background: var(--electric);
}

.modal-copy dl {
  margin: auto 0 0;
}

.modal-copy dl div {
  display: grid;
  grid-template-columns: 64px 1fr;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.modal-copy dt {
  font-weight: 800;
}

.modal-copy dd {
  margin: 0;
  color: var(--muted);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes announcement-scroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.055);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@media (max-width: 1040px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story {
    min-height: 720px;
  }

  .story-image {
    min-height: 720px;
  }

  .footer-top {
    grid-template-columns: 0.7fr 1.3fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .shop-nav {
    position: fixed;
    z-index: 1700;
    inset: var(--announcement-height) 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    height: calc(100dvh - var(--announcement-height));
    padding: 110px 24px 30px;
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-18px);
    transition:
      opacity 200ms ease,
      transform 200ms ease,
      visibility 200ms ease;
  }

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

  .shop-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--ink);
    font-size: 28px;
    letter-spacing: -0.04em;
  }

  .shop-actions {
    position: relative;
    z-index: 1800;
  }

  .menu-toggle {
    display: block;
    margin-right: 10px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
    min-height: 860px;
    padding-top: 130px;
  }

  .hero-copy {
    align-self: start;
    padding-top: 65px;
  }

  .hero h1 {
    font-size: clamp(78px, 18vw, 140px);
  }

  .hero-feature {
    display: none;
  }

  .hero-meta {
    justify-content: space-between;
    grid-row: 3;
    margin-top: 34px;
  }

  .intro-copy,
  .manifesto-main,
  .newsletter-content {
    grid-template-columns: 1fr;
  }

  .intro-copy > p,
  .manifesto-main > div,
  .newsletter-form {
    max-width: 540px;
  }

  .intro-copy {
    gap: 55px;
  }

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

  .story-copy {
    min-height: 680px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  }

  .story-image {
    min-height: 620px;
  }

  .manifesto-main {
    align-content: end;
    gap: 55px;
  }

  .manifesto-orbit {
    left: 75%;
    width: 84vw;
  }

  .newsletter-content {
    gap: 70px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .footer-top > div:first-child {
    min-height: 220px;
  }

  .product-modal {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .modal-visual {
    min-height: 440px;
  }
}

@media (max-width: 580px) {
  .announcement-track span {
    min-width: 165vw;
  }

  .shop-header {
    padding: 0 16px;
  }

  .shop-brand {
    width: 124px;
  }

  .cart-trigger span {
    display: none;
  }

  .cart-trigger {
    border-bottom: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-grid {
    min-height: 760px;
    padding: 120px 18px 26px;
  }

  .hero-copy {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(68px, 20vw, 106px);
  }

  .hero-description {
    max-width: 280px;
    margin-top: 28px;
    font-size: 12px;
  }

  .hero-meta span:nth-child(2) {
    display: none;
  }

  .page-section {
    padding: 58px 18px 92px;
  }

  .catalog {
    padding: 0 18px 94px;
  }

  .intro-copy {
    padding-top: 65px;
  }

  .intro-copy h2,
  .story-copy h2,
  .manifesto h2,
  .newsletter h2 {
    font-size: clamp(48px, 15vw, 78px);
  }

  .filter-group {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }

  .catalog-toolbar {
    min-height: 84px;
  }

  .catalog-toolbar > p {
    display: none;
  }

  .filter-button {
    font-size: 11px;
  }

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

  .product-card-wide {
    grid-column: auto;
  }

  .product-card-wide .product-visual,
  .product-visual {
    aspect-ratio: 1 / 1.04;
  }

  .product-view {
    transform: none;
  }

  .story-copy {
    min-height: 620px;
    padding: 26px 18px 44px;
  }

  .story-copy > div > p {
    margin: 36px 0 42px;
  }

  .story-image {
    min-height: 480px;
  }

  .manifesto {
    min-height: 760px;
    padding: 28px 18px 50px;
  }

  .manifesto-main {
    min-height: 680px;
  }

  .newsletter-content {
    padding-top: 65px;
  }

  .shop-footer {
    padding: 44px 18px 18px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 42px 20px;
  }

  .footer-links > div:last-child {
    display: none;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom span:nth-child(2) {
    display: none;
  }

  .cart-drawer {
    padding: 22px 18px;
  }

  .product-modal {
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100dvh;
    max-height: none;
    transform: translateY(4%);
  }

  .product-modal.is-open {
    transform: none;
  }

  .modal-visual {
    min-height: 45vh;
  }

  .modal-copy {
    min-height: 55vh;
    padding: 38px 22px 28px;
  }

  .modal-copy > p:first-child {
    margin-bottom: 28px;
  }

  .modal-description {
    margin: 28px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
