:root {
  --bg: #f8f0e7;
  --bg-alt: #fffaf5;
  --surface: rgba(255, 250, 245, 0.84);
  --surface-strong: #fff8f2;
  --ink: #2e1d18;
  --muted: #6f5e57;
  --line: rgba(86, 58, 44, 0.14);
  --accent: #8a4d38;
  --accent-soft: #c78e6f;
  --sage: #9aa97e;
  --shadow: 0 28px 70px rgba(73, 45, 33, 0.14);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 240, 225, 0.95), transparent 28%),
    radial-gradient(circle at top right, rgba(214, 182, 167, 0.28), transparent 20%),
    linear-gradient(180deg, #fcf5ee 0%, #f7eee4 42%, #fbf6f1 100%);
}

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

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

button {
  font: inherit;
}

.site-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 24px 24px 72px;
}

.site-header {
  position: sticky;
  top: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(87, 55, 41, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #b3704e);
  color: #fffaf5;
  font-family: "Noto Serif SC", serif;
  font-size: 16px;
  letter-spacing: 0.06em;
}

.brand strong,
.section-heading h2,
.hero h1,
.season-feature h3,
.note-card h3,
.mbti-copy h2,
.perk-story h3,
.mini-copy h2,
.bean-modal h3 {
  font-family: "Noto Serif SC", serif;
  font-weight: 600;
}

.brand strong {
  display: block;
  font-size: 16px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: inline-flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: #fffaf5;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(46, 29, 24, 0.18);
}

.button--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button--small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.header-cta {
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100svh - 150px);
  padding: 58px 0 42px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
}

.lede,
.section-heading p,
.season-feature p,
.note-card p,
.mbti-copy p,
.perk-story p,
.mini-copy p,
.bean-modal__subtitle,
.site-footer p {
  color: var(--muted);
  line-height: 1.82;
  font-size: 16px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.hero__metrics li {
  min-width: 140px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-md);
  background: rgba(255, 251, 247, 0.52);
  backdrop-filter: blur(14px);
}

.hero__metrics strong {
  display: block;
  font-size: 28px;
  font-family: "Noto Serif SC", serif;
}

.hero__metrics span {
  color: var(--muted);
  font-size: 13px;
}

.hero__stage {
  display: grid;
  grid-template-columns: 1fr 0.46fr;
  gap: 18px;
  align-items: stretch;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(27, 19, 15, 0.5);
  color: #fffaf5;
  backdrop-filter: blur(14px);
}

.hero-card__caption--light {
  background: rgba(255, 248, 241, 0.76);
  color: var(--ink);
  border-color: rgba(86, 58, 44, 0.1);
}

.hero-card__caption strong {
  font-family: "Noto Serif SC", serif;
  font-size: 18px;
}

.hero-card__caption span {
  font-size: 13px;
  color: inherit;
  opacity: 0.9;
}

.hero-card--main {
  min-height: 640px;
}

.hero__stack {
  display: grid;
  gap: 18px;
}

.hero-card--top,
.hero-card--bottom {
  min-height: 311px;
}

.section {
  padding: 82px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
}

.season-layout,
.mbti-layout,
.perk-layout,
.mini-layout {
  display: grid;
  gap: 28px;
}

