/* =========================================================
   Specialty Coffee Pass — editorial magazine layout
   ========================================================= */

:root {
  --paper:    #FAF7F1;
  --paper-2:  #F1EAE0;
  --ink:      #1F1A14;
  --ink-2:    #2A2620;
  --mid:      #6E6358;
  --mute:     #6B6258;   /* WCAG AA on --paper (~4.7:1) for small labels */
  --accent:   #B47A4C;   /* decorative — large text only */
  --accent-2: #8A4F26;   /* WCAG AA on --paper (~5.6:1) — safe for small text */
  --line:     #E5DDD0;
  --focus:    #8A4F26;
  --content:  1280px;
  --content-narrow: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont,
               'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; padding: 0; }

/* Keyboard focus — visible on every interactive element */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav__cta:focus-visible,
.coda__cta:focus-visible {
  outline-offset: 4px;
}

/* Skip link — visible only when focused */
.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transform: translateY(-200%);
  transition: transform 0.18s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

/* ---------- Atoms ---------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--mid);
  text-transform: uppercase;
}
.eyebrow--light { color: rgba(250, 247, 241, 0.65); }

.display {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink);
}

.big {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.line-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap 0.2s ease, opacity 0.2s;
}
.line-link:hover { gap: 14px; opacity: 0.7; }
.line-link__arrow { font-size: 14px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 0;
  border-bottom: 1.5px solid var(--ink);
  transition: opacity 0.2s, gap 0.25s;
}
.btn-ghost:hover { gap: 18px; opacity: 0.7; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 24px;
  left: 32px;
  right: 32px;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav__mark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--paper);
  mix-blend-mode: difference;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.nav__mark-label { font-size: 13px; letter-spacing: 0.32em; font-weight: 700; }
.nav__links {
  justify-self: center;
  display: flex;
  gap: 40px;
  background: rgba(250, 247, 241, 0.85);
  backdrop-filter: blur(12px);
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 20, 0.08);
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 0.55; }
.nav__cta {
  justify-self: end;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: var(--ink);
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s, background 0.2s;
}
.nav__cta:hover { gap: 14px; background: var(--ink-2); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7) contrast(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.45) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.0) 70%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: rgba(250, 247, 241, 0.65);
}
.hero__meta .dot {
  width: 3px; height: 3px;
  background: rgba(250, 247, 241, 0.5);
  border-radius: 50%;
}
.hero__meta--right { justify-self: end; }

.hero__center {
  position: relative;
  z-index: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px;
  max-width: var(--content);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  font-weight: 600;
  color: rgba(250, 247, 241, 0.65);
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(64px, 11vw, 180px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--paper);
  margin-bottom: 36px;
}
.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(250, 247, 241, 0.78);
  line-height: 1.7;
  max-width: 480px;
}

.hero__bottom {
  position: relative;
  z-index: 2;
  grid-row: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 32px 40px;
}
.hero__scroll {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(250, 247, 241, 0.75);
  font-weight: 600;
  transition: color 0.2s, gap 0.2s;
}
.hero__scroll:hover { color: var(--paper); gap: 16px; }
.hero__scroll-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: rgba(250, 247, 241, 0.55);
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: left center;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleX(0.3); opacity: 0.4; }
  50%      { transform: scaleX(1);   opacity: 1; }
}

/* ---------- CONCEPT ---------- */
.concept {
  padding: 160px 32px 180px;
  background: var(--paper);
}
.concept__grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  grid-template-rows: auto auto;
  gap: 64px 56px;
  align-items: center;
}
.concept__num {
  grid-column: 1;
  grid-row: 1;
  font-size: clamp(120px, 16vw, 240px);
  font-weight: 200;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.05em;
  align-self: start;
}
.concept__photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(31, 26, 20, 0.18);
}
.concept__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.concept__photo:hover img { transform: scale(1.04); }
.concept__photo figcaption {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--paper);
  background: rgba(31, 26, 20, 0.7);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.concept__photo--a { grid-column: 1; grid-row: 2; transform: translateY(-40px); }
.concept__photo--b {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: stretch;
  min-height: 540px;
}
.concept__photo--b img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.concept__text {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 0 0 40px 0;
  align-self: center;
}
.concept__text .eyebrow { margin-bottom: 20px; }
.concept__text .big { margin-bottom: 28px; }
.lead {
  font-size: 16px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 40px;
  max-width: 460px;
}
.concept__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.concept__stats dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--mute);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.concept__stats dd { font-size: 16px; font-weight: 700; color: var(--ink); }

