:root {
  --ink: #181715;
  --muted: #5e5a50;
  --paper: #fbfaf6;
  --warm-paper: #f4efe4;
  --cream: #efe0bd;
  --honey: #a97b36;
  --honey-dark: #765120;
  --line: #ded3bf;
  --snow: #fffdf8;
  --shadow: 0 28px 70px rgba(75, 62, 43, .16);
  --serif: "Cormorant Garamond", "Baskerville", "Georgia", serif;
  --sans: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(220, 204, 173, .25), transparent 30rem),
    linear-gradient(180deg, #fffefa 0%, var(--paper) 42%, #f6f1e8 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 210px 1fr 120px;
  align-items: center;
  gap: 2rem;
  min-height: 92px;
  padding: .65rem clamp(1.25rem, 4vw, 4.75rem);
  background: rgba(255, 254, 250, .86);
  border-bottom: 1px solid rgba(199, 184, 152, .28);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 170px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 3.15rem);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 1.2rem 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: .72rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--honey);
  opacity: 0;
  transform: scaleX(.4);
  transition: transform .24s ease, opacity .24s ease;
}

.main-nav a:hover::after,
.main-nav .active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1.1rem;
}

.line-icon {
  width: 25px;
  height: 25px;
}

.line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-pad {
  padding-right: clamp(1.3rem, 5vw, 5.4rem);
  padding-left: clamp(1.3rem, 5vw, 5.4rem);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(22rem, .74fr) minmax(34rem, 1.26fr);
  align-items: stretch;
  min-height: 610px;
  padding-top: 2.2rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fffefa 0 38%, rgba(255, 254, 250, .74) 49%, rgba(255, 255, 255, .12) 100%),
    radial-gradient(circle at 70% 56%, rgba(255, 255, 255, .9), transparent 23rem);
}

.hero-copy {
  position: relative;
  z-index: 5;
  min-width: 0;
  max-width: 620px;
  padding-top: 1.7rem;
  padding-bottom: 2rem;
}

.eyebrow,
.small-rule {
  margin: 0 0 1rem;
  color: var(--honey);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
}

h1 {
  max-width: 650px;
  margin-bottom: 1.55rem;
  font-size: clamp(3.15rem, 5vw, 5.85rem);
  line-height: .97;
}

h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.55rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: .75rem;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 470px;
  margin-bottom: 2.25rem;
  color: #2f2d29;
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  min-height: 48px;
  padding: .85rem 1.45rem;
  border: 1px solid var(--honey);
  border-radius: 3px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

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

.button.primary {
  color: #fffdf8;
  background: var(--honey);
  box-shadow: 0 16px 28px rgba(134, 91, 31, .22);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .66);
}

.button.compact {
  min-width: 122px;
  min-height: 39px;
  padding: .65rem 1.1rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.2rem);
  padding: 0;
  margin: 0;
  list-style: none;
  color: #2d2922;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.seal-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(169, 123, 54, .55);
  border-radius: 999px;
}

.seal-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--honey);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 610px;
  margin-right: min(-5vw, -1rem);
}

.hero-visual::before {
  display: none;
}

.hero-photo {
  position: absolute;
  right: 0;
  bottom: .2rem;
  z-index: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 24px 40px rgba(67, 56, 39, .08));
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 19%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 19%, #000 100%);
}

.hero-mountains {
  display: none;
}

.hero-jar {
  display: none;
}

.hero-dipper {
  display: none;
}

.hero-flowers {
  display: none;
}

.pour {
  display: none;
}

.bowl {
  display: none;
}

.equal {
  position: relative;
  padding-top: 2.1rem;
  padding-bottom: 3.1rem;
  background: rgba(255, 254, 250, .86);
  border-top: 1px solid rgba(219, 209, 188, .65);
  border-bottom: 1px solid rgba(219, 209, 188, .65);
}

.section-heading.centered {
  max-width: 830px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: .6rem;
}

.section-heading p {
  color: #24221f;
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1110px;
  margin: 0 auto;
}

.feature-card {
  min-height: 188px;
  padding: 1.35rem clamp(1.4rem, 3vw, 3.5rem);
  text-align: center;
}

.feature-card + .feature-card {
  border-left: 1px solid var(--line);
}

.feature-card p {
  max-width: 330px;
  margin: 0 auto;
  color: #302d28;
  line-height: 1.45;
}