.season-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.season-feature,
.mbti-card,
.perk-story,
.phone-stage,
.note-card,
.perk-rail {
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.season-feature {
  overflow: hidden;
}

.season-feature__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.season-feature__body,
.note-card,
.perk-story,
.mini-copy,
.mbti-copy,
.perk-rail,
.phone-stage {
  padding: 28px;
}

.season-feature__tag,
.perk-story__tag,
.note-card__label,
.bean-modal__tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(138, 77, 56, 0.09);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.season-feature h3,
.mbti-copy h2,
.perk-story h3,
.mini-copy h2 {
  margin: 18px 0 12px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.22;
}

.season-notes {
  display: grid;
  gap: 18px;
}

.product-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-shot {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-shot--tall {
  grid-row: span 2;
  min-height: 578px;
}

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

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

.product-shot figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(26, 17, 13, 0.54);
  color: #fffaf5;
  backdrop-filter: blur(12px);
}

.note-card {
  min-height: 190px;
}

.note-card h3 {
  margin: 16px 0 10px;
  font-size: 28px;
  line-height: 1.2;
}

.flavor-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius-xl);
  background: rgba(255, 249, 244, 0.78);
  box-shadow: var(--shadow);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-chip {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.filter-chip.is-active,
.filter-chip:hover,
.filter-chip:focus-visible {
  background: var(--ink);
  color: #fffaf5;
  border-color: var(--ink);
  transform: translateY(-1px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 28px;
  background: rgba(255, 251, 248, 0.96);
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(74, 48, 36, 0.12);
  border-color: rgba(138, 77, 56, 0.22);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.product-card__badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.88);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 20px 20px 22px;
}

.product-card__title {
  margin: 0 0 6px;
  font-family: "Noto Serif SC", serif;
  font-size: 24px;
}

.product-card__meta {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.product-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.product-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.product-card__price strong {
  font-size: 24px;
}

.product-card__price span {
  color: rgba(111, 94, 87, 0.72);
  text-decoration: line-through;
  font-size: 13px;
}

.product-card__series {
  color: var(--accent);
  font-size: 13px;
}

.campaign-stage {
  display: grid;
  grid-template-columns: minmax(360px, 1.02fr) minmax(0, 0.98fr);
  gap: 22px;
  align-items: stretch;
}

.campaign-rail {
  display: grid;
  gap: 18px;
}

.campaign-card {
  display: grid;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.campaign-card--feature {
  grid-template-rows: minmax(420px, 1fr) auto;
}

.campaign-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-card__body {
  padding: 22px 24px 24px;
}

.campaign-card__tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(138, 77, 56, 0.09);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.campaign-card h3 {
  margin: 16px 0 10px;
  font-family: "Noto Serif SC", serif;
  font-size: 28px;
  line-height: 1.22;
}

.campaign-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.mbti-layout,
.mini-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
}

.mbti-card {
  overflow: hidden;
  padding: 18px;
}

.mbti-card img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.mbti-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 10px 6px;
}

.mbti-card__footer span {
  color: var(--muted);
}

.step-list,
.bullet-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.85;
}

.step-list li + li,
.bullet-list li + li {
  margin-top: 8px;
}

.perk-layout {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.perk-rail {
  display: grid;
  gap: 14px;
}

.perk-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
}

.perk-item img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 16px;
}

.perk-item strong {
  display: block;
  margin-bottom: 4px;
}

.perk-item span,
.invite-card figcaption,
.mini-points span {
  color: var(--muted);
  font-size: 14px;
}

.invite-card {
  margin: 26px 0 0;
  overflow: hidden;
  border-radius: 24px;
}

.invite-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.invite-card figcaption {
  padding: 14px 2px 0;
}

.mini-points {
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
}

.mini-points div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(86, 58, 44, 0.1);
}

.mini-points strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.phone-stage {
  display: grid;
  place-items: center;
  min-height: 620px;
}

.mini-launch-card,
.mini-entry-card {
  display: grid;
  gap: 18px;
  width: 100%;
}

.phone-frame {
  position: relative;
  width: min(100%, 360px);
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(180deg, #2d211c 0%, #1a1411 100%);
  box-shadow: 0 28px 60px rgba(37, 22, 17, 0.32);
}

.phone-frame__status {
  width: 34%;
  height: 7px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.phone-frame img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 28px;
}

.phone-frame__overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 30px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(18, 14, 11, 0.58);
  color: #fff8f2;
  backdrop-filter: blur(16px);
}

.phone-frame__overlay strong {
  display: block;
  margin-bottom: 4px;
}

