/* =========================================================
   wisdm — Ho/* =========================================================
   wisdm — Homepage
   ========================================================= */
html,
body {
  overflow-y: auto;
  overflow-x: hidden;
}

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Aquavit";
  src: url("../assets/fonts/aquavit-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Albert Sans";
  src: url("../assets/fonts/AlbertSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Albert Sans";
  src: url("../assets/fonts/AlbertSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  /* brand palette */
  --c-red: #b81f3d;
  --c-red-dark: #9c1732;
  --c-olive: #99a73a;
  --c-olive-dark: #7f8c2b;
  --c-orange: #e2701c;
  --c-orange-dark: #c65d10;
  --c-blue: #2d6cb8;
  --c-blue-dark: #1e559b;
  --c-yellow: #ffe141;
  --c-tan: #d2a478;
  --maroon: #B81F3D;
  --maroon-dark: #8C1730;
  --olive-bg: #EDF1E4;
  --text: #1C1C1C;
  --text-muted: #54504c;
  --text-faint: #8a8682;

  /* neutrals */
  --c-ink: #2b2b2b;
  --c-body: #4d4d4d;
  --c-muted: #7a7a7a;
  --c-line: #ded9d4;
  --c-cream: #f0efed;
  --c-card: #f4f2f0;
  --c-white: #ffffff;

  /* typography */
  --font-display: "Aquavit", "Iowan Old Style", Georgia, serif;
  --font-body: "Albert Sans", "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-hero: clamp(2.75rem, 5vw, 6rem);
  --fs-section: clamp(2rem, 3.35vw, 4rem);
  --fs-lead: clamp(0.95rem, 1.05vw, 1.25rem);
  --fs-body: clamp(0.9rem, 0.95vw, 1.05rem);
  --fs-eyebrow: 0.8125rem;

  /* spacing */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;
  --sp-8: 8rem;

  --shell: 1520px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-card: 0 18px 40px rgba(0, 0, 0, .14);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, .07);

  --ease: cubic-bezier(.33, .8, .3, 1);
  --dur: .35s;

  --wave-h: clamp(14px, 1.5vw, 28px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-body);
  background: var(--c-white);
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input {
  font: inherit;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--c-red);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Layout helpers ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Wave dividers ---------- */
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--wave-h);
  pointer-events: none;
  background-repeat: repeat-x;
  background-size: clamp(90px, 9.5vw, 182px) 100%;
}

.wave--bottom {
  bottom: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q17.5,0 35,10 T70,10 T105,10 T140,10 V21 H0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.wave--top {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q17.5,0 35,10 T70,10 T105,10 T140,10 V-1 H0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

/* ---------- Shared typography ---------- */
.eyebrow {
  font-size: var(--fs-eyebrow);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: .85rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-section);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--c-ink);
}

.section-title--red {
  color: var(--c-red);
}

.lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-body);
}

.lead+.lead {
  margin-top: 8px;
}

/* ---------- Links & buttons ---------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-eyebrow);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-ink);
  padding-bottom: .35rem;
  border-bottom: 1px solid currentColor;
  transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
}

.link-arrow::after {
  content: "\2197";
  font-size: 1.15em;
  line-height: 1;
  transition: transform var(--dur) var(--ease);
}

.link-arrow:hover {
  color: var(--c-red);
  gap: .8rem;
}

.link-arrow:hover::after {
  transform: translate(2px, -2px);
}

.link-arrow--light {
  color: #fff;
}

.link-arrow--light:hover {
  color: rgba(255, 255, 255, .78);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 2rem;
  border-radius: var(--radius-pill);
  font-size: .95rem;
  letter-spacing: .06em;
  text-align: center;
  transition: background-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.btn:hover {
  /* transform: translateY(-2px); */
  color: #fff;
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost-light {
  border: 1px solid rgba(255, 255, 255, .85);
  color: #fff;
}

.btn--ghost-light:hover {
  background: #fff;
  color: var(--c-red);
}

.btn--solid {
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(184, 31, 61, .25);
}

.btn--solid:hover {
  background: var(--c-red-dark);
}

.btn--outline {
  border: 1px solid var(--c-red);
  color: var(--c-red);
  background: #fff;
}

.btn--outline:hover {
  background: var(--c-red);
  color: #fff;
}

.btn--pill {
  background: var(--c-red);
  color: #fff;
  padding: .8rem 1.6rem;
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.btn--pill:hover {
  background: var(--c-red-dark);
}

.btn--sm {
  padding: .5rem 1.6rem;
  font-size: .8rem;
  letter-spacing: .04em;
  width: 100%;
  max-width: 220px;
}

/* =========================================================
   TICKER
   ========================================================= */
.ticker {
  position: relative;
  background: var(--c-red);
  color: #fff;
  padding: 1.15rem 0 calc(var(--wave-h) + .35rem);
  overflow: hidden;
}

.ticker__track,
.band__track {
  display: flex;
  width: max-content;
  overflow: hidden;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
}

.ticker__group,
.band__group {
  display: flex;
  align-items: center;
  flex: none;
}

.ticker__group>span {
  padding-inline: clamp(1.25rem, 3vw, 3.4rem);
  font-size: clamp(.8rem, 1.2vw, 1.4rem);
  letter-spacing: .04em;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.ticker:hover .ticker__track,
.band:hover .band__track {
  animation-play-state: paused;
}

/* =========================================================
   MARQUEE BAND
   ========================================================= */
.band {
  width: 85%;
  position: relative;
  background: var(--c-red);
  color: #fff;
  padding: calc(var(--wave-h) + .9rem) 0;
  overflow: visible;
  /* was: hidden — this was clipping the cookie */
}

.band__track {
  animation-duration: 36s;
}

.band__group>span {
  padding-inline: clamp(.9rem, 1.9vw, 2.2rem);
  font-size: clamp(1rem, 1.75vw, 2.1rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.band__group>i {
  font-style: normal;
  font-size: clamp(.7rem, 1vw, 1.1rem);
  opacity: .9;
}

/* ============ FORTUNE COOKIE ============ */
.story__leaf {
  position: absolute;
  top: clamp(-80px, -8vw, -60px);
  /* pulls it further above the band, like img 2 */
  right: clamp(2%, 5vw, 6%);
  width: clamp(160px, 14vw, 240px);
  /* bigger + responsive, was fixed 150px */
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.12));
}

.story__leaf img,
.story__leaf svg {
  width: 100%;
  height: auto;
  display: block;
}

.scene {
  width: calc(100% - 60px);
  margin: 0 60px 0 0;
  /* left: 0, right: 60px */
  position: relative;
  /* width:100%; */
  max-width: 2000px;
  aspect-ratio: 1880 / 379;
  background-image: url("https://staging.florafountain.com/wp-content/uploads/2026/08/fortune-cookie.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* text is clipped to stop before the cookie starts (~87% of the image width) */
.marquee-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 100%;
  overflow: hidden;
}

.marquee {
  position: absolute;
  top: 38%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-left 14s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: clamp(8px, 2vw, 26px);
  padding-right: 28px;
}

.marquee span::after {
  content: "B7";
  padding-left: 28px;
  opacity: 0.85;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none;
  }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  transition: box-shadow var(--dur) var(--ease);
}

.site-header.is-stuck {
  box-shadow: 0 4px 22px rgba(0, 0, 0, .07);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: clamp(64px, 5.2vw, 96px);
}

.brand img {
  width: clamp(105px, 8vw, 150px);
  height: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.6vw, 3.2rem);
}

.nav__list a {
  position: relative;
  font-size: clamp(.9rem, 1.05vw, 1.3rem);
  color: var(--c-ink);
  padding: .35rem 0;
  transition: color var(--dur) var(--ease);
}

.nav-close {
  display: none;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.nav__list a:hover {
  color: var(--c-red);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity .2s linear;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--c-red);
}

.hero__viewport {
  position: relative;
  display: grid;
}

.hero__slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 52% 48%;
  height: 550px;
  /* min-height: clamp(430px, 43.5vw, 840px); */
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero__media {
  position: relative;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__panel {
  background: var(--c-red);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 4.5vw, 5rem);
}

.hero__content {
  color: #fff;
  max-width: 34rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-hero);
  line-height: .98;
  letter-spacing: -.015em;
  margin-bottom: clamp(1rem, 1.6vw, 1.75rem);
}

.hero__text {
  font-size: clamp(.95rem, 1.55vw, 18px);
  line-height: 1.4;
  color: rgba(255, 255, 255, .95);
  margin-bottom: clamp(1.25rem, 2.2vw, 2.25rem);
}

.hero__content .btn {
  margin-top: clamp(1rem, 1.9vw, 2rem);
}

.hero__content .link-arrow {
  display: inline-flex;
}

.hero__content .btn--ghost-light {
  display: flex;
  width: fit-content;
}

/* dots */
.dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.6vw, 1.75rem);
  padding: clamp(1.25rem, 2.2vw, 2.5rem) 0;
  background: #fff;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-ink);
  opacity: .85;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.dot:hover {
  transform: scale(1.25);
}