.feature-icon {
  width: 76px;
  height: 54px;
  margin: 0 auto 1.1rem;
  background: var(--honey);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.mountain-mark {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 90 55' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 48 33 14l16 20 11-13 26 28M33 14l-5 25 13-12 12 22M60 21l-3 21 10-10 12 17' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 90 55' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 48 33 14l16 20 11-13 26 28M33 14l-5 25 13-12 12 22M60 21l-3 21 10-10 12 17' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.flower-mark {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='3'%3E%3Cellipse cx='35' cy='14' rx='8' ry='14'/%3E%3Cellipse cx='35' cy='56' rx='8' ry='14'/%3E%3Cellipse cx='14' cy='35' rx='14' ry='8'/%3E%3Cellipse cx='56' cy='35' rx='14' ry='8'/%3E%3Cellipse cx='20' cy='20' rx='8' ry='14' transform='rotate(-45 20 20)'/%3E%3Cellipse cx='50' cy='20' rx='8' ry='14' transform='rotate(45 50 20)'/%3E%3Cellipse cx='20' cy='50' rx='8' ry='14' transform='rotate(45 20 50)'/%3E%3Cellipse cx='50' cy='50' rx='8' ry='14' transform='rotate(-45 50 50)'/%3E%3Ccircle cx='35' cy='35' r='7'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='3'%3E%3Cellipse cx='35' cy='14' rx='8' ry='14'/%3E%3Cellipse cx='35' cy='56' rx='8' ry='14'/%3E%3Cellipse cx='14' cy='35' rx='14' ry='8'/%3E%3Cellipse cx='56' cy='35' rx='14' ry='8'/%3E%3Cellipse cx='20' cy='20' rx='8' ry='14' transform='rotate(-45 20 20)'/%3E%3Cellipse cx='50' cy='20' rx='8' ry='14' transform='rotate(45 50 20)'/%3E%3Cellipse cx='20' cy='50' rx='8' ry='14' transform='rotate(45 20 50)'/%3E%3Cellipse cx='50' cy='50' rx='8' ry='14' transform='rotate(-45 50 50)'/%3E%3Ccircle cx='35' cy='35' r='7'/%3E%3C/g%3E%3C/svg%3E");
}

.comb-mark {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='3'%3E%3Cpath d='M31 4h18l9 15-9 16H31l-9-16 9-15Z'/%3E%3Cpath d='M11 34h18l9 15-9 16H11L2 49l9-15ZM51 34h18l9 15-9 16H51l-9-16 9-15Z'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='3'%3E%3Cpath d='M31 4h18l9 15-9 16H31l-9-16 9-15Z'/%3E%3Cpath d='M11 34h18l9 15-9 16H11L2 49l9-15ZM51 34h18l9 15-9 16H51l-9-16 9-15Z'/%3E%3C/g%3E%3C/svg%3E");
}

.purity {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(21rem, .95fr);
  min-height: 360px;
  background: var(--snow);
}

.certificate-scene {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #efe7d7;
}

.certificate {
  display: none;
}

.certificate-flower {
  display: none;
}

.certificate-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.purity-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.4rem, 5vw, 5rem) clamp(1.6rem, 7vw, 6rem);
}

.purity-copy h2 {
  margin-bottom: 1.1rem;
}

.purity-copy p:not(.small-rule) {
  max-width: 520px;
  color: #302d28;
  font-size: 1.07rem;
}

.proofs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 4vw, 4.5rem);
  margin-top: 2.4rem;
}

.proofs span {
  display: grid;
  gap: .55rem;
  justify-items: center;
  color: #2d2922;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.proofs svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: var(--honey);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.origin {
  position: relative;
  display: grid;
  grid-template-columns: minmax(22rem, .85fr) minmax(25rem, 1.15fr);
  min-height: 465px;
  overflow: hidden;
  background: #e9edf0;
}

.origin::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 254, 250, .98) 0 38%, rgba(255, 254, 250, .65) 52%, rgba(255, 255, 255, .02) 80%),
    linear-gradient(180deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0));
}

.origin-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.origin-product {
  position: absolute;
  right: clamp(1rem, 7vw, 7rem);
  bottom: 1.5rem;
  z-index: 2;
  width: min(27vw, 400px);
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(68, 57, 39, .14);
}

.origin-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 580px;
  padding: clamp(2rem, 5vw, 4.8rem) clamp(1.3rem, 6vw, 5.5rem);
}

