:root {
  --ink: #142638;
  --muted: #687a86;
  --paper: #ffffff;
  --soft: #f7fcff;
  --line: rgba(75, 118, 145, 0.16);
  --blue: #3f8fb4;
  --cyan: #b9edf4;
  --mint: #35d985;
  --gold: #b79a67;
  --shadow: 0 24px 80px rgba(38, 83, 107, 0.14);
  --radius: 8px;
  --max: 1180px;
  --font-body: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Helvetica Neue, Didot, "Bodoni 72", Baskerville, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background: radial-gradient(circle at 18% 4%, rgba(185, 237, 244, 0.24), transparent 34rem), var(--soft);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 32px), var(--max));
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 20px 0 20px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 44px rgba(47, 99, 129, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 126px;
  margin-left: 12px;
}

.brand img {
  width: 128px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 48px;
  color: rgba(20, 38, 56, 0.62);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  /* text-transform: uppercase; */
}

.nav a,
.footer-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.footer-nav a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.cart-pill,
.nav-toggle {
  border: 0;
  cursor: pointer;
}

.cart-pill {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: white;
  background: #13283a;
  font-size: 0.78rem;
  font-weight: 700;
}

.cart-pill span {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #13283a;
  background: var(--cyan);
  font-size: 0.66rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
  padding: 110px max(24px, calc((100vw - var(--max)) / 2)) 76px;
  background: #eef8fc;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  object-position: 58% 50%;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(249, 253, 255, 0.82), rgba(249, 253, 255, 0.48) 34%, rgba(249, 253, 255, 0.08) 68%), linear-gradient(0deg, rgba(248, 252, 255, 0.9) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  margin: 80px 40px 0;
}

.eyebrow {
  color: var(--gold);
  font-size: 1 rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 15ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(4rem, 10vw, 6.5rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
}

.hero-title {
  position: absolute;
  inset: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  color: #081334;
  font-family: var(--font-body);
  font-size: clamp(4.4rem, 9.4vw, 8.4rem);
  font-weight: 800;
  line-height: 0.88;
  text-transform: lowercase;
}

.hero-word {
  position: absolute;
  display: block;
  letter-spacing: 0;
}

.hero-word-made {
  top: 16%;
  left: 0;
}

.hero-word-for {
  top: 34%;
  right: 8%;
}

.hero-word-you {
  bottom: 18%;
  left: 10%;
}

.hero-eyebrow,
.hero-bottom-copy {
  position: absolute;
  z-index: 1;
  margin: 0;
  color: #081334;
  font-family: var(--font-body);
}

.hero-eyebrow {
  top: 4%;
  left: 0;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-bottom-copy {
  left: 50%;
  bottom: 3%;
  padding: 7px 18px;
  transform: translateX(-50%) rotate(-4deg);
  border: 1px solid rgba(8, 19, 52, 0.5);
  border-radius: 50%;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-family: var(--font-display);
  font-weight: 650;
  white-space: nowrap;
}

.hero-info-card {
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: 2;
  width: min(250px, 24vw);
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 2px;
  color: rgba(8, 19, 52, 0.78);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(225, 244, 250, 0.78));
  box-shadow: 0 20px 54px rgba(42, 100, 126, 0.16);
  backdrop-filter: blur(10px);
}

.hero-info-card p {
  margin: 0;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 500;
  line-height: 1.32;
}

.hero-info-card p:first-child {
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.button,
.product-card button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
  transition: transform 180ms ease, box-shadow 180ms ease;
  font-size: 20px;
  min-width: 180px;
}

.button:hover,
.product-card button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border: 0;
  color: white;
  background: linear-gradient(135deg, #13283a, #2f738e);
  box-shadow: 0 18px 38px rgba(28, 90, 121, 0.2);
}

.button.secondary {
  border: 1px solid rgba(183, 154, 103, 0.42);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.section-block {
  padding: clamp(58px, 8vw, 96px) 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reference-figure {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: white;
  overflow: hidden;
  border-radius: 22px;
}

.reference-figure img {
  width: 100%;
}

.hotspot {
  position: absolute;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hotspot:hover,
.hotspot.is-active {
  border-color: rgba(63, 143, 180, 0.54);
  background: rgba(63, 143, 180, 0.04);
  box-shadow: 0 0 0 4px rgba(63, 143, 180, 0.08);
}

.science-hotspot-one {
  left: 18.8%;
  top: 20.8%;
  width: 24%;
  height: 15%;
}

.science-hotspot-two {
  left: 34.5%;
  top: 61%;
  width: 24%;
  height: 15%;
}

.science-hotspot-three {
  left: 18%;
  top: 71%;
  width: 24%;
  height: 20%;
}

.science-preview-one,
.science-preview-two,
.science-preview-three {
  left: 58.8%;
  width: 23.5%;
  height: 23.5%;
}

.science-preview-one {
  top: 16%;
}

.science-preview-two {
  top: 42%;
}

.science-preview-three {
  top: 68.2%;
}

.lab-section {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: clip;
  padding: 80px 24px;
  color: white;
}

.lab-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lab-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 31, 50, 0.66), rgba(12, 31, 50, 0.12) 64%), linear-gradient(0deg, rgba(12, 31, 50, 0.5), transparent 58%);
}

.lab-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.orbix {
  margin: 0 0 22px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.8;
  font-weight: 800;
}

.orbix span {
  /* display: block; */
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.16em;
  font-weight: 500;
}

.lab-copy h2 {
  max-width: 760px;
  margin: 10px 0;
  color: white;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
}

.lab-copy > p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  line-height: 1.2;
}

