@font-face {
  font-family: "Instrument Sans";
  src: url("assets/instrument-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/instrument-medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/instrument-semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #1c1b18;
  --muted: #6e675e;
  --line: #cec4b3;
  --paper: #f2eee4;
  --cream: #f2eee4;
  --cream-light: #f8f4eb;
  --cream-deep: #e5dccd;
  --mist: #e9e1d4;
  --teal: #1c1b18;
  --teal-deep: #1c1b18;
  --blue: #1c1b18;
  --pink: #1c1b18;
  --green: #1c1b18;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --page-gutter: max(clamp(24px, 3vw, 64px), calc((100vw - 1920px) / 2));
  --shell: min(1920px, calc(100% - clamp(48px, 6vw, 128px)));
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

@media (min-width: 1600px) {
  html { font-size: 106.25%; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Instrument Sans", sans-serif;
  font-size: 1rem;
  font-kerning: normal;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.gated {
  overflow: hidden;
}

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

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

button,
input {
  color: inherit;
  font: inherit;
}

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--ink) 70%, var(--cream));
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}

.skip-link:focus {
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

h1,
h2,
h3 {
  letter-spacing: -.035em;
  line-height: 1.03;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.7vw, 4.25rem);
  font-weight: 600;
}

.section-pad {
  padding-block: clamp(84px, 9vw, 144px);
}

.eyebrow {
  margin-bottom: 14px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.eyebrow.blue {
  color: var(--blue);
}

.eyebrow.pink {
  color: var(--pink);
}

.centered {
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .96rem;
  font-weight: 500;
  transition: transform .25s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease;
}

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

.button:active {
  transform: translateY(0) scale(.98);
}

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

.button-dark:hover {
  background: #34312b;
}

.button-teal {
  border-color: var(--ink);
  background: var(--cream);
  color: var(--ink);
}

.button-teal:hover {
  background: var(--cream-light);
}

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

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

.button-light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.button-light:hover {
  background: var(--cream-light);
}

.age-gate {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgb(242 238 228 / .28);
  backdrop-filter: blur(8px);
  transition: opacity .45s ease, visibility .45s ease;
}

.age-gate.dismissed {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.age-card {
  width: min(432px, 100%);
  padding: 28px 28px 26px;
  border: 1px solid rgb(242 238 228 / .72);
  border-radius: 14px;
  background: rgb(248 244 235 / .97);
  box-shadow: 0 28px 80px rgb(0 0 0 / .27);
  text-align: center;
  transform-origin: 50% 60%;
  animation: gate-in .7s var(--ease) both;
}

@keyframes gate-in {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
}

.age-logo {
  width: 210px;
  margin: 0 auto 22px;
}

.age-eyebrow {
  color: var(--teal-deep);
  font-weight: 600;
}

.age-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 5vw, 2.3rem);
  letter-spacing: -.025em;
}

.age-card > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
}

.age-enter {
  width: 100%;
  border-radius: 7px;
  font-weight: 600;
}

.underage {
  display: block;
  margin: 20px auto 26px;
  color: var(--muted);
}

.underage:hover,
.age-card small a {
  text-decoration: underline;
}

.age-card small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}

.announcement {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--ink);
  color: var(--cream);
  font-size: .87rem;
  text-align: center;
}

.announcement a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-icon {
  font-size: 1.1rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--cream) 97%, transparent);
  transition: box-shadow .3s ease;
}

.site-header.scrolled {
  box-shadow: 0 9px 30px rgb(0 0 0 / .06);
}

.header-main {
  display: grid;
  min-height: 84px;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 720px) minmax(260px, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 238px;
}

.search-wrap {
  position: relative;
}

.search-wrap > svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 18px;
  width: 20px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.7;
  transform: translateY(-50%);
}

