:root {
  --pink-50: #fdf6f8;
  --pink-100: #fbe8ee;
  --pink-150: #f9dde5;
  --pink-200: #f6cfda;
  --pink-300: #f0aec2;
  --pink-400: #e79db4;
  --pink-500: #dd85a1;
  --ink: #2b1a1f;
  --ink-soft: #4a3339;
  --muted: #8a7076;
  --line: #eedde3;
  --white: #ffffff;
  --shadow-sm: 0 6px 20px rgba(120, 60, 80, .07);
  --shadow-md: 0 18px 44px rgba(120, 60, 80, .12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shell: 1180px;
  --ease: cubic-bezier(.22, .68, .32, 1);
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  letter-spacing: .01em;
}

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--pink-500);
  outline-offset: 3px;
}

.shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 60;
  background: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: top .2s var(--ease);
}

.skip-link:focus { top: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 999px;
  background: var(--pink-300);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
}

.btn {
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: scale(0);
  border-radius: inherit;
  transition: transform .35s var(--ease);
}

.btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn:hover::before { transform: scale(1); }

.btn--ghost {
  background: transparent;
  border: 1px solid var(--pink-300);
}

.btn--block {
  width: 100%;
  margin-top: 10px;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 34px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow span {
  height: 1px;
  width: clamp(40px, 12vw, 120px);
  background: var(--pink-200);
}

.eyebrow--plain {
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  margin-bottom: 14px;
}

.section-title em,
.about__title em {
  font-style: normal;
  color: var(--pink-400);
}

.section-title--left { text-align: left; }

.section-lead {
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
  color: var(--muted);
}

.section-lead--left {
  margin-inline: 0;
  text-align: left;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--pink-100);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.is-stuck {
  background: rgba(253, 246, 248, .94);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(120, 60, 80, .08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand__mark {
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  background: var(--pink-400);
  transform: rotate(-45deg);
  transition: transform .4s var(--ease);
}

.brand:hover .brand__mark { transform: rotate(45deg); }

.nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__list a {
  position: relative;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 4px 0;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--pink-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.nav__list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--pink-300);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease);
}

.cart-button:hover { background: var(--pink-400); }

.cart-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button__count {
  font-size: 12px;
  letter-spacing: .04em;
  min-width: 16px;
}

.cart-button.is-bumped { animation: bump .4s var(--ease); }

@keyframes bump {
  40% { transform: scale(1.14); }
  100% { transform: scale(1); }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0 9px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--pink-100);
  padding: 34px 0 64px;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
}

.hero__glow--a {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -90px;
  background: var(--pink-300);
  animation: float 18s ease-in-out infinite;
}

.hero__glow--b {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -60px;
  background: #f7d9c8;
  animation: float 22s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(30px, 26px, 0); }
}

.hero__stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 56px;
}

.hero__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
  font-size: clamp(42px, 9vw, 108px);
  font-weight: 300;
  letter-spacing: .01em;
  background: linear-gradient(180deg, var(--pink-400), var(--pink-300) 60%, #f6c3d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rise .9s var(--ease) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateX(-50%) translateY(18px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero__frame {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 5 / 6;
  border-radius: 260px 260px 22px 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 24s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__badge {
  position: absolute;
  right: max(4vw, 10px);
  bottom: 14%;
  z-index: 3;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .35s var(--ease);
}

.hero__badge:hover { transform: scale(1.07) rotate(-4deg); }

.hero__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 820px;
  margin: 46px auto 0;
}

.hero__lead {
  font-size: 15px;
  color: var(--ink-soft);
}

.hero__text { color: var(--muted); }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 22px 0;
  background: var(--white);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: slide 34s linear infinite;
}

.marquee__row {
  display: flex;
  align-items: center;
  gap: 54px;
  padding-right: 54px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--muted);
}

.marquee__row li { display: flex; align-items: center; gap: 54px; }

.marquee__row li::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink-200);
}

@keyframes slide {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.about { padding: 74px 0; }

.about__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
}

.about__card {
  position: relative;
  background: var(--pink-100);
  border-radius: var(--radius-lg);
  padding: 38px 38px 38px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 26px;
  align-items: start;
}