.lab-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lab-stats span {
  min-width: 300px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.lab-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.5em;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #315f78;
  font-family: var(--font-body);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
}

.product-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  /* flex-wrap: wrap; */
  align-items: stretch;
  gap: 24px;
  margin: 0 auto;
}

.product-card {
  flex: 1 1 calc(50% - 8px);
  min-height: 238px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 55%);
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  padding: 40px 72px;
  border: 1px solid transparent;
  border-radius: 22px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:nth-child(1) {
  flex-basis: calc(48.8% - 8px);
  background: #e7ffec;
}

.product-card:nth-child(2) {
  flex-basis: calc(51.2% - 8px);
  background: #eaf6ff;
}

.product-card:nth-child(3) {
  flex-basis: calc(51.2% - 8px);
  background: #f3effd;
}

.product-card:nth-child(4) {
  flex-basis: calc(48.8% - 8px);
  background: #fff7df;
}

.product-card:hover,
.product-card.is-selected {
  /* border-color: rgba(49, 98, 124, 0.32); */
  /* transform: translateY(-3px); */
  /* box-shadow: 0 18px 48px rgba(43, 83, 103, 0.12); */
}

.product-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.03;
  min-height: 64px;
}

.product-card p {
  max-width: 280px;
  margin: 0;
  color: rgba(20, 38, 56, 0.72);
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 300;
  line-height: 1.34;
}

.product-list {
  display: flex;
  gap: 8px 16px;
  /* max-width: 840px; */
  margin: 0;
  padding: 0;
  color: rgba(20, 38, 56, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 400;
  line-height: 1.34;
  list-style: none;
  flex-wrap: wrap;
}

.product-card img {
  width: 260px;
  max-width: 320px;
  justify-self: start;
  aspect-ratio: auto;
  object-fit: contain;
  /* mix-blend-mode: multiply; */
  padding: 0 0 0 40px;
}

/* Pink (weight loss) and Yellow (sleep) slightly larger */
.product-card:nth-child(1) img,
.product-card:nth-child(4) img {
}
/* Purple (anti-aging) slightly larger */
.product-card:nth-child(3) img {
}

.product-card button {
  margin-top: 24px;
  border: 2px solid rgba(20, 38, 56, 0.56);
  color: var(--ink);
  background: transparent;
}

.life-section {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto clamp(50px, 8vw, 96px);
  padding: clamp(46px, 7vw, 78px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(214, 246, 253, 0.62)), url("assets/hero-fitness.png") center / cover;
  background-blend-mode: screen;
  box-shadow: var(--shadow);
}

.life-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 32px;
}

.life-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1;
}

.life-copy > p:last-child {
  color: rgba(20, 38, 56, 0.68);
  font-weight: 400;
  line-height: 1.55;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-grid article {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: center / cover no-repeat;
  backdrop-filter: blur(12px);
}

.benefit-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.22) 42%, rgba(18, 38, 56, 0.46));
}

.benefit-grid article::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 32%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
}

.benefit-grid article:nth-child(1) {
  background-image: url("assets/life-crops/no-needles.jpg");
}

.benefit-grid article:nth-child(2) {
  background-image: url("assets/life-crops/no-awkwardness.jpg");
}

.benefit-grid article:nth-child(3) {
  background-image: url("assets/life-crops/no-hassle.jpg");
}

.benefit-grid article:nth-child(4) {
  background-image: url("assets/life-crops/want-glow.jpg");
}