.search-wrap input {
  width: 100%;
  height: 50px;
  padding: 0 22px 0 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  outline: none;
  background: var(--cream-deep);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.search-wrap input:focus {
  border-color: var(--ink);
  background: var(--cream-light);
  box-shadow: 0 0 0 3px rgb(28 27 24 / .1);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  z-index: 60;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream-light);
  box-shadow: 0 24px 50px rgb(0 0 0 / .13);
}

.search-results button {
  display: grid;
  width: 100%;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--cream-light);
  cursor: pointer;
  text-align: left;
}

.search-results button:hover {
  background: var(--cream-deep);
}

.search-results img {
  width: 42px;
  aspect-ratio: 1;
  object-fit: cover;
}

.search-results small {
  color: var(--muted);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.header-action small {
  display: block;
  color: var(--muted);
  line-height: 1.1;
}

.action-icon {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-deep);
}

.action-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.action-icon b {
  position: absolute;
  top: -5px;
  right: -5px;
  display: none;
  min-width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: .68rem;
}

.action-icon b.visible {
  display: grid;
}

.desktop-nav {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 30px;
  font-size: .96rem;
  font-weight: 500;
}

.nav-group {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
}

.nav-trigger {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
}

.nav-trigger::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s var(--ease);
}

.nav-group:hover .nav-trigger::after,
.nav-group:focus-within .nav-trigger::after,
.nav-group.is-open .nav-trigger::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: absolute;
  z-index: 120;
  top: 100%;
  left: -18px;
  width: 245px;
  padding: 10px 18px 14px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--ink);
  background: var(--cream-light);
  box-shadow: 0 20px 45px rgb(28 27 24 / .13);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-7px);
  transition: opacity .18s ease, transform .24s var(--ease), visibility 0s linear .24s;
  visibility: hidden;
}

.nav-dropdown-right {
  right: -18px;
  left: auto;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: opacity .2s ease, transform .26s var(--ease), visibility 0s;
  visibility: visible;
}

.nav-dropdown a {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  font-size: .93rem;
  font-weight: 400;
  transition: padding .2s var(--ease), color .2s ease;
}

.nav-dropdown a:last-child {
  border-bottom: 0;
}

.nav-dropdown a span {
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: opacity .18s ease, transform .22s var(--ease);
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  padding-left: 6px;
}

.nav-dropdown a:hover span,
.nav-dropdown a:focus-visible span {
  opacity: 1;
  transform: none;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  inset: 85px 0 0;
  overflow-y: auto;
  padding: 24px 30px 40px;
  background: var(--paper);
  overscroll-behavior: contain;
}

.mobile-menu details {
  border-bottom: 1px solid var(--line);
}

.mobile-menu summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  font-size: 1.35rem;
  cursor: pointer;
  list-style: none;
}

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

.mobile-menu summary::after {
  content: "+";
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform .24s var(--ease);
}

.mobile-menu details[open] summary::after {
  transform: rotate(45deg);
}

.mobile-menu details > div {
  padding: 0 0 15px 18px;
}

.mobile-menu details a {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 1rem;
}

.mobile-menu details a::after {
  content: "↗";
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 0;
  aspect-ratio: 2730 / 1536;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, transparent 35%, rgb(242 238 228 / .12) 54%, rgb(242 238 228 / .9) 100%);
  content: "";
}

.hero-media,
.hero-media img {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  z-index: auto;
}

.hero-media img {
  object-fit: cover;
  object-position: center 57%;
}

.hero-content {
  position: absolute;
  top: 50%;
  right: var(--page-gutter);
  width: min(760px, 48vw);
  text-align: right;
  transform: translateY(-48%);
}

.hero-content h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 600;
}

.hero-content .hero-lead {
  margin: 0 0 22px auto;
  max-width: 48ch;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.6;
  color: #33322e;
}

.button-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.learn-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e7e2d7;
  border-radius: 16px;
  padding: 18px;
  background: #fbf8f1;
  transition: border-color 0.2s ease;
}

