:root {
  --bg: #fdf8f1;
  --bg-strong: #f6ecdf;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffefb;
  --ink: #2b1f19;
  --ink-soft: #665149;
  --line: rgba(73, 43, 24, 0.12);
  --brand: #eb6d45;
  --brand-deep: #c44f2b;
  --plum: #6d3b66;
  --mint: #b8d782;
  --gold: #f6c26b;
  --berry: #ef7d92;
  --mocha: #9d6a4f;
  --shadow: 0 24px 48px rgba(63, 28, 14, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(246, 194, 107, 0.38), transparent 28%),
    radial-gradient(circle at top right, rgba(184, 215, 130, 0.28), transparent 22%),
    linear-gradient(180deg, #fff8ef 0%, #fcf2e5 18%, #fdf8f1 44%, #fffdf8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 82%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 82%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(90deg, #2c1817 0%, #5f2a30 55%, #9d5d34 100%);
}

.topbar__inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #fff9f3;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topbar__inner span {
  opacity: 0.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(253, 248, 241, 0.72);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}

.brand__text strong {
  font-size: 1.15rem;
  text-transform: lowercase;
}

.brand__text span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
}

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

.header-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #fff8f2;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 16px 30px rgba(196, 79, 43, 0.22);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  padding: 42px 0 24px;
}

.hero {
  min-height: 720px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.38rem;
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.hero-text,
.page-hero__copy p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-metrics li,
.page-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 116px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(88, 53, 32, 0.08);
  box-shadow: 0 10px 24px rgba(71, 30, 13, 0.06);
}

.hero-metrics strong,
.page-badge {
  color: var(--ink);
  font-weight: 800;
}

.hero-metrics span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.hero-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-tab {
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink-soft);
  transition: 180ms ease;
}

.hero-tab.is-active,
.hero-tab:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(84, 35, 17, 0.08);
}

.hero-stage {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.hero-stage__glow,
.hero-stage__burst {
  position: absolute;
  border-radius: 50%;
}

.hero-stage__glow {
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 72% 30%, rgba(246, 194, 107, 0.44), rgba(246, 194, 107, 0) 46%),
    linear-gradient(135deg, rgba(184, 215, 130, 0.72), rgba(235, 109, 69, 0.48));
  filter: blur(8px);
}

.hero-stage__burst {
  width: 620px;
  height: 620px;
  border: 1px dashed rgba(122, 72, 45, 0.12);
  animation: spin 24s linear infinite;
}