.about__title {
  grid-column: 1 / -1;
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 4px;
}

.about__card p {
  grid-column: 1;
  color: var(--ink-soft);
  font-size: 14px;
}

.about__card p + p { color: var(--muted); }

.about__photo {
  grid-column: 2;
  grid-row: 2 / span 2;
  aspect-ratio: 4 / 5;
  border-radius: 120px 120px 18px 18px;
  overflow: hidden;
  border: 6px solid var(--pink-200);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.about__card:hover .about__photo img { transform: scale(1.06); }

.about__stats {
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  background: linear-gradient(160deg, #3a2a2e, #6a4c54 70%, var(--pink-400));
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.stats {
  display: grid;
  gap: 28px;
  width: 100%;
}

.stats__value {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
}

.stats__label {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .78);
}

.why { padding: 20px 0 74px; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.why__card {
  background: var(--pink-100);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.why__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--white);
}

.why__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--pink-500);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why__card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.why__card p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0;
}

.banner { padding-bottom: 80px; }

.banner__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
}

.banner__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(43, 26, 31, .18), rgba(43, 26, 31, .62));
}

.banner__overlay h2 {
  font-size: clamp(26px, 4vw, 44px);
  margin-bottom: 12px;
}

.banner__overlay p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 14px;
  color: rgba(255, 255, 255, .88);
}

.catalog { padding-bottom: 80px; }

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

.product {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.product__media {
  position: relative;
  border-radius: 50% 50% 22px 22px;
  overflow: hidden;
  background: var(--pink-100);
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.product:hover .product__media {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.product:hover .product__media img { transform: scale(1.07); }

.product__wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  cursor: pointer;
  transition: transform .25s var(--ease);
}

.product__wish:hover { transform: scale(1.1); }

.product__wish svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--pink-500);
  stroke-width: 1.4;
  stroke-linejoin: round;
}

.product__wish.is-active svg { fill: var(--pink-400); }

.product__name {
  font-size: 17px;
  margin-bottom: 6px;
}

.product__meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  min-height: 2.6em;
}

.product__price {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 14px;
}

.product__add { align-self: center; margin-top: auto; }

.ingredients { padding-bottom: 80px; }

.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.ingredient {
  text-align: center;
  padding: 0 10px 26px;
  border-radius: var(--radius-md);
  transition: background .35s var(--ease);
}

.ingredient:hover { background: var(--pink-50); }

.ingredient__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
}

.ingredient__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.ingredient:hover .ingredient__media img { transform: scale(1.06); }

.ingredient h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.ingredient p {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 18px;
}

.reviews {
  background: var(--pink-100);
  padding: 74px 0;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.review {
  background: var(--pink-300);
  border-radius: var(--radius-md);
  padding: 22px 22px 16px;
  font-size: 13px;
  color: var(--ink);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.review:nth-child(2) { margin-top: 26px; }
.review:nth-child(4) { margin-top: -18px; }
.review:nth-child(5) { margin-top: 8px; }

.review:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review__head strong {
  display: block;
  font-weight: 500;
  font-size: 13px;
}

.review__head small {
  font-size: 11px;
  color: var(--ink-soft);
}

.review__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pink-150);
  flex: none;
}

.review__date {
  margin: 14px 0 0;
  font-size: 11px;
  text-align: right;
  color: var(--ink-soft);
}

.journal { padding: 74px 0 60px; }

.journal__title {
  font-size: clamp(30px, 4.6vw, 46px);
  margin-bottom: 8px;
}

.journal__feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 26px;
}

.journal__row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.journal__row::-webkit-scrollbar { display: none; }

.post {
  scroll-snap-align: start;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.post__media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
}

.post--wide .post__media { aspect-ratio: 16 / 8; }

.post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.post:hover .post__media img { transform: scale(1.05); }

.post__cat {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.post h3 {
  font-size: 18px;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.45;
}

.journal__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 26px;
}

.newsletter {
  border-top: 1px solid var(--line);
  padding: 60px 0;
}

