:root {
  --ink: #17322b;
  --muted: #5e7068;
  --leaf: #5d8f4f;
  --leaf-dark: #2e6b4f;
  --tomato: #e75f3f;
  --sun: #f4be42;
  --sky: #bfe3e3;
  --cream: #fff7e4;
  --paper: #fffdf5;
  --cardboard: #d7a862;
  --line: #17322b;
  --shadow: 10px 10px 0 rgba(23, 50, 43, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(244, 190, 66, 0.18), transparent 22rem),
    linear-gradient(180deg, #fff5d9 0%, #f9fbef 42%, #eef8f0 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.service-marquee {
  position: relative;
  z-index: 12;
  overflow: hidden;
  color: var(--ink);
  background: var(--sun);
  border-bottom: 2px solid var(--line);
}

.marquee-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 18px;
}

.marquee-track span {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.marquee-track span + span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 12px 2px;
  background: var(--leaf-dark);
  border-radius: 50%;
}

.marquee-track .marquee-label {
  color: var(--leaf-dark);
}

@media (max-width: 900px) {
  .marquee-track {
    flex-wrap: wrap;
    gap: 4px 0;
    padding: 8px 14px;
  }

  .marquee-track span {
    white-space: normal;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 247, 228, 0.86);
  border-bottom: 2px solid rgba(23, 50, 43, 0.12);
  backdrop-filter: blur(16px);
}

.brand,
nav,
.hero-actions,
.segmented {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  white-space: nowrap;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 900;
}

.brand-city {
  color: var(--leaf-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--leaf-dark);
  border: 2px solid var(--line);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--sun);
}

.pear-logo {
  width: 31px;
  height: 31px;
  overflow: visible;
}

.pear-body {
  fill: #fffdf5;
  stroke: var(--line);
  stroke-width: 3.5;
  stroke-linejoin: round;
}

.pear-leaf {
  fill: #a8d86e;
  stroke: var(--line);
  stroke-width: 3;
  stroke-linejoin: round;
}

.pear-stem,
.pear-shine {
  fill: none;
  stroke: var(--line);
  stroke-linecap: round;
}

.pear-stem {
  stroke-width: 3.5;
}

.pear-shine {
  opacity: 0.55;
  stroke-width: 3;
  stroke: var(--leaf-dark);
}

nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 36px);
  color: var(--muted);
  font-weight: 700;
}

.nav-cta,
.primary-action,
.text-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line);
  font-weight: 800;
}

.nav-cta,
.primary-action {
  color: #fff;
  background: var(--tomato);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--line);
}

.nav-cta {
  padding: 0 18px;
}

.primary-action {
  padding: 0 22px;
  cursor: pointer;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
}

.text-action {
  padding: 0 18px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: clamp(34px, 5vw, 70px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 4vw 16px;
  height: 24px;
  background-image: linear-gradient(90deg, var(--leaf) 50%, transparent 0);
  background-size: 42px 8px;
  opacity: 0.3;
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 247, 228, 1) 0%, rgba(255, 247, 228, 1) 34%, rgba(255, 247, 228, 0.92) 48%, rgba(255, 247, 228, 0.32) 68%, rgba(255, 247, 228, 0.04) 100%),
    radial-gradient(circle at 18% 44%, rgba(255, 253, 245, 1), rgba(255, 247, 228, 0.86) 25rem, transparent 44rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(8px, 2vw, 18px) 0;
  text-shadow: 0 2px 0 rgba(255, 253, 245, 0.72);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  font-size: clamp(2.75rem, 4.9vw, 4.85rem);
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.9rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-copy p:not(.eyebrow),
.section-heading,
.story-copy p,
.order-intro {
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hero-copy .hero-subcopy {
  max-width: 540px;
  display: block;
  margin: 22px 0 0;
  padding: 16px 18px;
  color: #0d261f;
  background: #fffdf5;
  border: 2px solid var(--line);
  border-left: 12px solid var(--sun);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(23, 50, 43, 0.2);
  font-weight: 800;
  line-height: 1.45;
  text-shadow: none;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  text-shadow: none;
}

.hero-actions a {
  text-shadow: none;
}

.hero-ticket {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 80px);
  bottom: clamp(52px, 8vw, 100px);
  display: grid;
  place-items: center;
  width: 138px;
  aspect-ratio: 1;
  background: var(--sun);
  border: 2px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transform: rotate(7deg);
}

.hero-ticket span {
  font-family: Fraunces, Georgia, serif;
  font-size: 3rem;
  font-weight: 750;
}

.hero-ticket small {
  margin-top: -34px;
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px) 70px;
}

.proof-strip div {
  width: 100%;
  min-height: 208px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: var(--paper);
  border: 2px solid var(--line);
  box-shadow: 8px 8px 0 rgba(23, 50, 43, 0.12);
}

.proof-strip div + div {
  margin-left: 0;
}

.proof-strip strong,
.proof-text {
  display: block;
}

.proof-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 4px;
  background: #fff4cf;
  border: 2px solid var(--line);
  border-radius: 50%;
  box-shadow: 5px 5px 0 rgba(23, 50, 43, 0.12);
}

