@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --sky: #BEE1F7;
  --ink: #171713;
  --muted: #666157;
  --paper: #ffffff;
  --cream: #f6f2ea;
  --line: rgba(23, 23, 19, 0.12);
  --sage: #6f8061;
  --gold: #c8a456;
  --clay: #b9845e;
  --shadow: 0 24px 54px rgba(23, 23, 19, 0.08);
  --gutter: clamp(22px, 5vw, 92px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--sky);
  border-bottom: 1px solid rgba(23, 23, 19, 0.06);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 14px;
  text-decoration: none;
}

.mark-symbol {
  position: relative;
  width: 29px;
  height: 29px;
  border: 2px solid currentColor;
  border-radius: 12px;
}

.mark-symbol::before,
.mark-symbol::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 13px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.mark-symbol::before {
  left: 4px;
}

.mark-symbol::after {
  right: 4px;
}

.wordmark {
  position: absolute;
  left: 50%;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transform: translateX(-50%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.desktop-nav a:hover,
.footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav-buy {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
}

.menu-btn {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  color: currentColor;
}

.menu-btn span {
  position: absolute;
  left: 7px;
  width: 28px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}

.menu-btn span:nth-child(1) { top: 12px; }
.menu-btn span:nth-child(2) { top: 20px; }
.menu-btn span:nth-child(3) { top: 28px; }
.menu-btn.active span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 78px 0 0;
  z-index: 45;
  display: grid;
  align-content: start;
  gap: 8px;
  background: var(--sky);
  padding: 32px var(--gutter);
  transform: translateX(100%);
  transition: transform 0.32s ease;
}

.mobile-nav.active {
  transform: translateX(0);
}

.page-shell {
  position: relative;
  width: calc(100% - 32px);
  margin: 104px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  background: var(--paper);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 55% 12%, rgba(23, 23, 19, 0.045), transparent 18%),
    linear-gradient(122deg, transparent 0 39%, rgba(23, 23, 19, 0.035) 39.08% 39.82%, transparent 39.9% 100%),
    linear-gradient(142deg, transparent 0 71%, rgba(23, 23, 19, 0.04) 71.08% 71.86%, transparent 71.95% 100%);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 54px var(--gutter);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  grid-template-rows: auto 1fr auto auto;
  column-gap: clamp(32px, 6vw, 112px);
  align-items: end;
}

.mini-nav {
  position: absolute;
  top: 58px;
  right: var(--gutter);
  z-index: 4;
  display: flex;
  gap: clamp(24px, 4.4vw, 70px);
}

