:root {
  --ink: #f3efe7;
  --muted: #b7aa98;
  --dim: #746957;
  --coal: #050708;
  --charcoal: #0b1011;
  --pine: #10211b;
  --moss: #2d4a35;
  --brass: #b99159;
  --honey: #c97935;
  --ember: #9b332a;
  --frost: #8ba6ad;
  --line: rgba(226, 213, 186, 0.18);
  --shadow: rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--coal);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(92, 37, 30, 0.34), transparent 24rem),
    radial-gradient(circle at 85% 16%, rgba(24, 54, 44, 0.42), transparent 28rem),
    linear-gradient(180deg, #030506 0%, #091011 42%, #050708 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem clamp(1rem, 3vw, 2.2rem);
  background: linear-gradient(180deg, rgba(3, 5, 6, 0.92), rgba(3, 5, 6, 0.52) 72%, transparent);
  border-top: 1px solid rgba(196, 113, 71, 0.55);
}

.brand-mark,
.site-header nav,
.proof-strip,
.button,
.eyebrow,
.journey,
footer {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.45rem);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2.5vw, 2rem);
  color: #d6c9b5;
  font-size: 0.72rem;
}

.site-header nav a {
  opacity: 0.86;
}

.site-header nav a:hover {
  color: #fff7e9;
  opacity: 1;
}

.compass {
  position: relative;
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  border: 1px solid rgba(229, 216, 194, 0.34);
  border-radius: 50%;
}

.compass::before,
.compass::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1px;
  height: 2.95rem;
  content: "";
  background: linear-gradient(transparent, var(--ink), transparent);
  transform: translate(-50%, -50%);
}

.compass::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.compass.large {
  width: 5rem;
  height: 5rem;
  opacity: 0.8;
}

.compass.large::before,
.compass.large::after {
  height: 6.4rem;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  padding: 8rem 1rem 7rem;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero-art,
.hero-art img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-art {
  z-index: -3;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.08) brightness(0.78);
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 38%, rgba(7, 11, 12, 0.1), rgba(5, 7, 8, 0.72) 44%, #050708 100%),
    linear-gradient(90deg, rgba(2, 4, 5, 0.86), rgba(2, 4, 5, 0.36) 42%, rgba(2, 4, 5, 0.78));
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 16rem;
  content: "";
  background: linear-gradient(transparent, #050708 82%);
}

.hero-content {
  width: min(44rem, 92vw);
  margin-inline: auto;
  text-align: center;
  text-shadow: 0 2px 22px var(--shadow);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brass);
  font-size: 0.74rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(3.7rem, 11vw, 8.6rem);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
  overflow-wrap: normal;
  white-space: nowrap;
}