.benefit-grid h3 {
  position: relative;
  z-index: 1;
  /* margin-bottom: 56px; */
  color: var(--ink);
  font-size: 18px;
}

.benefit-grid p {
  position: relative;
  z-index: 1;
  color: rgba(20, 38, 56, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 12px 18px;
  height: 68px;
}

.faq-section {
  width: min(calc(100% - 36px), var(--max));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  overflow: hidden;
  margin: 0 auto clamp(60px, 9vw, 120px);
  border-radius: 22px;
  background: #eef9fd;
  box-shadow: var(--shadow);
}

.faq-section > img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: 22% 50%;
  border-radius: 22px 0 0 22px;
}

.faq-panel {
  align-self: start;
  margin: clamp(18px, 4vw, 54px);
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  min-height: 600px;
}

.faq-panel h2 {
  margin: 0;
  font-size: clamp(1rem, 5vw, 2.5rem);
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.faq-item {
  border: 1px solid rgba(95, 151, 181, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.faq-item button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 650;
}

.faq-item strong {
  width: 32px;
  height: 32px;
  display: grid;
  /* flex: 0 0 30px; */
  /* place-items: center; */
  border-radius: 50%;
  color: #7d6a49;
  background: rgba(229, 211, 178, 0.42);
  transition: transform 180ms ease;
  align-items: center;
  justify-content: center;
  padding: 0px;
  line-height: 1;
  font-size: 16px;
  font-weight: bold;
  /* place-items: center; */
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 16px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease;
}

.faq-item.is-open p {
  max-height: 150px;
  padding: 0 16px 18px;
  opacity: 1;
}

.faq-item.is-open strong {
  transform: rotate(45deg);
}

.footer {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 64px 24px 72px;
  background: radial-gradient(circle, rgba(185, 237, 244, 0.72) 0, rgba(226, 248, 251, 0.42) 14%, rgba(246, 252, 255, 0) 35%), radial-gradient(circle, rgba(233, 219, 191, 0.3), transparent 48%);
}

.footer-nav {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr) minmax(110px, 170px) repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 16px;
  color: rgba(20, 38, 56, 0.56);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-orb {
  width: clamp(92px, 15vw, 146px);
  height: clamp(92px, 15vw, 146px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), rgba(185, 237, 244, 0.64) 60%, rgba(183, 154, 103, 0.16));
  box-shadow: 0 0 0 22px rgba(185, 237, 244, 0.16), 0 0 0 54px rgba(183, 154, 103, 0.07), 0 20px 60px rgba(45, 100, 126, 0.14);
  font-size: 1.2rem;
  font-weight: 650;
  text-transform: none;
}

.contact-float {
  position: fixed;
  z-index: 40;
  right: 24px;
  top: 50%;
  width: 72px;
  border: none;
  /* background: #fff; */
  transform: translateY(-50%);
  box-shadow: none;
}

.contact-float__item {
  width: 72px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 20px 8px;
  border: 0;
  border-bottom: none;
  color: #333;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
  transition: color 160ms ease, background 160ms ease;
}

.contact-float__item svg,
.contact-float__panel svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.contact-float__item:hover,
.contact-float__item:focus-visible {
  color: #13283a;
  outline: 0;
}

.contact-float__item--active {
  color: white;
  background: #13283a;
}

.contact-float__item--active:hover,
.contact-float__item--active:focus-visible {
  color: white;
  background: #b9edf4;
}

.contact-float__phone {
  position: relative;
}

.contact-float__phone .contact-float__item {
  border-bottom: 0;
}

.contact-float__panel {
  position: absolute;
  top: 0;
  right: 72px;
  width: 240px;
  display: grid;
  opacity: 0;
  pointer-events: none;
  transform: translateX(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-float__phone:hover .contact-float__panel,
.contact-float__phone:focus-within .contact-float__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.contact-float__panel a {
  min-height: 80px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: white;
  background: #b9edf4;
  font-size: 18px;
  line-height: 1.25;
}

.contact-float__panel a + a {
  background: #13283a;
}

.contact-float__panel strong {
  display: block;
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 700;
}

/* QR code panel */
.contact-float__panel--qr {
  width: 200px;
  padding: 20px 16px;
  border-radius: 16px;
  background: #ffff;
  box-shadow: 0 8px 24px rgba(20, 38, 56, 0.12);
  margin-right: 12px;
}

.contact-float__panel--qr img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.cart-drawer.is-open {
  display: block;
}

.cart-scrim {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 42, 0.32);
  backdrop-filter: blur(5px);
}

.cart-panel {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  width: min(420px, calc(100% - 28px));
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(250, 254, 255, 0.92);
  box-shadow: 0 26px 90px rgba(18, 49, 66, 0.28);
  backdrop-filter: blur(22px);
  animation: drawerIn 220ms ease forwards;
  transform: translateX(16px);
}

.cart-close {
  float: right;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: white;
  cursor: pointer;
  font-weight: 650;
}

.cart-panel h2 {
  clear: both;
  margin: 0 0 20px;
  font-size: 2.4rem;
  line-height: 1;
}

.cart-items {
  display: grid;
  gap: 12px;
  min-height: 160px;
}

.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(95, 151, 181, 0.16);
  border-radius: var(--radius);
  background: white;
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span,
.empty-cart {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 300;
}

.cart-line button {
  border: 0;
  color: #7d6a49;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.checkout {
  width: 100%;
  margin-top: 22px;
}

@keyframes drawerIn {
  to {
    transform: translateX(0);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    display: none;
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
    gap: 15px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: min(100% - 36px, var(--max));
    height: min(600px, calc(92svh - 150px));
    min-height: 420px;
  }

  .hero-title {
    font-size: clamp(3.8rem, 12vw, 7rem);
  }

  .hero-word-for {
    right: 0;
  }

  .hero-info-card {
    right: 0;
    bottom: 8%;
    width: min(220px, 32vw);
    min-height: 118px;
    padding: 20px;
  }

  .hero-image {
    object-position: 63% 50%;
  }

  .hero-wash {
    background: linear-gradient(90deg, rgba(249, 253, 255, 0.88), rgba(249, 253, 255, 0.58) 44%, rgba(249, 253, 255, 0.12)), linear-gradient(0deg, rgba(248, 252, 255, 0.9) 0%, transparent 30%);
  }

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4) {
    flex-basis: calc(50% - 8px);
  }

  .life-copy,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-orb {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 18px);
    gap: 8px;
    padding: 0 10px 0 12px;
  }

  .brand {
    min-width: 106px;
  }

  .brand img {
    width: 108px;
  }

  .cart-pill {
    padding: 0 10px;
  }

  .hero {
    min-height: 96svh;
    padding-top: 96px;
  }

  .hero-content {
    height: min(560px, calc(96svh - 138px));
    min-height: 390px;
  }

  .hero-title {
    font-size: clamp(3.15rem, 18vw, 5rem);
  }

  .hero-word-made {
    top: 13%;
  }

  .hero-word-for {
    top: 38%;
    right: 0;
  }

  .hero-word-you {
    bottom: 20%;
    left: 3%;
  }

  .hero-info-card {
    right: 0;
    bottom: 8%;
    width: min(190px, 46vw);
    min-height: 106px;
    padding: 16px;
  }

  .hero-info-card p {
    font-size: 0.72rem;
  }

  .hero-bottom-copy {
    bottom: 2%;
  }

  .hero-image {
    object-position: 70% 50%;
  }

  .button {
    width: 100%;
  }

  .section-block,
  .research,
  .life-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4) {
    flex-basis: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
    justify-items: center;
    gap: 16px;
    padding: 24px 20px;
  }

  .product-card img {
    max-width: 200px;
    transform: none !important;
    aspect-ratio: 1 / 0.9;
  }

  .product-card h3 {
    font-size: 1.55rem;
    text-align: center;
  }

  .product-card p {
    font-size: 0.86rem;
    text-align: center;
  }

  .product-card ul {
    text-align: center;
    justify-items: center;
  }

  .product-card button {
    margin-top: 14px;
    display: block;
    width: 100%;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .life-section,
  .faq-section {
    width: calc(100% - 24px);
    border-radius: 16px;
  }

  .benefit-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: 180px;
  }

  .faq-section > img {
    width: 100%;
    height: 360px;
    min-height: unset;
    border-radius: 16px 16px 0 0;
  }

  .faq-panel {
    margin-top: 0;
    min-height: 450px;
  }

  /* Contact float - mobile bottom bar */
  .contact-float {
    top: auto;
    bottom: 12px;
    right: 50%;
    transform: translateX(50%);
    width: auto;
    display: flex;
    flex-direction: row;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  }

  .contact-float__item {
    width: auto;
    padding: 6px 10px;
    gap: 4px;
    font-size: 0;
  }

  .contact-float__item svg,
  .contact-float__panel svg {
    width: 22px;
    height: 22px;
  }

  .contact-float__phone {
    position: static;
  }

  .contact-float__panel--qr {
    bottom: 56px;
    right: 0;
    top: auto;
    left: auto;
  }
}
