:root {
  --forest: #123f33;
  --forest-deep: #0b3028;
  --leaf: #6f9b61;
  --leaf-soft: #dcebd6;
  --mint: #e9f4e7;
  --paper: #fbfcf8;
  --white: #ffffff;
  --ink: #173b31;
  --muted: #62756c;
  --clay: #f1ddd1;
  --sun: #f2dc8b;
  --berry: #b95f55;
  --line: rgba(18, 63, 51, 0.15);
  --shadow-soft: 0 18px 46px rgba(32, 67, 54, 0.1);
  --shadow-clay: 10px 10px 24px rgba(37, 72, 59, 0.11), -8px -8px 18px rgba(255, 255, 255, 0.72);
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 5.2rem;
  line-height: 0.96;
}

h2 {
  margin-bottom: 20px;
  font-size: 3.45rem;
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.18;
}

.section-shell {
  width: min(100% - 48px, 1220px);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #def1b2;
}

.button,
.nav-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button {
  padding: 14px 22px;
}

.button:hover,
.nav-action:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--sun);
  color: #2d3d24;
  box-shadow: 0 12px 24px rgba(16, 38, 30, 0.22);
}

.button--primary:hover {
  background: #f8e7a2;
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.23);
}

.button--dark {
  background: var(--forest);
  color: var(--white);
}

.button--dark:hover {
  background: var(--forest-deep);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(18, 63, 51, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 10px max(24px, calc((100vw - 1220px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 248, 0.91);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 252, 248, 0.98);
  box-shadow: 0 10px 30px rgba(32, 67, 54, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.14rem;
  font-weight: 700;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a,
.site-footer nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--leaf);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: var(--forest);
}

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

.nav-action {
  min-height: 44px;
  gap: 8px;
  padding: 12px 17px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.86rem;
}

.nav-action:hover {
  background: var(--forest-deep);
  color: var(--white);
}

.veg-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sun);
}

.nav-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 0;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-weight: 700;
}

.nav-toggle__lines {
  display: grid;
  width: 20px;
  gap: 4px;
}

.nav-toggle__lines i {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  height: calc(100svh - 112px);
  min-height: 620px;
  max-height: 830px;
  align-items: center;
  overflow: hidden;
  background: var(--forest) url("/images/catalog/apple-walnut-hero-v1.jpg") center / cover no-repeat;
  isolation: isolate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 39, 31, 0.94) 0%, rgba(8, 39, 31, 0.8) 36%, rgba(8, 39, 31, 0.25) 66%, rgba(8, 39, 31, 0.05) 100%);
}

.hero__content {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
  padding-bottom: 48px;
  color: var(--white);
}

.hero__brandline {
  margin-bottom: 30px;
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.hero h1 {
  max-width: 650px;
  color: var(--white);
}

.hero__lead {
  max-width: 570px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.13rem;
}

.hero__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  text-transform: uppercase;
}

.hero__price strong {
  color: var(--sun);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__proof {
  position: absolute;
  right: max(24px, calc((100vw - 1220px) / 2));
  bottom: 24px;
  display: flex;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
}

.hero__proof span {
  padding: 10px 13px;
}

.hero__proof span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.welcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: end;
  gap: 80px;
  padding-block: 104px;
}

.welcome h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.welcome__copy {
  padding-bottom: 6px;
}

.welcome__copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.section-heading--row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 56px;
}

.section-heading--row h2 {
  margin-bottom: 0;
}

.section-heading--row > p {
  margin-bottom: 6px;
  color: var(--muted);
}

.premium-showcase {
  padding-block: 104px 112px;
  border-block: 1px solid var(--line);
  background: #f3f6f0;
}

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

.showcase-grid {
  margin-top: 34px;
}

.showcase-grid--three {
  margin-top: 30px;
}

.catalog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 63, 51, 0.11);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-clay);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 16px 30px rgba(37, 72, 59, 0.14), -6px -6px 16px rgba(255, 255, 255, 0.72);
}

.catalog-card__link {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.product-photo {
  width: 100%;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-bottom: 1px solid var(--line);
  background-color: #fbfaf6;
  background-position: var(--image-x) var(--image-y);
  background-repeat: no-repeat;
  background-size: calc(var(--sheet-columns) * 100%) calc(var(--sheet-rows) * 100%);
}

.catalog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 21px;
}