.tagline {
  margin: 1.15rem 0 0;
  color: #e7dccb;
  font-size: clamp(1rem, 2.7vw, 1.55rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lede {
  width: min(35rem, 100%);
  margin: 1.15rem auto 0;
  color: #d7ccbb;
  font-size: clamp(1rem, 2.2vw, 1.16rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(222, 202, 166, 0.42);
  color: var(--ink);
  background: rgba(6, 10, 11, 0.78);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  font-size: 0.73rem;
}

.button.primary {
  border-color: rgba(213, 151, 82, 0.72);
  background: linear-gradient(180deg, rgba(157, 73, 45, 0.95), rgba(84, 33, 26, 0.92));
}

.button.ghost {
  background: rgba(3, 6, 7, 0.48);
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(252, 232, 197, 0.74);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 9, 0.88);
}

.proof-strip div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 0.9rem;
  row-gap: 0.22rem;
  min-height: 6rem;
  padding: 1.15rem clamp(0.9rem, 2vw, 1.45rem);
  border-left: 1px solid var(--line);
}

.proof-strip div:first-child {
  border-left: 0;
}

.proof-strip strong {
  color: #e5dac8;
  font-size: 0.76rem;
  font-weight: 400;
}

.proof-strip span:last-child {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

.line-icon {
  position: relative;
  grid-row: 1 / span 2;
  width: 2.2rem;
  height: 2.2rem;
  opacity: 0.82;
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.line-icon.leaf::before {
  inset: 0.2rem 0.5rem;
  border: 1px solid var(--frost);
  border-radius: 100% 0;
  transform: rotate(-30deg);
}

.line-icon.leaf::after {
  left: 50%;
  top: 0.15rem;
  width: 1px;
  height: 2rem;
  background: var(--frost);
  transform: rotate(28deg);
}

.line-icon.pot::before {
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.25rem;
  height: 1.35rem;
  border: 1px solid var(--frost);
  border-radius: 0.18rem 0.18rem 0.65rem 0.65rem;
}

.line-icon.pot::after {
  left: 0.75rem;
  right: 0.75rem;
  top: 0.2rem;
  height: 0.45rem;
  border-top: 1px solid var(--frost);
  border-left: 1px solid var(--frost);
  border-right: 1px solid var(--frost);
}

.line-icon.star::before,
.line-icon.star::after {
  left: 50%;
  top: 50%;
  width: 1px;
  height: 2.5rem;
  background: var(--frost);
  transform: translate(-50%, -50%);
}

.line-icon.star::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.line-icon.mountain::before {
  left: 0.12rem;
  right: 0.12rem;
  bottom: 0.35rem;
  height: 1.35rem;
  border-left: 1px solid var(--frost);
  border-bottom: 1px solid var(--frost);
  transform: skewX(-34deg);
}

.line-icon.mountain::after {
  right: 0.25rem;
  bottom: 0.35rem;
  width: 1.15rem;
  height: 0.95rem;
  border-left: 1px solid var(--frost);
  border-bottom: 1px solid var(--frost);
  transform: skewX(-34deg);
}

.section {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.25rem, 8vw, 7rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(16rem, 0.8fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

h2 {
  margin: 0;
  color: #f5ead8;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
}

.section-heading p:last-child,
.story-copy p:last-child,
.atlas-panel p,
.reserve-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.product-card {
  position: relative;
  min-height: 21rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.35rem;
  border: 1px solid rgba(229, 216, 194, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%),
    radial-gradient(circle at 50% 14%, rgba(226, 211, 181, 0.13), transparent 7rem),
    linear-gradient(150deg, rgba(13, 18, 18, 0.94), rgba(5, 7, 8, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 22px 48px rgba(0, 0, 0, 0.26);
}

.product-card.image-card {
  min-height: 30rem;
  color: var(--ink);
  background-position: center;
  background-size: cover;
}

.product-card.image-card::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 6, 0.12), rgba(3, 5, 6, 0.36) 35%, rgba(3, 5, 6, 0.88) 100%),
    linear-gradient(90deg, rgba(3, 5, 6, 0.4), transparent 54%);
  transform: none;
}

.product-card.image-card::after {
  top: auto;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 9rem;
  z-index: 1;
}

.product-card.image-card > * {
  position: relative;
  z-index: 2;
}

.product-card.image-card:hover {
  transform: translateY(-2px);
  border-color: rgba(252, 232, 197, 0.64);
}

.product-card.honey {
  background-image: url("/assets/journey-honey.jpg");
}

.product-card.garlic {
  background-image: url("/assets/journey-garlic.jpg");
}

.product-card.sea-salt {
  background-image: url("/assets/journey-sea-salt.jpg");
}

.product-card::before {
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 6rem;
  height: 8rem;
  content: "";
  border: 1px solid rgba(238, 226, 203, 0.25);
  border-radius: 50% 50% 18% 18%;
  background:
    radial-gradient(circle at 50% 20%, rgba(244, 237, 219, 0.24), transparent 0.22rem),
    radial-gradient(circle at 45% 42%, rgba(231, 217, 192, 0.12), transparent 0.36rem),
    linear-gradient(180deg, rgba(4, 7, 8, 0.52), rgba(255, 255, 255, 0.03));
  transform: translateX(-50%);
}

.product-card::after {
  position: absolute;
  top: 9.6rem;
  left: 1.35rem;
  right: 1.35rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(225, 209, 177, 0.38), transparent);
}

.product-card h3 {
  margin: 0.15rem 0 0.72rem;
  color: #f6ecdd;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  font-weight: 400;
  line-height: 1.02;
}

.product-card p {
  margin: 0;
  color: #bfb39f;
  line-height: 1.6;
}

.product-card .journey {
  color: var(--brass);
  font-size: 0.62rem;
}

.product-card > span {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.1rem;
  padding: 0.36rem 0.55rem;
  border: 1px solid rgba(229, 216, 194, 0.18);
  color: #dfd3bd;
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.74rem;
}

.journey-hero {
  min-height: 100svh;
}

.journey-hero .hero-art {
  background:
    radial-gradient(circle at 50% 45%, rgba(34, 43, 38, 0.58), rgba(5, 7, 8, 0.98) 72%),
    #050708;
}

.journey-hero .hero-art img {
  object-fit: contain;
  object-position: center top;
  filter: saturate(0.96) contrast(1.06) brightness(0.82);
}

.journey-page .hero-content {
  width: min(54rem, 92vw);
}

.journey-page h1 {
  white-space: normal;
  font-size: clamp(3rem, 8vw, 7.1rem);
}

.journal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 0.42fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.journal-entry {
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(232, 218, 190, 0.052), transparent),
    rgba(8, 13, 14, 0.72);
}

.journal-entry p {
  margin: 0 0 1.05rem;
  color: #d4c7b3;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.82;
}

.journal-entry p:last-child {
  margin-bottom: 0;
}

.journal-entry .closing {
  margin-top: 2rem;
  color: #f1e4ce;
  font-size: clamp(1.18rem, 2vw, 1.48rem);
}

.journey-aside {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
}

.flavor-card,
.journey-nav {
  padding: 1.15rem;
  border: 1px solid var(--line);
  background: rgba(11, 17, 17, 0.7);
}

.flavor-card h3,
.journey-nav h3 {
  margin-top: 0;
}

.flavor-card ul,
.journey-nav ol {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.journey-nav a {
  color: #eadfcd;
}

.journey-nav .current {
  color: var(--brass);
}

.back-link {
  margin-top: 1.5rem;
}

.product-card.ember {
  --accent: #a63c2f;
  border-color: rgba(183, 71, 50, 0.34);
}

.product-card.evergreen {
  --accent: #3d7048;
  border-color: rgba(80, 135, 82, 0.34);
}

.product-card.brine {
  --accent: #9d9141;
  border-color: rgba(154, 152, 66, 0.34);
}

.product-card.tide {
  --accent: #668b96;
  border-color: rgba(106, 143, 153, 0.34);
}

.product-card.hearth {
  --accent: #b86f37;
  border-color: rgba(187, 112, 54, 0.38);
}

.product-card.frost {
  --accent: #8f3e4a;
  border-color: rgba(153, 72, 82, 0.38);
}

.product-card {
  background:
    radial-gradient(circle at 50% 29%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 8rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%),
    linear-gradient(150deg, rgba(13, 18, 18, 0.94), rgba(5, 7, 8, 0.98));
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.craft-list {
  display: grid;
  gap: 0.85rem;
}

.craft-list div {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 0.4rem 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  background: rgba(11, 17, 17, 0.64);
}

.craft-list span {
  grid-row: 1 / span 2;
  color: var(--brass);
  font-size: 1.45rem;
}

.craft-list strong {
  color: #eadfcd;
  font-size: 1.08rem;
  font-weight: 400;
}

.craft-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.atlas-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1fr);
  gap: 1rem;
  align-items: stretch;
  padding-top: 0;
}

.atlas-panel,
.map-card,
.reserve-section {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(232, 218, 190, 0.045), transparent),
    rgba(8, 13, 14, 0.72);
}

.atlas-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.map-card {
  position: relative;
  min-height: 21rem;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(139, 166, 173, 0.18), transparent 8rem),
    linear-gradient(180deg, rgba(8, 13, 14, 0.72), rgba(4, 6, 7, 0.94));
}