.newsletter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.newsletter__title {
  font-size: clamp(26px, 3.6vw, 40px);
}

.newsletter__side p {
  color: var(--muted);
  max-width: 420px;
}

.subscribe {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.subscribe input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--pink-50);
  font: inherit;
  color: var(--ink);
}

.subscribe input:focus { border-color: var(--pink-400); }

.subscribe .field__error { flex-basis: 100%; }

.field__error {
  margin: 0;
  font-size: 12px;
  color: #a33b54;
  min-height: 1em;
}

.field__error.is-ok { color: #3e7a5a; }

.faq { padding: 30px 0 80px; }

.faq__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 46px;
  margin-top: 34px;
}

.faq__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.faq__item summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  font-size: 18px;
  color: var(--pink-500);
  transition: transform .3s var(--ease);
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item p {
  margin: 12px 0 2px;
  color: var(--muted);
  font-size: 13.5px;
}

.steps {
  background: var(--pink-100);
  padding: 74px 0;
}

.steps__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.steps__body {
  background: var(--white);
  border: 1px solid var(--pink-200);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.steps__title {
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--pink-400);
  margin-bottom: 14px;
}

.steps__intro {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 24px;
}

.steps__list { display: grid; gap: 18px; }

.steps__list li {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--pink-200);
  border-radius: var(--radius-md);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}

.steps__list li:hover {
  transform: translateX(4px);
  border-color: var(--pink-400);
}

.steps__list span {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--pink-400);
  line-height: 1;
}

.steps__list h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.steps__list p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.steps__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
}

.steps__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps__contact {
  position: absolute;
  inset: auto 18px 18px;
  background: rgba(43, 26, 31, .82);
  backdrop-filter: blur(6px);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
}

.steps__contact h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.steps__contact p {
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
}

.steps__details {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  font-size: 13px;
}

.steps__details a { text-decoration: none; }

.steps__details a:hover { text-decoration: underline; }

.site-footer {
  background: var(--pink-50);
  padding: 60px 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1.2fr;
  gap: 34px;
  padding-bottom: 44px;
}

.site-footer__brand p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  max-width: 300px;
}

.site-footer__col h2 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.site-footer__col ul {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.site-footer__col a {
  text-decoration: none;
  transition: color .25s var(--ease);
}

.site-footer__col a:hover { color: var(--pink-500); }

.subscribe--footer input { flex-basis: 100%; }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding: 18px 0 24px;
  font-size: 12px;
  color: var(--muted);
}

.site-footer__bottom p { margin: 0; }

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(43, 26, 31, .42);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.cart-overlay.is-open { opacity: 1; }

.cart {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 51;
  width: min(100%, 420px);
  height: 100%;
  overflow-y: auto;
  background: var(--white);
  padding: 24px;
  transform: translateX(100%);
  transition: transform .34s var(--ease);
  box-shadow: var(--shadow-md);
}

.cart.is-open { transform: translateX(0); }

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cart__head h2 { font-size: 26px; }

.cart__close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.cart__close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.4;
  stroke-linecap: round;
}

.cart__empty {
  color: var(--muted);
  font-size: 13.5px;
}

.cart__list { display: grid; gap: 14px; }

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.cart-item__name {
  margin: 0;
  font-size: 13.5px;
}

.cart-item__price {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
}

.qty button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  color: var(--ink);
}

.cart-item__remove {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-item__remove:hover { color: var(--pink-500); }

.cart__foot { margin-top: 22px; }

.cart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-bottom: 6px;
}

.cart__total strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.cart__note {
  font-size: 12px;
  color: var(--muted);
}

.checkout h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 14px;
}

.checkout[hidden],
.confirm[hidden],
.cart__foot[hidden],
.cart__body[hidden] { display: none; }

.checkout h3,
.field,
.checkout__total,
.checkout__privacy,
.checkout > .btn { grid-column: 1 / -1; }

.field--half { grid-column: span 1; }

.field { margin-bottom: 10px; }

.field label {
  display: block;
  font-size: 12px;
  letter-spacing: .04em;
  margin-bottom: 5px;
  color: var(--ink-soft);
}