.origin-copy h2 {
  margin-bottom: 1rem;
}

.origin-copy p {
  color: #272521;
  font-size: 1.05rem;
}

.open-jar {
  display: none;
}

.taste {
  position: relative;
  min-height: 338px;
  padding: clamp(2.3rem, 4vw, 4.3rem) clamp(1.3rem, 6vw, 5.5rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, #fffdf7 0 49%, rgba(255, 253, 247, .84) 62%, rgba(255, 253, 247, .12) 100%),
    url("assets/board-crops/texture-board.png") right center / auto 100% no-repeat;
  border-top: 1px solid rgba(222, 211, 191, .6);
}

.taste-copy {
  max-width: 720px;
}

.taste h2 {
  margin-bottom: 1.2rem;
}

.note-list {
  display: grid;
  gap: .92rem;
  max-width: 530px;
  padding: 0;
  margin: 0 0 1rem;
  list-style: none;
}

.note-list li {
  position: relative;
  min-height: 43px;
  padding-left: 3.8rem;
  color: #5e5a50;
}

.note-list strong {
  display: block;
  color: #2f2c27;
  font-size: 1.05rem;
}

.note-icon {
  position: absolute;
  top: .15rem;
  left: 0;
  width: 34px;
  height: 34px;
  background: var(--honey);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.note-icon.flower {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 46 46' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4'%3E%3Cellipse cx='23' cy='9' rx='5' ry='9'/%3E%3Cellipse cx='23' cy='37' rx='5' ry='9'/%3E%3Cellipse cx='9' cy='23' rx='9' ry='5'/%3E%3Cellipse cx='37' cy='23' rx='9' ry='5'/%3E%3Ccircle cx='23' cy='23' r='5'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 46 46' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='2.4'%3E%3Cellipse cx='23' cy='9' rx='5' ry='9'/%3E%3Cellipse cx='23' cy='37' rx='5' ry='9'/%3E%3Cellipse cx='9' cy='23' rx='9' ry='5'/%3E%3Cellipse cx='37' cy='23' rx='9' ry='5'/%3E%3Ccircle cx='23' cy='23' r='5'/%3E%3C/g%3E%3C/svg%3E");
}

.note-icon.dipper {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 46 46' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 39 39 6' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M13 27c-4-4-5-7-3-9l8-8c2-2 5-1 9 3s5 7 3 9l-8 8c-2 2-5 1-9-3Z' fill='none' stroke='black' stroke-width='2.6'/%3E%3Cpath d='M13 17c4 4 9 9 15 15M17 13c4 4 9 9 15 15' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 46 46' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 39 39 6' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M13 27c-4-4-5-7-3-9l8-8c2-2 5-1 9 3s5 7 3 9l-8 8c-2 2-5 1-9-3Z' fill='none' stroke='black' stroke-width='2.6'/%3E%3Cpath d='M13 17c4 4 9 9 15 15M17 13c4 4 9 9 15 15' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.note-icon.crystal {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 46 46' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 4 40 13v20L23 42 6 33V13L23 4Z' fill='none' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M6 13 23 23l17-10M23 23v19' fill='none' stroke='black' stroke-width='2.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 46 46' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 4 40 13v20L23 42 6 33V13L23 4Z' fill='none' stroke='black' stroke-width='2.5'/%3E%3Cpath d='M6 13 23 23l17-10M23 23v19' fill='none' stroke='black' stroke-width='2.5'/%3E%3C/svg%3E");
}

.closing-line {
  color: #181715;
  font-weight: 800;
}

.testimonials {
  padding-top: 2rem;
  padding-bottom: 2.2rem;
  background: rgba(255, 254, 250, .9);
}

.testimonials .section-heading {
  margin-bottom: 1.2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.testimonial-grid figure {
  min-height: 126px;
  padding: 1.25rem 1.5rem 1.05rem;
  margin: 0;
  text-align: center;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(192, 173, 137, .45);
  border-radius: 7px;
  box-shadow: 0 12px 30px rgba(102, 83, 50, .06);
}

.stars {
  margin-bottom: .6rem;
  color: var(--honey);
  font-size: 1.1rem;
  letter-spacing: .16em;
}

blockquote {
  max-width: 270px;
  margin: 0 auto .65rem;
  color: #292621;
  line-height: 1.38;
}

figcaption {
  color: #4b463d;
  font-size: .82rem;
  font-weight: 700;
}

.shop-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(19rem, .9fr) minmax(21rem, .8fr) minmax(20rem, 1fr);
  align-items: center;
  min-height: 165px;
  padding: 1rem clamp(1.3rem, 5vw, 5.5rem);
  overflow: hidden;
  background: linear-gradient(90deg, rgba(232, 224, 208, .78), rgba(255, 253, 248, .96) 42%, rgba(248, 243, 233, .94));
  border-top: 1px solid var(--line);
}

.strip-art {
  position: relative;
  min-height: 168px;
}

.strip-art img {
  position: absolute;
  left: 0;
  bottom: -22px;
  width: min(100%, 340px);
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(71, 60, 40, .14);
}

.strip-copy h2 {
  margin-bottom: .35rem;
  font-size: clamp(1.85rem, 2.6vw, 2.7rem);
}

.strip-copy p {
  margin-bottom: .15rem;
  color: #3d3932;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  margin-bottom: .8rem;
}

.price-row strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.price-row span {
  color: #706a5f;
}

.strip-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.15rem;
  padding: 0;
  margin: 0;
  color: #2e2a24;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  list-style: none;
  text-transform: uppercase;
}

.strip-badges li {
  position: relative;
  padding-left: 1.75rem;
}

.strip-badges li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 19px;
  height: 19px;
  content: "";
  border: 1px solid var(--honey);
  border-radius: 999px;
  transform: translateY(-50%);
}

.strip-badges li::after {
  position: absolute;
  top: calc(50% - 3px);
  left: 5px;
  width: 8px;
  height: 4px;
  content: "";
  border-bottom: 1.5px solid var(--honey);
  border-left: 1.5px solid var(--honey);
  transform: rotate(-45deg);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.3rem, 5vw, 5.5rem);
  color: #f9f4e7;
  background: #221d16;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #e7c37c;
}

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

  .main-nav {
    gap: 1.1rem;
    font-size: .68rem;
  }

  .hero {
    grid-template-columns: minmax(19rem, .86fr) minmax(27rem, 1.14fr);
  }

  .origin-product {
    width: min(32vw, 340px);
  }
}

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

  .brand img {
    width: 122px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-top: 1.5rem;
  }

  .hero-copy {
    max-width: 100%;
    padding-bottom: .4rem;
  }

  h1 {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 520px;
    margin-right: calc(clamp(1.3rem, 5vw, 5.4rem) * -1);
    margin-left: calc(clamp(1.3rem, 5vw, 5.4rem) * -1);
  }

  .hero-photo {
    right: 0;
    width: 100%;
    height: 100%;
    object-position: center bottom;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 100%);
  }

  .feature-grid,
  .purity,
  .origin,
  .testimonial-grid,
  .shop-strip {
    grid-template-columns: 1fr;
  }

  .feature-card + .feature-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .origin {
    min-height: 650px;
  }

  .origin::before {
    background:
      linear-gradient(180deg, rgba(255, 254, 250, .98) 0 48%, rgba(255, 254, 250, .58) 70%, rgba(255, 255, 255, .08) 100%);
  }

  .origin-product {
    right: 50%;
    bottom: 1.4rem;
    width: min(74vw, 340px);
    transform: translateX(50%);
  }

  .testimonial-grid {
    gap: 1rem;
  }

  .shop-strip {
    gap: 1rem;
    padding-bottom: 2rem;
  }

  .strip-art {
    min-height: 190px;
    order: 2;
  }

  .strip-art img {
    left: 50%;
    bottom: -54px;
    width: min(86vw, 340px);
    transform: translateX(-50%);
  }

  .strip-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .header-actions {
    gap: .75rem;
  }

  h1 {
    max-width: 21.5rem;
    font-size: clamp(2.4rem, 11vw, 3.2rem);
    line-height: 1.02;
  }

  .hero-copy,
  .hero-lede {
    max-width: 21.5rem;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-buttons {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
    object-position: center bottom;
  }

  .proofs {
    justify-content: flex-start;
  }

  .origin-product {
    width: min(80vw, 300px);
  }

  .testimonial-grid figure {
    padding: 1.1rem;
  }

  .strip-art img {
    bottom: -46px;
  }

  .site-footer {
    display: block;
  }

  .site-footer p {
    margin-bottom: .45rem;
  }
}