.qr-panel {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
  width: min(100%, 460px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 26px;
  background: rgba(255, 250, 245, 0.82);
  box-shadow: 0 20px 40px rgba(67, 44, 35, 0.1);
}

.qr-panel--large {
  width: 100%;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.qr-panel__image-wrap {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  padding: 8px;
  border-radius: 20px;
  background: #fff;
}

.qr-panel__image-wrap--large {
  width: 280px;
  height: 280px;
  padding: 12px;
}

.qr-panel__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-panel__body {
  display: grid;
  gap: 6px;
}

.qr-panel__body strong {
  font-size: 20px;
}

.mini-runtime {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(86, 58, 44, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
}

.mini-runtime--wide {
  margin-top: 30px;
}

.mini-runtime__label,
.story-panel__tag {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-runtime strong {
  font-size: 18px;
}

.mini-runtime span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  word-break: break-all;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 32px;
  align-items: center;
  min-height: calc(100svh - 170px);
  padding: 48px 0 42px;
}

.story-hero__media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 34px;
  background: rgba(255, 250, 245, 0.84);
  box-shadow: var(--shadow);
}

.story-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-grid--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 24px;
  align-items: stretch;
}

.story-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 245, 0.82);
  box-shadow: var(--shadow);
}

.story-panel h3 {
  margin: 16px 0 12px;
  font-family: "Noto Serif SC", serif;
  font-size: 34px;
  line-height: 1.24;
}

.story-panel p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(86, 58, 44, 0.1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.bean-modal[hidden] {
  display: none;
}

.bean-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.bean-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 13, 0.48);
  backdrop-filter: blur(10px);
}

.bean-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 0;
  width: min(980px, calc(100% - 32px));
  margin: min(7vh, 64px) auto;
  overflow: hidden;
  border-radius: 34px;
  background: #fffaf6;
  box-shadow: 0 38px 90px rgba(37, 21, 15, 0.28);
}

.bean-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 250, 245, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
}

.bean-modal__media {
  min-height: 100%;
}

.bean-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bean-modal__body {
  padding: 40px 36px;
}

.bean-modal__meta {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.bean-modal__meta div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(86, 58, 44, 0.1);
}

.bean-modal__meta dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bean-modal__meta dd {
  margin: 0;
  line-height: 1.7;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }

  .hero,
  .story-hero,
  .season-layout,
  .campaign-stage,
  .story-split,
  .story-grid,
  .story-grid--wide,
  .mbti-layout,
  .perk-layout,
  .mini-layout,
  .bean-modal__dialog {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .story-hero {
    min-height: auto;
    padding-top: 40px;
  }

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

  .hero-card--main {
    min-height: 460px;
  }

  .hero__stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-shot--tall,
  .product-shot--wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 320px;
  }

  .mbti-card,
  .phone-stage {
    min-height: auto;
  }

  .story-hero__media img {
    min-height: 420px;
  }

  .bean-modal__media {
    max-height: 360px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding: 18px 16px 56px;
  }

  .site-header {
    top: 12px;
    padding: 14px 16px;
    border-radius: 24px;
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-card--main,
  .story-hero__media img,
  .season-feature__media img,
  .phone-frame img {
    height: auto;
  }

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

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

  .product-shot,
  .product-shot--tall,
  .product-shot--wide {
    min-height: 320px;
  }

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

  .qr-panel,
  .qr-panel--large {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    width: 100%;
  }

  .qr-panel__image-wrap--large {
    width: 220px;
    height: 220px;
  }

  .perk-item {
    grid-template-columns: 72px 1fr;
  }

  .perk-item img {
    width: 72px;
    height: 72px;
  }

  .site-footer {
    flex-direction: column;
  }

  .bean-modal__dialog {
    width: min(100%, calc(100% - 20px));
    margin-top: 18px;
    border-radius: 28px;
  }

  .bean-modal__body,
  .season-feature__body,
  .note-card,
  .perk-story,
  .mini-copy,
  .mbti-copy,
  .perk-rail,
  .phone-stage,
  .flavor-panel {
    padding: 22px;
  }
}