.hero-pack {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  width: 250px;
  height: 440px;
  padding: 22px;
  border-radius: 34px;
  color: #fffaf5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 24%),
    linear-gradient(155deg, #4b241f 0%, #8f4b3c 40%, #ef7d92 100%);
  box-shadow: 0 28px 56px rgba(73, 32, 15, 0.22);
  transform-origin: center;
  overflow: hidden;
}

.hero-pack::before,
.hero-pack::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-pack::before {
  width: 180px;
  height: 180px;
  top: -32px;
  right: -42px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-pack::after {
  width: 110px;
  height: 110px;
  bottom: 84px;
  left: -22px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-pack--front {
  z-index: 3;
  transform: rotate(-5deg);
}

.hero-pack--back {
  width: 210px;
  height: 380px;
  z-index: 2;
  opacity: 0.9;
}

.hero-pack--left {
  left: 60px;
  bottom: 116px;
  transform: rotate(-18deg);
  background: linear-gradient(155deg, #6b3648 0%, #ef7d92 100%);
}

.hero-pack--right {
  right: 52px;
  top: 118px;
  transform: rotate(13deg);
  background: linear-gradient(155deg, #514122 0%, #d69b35 100%);
}

.hero-pack__badge {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-pack__brand,
.hero-pack__name,
.hero-pack__note {
  position: relative;
  z-index: 1;
}

.hero-pack__brand {
  font-size: 2.4rem;
  text-transform: lowercase;
}

.hero-pack__name {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1.04;
}

.hero-pack__note {
  font-size: 0.95rem;
  color: rgba(255, 248, 242, 0.82);
}

.section {
  padding: 56px 0;
}

.section--dense {
  padding-top: 20px;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

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

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(73, 43, 24, 0.08);
  box-shadow: 0 20px 38px rgba(73, 32, 15, 0.08);
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(160deg, var(--card-start), var(--card-end));
  opacity: 0.22;
}

.product-card__top,
.product-card__body,
.product-card__footer {
  position: relative;
  z-index: 1;
}

.product-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card__label,
.product-card__price {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-card__body {
  display: grid;
  align-content: start;
  gap: 14px;
  flex: 1;
  margin-top: 18px;
}

.product-card__pack {
  position: relative;
  width: 136px;
  height: 230px;
  margin: 0 auto;
  border-radius: 26px;
  background: linear-gradient(160deg, var(--card-start), var(--card-end));
  box-shadow: 0 18px 30px rgba(73, 32, 15, 0.16);
  transform: rotate(-8deg);
  overflow: hidden;
}

.product-card__pack::before,
.product-card__pack::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.product-card__pack::before {
  width: 110px;
  height: 110px;
  top: -24px;
  right: -28px;
}

.product-card__pack::after {
  width: 78px;
  height: 78px;
  bottom: 52px;
  left: -18px;
}

.product-card__pack span {
  position: absolute;
  left: 18px;
  right: 18px;
  color: #fff9f5;
}

.product-card__pack span:first-child {
  top: 18px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card__pack span:last-child {
  bottom: 20px;
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  line-height: 1.04;
}

.product-card h3 {
  font-size: 1.48rem;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card__meta span {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(73, 43, 24, 0.08);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
}

.product-card__footer strong {
  font-size: 1.18rem;
}

.duo-card,
.info-band,
.newsletter,
.wholesale-banner,
.contact-form-shell {
  display: grid;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
  border: 1px solid rgba(73, 43, 24, 0.08);
  box-shadow: var(--shadow);
}

.duo-card {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.inline-points,
.stack-list {
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.inline-points li,
.stack-list li {
  margin-bottom: 8px;
}

.duo-card__visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-pack {
  min-height: 170px;
  border-radius: 24px;
  box-shadow: 0 18px 30px rgba(73, 32, 15, 0.12);
}

.mini-pack--berry {
  background: linear-gradient(160deg, #e05f7b, #6f2d47);
}

.mini-pack--mocha {
  background: linear-gradient(160deg, #c37749, #6f3f31);
}

.mini-pack--peanut {
  background: linear-gradient(160deg, #d7a24d, #715a2f);
}

.mini-pack--vanilla {
  background: linear-gradient(160deg, #bdd68a, #537040);
}

.feature-grid,
.retailer-grid,
.locator-grid,
.contact-grid,
.story-grid,
.bundle-grid,
.journal-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.locator-card,
.contact-card,
.story-card,
.bundle-card,
.journal-card,
.editorial-lead {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(73, 43, 24, 0.08);
  box-shadow: 0 18px 34px rgba(73, 32, 15, 0.08);
}

.feature-card__index {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(235, 109, 69, 0.12);
  color: var(--brand-deep);
  font-weight: 800;
}

.info-band {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.info-band__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-band__stats div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.info-band__stats strong {
  font-size: 1.45rem;
}

.retailer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.retailer-chip {
  display: grid;
  place-items: center;
  min-height: 118px;
  border-radius: 26px;
  text-align: center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(246, 236, 223, 0.84));
  border: 1px solid rgba(73, 43, 24, 0.08);
  box-shadow: 0 16px 30px rgba(73, 32, 15, 0.08);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.journal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-grid--full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-card__tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(109, 59, 102, 0.08);
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.journal-card h3 {
  min-height: 88px;
}

.journal-card a {
  display: inline-flex;
  margin-top: 20px;
  font-weight: 800;
  color: var(--brand-deep);
}

.newsletter {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.newsletter-form,
.contact-form {
  display: grid;
  gap: 12px;
}

.newsletter-form {
  grid-template-columns: minmax(280px, 340px) auto;
  align-items: center;
}

.newsletter-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(73, 43, 24, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.contact-form textarea {
  min-height: 150px;
  padding: 16px 18px;
  resize: vertical;
}

.site-footer {
  margin-top: 36px;
  padding: 48px 0 54px;
  color: #fff8f2;
  background: linear-gradient(135deg, #2b1817 0%, #492824 44%, #8d4d34 100%);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 24px;
}

.site-footer h3 {
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 248, 242, 0.8);
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero {
  align-items: end;
  min-height: 360px;
}

.page-hero__aside {
  display: grid;
  gap: 12px;
  justify-self: end;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(73, 43, 24, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-weight: 700;
}

.filter-pill.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
}

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

.bundle-card--accent,
.story-card--accent {
  background: linear-gradient(135deg, rgba(246, 194, 107, 0.22), rgba(239, 125, 146, 0.2));
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 22px;
}

.price-row strong {
  font-size: 2rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(73, 43, 24, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.faq-item p {
  margin-top: 14px;
}

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

.timeline__entry {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(73, 43, 24, 0.08);
}

.timeline__entry span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(184, 215, 130, 0.28);
  color: #3c5228;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-lead {
  background:
    radial-gradient(circle at top right, rgba(246, 194, 107, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68));
}

.locator-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wholesale-banner {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.contact-form-shell {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-card a {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 800;
  color: var(--brand-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal--delay {
  transition-delay: 110ms;
}

.reveal--delay-2 {
  transition-delay: 220ms;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .hero,
  .page-hero,
  .duo-card,
  .info-band,
  .newsletter,
  .wholesale-banner,
  .contact-form-shell {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .product-grid--catalog,
  .feature-grid,
  .journal-grid,
  .timeline,
  .locator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-hero__aside {
    justify-self: start;
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-actions {
    margin-left: auto;
  }

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

  .hero-stage {
    min-height: 460px;
  }

  .hero-stage__glow {
    width: 360px;
    height: 360px;
  }

  .hero-stage__burst {
    width: 420px;
    height: 420px;
  }

  .hero-pack--front {
    width: 216px;
    height: 388px;
  }

  .hero-pack--back {
    width: 176px;
    height: 312px;
  }

  .hero-pack--left {
    left: 10px;
    bottom: 78px;
  }

  .hero-pack--right {
    right: 10px;
    top: 54px;
  }

  .retailer-grid,
  .story-grid,
  .bundle-grid,
  .contact-grid,
  .product-grid,
  .product-grid--catalog,
  .feature-grid,
  .journal-grid,
  .timeline,
  .locator-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  :root {
    --shell: min(100vw - 22px, 100vw - 22px);
  }

  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand__text span,
  .header-pill {
    display: none;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section,
  .page-hero {
    padding: 40px 0;
  }

  .duo-card,
  .info-band,
  .newsletter,
  .wholesale-banner,
  .contact-form-shell,
  .feature-card,
  .locator-card,
  .contact-card,
  .story-card,
  .bundle-card,
  .journal-card,
  .editorial-lead,
  .timeline__entry {
    padding: 22px;
  }

  .hero-tabs,
  .hero-actions,
  .hero-metrics {
    gap: 10px;
  }

  .hero-stage {
    min-height: 390px;
  }

  .hero-stage__glow {
    width: 290px;
    height: 290px;
  }

  .hero-stage__burst {
    width: 320px;
    height: 320px;
  }

  .hero-pack--front {
    width: 184px;
    height: 320px;
    padding: 18px;
  }

  .hero-pack__brand {
    font-size: 1.9rem;
  }

  .hero-pack__name {
    font-size: 1.5rem;
  }
}