.dot.is-active {
  width: 26px;
  height: 26px;
  border-radius: 0;
  background: var(--c-red);
  opacity: 1;
  background: url("https://wisdm.florapreview.com/wp-content/themes/wisdm/assets/images/logo-icon.png") no-repeat center;
  background-size: contain;
}

/* =========================================================
   OUR STORY
   ========================================================= */
.story {
  position: relative;
  padding: clamp(2rem, 4vw, 4.5rem) 0 clamp(3.5rem, 6vw, 7rem);
  overflow: hidden;
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.story__media {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.story__media img {
  width: 100%;
  aspect-ratio: 3 / 4.4;
  object-fit: cover;
}

.story__body {
  max-width: 44rem;
  padding-top: clamp(.5rem, 1.5vw, 2rem);
}

.story__body .section-title {
  margin-bottom: clamp(1rem, 1.7vw, 1.9rem);
}

/* decorative botanical shape */


/* facts list */
.facts {
  margin: clamp(1.75rem, 3vw, 3rem) 0 clamp(1.75rem, 3.5vw, 3.5rem);
  border-top: 1px solid var(--c-red);
}

.facts__row {
  display: grid;
  grid-template-columns: minmax(90px, 14%) 1fr;
  gap: clamp(1rem, 2vw, 2.5rem);
  align-items: start;
  padding: clamp(.9rem, 1.4vw, 1.4rem) 0;
  border-bottom: 1px solid var(--c-red);
}

.facts__value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.5vw, 1.65rem);
  color: var(--c-ink);
  line-height: 1.2;
}

.facts__body {
  display: block;
}

.facts__label {
  display: block;
  font-size: clamp(20px, 1vw, 1.05rem);
  color: var(--c-ink);
  margin-bottom: .25rem;
}

.facts__note {
  display: block;
  max-width: 22rem;
  font-size: 17px;
  line-height: 1.35;
  color: var(--c-muted);
}

/* =========================================================
   MARQUEE BAND
   ========================================================= */
.band {
  position: relative;
  background: var(--c-red);
  color: #fff;
  padding: calc(var(--wave-h) + .9rem) 0;
  /* overflow: hidden; */
}

.band__track {
  animation-duration: 36s;
}

.band__group>span {
  padding-inline: clamp(.9rem, 1.9vw, 2.2rem);
  font-size: clamp(1rem, 1.75vw, 2.1rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.band__group>i {
  font-style: normal;
  font-size: clamp(.7rem, 1vw, 1.1rem);
  opacity: .9;
}

/* =========================================================
   SHOP / PRODUCTS
   ========================================================= */
.shop {
  padding: clamp(3rem, 6vw, 7rem) 0 clamp(3rem, 5vw, 6rem);
}

.shop__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 38%);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 4.5rem);
}

.shop__intro p {
  margin-bottom: clamp(1rem, 1.6vw, 1.6rem);
}

.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  gap: clamp(1rem, 1.8vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

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

.carousel__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.product>article {
  height: 100%;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.product:hover>article,
.product.is-active>article {
  transform: translateY(-14px) scale(1.045);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.product__media {
  position: relative;
  overflow: hidden;
}

.product__media img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity .4s ease, transform .4s ease;
}

.product__img--back {
  position: absolute;
  inset: 0;
  opacity: 0;
}

/* Hover */
.product:hover .product__img--front {
  opacity: 0;
  transform: scale(1.05);
}

.product:hover .product__img--back {
  opacity: 1;
  transform: scale(1.05);
}

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

.product__body {
  padding: clamp(.9rem, 1.2vw, 1.3rem) clamp(1rem, 1.4vw, 1.5rem) clamp(1.1rem, 1.5vw, 1.6rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.1rem;
  font-size: .68rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .55rem;
}

.product__tags span {
  position: relative;
}

.product__tags span+span::before {
  content: "\00b7";
  position: absolute;
  left: -.62rem;
}

.product__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 1.85vw, 2.2rem);
  line-height: 1.05;
  color: var(--c-ink);
  margin-bottom: .45rem;
}

.product__desc {
  font-size: .72rem;
  line-height: 1.35;
  color: var(--c-body);
  margin-bottom: auto;
  padding-bottom: 1rem;
}

.product__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}

.product__price {
  font-weight: 600;
  font-size: clamp(1.2rem, 1.65vw, 1.95rem);
  color: var(--c-ink);
  line-height: 1;
}

.product__meta {
  font-size: .78rem;
  line-height: 1.25;
  text-align: right;
  color: var(--c-ink);
}

.product__meta span {
  font-size: .68rem;
  color: var(--c-muted);
}

.product .btn--solid {
  width: 100%;
  padding: .6rem 1rem;
  font-size: .82rem;
}

/* per-product colourways */
.product--olive .product__tags {
  color: var(--c-olive);
}

.product--olive .btn--solid {
  background: var(--c-olive);
  box-shadow: 0 6px 18px rgba(153, 167, 58, .3);
}

/* .product--olive .btn--solid:hover {
  background: var(--c-olive-dark);
} */

.product--red .product__tags {
  color: var(--c-red);
}

.product--orange .product__tags {
  color: var(--c-orange);
}

.product--orange .btn--solid {
  background: var(--c-orange);
  box-shadow: 0 6px 18px rgba(226, 112, 28, .3);
}

/* .product--orange .btn--solid:hover {
  background: var(--c-orange-dark);
} */

.product--blue .product__tags {
  color: var(--c-blue);
}

.product--blue .btn--solid {
  background: var(--c-blue);
  box-shadow: 0 6px 18px rgba(45, 108, 184, .3);
}

.product--blue .btn--solid:hover {
  background: var(--c-blue-dark);
}

/* carousel arrows */
.carousel__nav {
  display: flex;
  justify-content: center;
  gap: .75rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-red);
  color: var(--c-red);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.carousel__btn:hover {
  background: var(--c-red);
  color: #fff;
}

.carousel__btn[disabled] {
  opacity: .3;
  cursor: default;
}

.carousel__btn[disabled]:hover {
  background: none;
  color: var(--c-red);
}
/* =========================================================
   WHAT'S INSIDE
   ========================================================= */
.inside {
  padding: clamp(3rem, 5vw, 6rem) 0 clamp(3rem, 6vw, 7rem);
}

.inside__grid {
  display: grid;
  grid-template-columns: minmax(0, 30%) minmax(0, 34%) minmax(0, 30%);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
}

.inside__copy {
  padding-top: clamp(.5rem, 2vw, 2.5rem);
}

.inside__copy .section-title {
  margin-bottom: clamp(1.25rem, 2vw, 2.25rem);
}

.inside__copy .link-arrow {
  margin-top: clamp(1.5rem, 2.5vw, 2.5rem);
}

/* specimen card */
.specimens {
  position: relative;
}

.specimen {
  display: none;
  opacity: 0;
  transition: opacity .3s ease;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.specimen.is-active {
  display: block;
  opacity: 1;
}
.specimen__media {
  position: relative;
  background: var(--c-card);
}

.specimen__media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  transition: opacity .3s var(--ease);
}


.specimen__flags {
  position: absolute;
  inset: clamp(.9rem, 1.4vw, 1.4rem) clamp(.9rem, 1.4vw, 1.4rem) auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
  z-index: 1;
}

.specimen__body {
  padding: clamp(1.5rem, 2.4vw, 2.5rem) clamp(1.25rem, 2vw, 2.25rem) clamp(1.5rem, 2vw, 2rem);
}

.specimen__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.1vw, 3.25rem);
  line-height: 1;
  color: var(--c-ink);
  margin-bottom: .5rem;
}

.specimen__latin {
  font-size: clamp(.85rem, .95vw, 1rem);
  color: var(--c-body);
  margin-bottom: .8rem;
}

.specimen__desc {
  font-size: .82rem;
  line-height: 1.5;
  color: var(--c-body);
  padding-bottom: clamp(1rem, 1.8vw, 1.6rem);
  border-bottom: 1px solid var(--c-line);
}

.specimen__meta {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 1rem;
  padding-top: clamp(.9rem, 1.3vw, 1.2rem);
}

.specimen__meta dt {
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: .2rem;
}

.specimen__meta dd {
  margin: 0;
  font-size: clamp(.85rem, .95vw, 1rem);
  color: var(--c-ink);
}

/* botanical index */
.index {
  align-self: stretch;
}

.index__list {
  max-height: clamp(360px, 32vw, 540px);
  overflow-y: auto;
  padding-right: .75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--c-line) transparent;
}

.index__list::-webkit-scrollbar {
  width: 4px;
}

.index__list::-webkit-scrollbar-thumb {
  background: var(--c-line);
  border-radius: 4px;
}