.learn-card:hover {
  border-color: #d8d2c4;
}

.learn-card b {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.learn-card span {
  color: #8a857a;
  font-size: 0.9rem;
  line-height: 1.5;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 28px var(--page-gutter);
  background: var(--mist);
}

.benefits article {
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--teal);
  font-size: 1.8rem;
}

.benefits h3 {
  margin: 0 0 3px;
  font-size: .98rem;
  font-weight: 500;
  letter-spacing: -.015em;
}

.benefits p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(38px, 5vw, 68px);
}

.section-intro {
  max-width: 440px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.08rem;
}

.tab-list {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.tab {
  padding: 11px 20px;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.tab.active {
  background: var(--ink);
  color: var(--cream);
}

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

.product-grid-empty {
  display: block;
}

.storefront-empty {
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 70px 28px;
  border: 1px solid var(--line);
  background: var(--cream-light);
  text-align: center;
}

.empty-mark {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 600;
}

.storefront-empty h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.storefront-empty > p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-card {
  position: relative;
  min-width: 0;
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 18px;
  background: var(--cream-deep);
}

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

.product-image-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: var(--cream-deep);
}

.product-image-fallback span {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: .22em;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  background: var(--ink);
  color: var(--cream);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.quick-add {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  text-align: center;
  text-decoration: none;
  font: inherit;
  font-weight: 600;
  border-radius: 4px;
  background: rgb(18 18 18 / .94);
  color: var(--cream);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s var(--ease), background .2s ease;
}

.product-card:hover .quick-add,
.quick-add:focus-visible {
  opacity: 1;
  transform: none;
}

.quick-add:hover {
  background: var(--teal-deep);
}

.quick-add:disabled {
  cursor: not-allowed;
  opacity: .7;
}

.search-image-fallback {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--cream-deep);
  font-weight: 600;
}

.product-type {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 2.5em;
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.24;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  margin: 0;
  font-weight: 500;
}

.product-rating {
  color: var(--muted);
  font-size: .8rem;
}

.product-rating b {
  color: var(--teal-deep);
  letter-spacing: 1px;
}

.section-foot {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.category-section {
  background: var(--cream-deep);
}

.category-grid {
  display: grid;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: var(--cream-deep);
}

.category-card.large {
  grid-row: span 2;
  grid-column: span 2;
}

.category-card:last-child {
  grid-column: span 2;
}

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

.category-card:hover img {
  transform: scale(1.04);
}

.category-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgb(0 0 0 / .5));
  content: "";
  pointer-events: none;
}

.category-card span {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream-light);
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -.035em;
}

.category-card b {
  transition: transform .3s var(--ease);
}

.category-card:hover b {
  transform: translate(3px, -3px);
}

.guide-split {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-light);
}

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

.guide-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 110px);
}

.guide-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.3vw, 4rem);
}

.guide-copy .lead {
  max-width: 650px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 50px;
  margin-bottom: 38px;
}

.guide-grid h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.guide-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.6;
}

.standard-section {
  display: grid;
  min-height: 680px;
  grid-template-columns: 42% 58%;
  background: var(--ink);
  color: var(--cream);
}

.standard-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 108px);
}

.standard-copy h2 {
  margin-bottom: 28px;
}

.standard-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 34px;
  color: #d8cebd;
  font-size: 1.1rem;
}

.standard-images {
  display: grid;
  grid-template-rows: 1.08fr .92fr;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  gap: 8px;
  padding: 8px 8px 8px 0;
}

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

.standard-images img:first-child {
  grid-row: 1 / -1;
}

.standard-images img:last-child {
  grid-row: 2;
}

.reviews {
  background: var(--mist);
}

.reviews h2 {
  margin-bottom: 58px;
  text-align: center;
}

.review-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}