.mini-nav a {
  color: rgba(23, 23, 19, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.eyebrow {
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  max-width: 620px;
  margin: 0 0 clamp(54px, 8vw, 110px);
  color: rgba(23, 23, 19, 0.64);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.18;
  text-transform: uppercase;
}

.hero-title {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 1180px;
  margin: 0;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: clamp(76px, 13vw, 230px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.74;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-product {
  position: absolute;
  right: clamp(42px, 8vw, 176px);
  left: auto;
  top: clamp(270px, 31vw, 340px);
  z-index: 2;
  width: auto;
  max-width: min(430px, 30vw);
  height: min(420px, 44vh);
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 30px 34px rgba(23, 23, 19, 0.17));
}

.hero-photo {
  position: absolute;
  right: clamp(64px, 10vw, 220px);
  left: auto;
  top: clamp(286px, 31vw, 348px);
  z-index: 2;
  width: min(500px, 30vw);
  height: clamp(250px, 20vw, 330px);
  border-radius: 18px;
  object-fit: cover;
  transform: none;
  box-shadow: 0 28px 44px rgba(23, 23, 19, 0.12);
}

.hero-note {
  position: relative;
  z-index: 5;
  grid-column: 1;
  grid-row: 3;
  max-width: 520px;
  margin: clamp(24px, 4vw, 48px) 0 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 14px;
  color: rgba(23, 23, 19, 0.74);
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.hero-actions {
  position: relative;
  z-index: 5;
  grid-column: 1;
  grid-row: 4;
  justify-self: start;
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  max-width: min(100%, 430px);
}

.button,
.button-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 13px 24px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.button {
  background: var(--ink);
  color: var(--paper);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

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

.button:hover {
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.section {
  padding: clamp(64px, 7vw, 118px) var(--gutter);
  border-top: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.kicker {
  margin: 0 0 16px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2,
.panel-title {
  margin: 0 0 24px;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: clamp(42px, 6.2vw, 104px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

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

.product-stage img {
  width: min(560px, 90%);
  max-height: 720px;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(23, 23, 19, 0.16));
}

.note {
  position: absolute;
  z-index: 2;
  max-width: 230px;
  border-radius: 12px;
  background: var(--sage);
  color: #fff;
  padding: 16px 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.note.one { top: 22%; left: 4%; }
.note.two { bottom: 26%; left: 0; }
.note.three { right: 5%; bottom: 14%; }

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

.proof-card,
.content-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 28px;
}

.proof-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
}

.proof-card h3,
.content-card h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 900;
  line-height: 0.96;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.image-grid img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.image-grid .contain {
  background: rgba(245, 240, 232, 0.72);
  object-fit: contain;
  padding: 26px;
}

.ritual-band {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  overflow: hidden;
}

.giant-word {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  top: 26%;
  color: rgba(23, 23, 19, 0.13);
  font-size: clamp(150px, 27vw, 460px);
  font-weight: 900;
  line-height: 0.72;
  text-transform: uppercase;
  z-index: 0;
}

.ritual-product {
  position: relative;
  z-index: 2;
  grid-column: 2;
  justify-self: center;
  width: min(520px, 75%);
  filter: drop-shadow(0 32px 38px rgba(23, 23, 19, 0.17));
}

.ritual-copy,
.ritual-side {
  position: relative;
  z-index: 3;
  max-width: 460px;
}

.ritual-side {
  justify-self: end;
  align-self: end;
}

.full-bleed-photo {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  padding: var(--gutter);
}

.full-bleed-photo img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-bleed-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.58));
}

.full-bleed-photo h2 {
  max-width: 920px;
  margin: 0 0 24px;
  font-size: clamp(54px, 8vw, 136px);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.full-bleed-photo p {
  max-width: 620px;
  color: rgba(255,255,255,0.84);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.contact-list {
  display: grid;
  gap: 20px;
}

.contact-list p {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255,255,255,0.76);
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.button:focus-visible,
.button-secondary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.source-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.82fr);
  grid-template-rows: auto 1fr auto auto;
  align-items: end;
  gap: 18px clamp(34px, 6vw, 104px);
  overflow: hidden;
  padding: 54px var(--gutter);
}

.source-hero > :not(.editorial-png):not(.source-hero-photo) {
  position: relative;
  z-index: 3;
}

.source-hero > div:first-of-type {
  grid-column: 1 / -1;
  grid-row: 1 / 3;
  align-self: center;
  max-width: min(900px, 66vw);
}

.source-hero .hero-title {
  max-width: 900px;
  font-size: clamp(76px, 12vw, 210px);
}

.source-hero-photo {
  position: absolute;
  right: clamp(34px, 7vw, 150px);
  bottom: clamp(84px, 10vw, 150px);
  z-index: 2;
  width: min(560px, 36vw);
  height: clamp(300px, 25vw, 430px);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 30px 54px rgba(23, 23, 19, 0.14);
}

.source-hero-png-branch {
  --png-width: clamp(180px, 24vw, 400px);
  --png-rotate: -13deg;
  right: -90px;
  top: 112px;
  opacity: 0.70;
}

.source-hero-png-nuts {
  --png-width: clamp(110px, 14vw, 220px);
  --png-rotate: 15deg;
  left: clamp(20px, 5vw, 92px);
  bottom: 132px;
  opacity: 0.42;
}

.source-section-head {
  max-width: 900px;
  margin-bottom: clamp(34px, 5vw, 72px);
}

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

.source-steps article {
  display: grid;
  gap: 16px;
  align-content: start;
}

.source-steps img,
.source-tree .section-grid > img {
  width: 100%;
  min-height: 360px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 24px 46px rgba(23, 23, 19, 0.08);
}

.source-steps span {
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.source-steps h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.92;
  text-transform: uppercase;
}

.source-tree {
  position: relative;
  overflow: hidden;
}

.source-tree-png {
  --png-width: clamp(150px, 20vw, 320px);
  --png-rotate: 14deg;
  right: -88px;
  top: 48px;
  opacity: 0.58;
}

.source-mini-proof {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}

.source-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  background: var(--sky);
  padding: 64px var(--gutter) 26px;
}

.editorial-png {
  position: absolute;
  z-index: 1;
  display: block;
  width: var(--png-width, 260px);
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: var(--png-opacity, 0.96);
  filter: drop-shadow(0 26px 30px rgba(23, 23, 19, 0.13));
  transform: translate3d(0, 0, 0) rotate(var(--png-rotate, 0deg));
}

.hero > :not(.editorial-png):not(.hero-product):not(.hero-photo):not(.hero-title):not(.hero-note):not(.hero-actions):not(.mini-nav),
.section > :not(.editorial-png),
.site-footer > :not(.editorial-png) {
  position: relative;
  z-index: 2;
}

.product-hero-png-branch {
  --png-width: clamp(180px, 24vw, 390px);
  --png-rotate: -15deg;
  top: 88px;
  right: -92px;
}

.product-hero-png-nuts {
  --png-width: clamp(120px, 14vw, 220px);
  --png-rotate: 12deg;
  left: clamp(18px, 4vw, 64px);
  bottom: 126px;
}

.benefits-png-fruit {
  --png-width: clamp(160px, 20vw, 330px);
  --png-rotate: 11deg;
  right: -110px;
  top: 38px;
  opacity: 0.74;
}

.ritual-png-butter {
  --png-width: clamp(170px, 22vw, 340px);
  --png-rotate: -9deg;
  right: clamp(18px, 8vw, 140px);
  top: 18%;
  z-index: 1;
  opacity: 0.82;
}

.ingredients-png-nuts {
  --png-width: clamp(130px, 17vw, 260px);
  --png-rotate: -13deg;
  left: -52px;
  bottom: 26px;
  opacity: 0.76;
}

.contact-png-butter {
  --png-width: clamp(150px, 20vw, 310px);
  --png-rotate: 12deg;
  top: 148px;
  right: -38px;
  z-index: 1;
  opacity: 0.36;
}

.contact-png-nuts {
  --png-width: clamp(110px, 13vw, 210px);
  --png-rotate: -16deg;
  right: clamp(18px, 5vw, 84px);
  bottom: 34px;
  left: auto;
  z-index: 1;
  opacity: 0.34;
}

.contact-hero .eyebrow {
  margin-bottom: clamp(42px, 5vw, 72px);
}

.footer-inner {
  display: grid;
  gap: 48px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  text-decoration: none;
}

.footer-copy {
  max-width: 480px;
  color: rgba(23, 23, 19, 0.74);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.footer-nav a {
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(23,23,19,0.13);
  padding-top: 22px;
  color: rgba(23, 23, 19, 0.68);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1024px) {
  .desktop-nav,
  .wordmark {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .section-grid,
  .image-grid,
  .ritual-band,
  .proof-grid,
  .card-grid,
  .contact-grid,
  .source-steps {
    grid-template-columns: 1fr;
  }

  .hero-product,
  .hero-photo {
    width: min(430px, 52vw);
    max-width: min(430px, 52vw);
    height: auto;
    transform: translateX(-18%);
  }

  .ritual-product {
    grid-column: auto;
    width: min(460px, 84%);
  }

  .ritual-side {
    justify-self: start;
  }

  .source-hero-photo {
    width: min(460px, 42vw);
  }

  .footer-top {
    display: grid;
  }
}

@media (max-width: 768px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .page-shell {
    width: 100%;
    max-width: 100vw;
    margin-top: 78px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero {
    min-height: 720px;
    padding: 30px 22px 48px;
    display: block;
  }

  .hero,
  .section,
  .ritual-band,
  .footer-inner,
  .contact-grid,
  .section-grid,
  .copy-stack,
  .card-grid,
  .content-card {
    max-width: 100%;
    overflow-x: hidden;
  }

  .mini-nav {
    position: relative;
    top: auto;
    right: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    margin-bottom: 54px;
  }

  .mini-nav a {
    min-width: 0;
    text-align: center;
    font-size: 8px;
    letter-spacing: 0;
  }

  .eyebrow {
    max-width: none;
    margin-bottom: 38px;
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .hero-title {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(50px, 14vw, 64px);
    line-height: 0.86;
  }

  .hero-product,
  .hero-photo {
    left: 50%;
    top: 330px;
    width: min(330px, 86vw);
    max-width: min(330px, 86vw);
    height: auto;
    max-height: 285px;
    transform: translateX(-50%);
  }

  .hero-note,
  .hero-actions {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .hero-note {
    width: min(100%, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
    margin-top: 330px;
  }

  .hero-actions {
    display: grid;
    width: min(100%, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
    margin-top: 22px;
  }

  .hero-actions .button,
  .hero-actions .button-secondary {
    width: 100%;
    max-width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    text-align: center;
    white-space: normal;
  }

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

  .contact-hero .hero-photo {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    max-height: none;
    margin: 56px auto 0;
    transform: none;
  }

  .contact-hero .hero-note {
    margin-top: 28px;
  }

  .source-hero {
    display: block;
    min-height: auto;
    padding: 30px 22px 56px;
  }

  .source-hero .hero-title {
    max-width: 100%;
    font-size: clamp(48px, 15vw, 66px);
    line-height: 0.86;
    margin-top: 38px;
  }

  .source-hero-photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 280px;
    margin: 38px auto 0;
  }

  .source-hero .hero-note {
    margin-top: 26px;
  }

  .source-hero .hero-actions {
    margin-top: 22px;
  }

  .source-steps img,
  .source-tree .section-grid > img {
    min-height: 260px;
  }

  .source-cta {
    display: grid;
    align-items: start;
  }

  .section {
    padding: 54px 22px;
  }

  .section h2,
  .panel-title {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(34px, 11vw, 54px);
    line-height: 0.94;
  }

  .section p,
  .ritual-copy p,
  .ritual-side p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: clamp(16px, 4.8vw, 20px);
    line-height: 1.45;
  }

  .button,
  .button-secondary {
    max-width: 100%;
    white-space: normal;
  }

  .product-stage {
    min-height: 560px;
  }

  .note {
    max-width: 160px;
    padding: 12px 13px;
    font-size: 11px;
  }

  .note.one { top: 18%; left: 0; }
  .note.two { bottom: 24%; left: 0; }
  .note.three { right: 0; bottom: 12%; }

  .image-grid img {
    min-height: 260px;
  }

  .ritual-band {
    display: grid;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
    padding-top: 58px;
    padding-bottom: 64px;
    overflow: hidden;
  }

  .giant-word {
    left: 50%;
    right: auto;
    top: 38%;
    width: max-content;
    max-width: calc(100vw - 44px);
    color: rgba(23, 23, 19, 0.055);
    font-size: clamp(62px, 18vw, 76px);
    line-height: 1;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .ritual-copy,
  .ritual-side {
    max-width: 100%;
    justify-self: stretch;
    align-self: auto;
  }

  .ritual-product {
    grid-column: auto;
    justify-self: center;
    width: min(360px, 86vw);
    max-height: 520px;
    object-fit: contain;
  }

  .ritual-side {
    display: grid;
    gap: 18px;
  }

  .ritual-side .button-secondary {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

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

  .content-card {
    padding: 24px;
  }

  .full-bleed-photo {
    min-height: 560px;
    padding: 54px 22px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Fluid responsiveness pass: scales to the available screen instead of fixed device assumptions. */
.page-shell,
.hero,
.section,
.site-footer {
  max-width: 100%;
}

.section-grid,
.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.section-grid > *,
.contact-grid > *,
.card-grid > *,
.proof-grid > *,
.image-grid > *,
.ritual-band > *,
.footer-top > *,
.copy-stack,
.hero-note,
.hero-actions {
  min-width: 0;
}

.card-grid,
.proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}

.image-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.hero-title,
.section h2,
.panel-title,
.footer-wordmark {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-title {
  font-size: clamp(52px, 13vw, 230px);
}

.section h2,
.panel-title {
  font-size: clamp(34px, 7vw, 104px);
}

.hero-product,
.ritual-product,
.section img {
  max-width: min(100%, 92vw);
  height: auto;
}

.button,
.button-secondary,
.nav-buy {
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
}

.ritual-band {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(28px, 5vw, 72px);
}

.giant-word {
  right: var(--gutter);
  max-width: none;
  overflow: visible;
  text-align: left;
  font-size: clamp(116px, 18vw, 300px);
  white-space: nowrap;
}

.hero-product {
  width: auto;
  max-width: min(430px, 30vw);
  height: min(420px, 44vh);
  max-height: 420px;
  object-fit: contain;
}

.product-hero-png-nuts {
  display: none;
}

@media (width <= 768px) {
  .hero-product {
    width: min(330px, 86vw);
    max-width: min(330px, 86vw);
    height: auto;
    max-height: 285px;
  }
}

.editorial-png {
  max-width: none;
}

@media (width <= 900px) {
  .product-hero-png-branch,
  .benefits-png-fruit,
  .contact-png-butter {
    --png-width: clamp(130px, 24vw, 230px);
    opacity: 0.52;
  }

  .product-hero-png-nuts,
  .ingredients-png-nuts,
  .contact-png-nuts {
    --png-width: clamp(92px, 18vw, 160px);
    opacity: 0.64;
  }

  .ritual-png-butter {
    --png-width: clamp(120px, 25vw, 210px);
    right: 18px;
    top: 42%;
    opacity: 0.42;
  }
}

@media (width <= 620px) {
  .product-hero-png-branch,
  .product-hero-png-nuts,
  .benefits-png-fruit,
  .ingredients-png-nuts,
  .contact-png-butter,
  .contact-png-nuts {
    display: none;
  }

  .ritual-png-butter {
    --png-width: 150px;
    right: -46px;
    top: 46%;
    opacity: 0.28;
  }
}