.index__btn {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: clamp(.7rem, 1vw, 1rem) .25rem;
  border-bottom: 1px solid var(--c-line);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.index__num {
  font-size: .78rem;
  color: var(--c-muted);
  padding-top: .12rem;
}

.index__name {
  display: block;
  font-weight: 600;
  font-size: clamp(.88rem, 1vw, 1.05rem);
  color: var(--c-ink);
  transition: color var(--dur) var(--ease);
}

.index__note {
  display: block;
  font-size: .74rem;
  color: var(--c-muted);
}

.index__btn:hover {
  background: rgba(184, 31, 61, .04);
}

.index__btn:hover .index__name,
.index__btn.is-active .index__name {
  color: var(--c-red);
}

.index__btn.is-active {
  border-bottom-color: var(--c-red);
}

/* =========================================================
   WHAT'S INSIDE
   ========================================================= */
/* .inside {
  padding: clamp(3rem, 5vw, 6rem) 0 clamp(3rem, 6vw, 7rem);
}

.inside__grid {
  display: grid;
  grid-template-columns: minmax(0, 30%) minmax(0, 34%) minmax(0, 30%);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
}

.inside__copy {
  padding-top: clamp(.5rem, 2vw, 2.5rem);
}

.inside__copy .section-title {
  margin-bottom: clamp(1.25rem, 2vw, 2.25rem);
}

.inside__copy .link-arrow {
  margin-top: clamp(1.5rem, 2.5vw, 2.5rem);
}

.specimen {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.specimen__media {
  position: relative;
  background: var(--c-card);
}

.specimen__media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  transition: opacity .3s var(--ease);
}

.specimen.is-swapping .specimen__media img {
  opacity: 0;
}

.specimen__flags {
  position: absolute;
  inset: clamp(.9rem, 1.4vw, 1.4rem) clamp(.9rem, 1.4vw, 1.4rem) auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
  z-index: 1;
}

.specimen__body {
  padding: clamp(1.5rem, 2.4vw, 2.5rem) clamp(1.25rem, 2vw, 2.25rem) clamp(1.5rem, 2vw, 2rem);
}

.specimen__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.1vw, 3.25rem);
  line-height: 1;
  color: var(--c-ink);
  margin-bottom: .5rem;
}

.specimen__latin {
  font-size: clamp(.85rem, .95vw, 1rem);
  color: var(--c-body);
  margin-bottom: .8rem;
}

.specimen__desc {
  font-size: .82rem;
  line-height: 1.5;
  color: var(--c-body);
  padding-bottom: clamp(1rem, 1.8vw, 1.6rem);
  border-bottom: 1px solid var(--c-line);
}

.specimen__meta {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 1rem;
  padding-top: clamp(.9rem, 1.3vw, 1.2rem);
}

.specimen__meta dt {
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: .2rem;
}

.specimen__meta dd {
  margin: 0;
  font-size: clamp(.85rem, .95vw, 1rem);
  color: var(--c-ink);
}

.index {
  align-self: stretch;
}

.index__list {
  max-height: clamp(360px, 32vw, 540px);
  overflow-y: auto;
  padding-right: .75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--c-line) transparent;
}

.index__list::-webkit-scrollbar {
  width: 4px;
}

.index__list::-webkit-scrollbar-thumb {
  background: var(--c-line);
  border-radius: 4px;
}

.index__btn {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: clamp(.7rem, 1vw, 1rem) .25rem;
  border-bottom: 1px solid var(--c-line);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.index__num {
  font-size: .78rem;
  color: var(--c-muted);
  padding-top: .12rem;
}

.index__name {
  display: block;
  font-weight: 600;
  font-size: clamp(.88rem, 1vw, 1.05rem);
  color: var(--c-ink);
  transition: color var(--dur) var(--ease);
}

.index__note {
  display: block;
  font-size: .74rem;
  color: var(--c-muted);
}

.index__btn:hover {
  background: rgba(184, 31, 61, .04);
}

.index__btn:hover .index__name,
.index__btn.is-active .index__name {
  color: var(--c-red);
}

.index__btn.is-active {
  border-bottom-color: var(--c-red);
} */

/* =========================================================
   A WISDM A DAY
   ========================================================= */
.ritual {
  padding: clamp(2rem, 4vw, 5rem) 0 clamp(3rem, 5vw, 6rem);
}

.ritual__grid {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
}

.ritual__visual {
  position: relative;
  text-align: center;
}

.ritual-img {
  display: none;
  width: 100%;
  max-width: 660px;
  margin: auto;
}

.ritual-img.is-active {
  display: block;
}

.benefits {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(.5rem, 1vw, 1rem);
}

.benefits li {
  display: grid;
  justify-items: center;
}

.benefits__btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: grid;
  justify-items: center;
  gap: .35rem;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), filter 0.3s var(--ease);
  opacity: 0.55;
  filter: grayscale(80%);
}

.benefits__btn:hover,
.benefits__btn.is-active {
  opacity: 1;
  filter: none;
}

.benefits__btn.is-active {
  transform: scale(1.08);
}

.benefits img {
  width: clamp(34px, 3vw, 54px);
  height: auto;
  pointer-events: none;
}

.benefits span {
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  pointer-events: none;
}

.benefits__heart {
  color: var(--c-red);
}

.benefits__gut {
  color: var(--c-olive);
}

.benefits__skin {
  color: var(--c-orange);
}

.benefits__mind {
  color: var(--c-blue);
}

/* Tab Theme configurations */
.ritual[data-active-tab="heart"] {
  --ritual-color: var(--c-red);
  --ritual-hover-bg: rgba(184, 31, 61, 0.06);
}

.ritual[data-active-tab="gut"] {
  --ritual-color: var(--c-olive);
  --ritual-hover-bg: rgba(153, 167, 58, 0.06);
}

.ritual[data-active-tab="skin"] {
  --ritual-color: var(--c-orange);
  --ritual-hover-bg: rgba(224, 122, 44, 0.06);
}

.ritual[data-active-tab="mind"] {
  --ritual-color: var(--c-blue);
  --ritual-hover-bg: rgba(47, 76, 134, 0.06);
}

.ritual__body .section-title {
  margin-bottom: clamp(.75rem, 1.2vw, 1.25rem);
}

.ritual__body .link-arrow {
  margin-top: clamp(1rem, 1.6vw, 1.75rem);
}

.timeline {
  counter-reset: none;
  margin-top: clamp(1.5rem, 2.5vw, 2.75rem);
  border-top: 1px solid var(--c-line);
  transition: opacity 0.22s var(--ease);
  display: none;
}

.timeline.is-active {
  display: block;
}

.timeline.is-swapping {
  opacity: 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: minmax(110px, 20%) 1fr;
  gap: clamp(1rem, 2vw, 2.5rem);
  align-items: start;
  padding: clamp(1rem, 1.6vw, 1.7rem) 0;
  border-bottom: 1px solid var(--c-line);
  position: relative;
  transition: background-color var(--dur) var(--ease);
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(20% - .75rem);
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--ritual-color, var(--c-olive));
  opacity: .45;
  transition: background-color var(--dur) var(--ease);
}

.timeline__item:hover {
  background: var(--ritual-hover-bg, rgba(153, 167, 58, .06));
}

.timeline__time {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 1.9vw, 2.25rem);
  color: var(--c-ink);
  line-height: 1;
}

.timeline__text h3 {
  font-size: clamp(.82rem, .9vw, 1.05rem);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ritual-color, var(--c-olive));
  margin-bottom: .4rem;
  transition: color var(--dur) var(--ease);
}

.timeline__text p {
  font-size: .78rem;
  line-height: 1.5;
  color: var(--c-body);
  max-width: 40rem;
}


/* =========================================================
   STATS
   ========================================================= */
.stats {
  position: relative;
  padding: clamp(3rem, 5.5vw, 6.5rem) 0 clamp(3.5rem, 6vw, 7rem);
  background: url("../assets/images/water-texture.jpg") center / cover no-repeat, var(--c-cream);
  text-align: center;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .35);
}

.stats>.shell {
  position: relative;
}

.stats__title {
  margin-bottom: .85rem;
}

.stats__sub {
  font-size: var(--fs-lead);
  color: var(--c-body);
  margin-bottom: clamp(1.75rem, 3vw, 3rem);
}

.stats__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 1080px;
  margin-inline: auto;
}

.stats__list li {
  position: relative;
  padding-inline: clamp(.5rem, 1.5vw, 1.5rem);
}

.stats__list li+li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: rgba(0, 0, 0, .16);
}

.stats__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 6.25vw, 7.5rem);
  line-height: 1;
  color: var(--c-red);
  margin-bottom: clamp(.75rem, 1.5vw, 1.5rem);
}

.stats__note {
  font-size: .82rem;
  line-height: 1.45;
  color: var(--c-body);
  max-width: 15rem;
  margin-inline: auto;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  padding: clamp(3rem, 5.5vw, 6.5rem) 0 clamp(1rem, 2vw, 2rem);
}

.reviews__head {
  text-align: center;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.reviews__head .section-title {
  margin-bottom: .75rem;
}

.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: var(--fs-lead);
  color: var(--c-ink);
}

.stars {
  color: var(--c-red);
  letter-spacing: .05em;
}