.field input,
.field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--pink-50);
  font: inherit;
  color: var(--ink);
  resize: vertical;
}

.field input:focus,
.field textarea:focus { border-color: var(--pink-400); }

.field input.has-error { border-color: #c4677e; }

.checkout__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-bottom: 4px;
}

.checkout__total strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.checkout__privacy {
  font-size: 12px;
  color: var(--muted);
}

.confirm { text-align: center; }

.confirm__tick {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 10px auto 18px;
  border-radius: 50%;
  background: var(--pink-100);
}

.confirm__tick svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--pink-500);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confirm h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.confirm p {
  font-size: 13.5px;
  color: var(--muted);
}

.confirm strong { color: var(--ink); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 60;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.policy {
  padding: 54px 0 80px;
}

.policy__head {
  max-width: 720px;
  margin-bottom: 36px;
}

.policy__head h1 {
  font-size: clamp(30px, 4.6vw, 46px);
  margin-bottom: 12px;
}

.policy__updated {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.policy__layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 46px;
  align-items: start;
}

.policy__toc {
  position: sticky;
  top: 92px;
  background: var(--pink-50);
  border-radius: var(--radius-md);
  padding: 22px;
}

.policy__toc h2 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.policy__toc ol {
  display: grid;
  gap: 7px;
  counter-reset: toc;
  font-size: 13px;
}

.policy__toc a {
  text-decoration: none;
  color: var(--muted);
  transition: color .25s var(--ease);
}

.policy__toc a:hover { color: var(--pink-500); }

.policy__body h2 {
  font-size: 24px;
  margin: 34px 0 10px;
  scroll-margin-top: 96px;
}

.policy__body h2:first-child { margin-top: 0; }

.policy__body p,
.policy__body li {
  color: var(--ink-soft);
  font-size: 14px;
}

.policy__body ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 18px;
  list-style: disc;
}

.policy__body a { color: var(--pink-500); }

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 45;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--pink-400);
}

@media (max-width: 1024px) {
  .catalog__grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .policy__layout { grid-template-columns: 1fr; }
  .policy__toc { position: static; }
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    clip-path: inset(0 0 100% 0);
    transition: clip-path .35s var(--ease);
  }

  .nav.is-open { clip-path: inset(0 0 0 0); }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 16px 20px 22px;
  }

  .nav__list a {
    display: block;
    padding: 9px 0;
    font-size: 15px;
  }

  .burger { display: flex; }

  .why__grid,
  .ingredients__grid,
  .reviews__grid,
  .journal__feature,
  .newsletter__grid,
  .faq__columns,
  .steps__panel { grid-template-columns: 1fr; }

  .review:nth-child(n) { margin-top: 0; }

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

  .hero__copy { grid-template-columns: 1fr; gap: 16px; }

  .about__card { grid-template-columns: 1fr; padding: 28px; }

  .about__photo {
    grid-column: 1;
    grid-row: auto;
    max-width: 240px;
  }

  .journal__row { grid-auto-columns: minmax(230px, 70%); }

  .banner__frame { aspect-ratio: 4 / 3; }

  .steps__card { min-height: 520px; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 32px, var(--shell)); }
  .brand { font-size: 15px; letter-spacing: .1em; white-space: nowrap; }
  .cart-button { padding: 8px 13px 8px 11px; }
  .hero { padding-bottom: 46px; }
  .hero__stage { padding-top: 40px; }
  .hero__frame { border-radius: 170px 170px 18px 18px; }
  .hero__badge { width: 72px; height: 72px; font-size: 10px; bottom: 6%; right: 0; }
  .catalog__grid { grid-template-columns: 1fr; gap: 30px; }
  .product__media { max-width: 320px; margin-inline: auto; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .cart { padding: 20px 16px; }
  .checkout { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
  .marquee__row { font-size: 17px; gap: 30px; padding-right: 30px; }
  .marquee__row li { gap: 30px; }
  .steps__contact { position: static; inset: auto; border-radius: 0; }
  .steps__card { min-height: 0; display: grid; }
  .steps__card img { position: static; height: 220px; }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

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