.page-main {
  min-height: 70svh;
  padding: clamp(70px, 9vw, 130px) max(24px, calc((100% - 1180px) / 2));
}

.page-hero {
  display: grid;
  margin-bottom: clamp(56px, 8vw, 100px);
  padding: clamp(50px, 8vw, 100px);
  align-items: center;
  justify-items: center;
  background: rgba(255, 253, 248, 0.58);
  border: 1px solid rgba(23, 63, 53, 0.16);
  border-radius: 30px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.page-hero > div > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.page-title-mark {
  display: grid;
  width: 82px;
  height: 82px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2rem;
}

.gallery-grid {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-grid img:first-child {
  grid-column: 1 / -1;
  height: min(650px, 65vw);
}

.content-card {
  padding: clamp(28px, 5vw, 58px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.content-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.content-card p,
.prose p {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

.shipping-note-card {
  margin-top: 28px;
}

.preorder-card {
  margin-bottom: 34px;
}

.product-fresh-note {
  padding: 12px 14px;
  background: rgba(56, 122, 74, 0.1);
  border: 1px solid rgba(56, 122, 74, 0.2);
  border-radius: 8px;
  color: var(--forest);
  font-weight: 800;
}

.form-card {
  display: grid;
  gap: 20px;
}

.form-card label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(185, 95, 57, 0.15);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.story-comment-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  margin-bottom: 34px;
  align-items: start;
}

.story-comment-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.story-submission-form button {
  width: fit-content;
  min-height: 44px;
  padding: 12px 18px;
  color: #fff;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 8px;
  font-weight: 900;
}

.story-permission {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.story-permission input {
  width: auto;
  margin-top: 3px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px !important;
  height: 1px;
  opacity: 0;
}

.story-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}

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

.story-card div {
  padding: 28px;
}

.story-card time,
.category-label {
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card h2 {
  margin: 9px 0 12px;
  font-size: 2rem;
}

.story-card img {
  object-fit: contain;
  background: rgba(255, 253, 248, 0.72);
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.more-grid a {
  display: grid;
  min-height: 260px;
  padding: 30px;
  align-content: space-between;
  color: white;
  background: var(--forest);
  border-radius: 20px;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.more-grid a:nth-child(2) {
  background: var(--rust);
}

.more-grid a:nth-child(3) {
  color: var(--forest-deep);
  background: var(--gold);
}

.more-grid a:hover {
  transform: translateY(-4px);
}

.more-grid h2 {
  margin: 0;
  font-size: 2rem;
}

.policy-list {
  display: grid;
  gap: 18px;
}

.policy-list section {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.policy-list h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.shop-page .section-heading {
  margin-bottom: 36px;
}

.order-intro {
  padding: clamp(55px, 8vw, 100px) max(24px, calc((100% - 1000px) / 2));
  color: white;
  background: #1d3159;
  text-align: center;
}

.order-intro .eyebrow {
  color: var(--cream);
}

.order-intro h1 {
  max-width: none;
  margin: 0 auto 16px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  text-align: center;
}

.order-intro > p:not(.eyebrow) {
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-notice {
  display: grid;
  max-width: 760px;
  margin: 35px auto 0;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  text-align: center;
}

.order-notice p {
  margin: 0;
}

.order-notice a {
  color: var(--cream);
}

.order-content {
  padding: 0 max(24px, calc((100% - 1240px) / 2)) 100px;
  background: #f8f3e7;
}

.shop-category {
  padding: 58px 0 70px;
  border-bottom: 1px solid var(--line);
}

.shop-category:last-child {
  border-bottom: 0;
}

.shop-category h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.shop-page .product-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 28px;
}

.shop-page .product-image {
  aspect-ratio: 1;
  border-radius: 12px;
}

.shop-page .product-copy {
  padding-top: 16px;
}

.shop-page .product-copy h3 {
  font-size: 1.25rem;
}

.category-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  overflow-x: auto;
  padding: 12px 0;
  gap: 10px;
  background: #f8f3e7;
  border-bottom: 1px solid var(--line);
}

.category-nav a {
  flex: 0 0 auto;
  padding: 9px 14px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.product-card.is-sold-out {
  opacity: 0.7;
}

.sold-out-badge {
  background: var(--forest);
}

.card-link:disabled {
  cursor: not-allowed;
}

.archived-menu {
  padding: 75px 0 20px;
  border-top: 2px solid var(--forest);
}

.archived-heading {
  display: grid;
  margin-bottom: 38px;
  align-items: end;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 40px;
}

.archived-heading h2 {
  margin: 0;
}

.archived-heading > p {
  color: var(--muted);
}

.archived-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.archived-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.archived-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.72);
}

.archived-card div {
  padding: 17px;
}

.archived-card span {
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archived-card h3 {
  margin: 5px 0 8px;
  font-size: 1.15rem;
}

.archived-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 850px) {
  .page-hero,
  .info-grid,
  .story-comment-card,
  .two-column {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-grid img:first-child {
    grid-column: auto;
  }

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

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

  .archived-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .shop-page .product-grid {
    grid-template-columns: 1fr;
  }

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