.carousel--reviews .carousel__track {
  padding-top: 0;
  padding-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.review {
  flex: 0 0 clamp(280px, 30.5vw, 470px);
  scroll-snap-align: start;
}

.review>article {
  height: 100%;
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.review:hover>article {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.review__media img {
  width: 100%;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
  object-position: center 22%;
}

.review__body {
  display: grid;
  grid-template-columns: minmax(96px, 32%) 1fr;
  gap: clamp(.75rem, 1.4vw, 1.5rem);
  padding: clamp(1rem, 1.6vw, 1.75rem) clamp(1rem, 1.6vw, 1.75rem) clamp(1.5rem, 2.2vw, 2.25rem);
}

.review__who .stars {
  font-size: clamp(.85rem, 1.05vw, 1.15rem);
  margin-bottom: .5rem;
}

.review__name {
  font-size: clamp(.9rem, 1.05vw, 1.15rem);
  line-height: 1.15;
  color: var(--c-ink);
}

.review__date {
  font-size: .68rem;
  color: var(--c-muted);
  margin-top: .3rem;
}

.review__quote {
  margin: 0;
}

.review__quote h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(.98rem, 1.2vw, 1.32rem);
  line-height: 1.2;
  color: var(--c-ink);
  margin-bottom: .6rem;
}

.review__quote p {
  font-size: .78rem;
  line-height: 1.5;
  color: var(--c-body);
}

.review__quote p+p {
  margin-top: .9rem;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: var(--c-cream);
  padding: clamp(3rem, 5.5vw, 6.5rem) 0 clamp(3.5rem, 6vw, 7rem);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 62%);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.faq__copy .section-title {
  margin-bottom: clamp(1rem, 1.6vw, 1.75rem);
}

.faq__list {
  border-top: 1px solid var(--c-red);
}

.faq__item {
  border-bottom: 1px solid var(--c-red);
}

.faq__item h3 {
  margin: 0;
  font-weight: 400;
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 3rem);
  width: 100%;
  padding: clamp(1.1rem, 1.8vw, 1.9rem) clamp(0rem, .5vw, .5rem);
  text-align: left;
  font-size: clamp(.95rem, 1.15vw, 1.35rem);
  line-height: 1.35;
  color: var(--c-ink);
  transition: color var(--dur) var(--ease);
}

.faq__q:hover {
  color: var(--c-red);
}

.faq__icon {
  flex: none;
  position: relative;
  width: 26px;
  height: 26px;
  color: var(--c-red);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity .2s linear, transform var(--dur) var(--ease);
}

.faq__icon::before {
  width: 16px;
  height: 1.5px;
}

.faq__icon::after {
  width: 1.5px;
  height: 16px;
}

.faq__q[aria-expanded="true"] .faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__q[aria-expanded="true"] .faq__icon::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;

  background: url("https://wisdm.florapreview.com/wp-content/themes/wisdm/assets/images/logo-icon.png") no-repeat center;
  background-size: contain;
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease);
}

.faq__a.is-open {
  grid-template-rows: 1fr;
}

.faq__a-inner {
  overflow: hidden;
}

.faq__a-inner p {
  font-size: .82rem;
  line-height: 1.6;
  color: var(--c-body);
  max-width: 46rem;
  padding: 0 0 clamp(1.25rem, 2vw, 2rem);
}

/* =========================================================
   FIND US
   ========================================================= */
.findus {
  padding: clamp(3rem, 5.5vw, 6.5rem) 0 clamp(3.5rem, 6vw, 7rem);
}

.findus__grid {
  display: grid;
  grid-template-columns: minmax(0, 34%) minmax(0, 66%);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.findus__copy .section-title {
  margin-bottom: clamp(.75rem, 1.2vw, 1.25rem);
}

.findus__copy .btn {
  margin-top: clamp(1.25rem, 2vw, 2rem);
}

.partners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 3rem);
  align-items: center;
  justify-items: center;
}

.partner {
  display: grid;
  justify-items: center;
  gap: clamp(.9rem, 1.5vw, 1.5rem);
  width: 100%;
  padding: clamp(1rem, 1.8vw, 1.75rem);
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease);
}

.partner:hover {
  transform: translateY(-4px);
}

.partner img {
  width: clamp(120px, 13vw, 200px);
}

.partner--blinkit {
  background: var(--c-yellow);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .82);
}

.partner--zepto {
  background: #3C006A;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .82);
}

.partner--swiggy {
  background: #0050FF;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .82);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  background: var(--c-red);
  color: #fff;
  padding: calc(var(--wave-h) + clamp(3rem, 5vw, 6rem)) 0 clamp(1.5rem, 2.5vw, 2.5rem);
  overflow: hidden;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.newsletter__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 3.15rem);
  line-height: 1.08;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.75rem);
}

.newsletter__form {
  display: flex;
  align-items: center;
  gap: .5rem;
  max-width: 26rem;
  padding: .35rem .5rem .35rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius-pill);
  transition: border-color var(--dur) var(--ease);
}

.newsletter__form:focus-within {
  border-color: #fff;
}

.newsletter__form input {
  flex: 1;
  min-width: 0;
  padding: .75rem 0;
  background: none;
  border: 0;
  color: #fff;
  font-size: clamp(.9rem, 1vw, 1.15rem);
}

.newsletter__form input::placeholder {
  color: rgba(255, 255, 255, .8);
}

.newsletter__form input:focus {
  outline: none;
}

.newsletter__form button {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #fff;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.newsletter__form button:hover {
  background: #fff;
  color: var(--c-red);
}

.newsletter__msg {
  min-height: 1.4em;
  margin-top: .7rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .92);
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.site-footer__links h3 {
  font-size: clamp(.82rem, .95vw, 1.12rem);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: clamp(1rem, 1.6vw, 1.6rem);
}

.site-footer__links li+li {
  margin-top: clamp(.5rem, .85vw, .85rem);
}

.site-footer__links a {
  font-size: clamp(.78rem, .88vw, .95rem);
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .92);
  transition: opacity var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.site-footer__links a:hover {
  opacity: .7;
  padding-left: 4px;
}

.site-footer__mark {
  margin: clamp(2.5rem, 5vw, 6rem) 0 clamp(1.5rem, 3vw, 3.5rem);
}

.site-footer__mark img {
  width: 100%;
  /* max-width: 1180px; */
}

.site-footer__legal {
  text-align: center;
  font-size: .72rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .88);
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  z-index: 80;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.to-top:hover {
  background: var(--c-red-dark);
  transform: translateY(-3px);
}

.to-top[hidden] {
  display: none;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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


/* ---------- Page banner + product collage ---------- */
.banner { padding: clamp(2.5rem, 5.2vw, 6.5rem) 0 clamp(2.5rem, 5vw, 6rem); }

.banner__head {
  /* max-width: 62rem; */
  margin-bottom: clamp(2rem, 4vw, 4.5rem);
}
.banner__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.9vw, 7rem);
  line-height: .98;
  letter-spacing: -.015em;
  color: var(--c-red);
  margin-bottom: clamp(1rem, 1.7vw, 1.9rem);
}
.banner__lead {
  max-width: 46rem;
  font-size: clamp(1rem, 1.35vw, 1.6rem);
  line-height: 1.5;
  color: var(--c-body);
}

/* product collage */
.collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(.5rem, 1.15vw, 1.4rem);
  aspect-ratio: 12 / 7;
}
.collage__item {
  grid-column: span 3;
  overflow: hidden;
  border-radius: var(--radius);
}
.collage__item--lead {
  grid-column: span 6;
  grid-row: span 2;
  border-radius: var(--radius-lg);
}
.collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.collage__item:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .collage { aspect-ratio: 12 / 9; }
}
@media (max-width: 700px) {
  /* stack the collage: lead across the top, products two-up beneath */
  .collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    aspect-ratio: auto;
  }
  .collage__item { grid-column: span 1; aspect-ratio: 3 / 4; }
  .collage__item--lead { grid-column: span 2; grid-row: auto; aspect-ratio: 4 / 3; }
}


.catalogue-banner {
  margin: 50px 60px 90px;
  border: 1px solid var(--maroon);
  border-radius: 40px;
  padding: 22px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catalogue-banner .label {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--maroon);
}

.catalogue-banner a {
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ---------- Outlined CTA bar ---------- */
.catalogue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 3rem);
  margin-top: clamp(1.75rem, 3.6vw, 4.35rem);
  padding: clamp(1rem, 1.9vw, 2.3rem) clamp(1.25rem, 3.7vw, 4.45rem);
  border: 1px solid var(--c-red);
  border-radius: var(--radius-pill);
  color: var(--c-red);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.catalogue__label {
  font-size: clamp(1rem, 2.21vw, 2.65rem);
  line-height: 1.2;
}

.catalogue__cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: clamp(.82rem, 1.54vw, 1.85rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: gap var(--dur) var(--ease);
}

.catalogue:hover {
  background: var(--c-red);
  color: #fff;
}

.catalogue:hover .catalogue__cta {
  gap: .8rem;
}

@media (max-width: 1100px) {
  .catalogue__label {
    font-size: clamp(1rem, 2.6vw, 1.6rem);
  }

  .catalogue__cta {
    font-size: clamp(.78rem, 1.5vw, 1rem);
  }
}