/* ---------- CHAPTER HEAD ---------- */
.chapter-head {
  text-align: center;
  padding: 140px 32px 80px;
  max-width: var(--content);
  margin: 0 auto;
}
.chapter-head--left { text-align: left; padding: 140px 32px 60px; }
.chapter-head .eyebrow { margin-bottom: 20px; }
.chapter-head .display { margin-bottom: 24px; }
.chapter-head__sub {
  font-size: 15px;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- CAFES ---------- */
.cafes { background: var(--paper); padding-bottom: 80px; }
.cafe { padding: 60px 32px; }
.cafe__inner {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.cafe--alt .cafe__inner {
  grid-template-columns: 1fr 1.15fr;
}
.cafe--alt .cafe__media { order: 2; }
.cafe--alt .cafe__copy  { order: 1; }

.cafe__media {
  position: relative;
  aspect-ratio: 4/5;
}
.cafe__photo {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 50px rgba(31, 26, 20, 0.18);
}
.cafe__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.cafe__photo:hover img { transform: scale(1.05); }
.cafe__photo--main {
  top: 0; left: 0;
  width: 78%; height: 78%;
}
.cafe__photo--inset {
  bottom: 0; right: 0;
  width: 52%; height: 48%;
  border: 6px solid var(--paper);
}

.cafe__copy { padding: 24px 0; }
.cafe__num {
  display: block;
  font-size: clamp(72px, 9vw, 140px);
  font-weight: 200;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.cafe__copy .eyebrow { margin-bottom: 12px; color: var(--accent-2); }
.cafe__name {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  line-height: 1.15;
}
.cafe__desc {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 36px;
  line-height: 1.8;
}

/* ---------- BANNER ---------- */
.banner {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 32px;
  background: var(--ink);
  overflow: hidden;
}
.banner__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55) contrast(1.05);
}
.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
  z-index: 1;
}
.banner__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--paper);
  max-width: 900px;
}
.banner__inner .eyebrow { margin-bottom: 28px; display: block; }
.banner__title {
  font-size: clamp(36px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--paper);
}
.banner__title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
}
.banner__sub {
  font-size: 15px;
  color: rgba(250, 247, 241, 0.75);
}

/* ---------- LINEUP ---------- */
.lineup { background: var(--paper); }
.lineup__item { padding: 120px 32px; }
.lineup__item:nth-child(even) { background: var(--paper-2); }
.lineup__inner {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.lineup__item--alt .lineup__photo { order: 2; }
.lineup__photo {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 50px rgba(31, 26, 20, 0.15);
}
.lineup__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.lineup__photo:hover img { transform: scale(1.04); }
.lineup__text { padding: 0 12px; }
.lineup__num {
  display: block;
  font-size: 56px;
  font-weight: 200;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--accent);
}
.lineup__text .eyebrow { margin-bottom: 16px; }
.lineup__name {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.taste-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.taste-tags li {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
}
.lineup__desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 460px;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 160px 32px;
  background: var(--paper);
}
.gallery__eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 64px;
}
.gallery__grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: 16px;
}
.gallery__cell { overflow: hidden; border-radius: 4px; }
.gallery__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.gallery__cell:hover img { transform: scale(1.05); }
.gallery__cell--a { grid-column: 1 / span 5; grid-row: 1; }
.gallery__cell--b { grid-column: 6 / span 4; grid-row: 1; }
.gallery__cell--c { grid-column: 1 / span 4; grid-row: 2; }
.gallery__cell--d {
  grid-column: 10 / span 3; grid-row: 1;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__cell--d img { object-fit: contain; padding: 24px; }
.gallery__quote {
  grid-column: 5 / span 8;
  grid-row: 2;
  align-self: center;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallery__quote p {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 16px;
}
.gallery__quote cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--mute);
  font-weight: 600;
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(250, 247, 241, 0.1);
  border-bottom: 1px solid rgba(250, 247, 241, 0.1);
}
.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  gap: 48px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.005em;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee__sep { font-weight: 300; color: var(--accent); }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - 24px), 0, 0); }
}

/* ---------- PRE-ORDER ---------- */
.preorder {
  background: var(--paper-2);
  padding: 160px 32px;
}
.preorder__inner {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.preorder__copy .eyebrow { margin-bottom: 28px; }
.preorder__copy .display {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}
.display__line { display: block; }
.display__line--em {
  color: var(--accent);
  font-style: italic;
  font-weight: 800;
}
.preorder__period {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--mid);
  margin-bottom: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: inline-block;
}
.preorder__photo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.preorder__photo img {
  max-height: 580px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(31, 26, 20, 0.18));
}