.trust-score {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.trust-score strong {
  font-size: 1.55rem;
}

.trust-score .stars {
  margin: 7px 0 5px;
  padding: 4px 8px;
  background: var(--green);
  color: var(--cream);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.trust-score small {
  margin-bottom: 10px;
}

.trust-score > b {
  font-size: 1.1rem;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.review-card .mini-stars {
  display: inline-block;
  margin-bottom: 12px;
  padding: 2px 5px;
  background: var(--green);
  color: var(--cream);
  font-size: .75rem;
  letter-spacing: 1px;
}

.review-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.review-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: -.015em;
}

.review-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0;
  color: #343434;
  font-size: .9rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 30px;
}

.circle-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #aaa;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

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

.newsletter {
  display: grid;
  min-height: 560px;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-deep);
}

.newsletter-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 105px);
}

.newsletter-copy h2 {
  margin-bottom: 22px;
}

.newsletter-copy > p:not(.eyebrow):not(.form-message) {
  max-width: 580px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.08rem;
}

.newsletter form {
  display: flex;
  width: min(100%, 580px);
  border-bottom: 1px solid #a99e8c;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 14px 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1.02rem;
}

.newsletter form:focus-within {
  border-bottom-color: var(--teal-deep);
  box-shadow: 0 1px var(--teal-deep);
}

.newsletter button {
  align-self: center;
  padding: 10px 15px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: .9rem;
}

.form-message.error {
  color: #9e1c2f;
}

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