@media (max-width: 760px) {
  .catalogue {
    align-items: center;
    gap: 1rem;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
  }
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1100px) {
  .inside__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inside__copy {
    grid-column: 1 / -1;
  }

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

  .ritual__body {
    order: 1;
  }

  .ritual__visual {
    order: 2;
  }

  .ritual__visual>img {
    max-width: 460px;
  }

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

  .partners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: 0;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #000;
    padding: 0;
  }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 340px);
    background: #fff;
    padding: 6rem 2rem 2rem;
    box-shadow: -12px 0 40px rgba(0, 0, 0, .14);
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    z-index: 95;
    overflow-y: auto;
  }

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

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nav__list a {
    font-size: 1.15rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  .product.is-active>article {
    transform: none;
    box-shadow: none;
    border: none;
  }

  .hero__slide {
    grid-template-columns: 1fr;
    min-height: 0;

  }

  .hero__media img {
    aspect-ratio: 4 / 3.1;
    height: auto;
  }

  .hero__panel {
    padding: clamp(2rem, 6vw, 3rem) var(--gutter) clamp(2.5rem, 7vw, 3.5rem);
  }

  .hero__content {
    max-width: none;
  }

  .hero__text br {
    display: none;
  }

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

  .story__media img {
    aspect-ratio: 4 / 3.4;
  }

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

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

  .inside__copy {
    order: 1;
  }

  .index {
    order: 2;
  }

  .specimens {
    order: 3;
  }

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

  .stats__list {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .stats__list li+li::before {
    display: none;
  }

  .stats__list li+li {
    border-top: 1px solid rgba(0, 0, 0, .14);
    padding-top: 2rem;
  }

  .site-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */
@media (max-width: 600px) {
  :root {
    --wave-h: 12px;
  }

  .scene {
    width: 100%;
    margin: 0;
  }

  .hero__title br {
    display: none;
  }

  .facts__row {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .timeline__item::before {
    display: none;
  }

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

  .review__who {
    display: flex;
    align-items: baseline;
    gap: .75rem;
    flex-wrap: wrap;
  }

  .review__who .stars {
    margin-bottom: 0;
  }

  .review__name br {
    display: none;
  }

  .partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .partner {
    max-width: 320px;
    margin-inline: auto;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .specimen__meta {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .carousel__track {
    scroll-padding-inline: var(--gutter);
  }

  .product {
    flex: 0 0 min(78vw, 320px);
  }

  .review {
    flex: 0 0 min(84vw, 360px);
  }
}

/* ---------- Motion preferences ---------- */
@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;
  }
}

/* =========================================================
   wisdm — About us
   Extends css/style.css (tokens, header, footer, facts, buttons)
   ========================================================= */

/* =========================================================
   MODULE 3 — BRAND STORY
   ========================================================= */
.brand-story { padding: clamp(2rem, 4vw, 4.5rem) 0 clamp(3rem, 5.5vw, 6.5rem); }

/* copy first, image second — mirrors the homepage story block */
.story__grid--flip { grid-template-columns: minmax(0, 58%) minmax(0, 42%); }
.story__grid--flip .story__body { padding-top: 0; }
.story__grid--flip .story__media img { aspect-ratio: 3 / 4.1; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 2.7rem);
  margin-top: clamp(2.5rem, 5vw, 6rem);
  border-top: 1px solid var(--c-red);
  padding-top: clamp(1.5rem, 3vw, 3.5rem);
}
.principles__num {
  font-size: clamp(.75rem, .85vw, .95rem);
  letter-spacing: .18em;
  color: var(--c-red);
  margin-bottom: clamp(.6rem, 1vw, 1.1rem);
}
.principles h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.2vw, 2.65rem);
  line-height: 1.05;
  color: var(--c-ink);
  margin-bottom: clamp(.5rem, .85vw, 1rem);
}
.principles li > p:last-child {
  font-size: clamp(.85rem, .98vw, 1.1rem);
  line-height: 1.55;
  color: var(--c-body);
  max-width: 26rem;
}

/* =========================================================
   MODULE 4 — ABOUT THE FOUNDER
   ========================================================= */
.founder {
  background: var(--c-cream);
  padding: clamp(3rem, 5.5vw, 6.5rem) 0 clamp(3.5rem, 6vw, 7rem);
}
.founder__grid {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 62%);
  gap: clamp(2rem, 4.5vw, 5.5rem);
  align-items: center;
}

/* portrait placeholder — swap the inner block for a real photo */
.founder__portrait { margin: 0; }
.founder__slot {
  position: relative;
  display: grid;
  place-content: center;
  gap: clamp(.75rem, 1.2vw, 1.25rem);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 50% 12%, #ffffff 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(160deg, #f7f5f2 0%, #e7ded4 58%, var(--c-tan) 165%);
  overflow: hidden;
}
.founder__slot::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -16%;
  width: 62%;
  aspect-ratio: 340 / 470;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 340 470'%3E%3Cg fill='%23d2a478' fill-opacity='.45'%3E%3Cpath d='M86,14 C158,4 186,96 172,214 C162,300 130,388 100,436 C70,388 30,300 22,214 C12,96 30,22 86,14 Z'/%3E%3Cpath d='M248,26 C312,30 330,124 316,236 C306,320 276,404 250,448 C224,404 196,320 188,236 C176,124 194,26 248,26 Z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
  pointer-events: none;
}
.founder__watermark {
  position: relative;
  width: clamp(90px, 9vw, 138px);
  margin-inline: auto;
  opacity: .32;
}
.founder__slot-label {
  position: relative;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--c-muted);
}

.founder__body .section-title { margin-bottom: clamp(1.25rem, 2.1vw, 2.4rem); }

.founder__quote {
  margin: 0 0 clamp(1.25rem, 2.1vw, 2.4rem);
  padding-left: clamp(1rem, 1.6vw, 1.75rem);
  border-left: 2px solid var(--c-red);
}
.founder__quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.85vw, 2.2rem);
  line-height: 1.25;
  color: var(--c-ink);
}

.founder__sign {
  margin-top: clamp(1.5rem, 2.6vw, 3rem);
  padding-top: clamp(1rem, 1.6vw, 1.75rem);
  border-top: 1px solid var(--c-line);
}
.founder__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.5vw, 1.8rem);
  line-height: 1.15;
  color: var(--c-ink);
}
.founder__role {
  display: block;
  margin-top: .2rem;
  font-size: clamp(.78rem, .88vw, .98rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-red);
}

/* =========================================================
   MODULE 5 — CERTIFICATES
   ========================================================= */
.certs { padding: clamp(3rem, 5.5vw, 6.5rem) 0 clamp(3.5rem, 6vw, 7rem); }

.certs__head {
  max-width: 46rem;
  margin: 0 auto clamp(2rem, 4vw, 4.5rem);
  text-align: center;
}
.certs__head .eyebrow { margin-bottom: .75rem; }
.certs__head .section-title { margin-bottom: clamp(.75rem, 1.2vw, 1.25rem); }
.certs__sub {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--c-body);
}

.certs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.9vw, 2.3rem);
}
.cert {
  padding: clamp(1.25rem, 2.1vw, 2.5rem);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.cert:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.cert h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.55vw, 1.85rem);
  line-height: 1.1;
  color: var(--c-ink);
  margin-bottom: .5rem;
}
.cert p {
  font-size: clamp(.8rem, .92vw, 1rem);
  line-height: 1.5;
  color: var(--c-body);
}

.cert__icon {
  display: block;
  width: clamp(38px, 3.1vw, 52px);
  aspect-ratio: 1 / 1;
  margin-bottom: clamp(.9rem, 1.5vw, 1.6rem);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.cert__icon--shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b81f3d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5 20 5.5v6c0 5-3.6 8.6-8 11-4.4-2.4-8-6-8-11v-6z'/%3E%3Cpath d='M8.6 12.2l2.4 2.4 4.4-4.9'/%3E%3C/svg%3E");
}
.cert__icon--rosette {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b81f3d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='9' r='6'/%3E%3Cpath d='M9.2 14.2 7.5 21.5 12 19.4l4.5 2.1-1.7-7.3'/%3E%3Cpath d='M10.1 9.1l1.5 1.5 2.8-3'/%3E%3C/svg%3E");
}
.cert__icon--clipboard {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b81f3d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 4H7a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-2'/%3E%3Crect x='9' y='2.5' width='6' height='3.5' rx='1'/%3E%3Cpath d='M9 13l2 2 4-4.5'/%3E%3C/svg%3E");
}
.cert__icon--veg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.2' y='3.2' width='17.6' height='17.6' rx='2.4' stroke='%23178a3c' stroke-width='1.6'/%3E%3Ccircle cx='12' cy='12' r='4.6' fill='%23178a3c'/%3E%3C/svg%3E");
}
.cert__icon--drop {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b81f3d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3s-6.5 7.4-6.5 11.4a6.5 6.5 0 0 0 13 0C18.5 10.4 12 3 12 3z'/%3E%3Cpath d='M4.5 20 20 4.5'/%3E%3C/svg%3E");
}
.cert__icon--flask {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b81f3d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 2.8h6'/%3E%3Cpath d='M10 2.8v6.4l-4.7 8.4A2 2 0 0 0 7 20.6h10a2 2 0 0 0 1.7-3L14 9.2V2.8'/%3E%3Cpath d='M7.4 15.4h9.2'/%3E%3C/svg%3E");
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .story__grid--flip { grid-template-columns: 1fr; }
  .story__grid--flip .story__media { order: -1; }
  .story__grid--flip .story__media img { aspect-ratio: 4 / 3.2; }

  .founder__grid { grid-template-columns: minmax(0, 42%) minmax(0, 58%); gap: clamp(1.5rem, 3.5vw, 3rem); }

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

@media (max-width: 900px) {
  .principles { grid-template-columns: 1fr; gap: 0; }
  .principles li { padding: clamp(1.1rem, 2vw, 1.6rem) 0; border-bottom: 1px solid var(--c-line); }
  .principles li:last-child { border-bottom: 0; padding-bottom: 0; }
  .principles__num { margin-bottom: .35rem; }

  .founder__grid { grid-template-columns: 1fr; }
  .founder__portrait { max-width: 380px; }
}

@media (max-width: 700px) {
  .certs__grid { grid-template-columns: 1fr; }
  .certs__head { text-align: left; }
}


/* =========================================================
   wisdm — Product page
   Extends css/style.css (tokens, header, footer, FAQ, buttons)
   ========================================================= */

/* =========================================================
   PRODUCT — gallery + info
   ========================================================= */
.pdp {
  padding: clamp(1.75rem, 3.9vw, 4.7rem) 0 clamp(2.5rem, 5vw, 6rem);
}

.pdp__grid {
  display: grid;
  grid-template-columns: 1.28fr 1fr;
  gap: clamp(1.75rem, 5.4vw, 6.5rem);
  align-items: start;
}

/* ---------- gallery ---------- */
.gallery__stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-card);
}