/* ---------- PRIZE ---------- */
.prize {
  background: var(--paper);
  padding: 80px 32px 160px;
}
.prize__meta {
  max-width: var(--content);
  margin: 0 auto 60px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.prize__meta dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.prize__meta dt {
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--mute);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.prize__meta dd { font-size: 14px; font-weight: 500; color: var(--ink); }

.prize__list {
  max-width: var(--content);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.prize-item {
  display: grid;
  grid-template-columns: 60px 100px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 8px;
  border-top: 1px solid var(--line);
  transition: background 0.2s;
}
.prize-item:last-child { border-bottom: 1px solid var(--line); }
.prize-item:hover { background: var(--paper-2); }
.prize-item__num {
  font-size: 32px;
  font-weight: 200;
  color: var(--mute);
  letter-spacing: -0.04em;
}
.prize-item__img {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.prize-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.prize-item__text h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.prize-item__sub { font-size: 13px; color: var(--mid); }
.prize-item__count {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
}

/* ---------- CODA ---------- */
.coda {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 160px 32px;
}
.coda__title {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 32px;
}
.coda__price {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 200;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.coda__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 20px 40px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  transition: gap 0.25s, background 0.2s;
}
.coda__cta:hover { gap: 20px; background: var(--accent); color: var(--paper); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 32px 40px;
  border-top: 1px solid rgba(250, 247, 241, 0.1);
}
.site-footer__inner {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: end;
}
.site-footer__brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.3;
  color: var(--paper);
}
.site-footer__addr {
  font-size: 13px;
  color: rgba(250, 247, 241, 0.6);
  line-height: 1.7;
}
.site-footer__copy {
  font-size: 12px;
  color: rgba(250, 247, 241, 0.45);
  letter-spacing: 0.05em;
  text-align: right;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .hero__scroll-line { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav { top: 16px; left: 16px; right: 16px; }
  .nav__links { gap: 24px; padding: 10px 20px; }
  .nav__links a { font-size: 12px; }
  .nav__cta { padding: 12px 18px; font-size: 12px; }

  .hero__center { padding: 0 24px; }
  .hero__bottom { padding: 0 16px 28px; gap: 12px; font-size: 10px; }
  .hero__meta { gap: 8px; font-size: 10px; }
  .hero__scroll-line { width: 36px; }

  .concept { padding: 100px 24px 120px; }
  .concept__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .concept__num { font-size: 96px; grid-row: auto; }
  .concept__photo--a, .concept__photo--b {
    grid-column: auto; grid-row: auto; transform: none;
  }
  .concept__photo--a img, .concept__photo--b img { aspect-ratio: 4/3; }
  .concept__text { grid-row: auto; grid-column: auto; }

  .chapter-head, .chapter-head--left { padding: 80px 24px 40px; text-align: center; }

  .cafe { padding: 40px 24px; }
  .cafe__inner, .cafe--alt .cafe__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cafe--alt .cafe__media, .cafe--alt .cafe__copy { order: initial; }
  .cafe__media { aspect-ratio: 4/3; max-width: 100%; }
  .cafe__photo--main { width: 84%; height: 78%; }
  .cafe__photo--inset { width: 50%; height: 48%; }
  .cafe__num { font-size: 56px; margin-bottom: 16px; }

  .lineup__item { padding: 80px 24px; }
  .lineup__inner { grid-template-columns: 1fr; gap: 32px; }
  .lineup__item--alt .lineup__photo { order: initial; }
  .lineup__photo { aspect-ratio: 4/3; }
  .lineup__num { font-size: 36px; margin-bottom: 12px; }

  .gallery { padding: 100px 16px; }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .gallery__cell--a { grid-column: 1 / -1; grid-row: 1; height: 280px; }
  .gallery__cell--b { grid-column: 1; grid-row: 2; height: 220px; }
  .gallery__cell--c { grid-column: 2; grid-row: 2; height: 220px; }
  .gallery__cell--d { grid-column: 1 / -1; grid-row: 3; height: 180px; }
  .gallery__quote { grid-column: 1 / -1; grid-row: 4; padding: 32px 16px; }

  .preorder { padding: 100px 24px; }
  .preorder__inner { grid-template-columns: 1fr; gap: 48px; }

  .prize { padding: 60px 24px 100px; }
  .prize__meta dl { grid-template-columns: 1fr; gap: 16px; }
  .prize-item {
    grid-template-columns: 60px 80px 1fr;
    grid-template-rows: auto auto;
    gap: 16px 20px;
  }
  .prize-item__count { grid-column: 1 / -1; justify-self: start; margin-left: 80px; }

  .coda { padding: 100px 24px; }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .site-footer__copy { text-align: left; }
}
