/* 실제 제품과 패키지 그래픽을 중심으로 구성한 HAPEEI WORLD 반응형 디자인 */
@font-face {
  font-family: "Pretendard";
  src: url("./assets/fonts/PretendardHapeeiSubset-v1.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #fff8ed;
  --paper-deep: #f5eee3;
  --ink: #313a55;
  --sky: #80aad9;
  --aqua: #abdbdc;
  --coral: #f08b91;
  --butter: #f4d271;
  --mint: #a9dbd2;
  --lavender: #b9bbe3;
  --green: #61b758;
  --white: #fffdf8;
  --line: rgba(49, 58, 85, 0.82);
  --frame: clamp(24px, 5vw, 76px);
  --header-height: 76px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Pretendard", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--ink) var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Pretendard", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

figure,
h1,
h2,
h3,
p,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

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

button,
summary {
  font: inherit;
}

h1,
h2,
h3,
p,
li,
summary,
span {
  word-break: keep-all;
  overflow-wrap: break-word;
}

:focus-visible {
  outline: 3px solid #111726;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.scene-index,
.section-code,
.world-meta,
.pattern-grid figcaption {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  min-height: var(--header-height);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(49, 58, 85, 0.28);
  background: rgba(255, 248, 237, 0.96);
}

.brand-mark {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 118px;
}

.brand-mark img {
  width: 100%;
}

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

.site-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.hero-copy {
  min-height: 100svh;
  padding: calc(var(--header-height) + 62px) var(--frame) 54px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-brand {
  display: grid;
  gap: 30px;
}

.hero-wordmark {
  width: min(90%, 500px);
}

.hero-statement h1 {
  display: grid;
  font-size: clamp(56px, 6.35vw, 116px);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero-statement > p {
  margin-top: 28px;
  font-size: clamp(17px, 1.6vw, 23px);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.enter-link {
  width: 100%;
  margin-top: 44px;
  padding: 18px 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.enter-link span {
  font-size: 22px;
  transition: transform 180ms ease;
}

.enter-link:hover span {
  transform: translateY(4px);
}

.hero-media {
  position: relative;
  min-width: 0;
  height: 100svh;
  overflow: hidden;
  border-left: 1px solid var(--ink);
  background: var(--sky);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-drift 14s ease-in-out infinite alternate;
}

.hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 24px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-sun {
  position: absolute;
  bottom: 36px;
  left: calc(50% - 48px);
  z-index: 2;
  width: 96px;
  height: 96px;
  object-fit: contain;
}

@keyframes hero-drift {
  from {
    transform: scale(1.005);
  }
  to {
    transform: scale(1.025);
  }
}

.manifesto {
  position: relative;
  min-height: 86svh;
  padding: 92px var(--frame) 72px;
  display: grid;
  grid-template-columns: minmax(100px, 0.2fr) minmax(0, 1fr);
  gap: 32px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  scroll-margin-top: var(--header-height);
}

.section-code {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.manifesto-copy {
  width: min(100%, 1180px);
  align-self: center;
}

.manifesto-copy h2 {
  max-width: 1050px;
  display: grid;
  font-size: clamp(54px, 7.6vw, 126px);
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.manifesto-copy h2 span {
  color: var(--butter);
}

.manifesto-copy p {
  max-width: 560px;
  margin: 42px 0 0 auto;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.72;
}

.manifesto-sun {
  position: absolute;
  bottom: -78px;
  left: 4vw;
  width: clamp(180px, 20vw, 340px);
  opacity: 0.72;
  transform: rotate(-9deg);
}

.mood-ribbon {
  height: 96px;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--coral);
}

.mood-ribbon-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  animation: ribbon-run 24s linear infinite;
}

.mood-ribbon-track span {
  padding-right: 0.35em;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

@keyframes ribbon-run {
  to {
    transform: translateX(-33.333%);
  }
}

.moods-intro {
  min-height: 68svh;
  padding: 116px var(--frame) 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  scroll-margin-top: var(--header-height);
}

.moods-intro h2,
.pattern-header h2,
.info-heading h2 {
  margin-top: 26px;
  font-size: clamp(62px, 8vw, 132px);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.mood-index {
  list-style: none;
}

.mood-index li {
  border-top: 1px solid var(--ink);
}

.mood-index li:last-child {
  border-bottom: 1px solid var(--ink);
}

.mood-index a {
  min-height: 68px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 720;
  letter-spacing: -0.035em;
  transition: padding-left 180ms ease, background-color 180ms ease;
}

.mood-index a:hover,
.mood-index a:focus-visible {
  padding-left: 12px;
  background: var(--butter);
}

.mood-index span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-world {
  --world-bg: var(--paper);
  --world-copy: var(--paper);
  --world-accent: var(--sky);
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  border-bottom: 1px solid var(--ink);
  background: var(--world-bg);
  scroll-margin-top: var(--header-height);
}

.world-original {
  --world-bg: #31a6e4;
  --world-copy: #84c9ef;
  --world-accent: var(--butter);
}

.world-premium {
  --world-bg: #faebeb;
  --world-copy: var(--coral);
  --world-accent: #fff0b4;
}

.world-portable {
  --world-bg: #e8f8f4;
  --world-copy: var(--lavender);
  --world-accent: var(--mint);
}

.world-basic {
  --world-bg: #fff5eb;
  --world-copy: #f5eee3;
  --world-accent: var(--sky);
}

.world-media {
  position: relative;
  min-width: 0;
  min-height: 100svh;
  overflow: hidden;
  background: var(--world-bg);
}

.world-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.world-media-cover img {
  object-fit: cover;
}

.world-copy {
  position: relative;
  min-width: 0;
  min-height: 100svh;
  padding: 104px var(--frame) 54px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-left: 1px solid var(--ink);
  background: var(--world-copy);
}

.world-flip .world-media {
  grid-column: 2;
}

.world-flip .world-copy {
  grid-column: 1;
  grid-row: 1;
  border-right: 1px solid var(--ink);
  border-left: 0;
}

.world-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
}

.world-heading {
  position: relative;
  z-index: 2;
  padding: 80px 0 50px;
}

.world-word {
  position: absolute;
  top: 50%;
  left: -0.08em;
  z-index: -1;
  color: var(--world-accent);
  font-size: clamp(130px, 20vw, 350px);
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 0.72;
  opacity: 0.44;
  transform: translateY(-50%);
  white-space: nowrap;
}

.world-heading h3 {
  font-size: clamp(60px, 7.1vw, 118px);
  font-weight: 860;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-transform: uppercase;
}

.world-heading > p {
  max-width: 440px;
  margin-top: 30px;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.world-detail {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.world-detail summary,
.info-content summary {
  list-style: none;
  cursor: pointer;
}

.world-detail summary::-webkit-details-marker,
.info-content summary::-webkit-details-marker {
  display: none;
}

.world-detail summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.world-detail summary::after,
.info-content summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.world-detail[open] summary::after,
.info-content details[open] summary::after {
  content: "−";
}

.world-detail p {
  max-width: 460px;
  padding: 2px 0 24px;
  font-size: 15px;
  line-height: 1.72;
}

.world-original .world-copy::before,
.world-premium .world-copy::before,
.world-portable .world-copy::before,
.world-basic .world-copy::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.world-original .world-copy::before {
  top: 17%;
  right: -58px;
  width: 190px;
  height: 190px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--butter);
}

.world-premium .world-copy::before {
  right: -88px;
  bottom: 18%;
  width: 250px;
  height: 250px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.world-portable .world-copy::before {
  top: 43%;
  left: -30%;
  width: 170%;
  height: 2px;
  background: var(--ink);
  transform: rotate(-12deg);
}

.world-basic .world-copy::before {
  right: -70px;
  bottom: -140px;
  width: 340px;
  height: 300px;
  border: 2px solid var(--sky);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.pattern-play {
  background: var(--butter);
  scroll-margin-top: var(--header-height);
}

.pattern-header {
  min-height: 62svh;
  padding: 112px var(--frame) 70px;
  display: grid;
  grid-template-columns: 0.3fr minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 42px;
  align-items: end;
  border-bottom: 1px solid var(--ink);
}

.pattern-header h2 {
  margin: 0;
}

.pattern-header > p:last-child {
  max-width: 390px;
  font-size: 17px;
  line-height: 1.72;
}

.pattern-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  background: var(--ink);
  gap: 1px;
}

.pattern-grid figure {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
}

.pattern-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pattern-grid figure:hover img {
  transform: scale(1.018);
}

.pattern-grid figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: var(--ink);
}

.pattern-original {
  grid-column: span 7;
  min-height: clamp(520px, 52vw, 860px);
}

.pattern-premium {
  grid-column: span 5;
  min-height: clamp(520px, 52vw, 860px);
}

.pattern-tower {
  grid-column: span 4;
  min-height: clamp(590px, 58vw, 920px);
}

.pattern-sky {
  grid-column: span 3;
  min-height: clamp(590px, 58vw, 920px);
}

.pattern-family {
  grid-column: span 5;
  min-height: clamp(590px, 58vw, 920px);
}


.maker-story {
  min-height: 88svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  scroll-margin-top: var(--header-height);
}

.maker-number {
  min-height: 88svh;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  background: var(--coral);
  color: var(--ink);
  font-size: clamp(220px, 28vw, 460px);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 1;
}

.maker-copy {
  padding: 108px var(--frame) 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.maker-copy h2 {
  margin-top: 44px;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.maker-copy > p:not(.scene-index) {
  max-width: 610px;
  margin-top: 40px;
  color: rgba(255, 248, 237, 0.82);
  font-size: 17px;
  line-height: 1.8;
}

.maker-copy img {
  width: min(310px, 72%);
  margin-top: 58px;
  padding: 16px 18px;
  background: var(--paper);
}

.info-section {
  min-height: 92svh;
  padding: 126px var(--frame) 82px;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(70px, 11vw, 180px);
  background: var(--paper);
  scroll-margin-top: var(--header-height);
}

.info-heading h2 {
  margin-top: 32px;
  font-size: clamp(58px, 7.2vw, 118px);
}

.info-content {
  align-self: center;
}

.info-content details {
  border-top: 1px solid var(--ink);
}

.info-content details:last-of-type {
  border-bottom: 1px solid var(--ink);
}

.info-content summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.info-content details > p {
  max-width: 720px;
  padding: 0 46px 30px 0;
  color: rgba(49, 58, 85, 0.78);
  font-size: 15px;
  line-height: 1.78;
}

.lineup-list {
  padding: 2px 0 28px;
}

.lineup-list > div {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  border-top: 1px solid rgba(49, 58, 85, 0.24);
}

.lineup-list strong {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lineup-list span {
  color: rgba(49, 58, 85, 0.78);
  font-size: 14px;
}

.store-link {
  margin-top: 62px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transition: padding 180ms ease, background-color 180ms ease, color 180ms ease;
}

.store-link:hover,
.store-link:focus-visible {
  padding-right: 18px;
  padding-left: 18px;
  background: var(--ink);
  color: var(--paper);
}

.store-link > span:first-child {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-link strong {
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.03em;
}

.store-link > span[aria-hidden] {
  font-size: 28px;
}

.site-footer {
  padding: 42px var(--frame) 34px;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: end;
  border-top: 1px solid var(--ink);
  background: var(--paper);
}

.footer-logo {
  width: min(240px, 100%);
}

.footer-meta {
  display: grid;
  gap: 12px;
  color: rgba(49, 58, 85, 0.72);
  font-size: 12px;
}

.footer-meta p:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-meta strong {
  color: var(--ink);
}


@media (max-width: 1100px) {
  :root {
    --frame: clamp(24px, 4.5vw, 52px);
  }

  .hero-statement h1 {
    font-size: clamp(54px, 6.2vw, 82px);
  }

  .site-nav {
    gap: 20px;
  }

  .pattern-header {
    grid-template-columns: 0.24fr minmax(0, 1fr) minmax(220px, 0.48fr);
  }

  .world-heading h3 {
    font-size: clamp(56px, 6.6vw, 86px);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 10px 14px 10px 20px;
  }

  .site-header:not(.is-scrolled) {
    background: rgba(255, 248, 237, 0.92);
  }

  .brand-mark {
    width: 104px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    min-height: 0;
    padding: 42px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: grid;
    align-content: start;
    gap: 0;
    border-top: 1px solid var(--ink);
    background: var(--paper);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 66px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--ink);
    font-size: 22px;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav a:last-child {
    border-bottom: 1px solid var(--ink);
  }

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

  .hero-media {
    order: -1;
    height: 66svh;
    min-height: 520px;
    border-bottom: 1px solid var(--ink);
    border-left: 0;
  }

  .hero-copy {
    min-height: 68svh;
    padding: 54px var(--frame) 40px;
  }

  .hero-wordmark {
    width: min(72vw, 430px);
  }

  .hero-statement h1 {
    font-size: clamp(58px, 12vw, 96px);
  }

  .hero-sun {
    top: calc(66svh - 42px);
    bottom: auto;
    left: calc(50% - 42px);
    width: 84px;
    height: 84px;
  }

  .manifesto {
    min-height: 82svh;
    padding: 78px var(--frame) 58px;
    grid-template-columns: 1fr;
  }

  .manifesto-copy h2 {
    font-size: clamp(50px, 11vw, 86px);
  }

  .manifesto-copy p {
    margin: 34px 0 0;
  }

  .manifesto-sun {
    right: -36px;
    bottom: -52px;
    left: auto;
  }

  .moods-intro {
    min-height: 74svh;
    padding: 88px var(--frame) 60px;
    grid-template-columns: 1fr;
    align-content: space-between;
  }

  .moods-intro h2,
  .pattern-header h2,
  .info-heading h2 {
    font-size: clamp(58px, 14vw, 100px);
  }

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

  .world-media,
  .world-flip .world-media {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    aspect-ratio: 1;
  }

  .world-copy,
  .world-flip .world-copy {
    grid-column: 1;
    grid-row: 2;
    min-height: 66svh;
    padding: 80px var(--frame) 44px;
    border-top: 1px solid var(--ink);
    border-right: 0;
    border-left: 0;
  }

  .world-heading {
    padding: 58px 0 44px;
  }

  .world-heading h3 {
    font-size: clamp(58px, 13vw, 96px);
  }

  .world-word {
    font-size: clamp(150px, 40vw, 300px);
  }

  .pattern-header {
    min-height: 72svh;
    padding: 88px var(--frame) 60px;
    grid-template-columns: 1fr;
    align-content: space-between;
  }

  .pattern-grid {
    display: flex;
    gap: 1px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
  }

  .pattern-grid figure,
  .pattern-original,
  .pattern-premium,
  .pattern-tower,
  .pattern-sky,
  .pattern-family {
    flex: 0 0 84vw;
    min-height: 0;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
  }

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

  .maker-number {
    min-height: 54svh;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
    font-size: clamp(220px, 60vw, 420px);
  }

  .maker-copy {
    min-height: 72svh;
    padding: 84px var(--frame) 60px;
  }

  .info-section {
    padding: 92px var(--frame) 70px;
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 560px) {
  :root {
    --frame: 20px;
  }

  .hero-media {
    height: 64svh;
    min-height: 460px;
  }

  .hero-media img {
    object-position: center 48%;
  }

  .hero-media figcaption {
    right: 10px;
    bottom: 14px;
    font-size: 8px;
  }

  .hero-copy {
    min-height: 64svh;
    padding-top: 48px;
  }

  .hero-brand {
    gap: 20px;
  }

  .hero-wordmark {
    width: 78vw;
  }

  .hero-statement h1 {
    font-size: clamp(50px, 15vw, 76px);
    line-height: 0.87;
  }

  .hero-statement > p {
    margin-top: 22px;
    font-size: 16px;
  }

  .enter-link {
    margin-top: 34px;
  }

  .hero-sun {
    top: calc(64svh - 36px);
    left: calc(50% - 36px);
    width: 72px;
    height: 72px;
  }

  .manifesto {
    min-height: 76svh;
  }

  .manifesto-copy h2 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .manifesto-copy p {
    font-size: 15px;
  }

  .mood-ribbon {
    height: 76px;
  }

  .mood-ribbon-track span {
    font-size: 32px;
  }

  .moods-intro {
    min-height: 70svh;
    padding-top: 74px;
  }

  .moods-intro h2,
  .pattern-header h2,
  .info-heading h2 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .mood-index a {
    min-height: 60px;
    font-size: 21px;
  }

  .world-copy,
  .world-flip .world-copy {
    min-height: 62svh;
    padding-top: 66px;
  }

  .world-heading {
    padding: 48px 0 38px;
  }

  .world-heading h3 {
    font-size: clamp(52px, 14vw, 72px);
  }

  .world-heading > p {
    margin-top: 24px;
    font-size: 16px;
  }

  .world-detail p {
    font-size: 14px;
  }

  .pattern-header {
    min-height: 68svh;
    padding-top: 76px;
  }

  .pattern-grid figure,
  .pattern-original,
  .pattern-premium,
  .pattern-tower,
  .pattern-sky,
  .pattern-family {
    flex-basis: 88vw;
  }

  .maker-number {
    min-height: 46svh;
    font-size: clamp(210px, 68vw, 320px);
  }

  .maker-copy {
    min-height: 68svh;
    padding-top: 74px;
  }

  .maker-copy h2 {
    margin-top: 34px;
    font-size: 40px;
  }

  .maker-copy > p:not(.scene-index) {
    margin-top: 30px;
    font-size: 15px;
  }

  .info-content summary {
    min-height: 70px;
    font-size: 18px;
  }

  .lineup-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .store-link {
    grid-template-columns: 1fr auto;
  }

  .store-link > span:first-child {
    grid-column: 1 / -1;
  }

  .site-footer {
    gap: 28px;
  }

  .footer-logo {
    width: 190px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