.gallery__stage img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity .3s var(--ease);
}

.gallery.is-swapping .gallery__stage img {
  opacity: .35;
}

.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(34px, 3vw, 46px);
  height: clamp(34px, 3vw, 46px);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.gallery__arrow:hover {
  opacity: .75;
}

.gallery__arrow--prev {
  left: clamp(.35rem, 1vw, 1rem);
}

.gallery__arrow--next {
  right: clamp(.35rem, 1vw, 1rem);
}

.gallery__arrow--prev:hover {
  transform: translate(-3px, -50%);
}

.gallery__arrow--next:hover {
  transform: translate(3px, -50%);
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(.5rem, 10px, 1.6rem);
  margin-top: clamp(.75rem, 1.8vw, 2.2rem);
}

.gallery__thumb {
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  outline-offset: 2px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.gallery__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity var(--dur) var(--ease);
}

.gallery__thumb:hover {
  transform: translateY(-3px);
}

.gallery__thumb:hover img {
  opacity: .85;
}

.gallery__thumb.is-active {
  box-shadow: 0 0 0 2px var(--c-red);
}

/* ---------- info column ---------- */
.pdp__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem clamp(1rem, 1.6vw, 1.9rem);
  font-size: clamp(.82rem, 1.34vw, 1.6rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: clamp(.6rem, 1.1vw, 1.35rem);
}

.pdp__tags span {
  position: relative;
}

.pdp__tags span+span::before {
  content: "\00b7";
  position: absolute;
  left: clamp(-.9rem, -.8vw, -.55rem);
}

.pdp__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.87vw, 5.85rem);
  line-height: 1;
  letter-spacing: -.015em;
  color: var(--c-ink);
  margin-bottom: clamp(.75rem, 1.35vw, 1.6rem);
}

.pdp__rating {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: clamp(1rem, 2vw, 2.4rem);
}

.pdp__count {
  font-size: clamp(.95rem, 1.52vw, 1.82rem);
  color: var(--c-muted);
}

/* half-star rating built from two stacked rows */
.rating {
  position: relative;
  display: inline-block;
  font-size: clamp(1rem, 1.62vw, 1.95rem);
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
}

.rating__base {
  color: var(--c-line);
}

.rating__fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--c-red);
  width: 100%;
}

/* fill width = rating / 5 */
.rating__fill[data-rating="3"] {
  width: 60%;
}

.rating__fill[data-rating="3.5"] {
  width: 70%;
}

.rating__fill[data-rating="4"] {
  width: 80%;
}

.rating__fill[data-rating="4.5"] {
  width: 90%;
}

.rating__fill[data-rating="5"] {
  width: 100%;
}

.pdp__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(1.1rem, 2.2vw, 2.65rem);
}

.pdp__amount {
  font-weight: 600;
  font-size: clamp(2rem, 3.35vw, 4rem);
  line-height: 1;
  color: var(--c-ink);
}

.pdp__size {
  text-align: right;
  font-size: clamp(.9rem, 1.35vw, 1.62rem);
  line-height: 1.25;
  color: var(--c-ink);
}

.pdp__size span {
  display: block;
  font-size: clamp(.78rem, 1.12vw, 1.35rem);
  color: var(--c-muted);
}

.pdp__desc {
  font-size: clamp(.98rem, 18px, 1.82rem);
  line-height: 1.4;
  color: var(--c-body);
  margin-bottom: clamp(1.1rem, 2.2vw, 2.65rem);
}

.pdp__order {
  display: flex;
  width: 300px;
  margin-top: clamp(1.25rem, 2.7vw, 3.25rem);
  padding: clamp(.85rem, 15px, 1.6rem) 2rem;
  font-size: clamp(1rem, 20px, 2.07rem);
  letter-spacing: .04em;
}

.pdp__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2.4rem);
  margin-top: clamp(1.5rem, 3.1vw, 3.75rem);
}

.pdp__facts dt {
  font-weight: 600;
  font-size: clamp(1.35rem, 1.9vw, 2.28rem);
  line-height: 1.1;
  color: var(--c-ink);
  margin-bottom: 15px;
}

.pdp__facts dd {
  margin: 0;
  font-size: clamp(.88rem, 17px, 1.52rem);
  line-height: 1.2;
  color: var(--c-ink);
}

.squiggle {
  display: block;
  width: 80%;
  height: clamp(10px, .84vw, 16px);
  margin-top: clamp(1.25rem, 2.4vw, 2.9rem);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 16' preserveAspectRatio='none'%3E%3Cpath d='M0,8 Q7,1 14,8 T28,8 T42,8 T56,8' fill='none' stroke='%23b81f3d' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: clamp(34px, 2.9vw, 56px) 100%;
}

/* =========================================================
   WHAT IS INSIDE THIS BLEND
   ========================================================= */
.blend {
  padding: clamp(2.5rem, 5vw, 6rem) 0 clamp(3rem, 5.5vw, 6.5rem);
}

.blend__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 34%);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4.2vw, 5rem);
}

.blend__intro p {
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.blend__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 2.7rem);
}

/* ingredient specimen card — image fills the whole card */
.pcard {
  position: relative;
  aspect-ratio: 484 / 622;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #eceae5 0%, #d9e6d7 45%, #cfe0ce 100%);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

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

.pcard>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pcard__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 2.15vw, 2.6rem);
}

.pcard__flags {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: clamp(.6rem, .63vw, .75rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-body);
}

.pcard__body {
  margin-top: auto;
}

.pcard__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.93vw, 3.52rem);
  line-height: 1;
  color: var(--c-ink);
  margin-bottom: clamp(.4rem, .78vw, .95rem);
}

.pcard__latin {
  font-style: italic;
  font-size: clamp(.78rem, .9vw, 1.08rem);
  color: var(--c-ink);
  margin-bottom: clamp(.4rem, .78vw, .95rem);
}

.pcard__desc {
  font-size: clamp(.72rem, .79vw, .95rem);
  line-height: 1.4;
  color: var(--c-body);
  padding-bottom: clamp(.75rem, 1.35vw, 1.6rem);
  border-bottom: 1px solid rgba(0, 0, 0, .18);
}

.pcard__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  gap: 1rem;
  padding-top: clamp(.6rem, 1vw, 1.2rem);
}

.pcard__meta dt {
  font-size: clamp(.6rem, .68vw, .82rem);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: .15rem;
}

.pcard__meta dd {
  margin: 0;
  font-size: clamp(.78rem, .9vw, 1.08rem);
  color: var(--c-ink);
}

/* =========================================================
   FOOTER — here the wave is carved out of the cream FAQ
   section above it rather than out of white
   ========================================================= */
.site-footer--on-cream .wave--top {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q17.5,0 35,10 T70,10 T105,10 T140,10 V-1 H0 Z' fill='%23f0efed'/%3E%3C/svg%3E");
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .gallery {
    max-width: 620px;
  }

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

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

  .pcard__name {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  }

  .pcard__desc {
    font-size: clamp(.75rem, 1.1vw, .9rem);
  }
}

@media (max-width: 760px) {
  .pdp__grid {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 3rem);
  }

  .gallery {
    max-width: 100%;
  }

  .pdp__info {
    order: 1;
  }

  .gallery {
    order: 2;
  }

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

  .pcard {
    max-width: 100%;
    margin-inline: auto;
    aspect-ratio: 484 / 600;
  }
}

@media (max-width: 600px) {
  .gallery__thumbs {
    gap: .4rem;
  }

  .pdp__facts {
    gap: .75rem;
  }

  .pdp__facts dd br {
    display: none;
  }

  .squiggle {
    width: 100%;
  }
}