.ridge {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 25%;
  height: 7rem;
  border-left: 1px solid rgba(230, 221, 201, 0.42);
  border-bottom: 1px solid rgba(230, 221, 201, 0.42);
  transform: skewX(-36deg);
}

.ridge-two {
  left: 26%;
  right: 14%;
  bottom: 17%;
  height: 5rem;
  opacity: 0.68;
}

.tree-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7rem;
  opacity: 0.62;
  background:
    linear-gradient(135deg, transparent 48%, rgba(214, 228, 220, 0.34) 49%, transparent 51%) 0 100% / 2.2rem 4.4rem repeat-x,
    linear-gradient(225deg, transparent 48%, rgba(214, 228, 220, 0.34) 49%, transparent 51%) 0 100% / 2.2rem 4.4rem repeat-x;
}

.reserve-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.reserve-section .button {
  white-space: nowrap;
}

footer {
  display: grid;
  place-items: center;
  gap: 0.55rem;
  padding: 2.5rem 1rem 3.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 0.7rem;
}

footer p {
  margin: 0;
}

footer p:first-of-type {
  color: var(--ink);
  font-size: 1.05rem;
}

@supports not (background: color-mix(in srgb, red 50%, transparent)) {
  .product-card {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%),
      linear-gradient(150deg, rgba(13, 18, 18, 0.94), rgba(5, 7, 8, 0.98));
  }
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    background: linear-gradient(180deg, rgba(3, 5, 6, 0.96), rgba(3, 5, 6, 0.74) 82%, transparent);
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding: 6.4rem 1rem 3.25rem;
    place-items: end center;
  }

  .hero-art img {
    object-position: 28% center;
  }

  .journey-hero .hero-art img {
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 5, 6, 0.36), rgba(3, 5, 6, 0.24) 28%, rgba(3, 5, 6, 0.78) 72%, #050708 100%),
      linear-gradient(90deg, rgba(2, 4, 5, 0.52), rgba(2, 4, 5, 0.16) 48%, rgba(2, 4, 5, 0.54));
  }

  .hero-content {
    width: min(33rem, 94vw);
    padding: 1rem 0 0;
  }

  .product-grid,
  .section-heading,
  .story-band,
  .atlas-section,
  .reserve-section,
  .journal-layout {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    border-top: 1px solid var(--line);
    background: var(--line);
  }

  .proof-strip div {
    min-height: 0;
    padding: 0.95rem;
    border: 0;
    background: rgba(5, 8, 9, 0.94);
    column-gap: 0.7rem;
    align-items: center;
  }

  .product-card {
    min-height: 18rem;
  }

  .product-card.image-card {
    min-height: 27rem;
  }

  .journey-aside {
    position: static;
  }

  .reserve-section .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 0.9rem;
  }

  .brand-mark {
    font-size: 1rem;
  }

  .compass {
    width: 1.9rem;
    height: 1.9rem;
  }

  .compass::before,
  .compass::after {
    height: 2.45rem;
  }

  .hero {
    min-height: 92svh;
    padding: 5.7rem 0.85rem 2.35rem;
  }

  .hero-art img {
    object-position: 30% center;
  }

  .journey-hero .hero-art img {
    object-position: center top;
  }

  .eyebrow {
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
    line-height: 0.92;
  }

  .tagline {
    margin-top: 0.9rem;
    font-size: clamp(0.82rem, 4vw, 1rem);
    line-height: 1.45;
  }

  .lede {
    margin-top: 0.85rem;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 1rem, 1160px);
    padding-block: 3.6rem;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    padding-block: 0.82rem;
  }

  .line-icon {
    width: 1.65rem;
    height: 1.65rem;
  }

  .line-icon.leaf::before {
    inset: 0.15rem 0.38rem;
  }

  .line-icon.leaf::after {
    top: 0.12rem;
    height: 1.45rem;
  }

  .line-icon.pot::before {
    left: 0.25rem;
    right: 0.25rem;
    bottom: 0.2rem;
    height: 0.98rem;
  }

  .line-icon.pot::after {
    left: 0.55rem;
    right: 0.55rem;
    top: 0.14rem;
    height: 0.34rem;
  }

  .line-icon.star::before,
  .line-icon.star::after {
    height: 1.65rem;
  }

  .line-icon.mountain::before {
    bottom: 0.27rem;
    height: 0.92rem;
  }

  .line-icon.mountain::after {
    right: 0.18rem;
    bottom: 0.27rem;
    width: 0.82rem;
    height: 0.7rem;
  }

  h2 {
    font-size: clamp(1.8rem, 11vw, 2.75rem);
  }

  .section-heading {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .product-card,
  .atlas-panel,
  .reserve-section,
  .craft-list div {
    padding-inline: 1rem;
  }

  .product-grid {
    gap: 0.75rem;
  }

  .product-card {
    min-height: 16.75rem;
    padding-block: 1rem;
  }

  .product-card.image-card {
    min-height: 24rem;
  }

  .product-card::before {
    top: 0.8rem;
    width: 5rem;
    height: 6.5rem;
  }

  .product-card::after {
    top: 8.15rem;
  }

  .story-band {
    gap: 1.4rem;
  }

  .craft-list div {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .map-card {
    min-height: 15rem;
  }
}