.footer {
  padding: 72px 0 26px;
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer h3 {
  margin-bottom: 20px;
  font-size: 1.15rem;
  letter-spacing: -.01em;
}

.footer-brand p {
  max-width: 390px;
  color: #d8cebd;
  line-height: 1.75;
}

.footer-brand img {
  width: min(250px, 100%);
  margin-bottom: 25px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-grid a {
  margin-bottom: 12px;
  color: #e7dece;
}

.footer-grid a:hover {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 70px;
  color: #a99e8c;
  font-size: .85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom i {
  padding-inline: 8px;
  font-style: normal;
}

.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.payments span {
  padding: 3px 6px;
  border-radius: 3px;
  background: var(--cream);
  color: var(--ink);
  font-size: .67rem;
  font-weight: 600;
}

.toast {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  max-width: min(390px, calc(100vw - 40px));
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 18px 50px rgb(0 0 0 / .25);
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity .3s ease, transform .35s var(--ease);
}

.toast.show {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .9s var(--ease);
}

.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (min-width: 861px) {
  .js .hero-content.reveal {
    transform: translateY(calc(-48% + 28px));
  }

  .js .hero-content.reveal.in-view {
    transform: translateY(-48%);
  }
}

@media (max-width: 1100px) {
  :root {
    --page-gutter: 24px;
    --shell: calc(100% - 48px);
  }

  .header-main {
    grid-template-columns: 240px minmax(250px, 1fr) 230px;
    gap: 20px;
  }

  .brand img { width: 210px; }
  .header-actions { gap: 12px; }
  .header-action:first-child span:last-child { display: none; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-auto-rows: 225px; }
  .guide-copy { padding: 60px 48px; }
  .review-track { grid-template-columns: repeat(2, 1fr); }
  .review-card:nth-child(3) { display: none; }
}

@media (max-width: 860px) {
  :root { --shell: calc(100% - 40px); }
  html { font-size: 100%; scroll-padding-top: 86px; }
  .announcement { min-height: 42px; font-size: .76rem; }
  .header-main { min-height: 78px; grid-template-columns: 46px 1fr auto; gap: 10px; }
  .menu-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 6px; background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 21px; height: 1.5px; background: var(--ink); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .brand { justify-self: start; }
  .brand img { width: 205px; }
  .search-wrap { display: none; }
  .desktop-nav { display: none; }
  .header-action:first-child { display: none; }
  .cart-action span:last-child { display: none; }
  .action-icon { width: 42px; height: 42px; }
  .mobile-menu { top: 78px; }

  .hero {
    display: grid;
    min-height: 0;
    aspect-ratio: auto;
    grid-template-rows: auto auto;
  }
  .hero::before { display: none; }
  .hero-media {
    position: relative;
    z-index: auto;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2730 / 1536;
  }
  .hero-media img { object-fit: contain; object-position: center; }
  .hero-content {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 54px max(5vw, 32px) 62px;
    background: var(--cream);
    text-align: left;
    transform: none;
  }
  .hero-content .button-row { justify-content: flex-start; }
  .hero-content h1 { font-size: clamp(3rem, 7.5vw, 4.4rem); }
  .benefits { overflow-x: auto; grid-template-columns: repeat(4, minmax(270px, 1fr)); padding-inline: 20px; scrollbar-width: none; }
  .benefits::-webkit-scrollbar { display: none; }
  .product-grid { display: flex; overflow-x: auto; gap: 16px; margin-right: -20px; padding-right: 20px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .product-grid::-webkit-scrollbar { display: none; }
  .product-card { flex: 0 0 min(65vw, 330px); scroll-snap-align: start; }
  .quick-add { opacity: 1; transform: none; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card.large { grid-column: span 2; grid-row: span 1; }
  .guide-split { min-height: auto; grid-template-columns: 1fr; }
  .guide-image { aspect-ratio: 1.2; }
  .guide-copy { padding: 68px 28px 78px; }
  .standard-section { grid-template-columns: 1fr; }
  .standard-copy { min-height: 570px; }
  .standard-images { min-height: 600px; padding-left: 8px; }
  .newsletter { grid-template-columns: 1fr; }
  .newsletter-copy { min-height: 520px; }
  .newsletter-media { aspect-ratio: 1.3; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 32px); }
  .announcement-icon { display: none; }
  .announcement { gap: 6px; }
  .brand img { width: 172px; }
  .header-main { grid-template-columns: 42px 1fr 42px; }
  .hero-content { padding: 46px 22px 50px; text-align: center; }
  .hero-content h1 { margin-bottom: 16px; font-size: clamp(2.9rem, 13vw, 4.4rem); }
  .hero-content .button-row { justify-content: center; }
  .section-pad { padding-block: 82px; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 28px; margin-bottom: 40px; }
  h2 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .tab-list { width: 100%; }
  .tab { flex: 1; padding-inline: 12px; }
  .product-grid { margin-right: 0; padding-right: 16px; }
  .product-card { flex-basis: 78vw; }
  .category-grid { display: flex; overflow-x: auto; margin-right: 0; padding-right: 16px; gap: 12px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .category-card, .category-card.large { min-width: 78vw; aspect-ratio: .88; scroll-snap-align: start; }
  .guide-image { aspect-ratio: .95; }
  .guide-copy { padding-inline: 22px; }
  .guide-grid { grid-template-columns: 1fr; gap: 26px; }
  .standard-copy { min-height: 540px; padding: 68px 24px; }
  .standard-images { min-height: 480px; grid-template-columns: 1fr 1fr; }
  .reviews h2 { margin-bottom: 42px; }
  .review-layout { grid-template-columns: 1fr; gap: 42px; }
  .review-track { grid-template-columns: 1fr; }
  .review-card:nth-child(2), .review-card:nth-child(3) { display: none; }
  .review-controls { justify-content: center; }
  .newsletter-copy { min-height: 500px; padding: 68px 24px; }
  .newsletter-media { aspect-ratio: 1; }
  .footer { padding-top: 58px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 55px; }
  .footer-bottom p { line-height: 1.6; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Instagram social band */
.instagram { background: var(--cream-light); }
.insta-shell { text-align: center; }
.insta-shell h2 { margin-bottom: 16px; }
.insta-lead {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}
.insta-cta { gap: 10px; }
.insta-glyph { width: 20px; height: 20px; fill: currentColor; }