/* =========================================================
   wisdm — Shop / product landing page
   Extends css/style.css (tokens, banner, collage, product card,
   partners, catalogue bar, header, footer)
   ========================================================= */

/* =========================================================
   MODULE 3 — PRODUCT GRID
   ========================================================= */
.shop-grid { padding: clamp(2rem, 4vw, 4.5rem) 0 clamp(3rem, 5.5vw, 6.5rem); }

.shop-grid__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: clamp(1.75rem, 3.2vw, 3.5rem);
  padding-bottom: clamp(1rem, 1.6vw, 1.75rem);
  border-bottom: 1px solid var(--c-line);
}
.shop-grid__count {
  font-size: var(--fs-eyebrow);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* the homepage product card, laid out as a grid instead of a carousel */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 2rem);
  align-items: stretch;
}
.product-grid .product {
  flex: initial;
  scroll-snap-align: none;
}
/* the carousel lifts the centred card; in a grid only hover should lift */
.product-grid .product.is-active > article {
  transform: none;
  box-shadow: none;
  border-color: var(--c-line);
}
.product-grid .product:hover > article,
.product-grid .product:focus-within > article {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

/* Longer tag lists ("Star Anise · Ashwagandha · Green Tea") wrap in a narrow
   grid cell and push that card's name out of line with its neighbours, so
   tighten the row and reserve height for a second line. */
.product-grid .product__tags {
  gap: .3rem .85rem;
  font-size: .64rem;
  min-height: 2.5em;
  align-content: flex-start;
}
.product-grid .product__tags span + span::before { left: -.5rem; }

/* two actions per card */
.product__actions {
  display: grid;
  gap: .5rem;
}
.btn--card {
  width: 100%;
  padding: .62rem 1rem;
  font-size: .82rem;
  letter-spacing: .04em;
}
.btn--card:hover { transform: none; }

/* outline button picks up the product colourway */
.product--olive  .btn--outline { border-color: var(--c-olive);  color: var(--c-olive); }
.product--olive  .btn--outline:hover { background: var(--c-olive);  color: #fff; }
.product--orange .btn--outline { border-color: var(--c-orange); color: var(--c-orange); }
.product--orange .btn--outline:hover { background: var(--c-orange); color: #fff; }
.product--blue   .btn--outline { border-color: var(--c-blue);   color: var(--c-blue); }
.product--blue   .btn--outline:hover { background: var(--c-blue);   color: #fff; }

/* =========================================================
   QUICK COMMERCE PICKER
   ========================================================= */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: var(--gutter);
}
.order-modal[hidden] { display: none; }

body.modal-open { overflow: hidden; }

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 43, 43, .55);
  animation: order-fade .25s var(--ease);
}

.order-modal__panel {
  position: relative;
  width: min(100%, 720px);
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(1.5rem, 3vw, 3.25rem);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  animation: order-rise .3s var(--ease);
}

@keyframes order-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes order-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.order-modal__close {
  position: absolute;
  top: clamp(.6rem, 1.1vw, 1.1rem);
  right: clamp(.6rem, 1.1vw, 1.1rem);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--c-ink);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.order-modal__close:hover { background: var(--c-red); color: #fff; }

.order-modal__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  line-height: 1.05;
  color: var(--c-ink);
  margin-bottom: .6rem;
}
.order-modal__sub {
  max-width: 34rem;
  margin: 0 auto clamp(1.5rem, 2.6vw, 2.5rem);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--c-body);
}

.order-modal__partners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.75rem, 1.6vw, 1.75rem);
  align-items: center;
  justify-items: center;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .product-grid .product { max-width: 380px; margin-inline: auto; width: 100%; }

  .shop-grid__head { align-items: flex-start; }

  .order-modal__partners { grid-template-columns: 1fr; gap: 1.5rem; }
  .order-modal__panel { text-align: left; }
  .order-modal__sub { margin-inline: 0; }
}


/* =========================================================
   MERGED FROM main.css  (sections/selectors not present in this live.css)
   ========================================================= */


/* product card */
.product {
  flex: 0 0 clamp(240px, 23vw, 348px);
  scroll-snap-align: start;
}

.product__name a { transition: color var(--dur) var(--ease); }

.product__name a:hover { color: var(--c-red); }

.ritual__visual > img { width: 100%; max-width: 660px; margin-inline: auto; }

/* #########################################################
   STORE LOCATOR
   ######################################################### */

/* the banner here carries a stat row instead of the collage */
.banner--tight { padding-bottom: clamp(1.5rem, 3vw, 3rem); }

.banner--tight .banner__head { margin-bottom: clamp(1.75rem, 3.2vw, 3.25rem); }

/* =========================================================
   COVERAGE STRIP
   ========================================================= */
.coverage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2.5rem);
  border-top: 1px solid var(--c-red);
  border-bottom: 1px solid var(--c-red);
  padding: clamp(1.1rem, 2vw, 2rem) 0;
}

.coverage li { position: relative; padding-inline: clamp(0rem, 1.5vw, 1.5rem); }

.coverage li + li::before {
  content: "";
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--c-line);
}

.coverage__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 3.6rem);
  line-height: 1;
  color: var(--c-red);
  margin-bottom: .35rem;
}

.coverage__label {
  font-size: var(--fs-eyebrow);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* =========================================================
   MODULE 2 — LOCATOR
   ========================================================= */
.locator { padding: clamp(2.5rem, 5vw, 5.5rem) 0 clamp(3rem, 5.5vw, 6.5rem); }

.locator__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 38%);
  gap: clamp(1rem, 3vw, 4rem);
  align-items: end;
  margin-bottom: clamp(1.5rem, 2.8vw, 2.75rem);
}

.locator__lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--c-body);
}

/* ---------- filter bar ---------- */
.filters {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.5fr) minmax(0, 1fr) auto;
  gap: clamp(.75rem, 1.4vw, 1.5rem);
  align-items: end;
  padding: clamp(1rem, 1.8vw, 1.9rem) clamp(1rem, 2vw, 2.25rem);
  background: var(--c-cream);
  border-radius: var(--radius-lg);
}

.filters__label {
  display: block;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: .45rem;
}

.filters__field input,
.filters__field select {
  width: 100%;
  padding: .78rem 1.1rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  font-size: var(--fs-body);
  color: var(--c-ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.filters__field input::placeholder { color: var(--c-muted); }

.filters__field input:focus,
.filters__field select:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(184, 31, 61, .12);
}

.filters__field input[type="search"]::-webkit-search-cancel-button { cursor: pointer; }

/* native select, restyled with our own chevron */
.filters__field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b81f3d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.05rem center;
  background-size: 14px 14px;
  cursor: pointer;
}

.filters__reset {
  padding: .78rem 1.9rem;
  white-space: nowrap;
}

.filters__reset:hover { transform: none; }

/* ---------- type chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .6rem;
  margin: clamp(1rem, 1.8vw, 1.75rem) 0 clamp(.75rem, 1.2vw, 1.25rem);
}

.chip {
  padding: .5rem 1.25rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--c-body);
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}

.chip:hover { border-color: var(--c-red); color: var(--c-red); }

.chip.is-active {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}

.locator__count {
  font-size: var(--fs-eyebrow);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding-bottom: clamp(1rem, 1.6vw, 1.6rem);
  margin-bottom: clamp(1.25rem, 2.2vw, 2.25rem);
  border-bottom: 1px solid var(--c-line);
}

/* ---------- store cards ---------- */
.stores {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 2rem);
  align-items: stretch;
}

.stores[hidden] { display: none; }

.store[hidden] { display: none; }

.store > article {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 2.1vw, 2.25rem);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

/* colour rail, keyed to the store type */
.store > article::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--c-red);
}

.store:hover > article,
.store:focus-within > article {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.store__type {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: .55rem;
}

.store__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 1.8vw, 2.1rem);
  line-height: 1.05;
  color: var(--c-ink);
  margin-bottom: .3rem;
}

.store__area {
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--c-muted);
}

.store__addr {
  font-style: normal;
  font-size: .85rem;
  line-height: 1.55;
  color: var(--c-body);
  margin: clamp(.9rem, 1.4vw, 1.35rem) 0;
  padding-bottom: clamp(.9rem, 1.4vw, 1.35rem);
  border-bottom: 1px solid var(--c-line);
}

.store__rows { margin-bottom: auto; }

.store__rows > div {
  display: grid;
  grid-template-columns: minmax(72px, 30%) 1fr;
  gap: .75rem;
  padding: .42rem 0;
}

.store__rows dt {
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding-top: .12rem;
}

.store__rows dd {
  margin: 0;
  font-size: .82rem;
  line-height: 1.4;
  color: var(--c-ink);
}

.store__rows a { transition: color var(--dur) var(--ease); }

.store__rows a:hover { color: var(--c-red); }

.store__dir { margin-top: clamp(1.1rem, 1.8vw, 1.6rem); align-self: flex-start; }

/* per-type colourways */
.store--olive  > article::before { background: var(--c-olive); }

.store--olive  .store__type { color: var(--c-olive); }

.store--olive  .store__dir:hover { color: var(--c-olive); }