.proof-icon svg {
  width: 62px;
  height: 62px;
  overflow: visible;
}

.proof-icon .icon-fill {
  fill: #fffdf5;
  stroke: var(--line);
  stroke-linejoin: round;
  stroke-width: 3;
}

.proof-icon .icon-line {
  fill: none;
  stroke: var(--line);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.proof-icon .icon-accent {
  fill: var(--leaf);
  stroke: var(--line);
  stroke-linejoin: round;
  stroke-width: 3;
}

.proof-label .proof-icon {
  background: #e8f5f0;
}

.proof-label .icon-accent {
  fill: var(--sun);
}

.proof-note .proof-icon {
  background: #ffece5;
}

.proof-note .icon-accent {
  fill: var(--tomato);
}

.proof-strip strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
}

.proof-text {
  color: var(--muted);
  line-height: 1.5;
}

.menu-section,
.story-section,
.packaging-section,
.order-section {
  padding: 82px clamp(18px, 4vw, 56px);
}

.section-heading,
.order-intro {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.order-intro p:last-child {
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 18px;
}

.meal-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.meal-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 13px 13px 0 rgba(23, 50, 43, 0.16);
}

.meal-card.is-selected {
  outline: 4px solid var(--sun);
  box-shadow: 10px 10px 0 rgba(23, 50, 43, 0.16);
}

.meal-plate {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent) 30%, #fffdf5);
  border: 2px solid var(--line);
  border-radius: 8px;
}

.meal-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 8px solid rgba(255, 253, 245, 0.42);
  pointer-events: none;
}

.meal-photo {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.meal-card:hover .meal-photo {
  transform: scale(1.04);
}

.meal-card h3 {
  line-height: 1.05;
}

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

.meal-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  color: #24453b;
  font-size: 0.92rem;
  font-weight: 700;
}

.meal-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--sun);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background: #17322b;
  color: #fff9e9;
}

.story-copy p {
  color: #cde4d8;
}

.story-board {
  display: grid;
  gap: 16px;
}

.story-card {
  min-height: 176px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid #061711;
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.25);
}

.story-card span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--leaf-dark);
  border: 2px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
}

.story-card.oil span {
  background: var(--tomato);
}

.story-card.box span {
  background: var(--cardboard);
}

.story-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.packaging-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(244, 190, 66, 0.18), transparent 18rem),
    linear-gradient(180deg, #f9fbef, #fff7e4);
}

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

.package-card {
  position: relative;
  min-height: 370px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.package-card > :not(.package-hover-art) {
  position: relative;
  z-index: 1;
}

.package-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 13px 13px 0 rgba(23, 50, 43, 0.16);
}

.featured-package {
  background: #f3fbeb;
}

.package-icon {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  background: #fff4cf;
  border: 2px solid var(--line);
  border-radius: 50%;
  box-shadow: 5px 5px 0 rgba(23, 50, 43, 0.14);
}

.package-icon svg {
  width: 70px;
  height: 70px;
  overflow: visible;
}

.package-fill {
  fill: #fffdf5;
  stroke: var(--line);
  stroke-linejoin: round;
  stroke-width: 3;
}