.catalog-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
  color: var(--leaf);
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-card h3 {
  margin-bottom: 10px;
}

.catalog-card__body > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.catalog-card__footer strong {
  color: var(--forest);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
}

.catalog-card__footer span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.catalog-card__footer i {
  display: inline-block;
  margin-left: 4px;
  font-style: normal;
  transition: transform 180ms ease;
}

.catalog-card:hover .catalog-card__footer i {
  transform: translateX(3px);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.pure-veg-band {
  padding-block: 88px;
  background: var(--forest);
  color: var(--white);
}

.pure-veg-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: 70px;
}

.pure-veg-band h2 {
  margin-bottom: 0;
  color: var(--white);
}

.pure-veg-band ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.pure-veg-band li {
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pure-veg-band li:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.pure-veg-band strong,
.pure-veg-band span {
  display: block;
}

.pure-veg-band span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.builder-section {
  padding-block: 112px;
  background: #183f35;
  color: var(--white);
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: 72px;
}

.builder-intro h2 {
  color: var(--white);
}

.builder-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.builder-orbit {
  min-height: 220px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: url("/images/catalog/super-premium-sheet-v1.jpg") 100% 100% / 300% 200% no-repeat;
  box-shadow: 0 18px 40px rgba(4, 25, 19, 0.22);
}

.builder-tool {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: #f6f8f2;
  color: var(--ink);
  box-shadow: 18px 22px 48px rgba(4, 25, 19, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.builder-tool fieldset {
  margin: 0;
  padding: 0 0 25px;
  border: 0;
}

.builder-tool fieldset + fieldset {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.builder-tool legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.builder-tool legend span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf-soft);
  color: var(--forest);
  font-family: "DM Sans", sans-serif;
  font-size: 0.76rem;
}

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

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

.choice-grid label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-grid label > span {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.choice-grid input:checked + span {
  border-color: var(--leaf);
  background: var(--leaf-soft);
  color: var(--forest);
  box-shadow: inset 0 2px 5px rgba(42, 86, 65, 0.1);
}

.choice-grid input:focus-visible + span {
  outline: 3px solid var(--sun);
  outline-offset: 2px;
}

.bowl-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.bowl-summary small,
.bowl-summary strong {
  display: block;
}

.bowl-summary small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.bowl-summary strong {
  max-width: 420px;
  font-size: 0.91rem;
}

.builder-note,
.form-note {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.story-section {
  padding-block: 112px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 84px;
}

.story-image {
  min-height: 650px;
  border-radius: 8px;
  background: var(--leaf-soft) url("/images/catalog/apple-walnut-hero-v1.jpg") 72% center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.story-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.story-values {
  margin: 32px 0 0;
}

.story-values div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
}

.story-values div:last-child {
  border-bottom: 1px solid var(--line);
}

.story-values dt {
  color: var(--forest);
  font-weight: 700;
}

.story-values dd {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  padding-block: 92px;
  border-top: 1px solid rgba(185, 95, 85, 0.14);
  background: var(--clay);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 72px;
}

.contact-layout h2 {
  margin-bottom: 14px;
}

.contact-layout > div > p:last-child {
  margin-bottom: 0;
  color: #705f58;
}

.signup {
  padding: 26px;
  border: 1px solid rgba(93, 67, 57, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 10px 12px 28px rgba(108, 72, 59, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.signup label {
  display: block;
  margin-bottom: 9px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
}

.signup__row {
  display: flex;
  gap: 10px;
}

.signup input,
.catalog-search input {
  min-width: 0;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(18, 63, 51, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.signup input {
  flex: 1;
}

.signup input::placeholder,
.catalog-search input::placeholder {
  color: #8b958f;
}

.catalog-hero {
  padding-block: 96px;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.catalog-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: end;
  gap: 70px;
}

.catalog-hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: 4.5rem;
}

.catalog-hero__layout > div > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.catalog-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.22);
}

.catalog-hero__facts div {
  padding: 18px 14px;
  text-align: center;
}

.catalog-hero__facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.catalog-hero__facts dt {
  color: var(--sun);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.catalog-hero__facts dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.catalog-content {
  padding-block: 70px 112px;
}

.catalog-toolbar {
  position: sticky;
  top: 88px;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  align-items: end;
  gap: 22px;
  margin-bottom: 76px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 252, 248, 0.95);
  box-shadow: 0 12px 34px rgba(32, 67, 54, 0.08);
  backdrop-filter: blur(16px);
}

.catalog-search label {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-search input {
  width: 100%;
}

.catalog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.filter:hover {
  transform: translateY(-1px);
  color: var(--forest);
}

.filter.is-active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.catalog-result {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.catalog-result strong {
  color: var(--forest);
}

.catalog-group + .catalog-group {
  margin-top: 108px;
  padding-top: 100px;
  border-top: 1px solid var(--line);
}

.catalog-group__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 32px;
}

.catalog-group__heading h2 {
  margin-bottom: 10px;
}

.catalog-group__heading > div:first-child > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
}

.catalog-group__price {
  padding: 16px 18px;
  border-left: 4px solid var(--leaf);
  background: var(--mint);
}

.catalog-group__price strong,
.catalog-group__price span {
  display: block;
}

.catalog-group__price strong {
  color: var(--forest);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}

.catalog-group__price span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

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

.catalog-empty {
  padding: 80px 24px;
  text-align: center;
}

.catalog-empty h2 {
  margin-bottom: 8px;
}

.catalog-empty p {
  color: var(--muted);
}

.catalog-promise {
  padding-block: 90px;
  background: var(--forest);
  color: var(--white);
}

.catalog-promise__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: 70px;
}

.catalog-promise h2 {
  margin-bottom: 0;
  color: var(--white);
}

.catalog-promise ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-promise li,
.product-highlights li {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.catalog-promise li {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs a:hover {
  color: var(--forest);
}

.product-detail {
  padding-block: 54px 112px;
}

.product-detail__layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 76px;
}

.product-photo--detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.product-detail__copy h1 {
  font-size: 4.4rem;
}

.product-detail__lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
}

.product-detail__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 26px 0;
}

.product-detail__price strong {
  color: var(--forest);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.4rem;
}

.product-detail__price span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.ingredient-block {
  padding-block: 24px;
  border-block: 1px solid var(--line);
}

.ingredient-block h2 {
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.79rem;
  text-transform: uppercase;
}

.ingredient-block p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-highlights li {
  padding: 8px 12px;
  border-color: var(--line);
  background: var(--mint);
  color: var(--forest);
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.related-products {
  padding-block: 100px;
  border-top: 1px solid var(--line);
  background: #f3f6f0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 28px max(24px, calc((100vw - 1220px) / 2));
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.footer-brand {
  color: var(--white);
}

.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.site-footer p {
  margin-bottom: 0;
  text-align: center;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.site-footer nav a:hover {
  color: var(--white);
}

[data-catalog-card][hidden],
[data-catalog-group][hidden] {
  display: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1100px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3rem;
  }

  .site-header {
    gap: 20px;
  }

  .site-nav {
    gap: 18px;
  }

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

  .builder-layout {
    grid-template-columns: minmax(260px, 0.62fr) minmax(510px, 1.38fr);
    gap: 42px;
  }

  .story-layout,
  .product-detail__layout {
    gap: 52px;
  }

  .catalog-toolbar {
    grid-template-columns: minmax(240px, 1fr) minmax(400px, 1.3fr);
  }

  .catalog-result {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .section-shell,
  .hero__content {
    width: min(100% - 36px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 8px 18px;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(251, 252, 248, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    padding: 16px 24px;
    border-top: 1px solid var(--line);
    color: var(--forest);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav.is-open {
    max-height: 280px;
    border-bottom-color: var(--line);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__lines i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__lines i:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__lines i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    height: calc(100svh - 102px);
    min-height: 620px;
    background-position: 64% center;
  }

  .hero__veil {
    background: linear-gradient(90deg, rgba(8, 39, 31, 0.93), rgba(8, 39, 31, 0.62) 72%, rgba(8, 39, 31, 0.2));
  }

  .hero__proof {
    right: 18px;
    bottom: 16px;
    left: 18px;
    justify-content: center;
  }

  .welcome,
  .section-heading--row,
  .pure-veg-layout,
  .builder-layout,
  .story-layout,
  .contact-layout,
  .catalog-hero__layout,
  .catalog-promise__layout,
  .product-detail__layout {
    grid-template-columns: 1fr;
  }

  .welcome {
    gap: 30px;
    padding-block: 82px;
  }

  .section-heading--row,
  .pure-veg-layout,
  .builder-layout,
  .story-layout,
  .contact-layout,
  .catalog-hero__layout,
  .catalog-promise__layout,
  .product-detail__layout {
    gap: 38px;
  }

  .premium-showcase,
  .builder-section,
  .story-section {
    padding-block: 86px;
  }

  .pure-veg-band {
    padding-block: 76px;
  }

  .builder-orbit {
    display: none;
  }

  .story-image {
    min-height: 480px;
  }

  .catalog-hero {
    padding-block: 76px;
  }

  .catalog-hero h1 {
    font-size: 4rem;
  }

  .catalog-hero__facts {
    max-width: 560px;
  }

  .catalog-toolbar {
    top: 78px;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-bottom: 60px;
  }

  .catalog-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .catalog-filter .filter {
    flex: 0 0 auto;
  }

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

  .catalog-group + .catalog-group {
    margin-top: 82px;
    padding-top: 78px;
  }

  .product-detail__layout {
    align-items: start;
  }

  .product-photo--detail {
    max-width: 620px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 580px) {
  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .section-shell,
  .hero__content {
    width: min(100% - 28px, 540px);
  }

  .brand {
    gap: 8px;
    font-size: 1rem;
  }

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

  .nav-toggle > span:last-child,
  .nav-action .veg-dot {
    display: none;
  }

  .nav-action {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  .hero {
    height: calc(100svh - 90px);
    min-height: 640px;
    background-position: 70% center;
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(8, 39, 31, 0.18) 0%, rgba(8, 39, 31, 0.78) 52%, rgba(8, 39, 31, 0.97) 100%);
  }

  .hero__content {
    align-self: flex-end;
    padding-bottom: 96px;
  }

  .hero__brandline {
    margin-bottom: 18px;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .hero__actions {
    margin-top: 20px;
  }

  .hero__actions .button {
    min-height: 46px;
    padding: 13px 15px;
    font-size: 0.82rem;
  }

  .hero__proof {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero__proof span {
    flex: 0 0 auto;
    padding: 9px 10px;
    font-size: 0.66rem;
  }

  .welcome,
  .premium-showcase,
  .pure-veg-band,
  .builder-section,
  .story-section,
  .contact-section,
  .catalog-promise,
  .related-products {
    padding-block: 68px;
  }

  .showcase-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card__body {
    padding: 19px;
  }

  .pure-veg-band ul {
    grid-template-columns: 1fr;
  }

  .pure-veg-band li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .builder-tool {
    padding: 22px 16px;
  }

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

  .bowl-summary,
  .signup__row {
    align-items: stretch;
    flex-direction: column;
  }

  .story-image {
    min-height: 360px;
  }

  .story-values div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .signup {
    padding: 20px 16px;
  }

  .catalog-hero h1,
  .product-detail__copy h1 {
    font-size: 3rem;
  }

  .catalog-hero__facts dt {
    font-size: 2rem;
  }

  .catalog-hero__facts dd {
    font-size: 0.64rem;
  }

  .catalog-content {
    padding-block: 40px 72px;
  }

  .catalog-toolbar {
    position: static;
    margin-bottom: 54px;
    padding: 14px;
  }

  .catalog-group__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-group__price {
    width: fit-content;
  }

  .catalog-group + .catalog-group {
    margin-top: 68px;
    padding-top: 64px;
  }

  .product-detail {
    padding-block: 34px 72px;
  }

  .product-detail__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 18px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-height: 680px) and (min-width: 581px) {
  .hero {
    height: calc(100svh - 88px);
    min-height: 520px;
  }

  .hero__content {
    padding-bottom: 42px;
  }

  .hero__brandline {
    margin-bottom: 14px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: 3.7rem;
  }

  .hero__actions {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