.store--orange > article::before { background: var(--c-orange); }

.store--orange .store__type { color: var(--c-orange); }

.store--orange .store__dir:hover { color: var(--c-orange); }

.store--blue   > article::before { background: var(--c-blue); }

.store--blue   .store__type { color: var(--c-blue); }

.store--blue   .store__dir:hover { color: var(--c-blue); }

/* ---------- empty state ---------- */
.locator__empty {
  padding: clamp(2rem, 4vw, 4.5rem) clamp(1.25rem, 2.5vw, 3rem);
  border: 1px dashed var(--c-red);
  border-radius: var(--radius-lg);
  text-align: center;
}

.locator__empty[hidden] { display: none; }

.locator__empty h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2.6rem);
  line-height: 1.1;
  color: var(--c-red);
  margin-bottom: .6rem;
}

.locator__empty p {
  max-width: 34rem;
  margin: 0 auto;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--c-body);
}

.locator__empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: clamp(1.25rem, 2vw, 2rem);
}

/* ---------- quick commerce fallback ---------- */
.quick {
  display: grid;
  grid-template-columns: minmax(0, 34%) minmax(0, 66%);
  gap: clamp(1.5rem, 3.5vw, 4rem);
  align-items: center;
  margin-top: clamp(2.5rem, 5vw, 6rem);
  padding-top: clamp(2rem, 4vw, 4.5rem);
  border-top: 1px solid var(--c-line);
}

.quick__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 3rem);
  line-height: 1.06;
  color: var(--c-ink);
  margin-bottom: clamp(.6rem, 1vw, 1rem);
}

.quick__note {
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--c-body);
  max-width: 26rem;
}

/* #########################################################
   CONTACT US
   ######################################################### */

/* headline only — no stat strip under it, so it closes up tighter
   than the locator's .banner--tight */
.banner--slim { padding-bottom: clamp(.5rem, 1.5vw, 1.5rem); }

.banner--slim .banner__head { margin-bottom: 0; }

/* =========================================================
   MODULE 2 — CONTACT DETAILS + FORM
   ========================================================= */
.contact { padding: clamp(2.5rem, 5vw, 5.5rem) 0 clamp(3rem, 5.5vw, 6.5rem); }

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: clamp(2rem, 4.5vw, 5.5rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 4.5rem);
}

.contact__details .section-title { margin-bottom: clamp(.75rem, 1.2vw, 1.25rem); }

.contact__lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--c-body);
  max-width: 30rem;
}

/* ---------- detail cards ---------- */
.contact__cards {
  margin-top: clamp(1.75rem, 3vw, 3rem);
  border-top: 1px solid var(--c-red);
}

.contact-card {
  display: grid;
  grid-template-columns: clamp(34px, 3vw, 44px) 1fr;
  gap: clamp(.9rem, 1.5vw, 1.5rem);
  padding: clamp(1.15rem, 2vw, 2rem) 0;
  border-bottom: 1px solid var(--c-line);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.55vw, 1.85rem);
  line-height: 1.1;
  color: var(--c-ink);
  margin-bottom: .55rem;
}

.contact-card address {
  font-style: normal;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--c-body);
  margin-bottom: .9rem;
}

.contact-card__line {
  font-size: clamp(.88rem, 1vw, 1.05rem);
  color: var(--c-ink);
  margin-bottom: .35rem;
}

.contact-card__line a { transition: color var(--dur) var(--ease); }

.contact-card__line a:hover { color: var(--c-red); }

.contact-card__line span {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.contact-card__note {
  font-size: .78rem;
  line-height: 1.5;
  color: var(--c-muted);
  margin-top: .6rem;
}

.contact-card .link-arrow { font-size: .72rem; }

/* icons — same line-drawn family as the certificate marks */
.contact-card__icon {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-top: .2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.contact-card__icon--pin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b81f3d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21.5s7-6.1 7-11.2a7 7 0 1 0-14 0c0 5.1 7 11.2 7 11.2z'/%3E%3Ccircle cx='12' cy='10' r='2.6'/%3E%3C/svg%3E");
}

.contact-card__icon--phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b81f3d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.4 3.2h3l1.5 3.8-2 1.3a12 12 0 0 0 6.8 6.8l1.3-2 3.8 1.5v3a2 2 0 0 1-2.2 2A16.5 16.5 0 0 1 4.4 5.4a2 2 0 0 1 2-2.2z'/%3E%3C/svg%3E");
}

.contact-card__icon--mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b81f3d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2.8' y='5' width='18.4' height='14' rx='2'/%3E%3Cpath d='m3.4 6.4 8.6 6.2 8.6-6.2'/%3E%3C/svg%3E");
}

.contact-card__icon--chat {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b81f3d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5.5h16a1.5 1.5 0 0 1 1.5 1.5v8a1.5 1.5 0 0 1-1.5 1.5H9.5L5 20.5V16.5H4A1.5 1.5 0 0 1 2.5 15V7A1.5 1.5 0 0 1 4 5.5z'/%3E%3Cpath d='M7.5 10.5h9M7.5 13h6'/%3E%3C/svg%3E");
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .9rem;
}

.socials a {
  display: inline-block;
  padding: .42rem 1.05rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-body);
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}

.socials a:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-form {
  padding: clamp(1.5rem, 3vw, 3.25rem);
  background: var(--c-cream);
  border-radius: var(--radius-lg);
}

.contact-form__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.7vw, 3.1rem);
  line-height: 1.05;
  color: var(--c-ink);
  margin-bottom: clamp(1.25rem, 2.2vw, 2.25rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.9rem, 1.6vw, 1.6rem);
}

.field--full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: .5rem;
}

.field label span[aria-hidden] { color: var(--c-red); }

.field__opt {
  letter-spacing: .12em;
  color: var(--c-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1.15rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--c-ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.field textarea { resize: vertical; min-height: 8rem; }

.field input::placeholder,
.field textarea::placeholder { color: var(--c-muted); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(184, 31, 61, .12);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b81f3d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.05rem center;
  background-size: 14px 14px;
  cursor: pointer;
}

/* consent row */
.field--check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .25rem .75rem;
  align-items: start;
  margin-top: .25rem;
}

.field--check input {
  width: 20px;
  height: 20px;
  margin-top: .1rem;
  padding: 0;
  accent-color: var(--c-red);
  border-radius: 4px;
  cursor: pointer;
}

.field--check label {
  margin: 0;
  font-size: .82rem;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.5;
  color: var(--c-body);
  cursor: pointer;
}

.field--check .field__error { grid-column: 2; }

/* validation */
.field__error {
  min-height: 0;
  margin-top: .35rem;
  font-size: .74rem;
  line-height: 1.35;
  color: var(--c-red);
}

.field__error:empty { display: none; }

/* background-color, not the shorthand — the select keeps its chevron image */
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--c-red);
  background-color: #fdf5f6;
}

.contact-form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: clamp(1.25rem, 2.2vw, 2.25rem);
}

.contact-form__foot .btn--solid { padding-inline: clamp(2rem, 3vw, 3rem); }

.contact-form__msg {
  font-size: .85rem;
  line-height: 1.45;
  color: var(--c-body);
}

.contact-form__msg.is-ok { color: var(--c-olive-dark); }

.contact-form__msg.is-error { color: var(--c-red); }

.contact-form__legal {
  margin-top: clamp(1rem, 1.8vw, 1.75rem);
  padding-top: clamp(1rem, 1.6vw, 1.5rem);
  border-top: 1px solid var(--c-line);
  font-size: .72rem;
  line-height: 1.55;
  color: var(--c-muted);
  max-width: 42rem;
}

@media (max-width: 900px) {
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 92;
  }
}

@media (max-width: 700px) {
  .coverage { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem 0; }

  .coverage li:nth-child(odd)::before { display: none; }

  .coverage li { padding-inline: 0; }

  .coverage li:nth-child(even) { padding-left: 1.25rem; }

  .coverage li:nth-child(even)::before { top: 6%; bottom: 6%; }
}

@media (max-width: 620px) {
  .filters { grid-template-columns: 1fr; }

  .filters__reset { width: 100%; justify-self: stretch; }

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

  .store { max-width: 420px; margin-inline: auto; width: 100%; }

  .store__rows > div { grid-template-columns: 1fr; gap: .1rem; }

  .locator__empty { text-align: left; }

  .locator__empty p { margin-inline: 0; }

  .locator__empty-actions { justify-content: flex-start; }

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

  .contact-card { grid-template-columns: 1fr; gap: .75rem; }

  .contact-card__icon { width: clamp(30px, 8vw, 38px); }

  .contact-form__foot { align-items: stretch; }

  .contact-form__foot .btn--solid { width: 100%; }
}


/* ---------------------------------------------------------
   NOT merged — these selectors exist in main.css but are
   intentionally commented-out / disabled in this live.css.
   Left untouched on purpose; re-enable manually if needed.
   ---------------------------------------------------------
   - .product--olive .btn--solid:hover
   - .product--orange .btn--solid:hover
   - .specimen.is-swapping .specimen__media img
   - .specimen
   - .specimen__media img
   ---------------------------------------------------------*/