.package-line {
  fill: none;
  stroke: var(--line);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.package-accent {
  fill: var(--leaf);
  stroke: var(--line);
  stroke-linejoin: round;
  stroke-width: 3;
}

.package-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.package-hover-art {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 0;
  width: min(58%, 210px);
  opacity: 0;
  transform: translateY(14px) rotate(-2deg) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.package-card:hover .package-hover-art {
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
}

.package-hover-art svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.art-shadow {
  fill: rgba(23, 50, 43, 0.16);
}

.box-side,
.note-paper {
  fill: #d7a862;
  stroke: var(--line);
  stroke-linejoin: round;
  stroke-width: 4;
}

.box-top,
.box-lid {
  fill: #f0c986;
  stroke: var(--line);
  stroke-linejoin: round;
  stroke-width: 4;
}

.leaf-detail,
.leaf-tray {
  fill: #7daa5b;
  stroke: var(--line);
  stroke-linejoin: round;
  stroke-width: 4;
}

.leaf-vein,
.art-line {
  fill: none;
  stroke: var(--line);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.food-tomato,
.heart {
  fill: var(--tomato);
  stroke: var(--line);
  stroke-linejoin: round;
  stroke-width: 4;
}

.food-rice {
  fill: #fff7d4;
  stroke: var(--line);
  stroke-linejoin: round;
  stroke-width: 4;
}

.food-cutlet {
  fill: #bc7944;
  stroke: var(--line);
  stroke-linejoin: round;
  stroke-width: 4;
}

.note-paper {
  fill: #fffdf5;
}

.note-fold {
  fill: #ffe1d8;
  stroke: var(--line);
  stroke-linejoin: round;
  stroke-width: 4;
}

.flower {
  fill: #f4be42;
  stroke: var(--line);
  stroke-linejoin: round;
  stroke-width: 4;
}

.order-section {
  background: linear-gradient(180deg, #f9fbef, #fff4d3);
}

.order-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.field-group,
.summary {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.note-field {
  grid-column: span 2;
}

label,
.summary p,
dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #fffaf0;
  border: 2px solid rgba(23, 50, 43, 0.85);
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
}

input,
select {
  height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 132px;
  resize: vertical;
  padding: 14px;
  line-height: 1.5;
}

.segmented {
  gap: 10px;
  flex-wrap: wrap;
}

.segmented label {
  flex: 1 1 150px;
  min-width: 0;
}

.segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 0 10px;
  color: var(--ink);
  background: #fffaf0;
  border: 2px solid rgba(23, 50, 43, 0.85);
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.segmented small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.segmented input:checked + span {
  background: var(--sun);
  box-shadow: 4px 4px 0 var(--line);
}

.segmented input:checked + span small {
  color: var(--ink);
}

#noteCount {
  justify-self: end;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.summary {
  position: sticky;
  top: 104px;
  grid-row: span 3;
  background: #fffbec;
}

.summary h3 {
  padding-bottom: 16px;
  border-bottom: 2px dashed rgba(23, 50, 43, 0.24);
}

dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

dl .total-row {
  padding-top: 14px;
  border-top: 2px dashed rgba(23, 50, 43, 0.24);
}

.total-row dt,
.total-row dd {
  color: var(--ink);
  font-size: 1rem;
}

dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: #fff9e9;
  background: var(--ink);
  font-weight: 800;
}

.story-page {
  background:
    radial-gradient(circle at 90% 8%, rgba(168, 216, 110, 0.22), transparent 22rem),
    linear-gradient(180deg, #fff7e4 0%, #f9fbef 48%, #fff4d3 100%);
}

.story-hero {
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(36px, 6vw, 82px) clamp(18px, 4vw, 56px);
}

.story-hero-copy {
  max-width: 680px;
}

.story-hero-copy p:not(.eyebrow) {
  color: #315147;
  font-size: clamp(1.08rem, 2vw, 1.26rem);
  font-weight: 700;
  line-height: 1.7;
}

.story-hero-media,
.story-image-card {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-hero-media img,
.story-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-hero-media {
  aspect-ratio: 1.18;
  transform: rotate(1.5deg);
}

.story-chapter {
  padding: 72px clamp(18px, 4vw, 56px);
}

.chapter-balanced {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.chapter-balanced.reverse {
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.9fr);
}

.story-prose {
  max-width: 760px;
}

.story-prose.wide {
  max-width: 980px;
  margin: 0 auto;
}

.story-prose p,
.closing-story p {
  margin: 0 0 20px;
  color: #315147;
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 600;
}

.story-prose p:first-child {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-family: Fraunces, Georgia, serif;
  font-weight: 750;
  line-height: 1.16;
}

.story-image-card {
  aspect-ratio: 1.08;
}

.remedy-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 20px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 245, 0.72);
  border-top: 1px solid rgba(23, 50, 43, 0.12);
  border-bottom: 1px solid rgba(23, 50, 43, 0.12);
}

.remedy-band div {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: 0;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff7e4;
  border: 1px solid rgba(23, 50, 43, 0.18);
  border-radius: 999px;
}

.remedy-band span {
  display: inline;
  margin-bottom: 0;
  color: var(--leaf-dark);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
}

.remedy-band p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

blockquote {
  margin: 34px 0 0;
  padding: 24px 28px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line);
  border-left: 12px solid var(--sun);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  font-weight: 750;
  line-height: 1.05;
}

.research-section {
  padding: 82px clamp(18px, 4vw, 56px);
  background: #17322b;
  color: #fff9e9;
}

.research-section .section-heading {
  max-width: 980px;
}

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

.research-grid article {
  min-height: 260px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid #061711;
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.25);
}

.research-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--tomato);
  border: 2px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
}

.research-grid p {
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

.closing-story {
  max-width: 1100px;
  margin: 0 auto;
  padding: 92px clamp(18px, 4vw, 56px) 110px;
  text-align: center;
}

.closing-story h2 {
  margin-bottom: 24px;
}

.closing-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px 0;
}

.closing-values span {
  padding: 14px 20px;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--line);
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(23, 50, 43, 0.14);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .order-panel {
    grid-template-columns: 1fr 1fr;
  }

  .summary {
    position: static;
    grid-column: span 2;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 760px;
    padding: 42px 18px 120px;
    align-items: end;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255, 247, 228, 0.08) 0%, rgba(255, 247, 228, 0.96) 43%, rgba(255, 247, 228, 1) 100%);
  }

  .hero-art {
    height: 58%;
  }

  .hero-ticket {
    width: 106px;
    right: 20px;
    bottom: 34px;
  }

  .hero-ticket span {
    font-size: 2.25rem;
  }

  .proof-strip,
  .story-section,
  .packaging-grid,
  .order-panel,
  .story-hero,
  .chapter-balanced,
  .chapter-balanced.reverse,
  .remedy-band,
  .research-grid,
  footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .story-hero {
    min-height: auto;
  }

  .story-hero-media {
    transform: none;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .note-field,
  .summary {
    grid-column: auto;
  }

  footer {
    gap: 8px;
  }
}
