:root {
  --cream: #f7f2ea;
  --clay: #c97d53;
  --clay-deep: #a85f3b;
  --sage: #8a9a7e;
  --gold: #c9a24b;
  --ink: #2e2620;
  --ink-soft: #7a6f63;
  --line: rgba(46, 38, 32, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --radius-none: 0;
  --white: #fff;
  --sand: #eee5d9;
  --sage-light: #e9ece3;
  --clay-light: #f0e2d5;
  --dark-sage: #45513e;
  --transparent: transparent;
  --shadow: rgba(46, 38, 32, 0.08);
  --overlay: rgba(46, 38, 32, 0.35);
  --cream-glass: rgba(247, 242, 234, 0.96);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 16px/1.65 var(--font-body);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: var(--transparent);
}
button {
  color: inherit;
  cursor: pointer;
}
button:disabled {
  opacity: 0.35;
  cursor: default;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.13;
}
h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  letter-spacing: -0.04em;
}
h3 {
  font-size: 1.45rem;
}
em {
  font-weight: 400;
  color: var(--clay-deep);
}
p {
  color: var(--ink-soft);
}
:focus-visible {
  outline: 2px solid var(--clay-deep);
  outline-offset: 6px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  padding: 12px 20px;
  z-index: 100;
  background: var(--cream);
}
.skip:focus {
  top: 12px;
}
.announcement {
  text-align: center;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 8px 16px;
}
.header {
  height: 100px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--cream);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.header.scrolled {
  background: var(--cream-glass);
  backdrop-filter: blur(14px);
  box-shadow: 0 3px 20px var(--shadow);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.brand > span {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  text-align: center;
  letter-spacing: 0.44em;
  margin-top: 5px;
}
.header nav {
  display: flex;
  gap: 28px;
  font-size: 0.8rem;
}
.header nav a {
  position: relative;
}
.header nav a:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clay-deep);
  transition: width 0.25s;
}
.header nav a:hover:after {
  width: 100%;
}
.nav-actions {
  display: flex;
  gap: 10px;
}
.icon-button {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--transparent);
  font-size: 1.3rem;
  transition: background 0.2s;
}
.icon-button:hover {
  background: var(--sand);
}
.cart {
  border: 0;
}
.cart svg {
  width: 23px;
  height: 23px;
}
.menu {
  display: none;
}

/* Hero: centered copy stacked above a fanned deck of product cards, echoing the reference
   layout, rebuilt in the site's own botanical/clay palette rather than copying its colors. */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 76px 6% 10px;
  gap: 8px;
  overflow: hidden;
}
.hero-copy {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow {
  font: 500 0.69rem/1.5 var(--font-body);
  letter-spacing: 0.19em;
  color: var(--clay-deep);
  margin-bottom: 22px;
}
.tiny-leaf {
  font-size: 1.4rem;
  vertical-align: middle;
  margin-right: 10px;
}
.hero h1 {
  font-size: clamp(3rem, 5.6vw, 5.4rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}
.hero h1 em {
  white-space: nowrap;
}
.hero-description {
  font-size: 0.92rem;
  max-width: 420px;
  line-height: 1.85;
  margin: 24px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  background: var(--clay-deep);
  color: var(--cream);
  padding: 17px 26px;
  border: 1px solid var(--clay-deep);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  transition:
    background 0.25s,
    transform 0.25s;
}
.button:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.button span {
  font-size: 1.25rem;
}
.hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  font-size: 0.69rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.line-leaf {
  font-size: 2rem;
  color: var(--sage);
}

.hero-fan {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 980px;
  margin-top: 38px;
  padding: 18px 0 56px;
}
.hero-fan-card {
  position: relative;
  display: block;
  width: 16%;
  min-width: 110px;
  max-width: 168px;
  aspect-ratio: 0.82;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 -3.6%;
  background: var(--sand);
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px var(--shadow);
  transform: rotate(var(--fan-rot, 0deg));
  transition:
    transform 320ms var(--ease-soft, ease),
    box-shadow 320ms;
  flex-shrink: 0;
}
.hero-fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-fan-card:nth-child(1) {
  z-index: 1;
}
.hero-fan-card:nth-child(2) {
  z-index: 2;
}
.hero-fan-card:nth-child(3) {
  z-index: 3;
  transform: translateY(-16px) rotate(var(--fan-rot, 0deg));
  width: 18.5%;
}
.hero-fan-card:nth-child(4) {
  z-index: 2;
}
.hero-fan-card:nth-child(5) {
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .hero-fan-card:hover {
    transform: translateY(-14px) rotate(var(--fan-rot, 0deg));
    box-shadow: 0 26px 52px var(--shadow);
    z-index: 6;
  }
}
.hero-fan-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: var(--cream);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  z-index: 5;
  box-shadow: 0 10px 24px var(--shadow);
}
.hero-fan-chip.chip-left {
  left: 6%;
  top: 6%;
}
.hero-fan-chip.chip-right {
  right: 6%;
  top: 0;
}
.hero-fan-chip.chip-right {
  background: var(--sage);
  color: var(--cream);
}

.values-ribbon {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  padding: 22px 5%;
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}
.values-ribbon i {
  color: var(--clay);
}
.section {
  padding: 84px 5%;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}
.section-heading .eyebrow {
  margin-bottom: 12px;
}
.section-heading p:not(.eyebrow) {
  font-size: 0.83rem;
  margin-top: 12px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.category {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--sand);
  padding: 0;
  min-height: 286px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.category:nth-child(even) {
  background: var(--sand);
}
.category-media {
  display: block;
  width: 100%;
  height: 178px;
  overflow: hidden;
}
.category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: transform 0.65s cubic-bezier(.2,.8,.2,1);
}
.category:nth-child(1) img { object-position: 50% 58%; }
.category:nth-child(2) img { object-position: 50% 44%; }
.category:nth-child(3) img { object-position: 50% 58%; }
.category:nth-child(4) img { object-position: 38% 52%; }
.category:nth-child(5) img { object-position: 72% 52%; }
.category-copy {
  display: flex;
  flex: 1;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 18px 12px 20px;
}
.category h3 {
  font-size: 1.2rem;
  min-height: 30px;
}
.category p {
  font-size: 0.68rem;
  margin-top: 8px;
}
.category .category-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1rem;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(250,247,240,.88);
  backdrop-filter: blur(8px);
}
.category:hover,
.category:focus-visible {
  border-color: var(--clay);
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(46,38,32,.12);
}
.category:hover img {
  transform: scale(1.045);
}
.favorites {
  padding-top: 15px;
  overflow: hidden;
}
.carousel-controls {
  display: flex;
  gap: 10px;
}
.product-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 29%;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.product-carousel::-webkit-scrollbar {
  display: none;
}
.product-card {
  min-width: 0;
  scroll-snap-align: start;
}
.product-image {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 1.16;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-image img {
  transform: scale(1.045);
}
.badge {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--cream);
  color: var(--ink);
  padding: 5px 10px;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-info {
  padding: 18px 0;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 9px;
}
.product-info h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  max-width: 90%;
  margin-bottom: 14px;
}
.product-buy {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.product-buy a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.price del {
  color: var(--ink-soft);
  margin-right: 8px;
  font-size: 0.75rem;
}
.carousel-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  color: var(--ink-soft);
}
.carousel-track {
  height: 1px;
  background: var(--line);
  flex: 1;
}
.carousel-track span {
  display: block;
  height: 2px;
  width: 60%;
  background: var(--clay-deep);
  transition: width 0.2s;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (min-width: 1600px) {
  .section {
    padding-left: 6%;
    padding-right: 6%;
  }
}
@media (max-width: 1050px) {
  .header {
    padding: 0 4%;
    gap: 15px;
  }
  .header nav {
    gap: 18px;
    font-size: 0.73rem;
  }
  .hero {
    padding: 56px 5% 6px;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 6.4vw, 4rem);
  }
  .category h3 {
    font-size: 1.05rem;
  }
  .category-grid {
    gap: 9px;
  }
  .product-carousel {
    grid-auto-columns: 36%;
  }
  .hero-fan {
    max-width: 640px;
  }
}
@media (max-width: 760px) {
  .announcement {
    font-size: 0.58rem;
    letter-spacing: 0.13em;
  }
  .header {
    height: 78px;
  }
  .brand img {
    width: 43px;
    height: 43px;
  }
  .brand > span {
    font-size: 1.2rem;
  }
  .brand small {
    font-size: 0.5rem;
  }
  .menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
  }
  .menu span {
    width: 20px;
    height: 1px;
    background: var(--ink);
  }
  .header nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 22px 6%;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .header nav.open {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .hero {
    padding: 38px 6% 4px;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 9.6vw, 4.2rem);
  }
  .hero h1 br:first-child {
    display: none;
  }
  .hero-description {
    max-width: 340px;
    font-size: 0.86rem;
    margin: 20px auto;
  }
  .hero-note {
    margin-top: 20px;
  }
  .hero-fan {
    margin-top: 26px;
    padding: 10px 0 34px;
  }
  .hero-fan-card {
    width: 22%;
    min-width: 64px;
    margin: 0 -5%;
  }
  .hero-fan-card:nth-child(3) {
    width: 26%;
  }
  .hero-fan-chip {
    font-size: 0.55rem;
    padding: 7px 11px;
  }
  .hero-fan-chip.chip-left {
    left: 0;
    top: 0;
  }
  .hero-fan-chip.chip-right {
    right: 0;
    top: -4%;
  }
  .values-ribbon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    font-size: 0.57rem;
    gap: 12px;
    padding: 18px 5%;
  }
  .values-ribbon i {
    display: none;
  }
  .section {
    padding: 55px 6%;
  }
  .section-heading {
    align-items: start;
    gap: 18px;
  }
  .section-heading > p {
    display: none;
  }
  .section-heading .eyebrow {
    font-size: 0.59rem;
  }
  .category-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
    gap: 12px;
  }
  .category {
    flex: 0 0 61%;
    scroll-snap-align: start;
    min-height: 288px;
  }
  .category h3 {
    font-size: 1.3rem;
  }
  .category p {
    font-size: 0.75rem;
  }
  .favorites {
    padding-top: 10px;
  }
  .product-carousel {
    grid-auto-columns: 83%;
    gap: 16px;
  }
  .product-info h3 {
    font-size: 1.5rem;
  }
  .carousel-controls {
    gap: 6px;
  }
  .carousel-controls .icon-button {
    min-width: 38px;
    height: 38px;
  }
  .carousel-bottom {
    gap: 14px;
  }
  .carousel-bottom > span:first-child {
    display: none;
  }
  .eyebrow {
    margin-bottom: 14px;
  }
  .hero .eyebrow {
    font-size: 0.6rem;
  }
  .product-meta {
    font-size: 0.69rem;
  }
  .product-buy {
    font-size: 0.87rem;
  }
  .badge {
    font-size: 0.65rem;
  }
}
.ritual {
  background: var(--sage-light);
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 7%;
}
.ritual-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}
.ritual-intro > p:not(.eyebrow) {
  font-size: 0.86rem;
  max-width: 340px;
  margin-top: 22px;
}
.ritual-tabs {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
  border-left: 1px solid var(--line);
}
.ritual-tabs button {
  border: 0;
  border-left: 2px solid var(--transparent);
  margin-left: -1px;
  background: var(--transparent);
  text-align: left;
  padding: 12px 22px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 20px;
}
.ritual-tabs button[aria-selected="true"] {
  border-left-color: var(--clay-deep);
  color: var(--ink);
  background: var(--cream);
}
.ritual-tabs b {
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  min-width: 75px;
}
.ritual-tabs span {
  font-family: var(--font-display);
  font-size: 1rem;
}
.ritual-stage {
  min-width: 0;
}
.ritual-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.ritual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ritual-image > span {
  position: absolute;
  bottom: 18px;
  left: 20px;
  background: var(--cream);
  padding: 8px 14px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}
.ritual-panel {
  position: relative;
  padding: 35px 0 12px;
  min-height: 242px;
}
.ritual-panel[hidden] {
  display: none;
}
.ritual-panel .eyebrow {
  margin-bottom: 12px;
}
.ritual-panel h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 85%;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.ritual-panel p:not(.eyebrow) {
  max-width: 480px;
  font-size: 0.95rem;
}
.step-number {
  position: absolute;
  top: 15px;
  right: 0;
  font: 400 5rem var(--font-display);
  color: var(--sage);
  opacity: 0.35;
}
.ritual-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.text-link {
  font-size: 0.8rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  display: inline-flex;
  gap: 30px;
  align-items: center;
}
.values-section .section-heading {
  text-align: center;
  justify-content: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
}
.value {
  padding: 0 25px;
  border-right: 1px solid var(--line);
}
.value:first-child {
  padding-left: 0;
}
.value:last-child {
  padding-right: 0;
  border: 0;
}
.value svg {
  height: 42px;
  width: 42px;
  stroke: var(--sage);
  margin-bottom: 24px;
}
.value h3 {
  font-size: 1.35rem;
  margin-bottom: 17px;
}
.value p {
  font-size: 0.8rem;
  line-height: 1.9;
}
.testimonials {
  padding-top: 40px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  margin: 0;
  padding: 30px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
}
.review:nth-child(2) {
  background: var(--sage-light);
}
.quote-mark {
  font: 400 3.5rem/1 var(--font-display);
  color: var(--clay-deep);
  height: 42px;
}
.review blockquote {
  font: 400 1.19rem/1.65 var(--font-display);
  margin: 12px 0 26px;
  flex: 1;
}
.review figcaption {
  border-top: 1px solid var(--line);
  padding-top: 19px;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8rem;
}
.verified {
  color: var(--dark-sage);
  font-size: 0.64rem;
}
.review-product {
  display: block;
  font-size: 0.66rem;
  margin-top: 6px;
  color: var(--ink-soft);
}
.latest {
  padding-top: 35px;
}
.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 24px;
}
.latest-grid .product-image {
  aspect-ratio: 1.15;
}
.latest-grid .product-image img {
  object-fit: cover;
}
.latest-grid .product-info h3 {
  font-size: 1.3rem;
  min-height: 3.3em;
  max-width: 100%;
}
.latest-grid .badge-sale {
  left: auto;
  right: 14px;
  background: var(--clay-deep);
  color: var(--cream);
}
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sand);
}
.story-visual {
  overflow: hidden;
  min-height: 650px;
}
.story-visual img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.story-copy {
  padding: 70px 10%;
  align-self: center;
}
.story-copy h2 {
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  margin-bottom: 25px;
}
.story-copy p:not(.eyebrow) {
  font-size: 0.83rem;
  margin-bottom: 17px;
  line-height: 1.85;
}
.story-copy h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
}
.story-copy .text-link {
  margin-top: 10px;
}
.newsletter {
  padding: 65px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
  background: var(--clay-light);
}
.newsletter h2 {
  font-size: 2.6rem;
}
.newsletter .eyebrow {
  margin-bottom: 10px;
}
.email-row {
  display: flex;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 10px;
  gap: 10px;
}
.email-row input {
  width: 100%;
  min-width: 0;
  background: var(--transparent);
  border: 0;
  border-radius: var(--radius-none);
  padding: 12px 0;
  color: var(--ink);
  outline-offset: 0;
  font-size: 0.86rem;
}
.email-row button {
  background: var(--transparent);
  border: 0;
  white-space: nowrap;
  font-size: 0.8rem;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: start;
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-top: 17px;
}
.consent input {
  accent-color: var(--clay-deep);
  margin-top: 4px;
}
.form-note {
  font-size: 0.7rem;
  margin-top: 9px;
}
.form-status {
  font-size: 0.8rem;
  margin-top: 14px;
}
.form-status a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 5% 20px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.85fr 1.1fr;
  gap: 40px;
}
.footer .brand {
  width: fit-content;
}
.footer .brand img {
  background: var(--cream);
  border-radius: var(--radius-pill);
}
.footer-intro p {
  font: 400 1.35rem/1.4 var(--font-display);
  color: var(--cream);
  margin-top: 22px;
  max-width: 220px;
}
.footer h3 {
  font: 500 0.7rem var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 23px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 0.72rem;
}
.footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-email {
  font-size: 0.72rem;
  overflow-wrap: anywhere;
}
.socials {
  display: flex;
  gap: 13px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.socials a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}
.socials img {
  width: 23px;
  height: 23px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--cream);
  margin-top: 45px;
  padding-top: 22px;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  opacity: 0.7;
}
.no-js {
  padding: 20px 5%;
  background: var(--sand);
}
@media (max-width: 1050px) {
  .ritual {
    gap: 5%;
    grid-template-columns: 39% 1fr;
  }
  .ritual-tabs button {
    padding-left: 14px;
    gap: 10px;
  }
  .ritual-tabs span {
    font-size: 0.9rem;
  }
  .value {
    padding: 0 16px;
  }
  .review {
    padding: 24px;
  }
  .review blockquote {
    font-size: 1.08rem;
  }
  .review-author {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }
  .story-copy {
    padding: 50px 9%;
  }
  .footer-main {
    gap: 22px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-intro {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
  }
  .footer-intro p {
    margin-top: 0;
    max-width: 260px;
  }
}
@media (max-width: 760px) {
  .ritual {
    grid-template-columns: 1fr;
    padding: 50px 6%;
    gap: 25px;
  }
  .ritual-intro {
    position: static;
  }
  .ritual-intro > p:not(.eyebrow) {
    max-width: none;
  }
  .ritual-tabs {
    flex-direction: row;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    margin-top: 25px;
  }
  .ritual-tabs button {
    flex: 1;
    border-left: 0;
    border-bottom: 2px solid var(--transparent);
    padding: 14px 2px;
    margin: 0 0 -1px;
    justify-content: center;
  }
  .ritual-tabs button[aria-selected="true"] {
    border-left-color: var(--transparent);
    border-bottom-color: var(--clay-deep);
  }
  .ritual-tabs b {
    min-width: 0;
    font-size: 0.66rem;
  }
  .ritual-tabs span {
    display: none;
  }
  .ritual-image {
    height: 260px;
  }
  .ritual-panel {
    min-height: 237px;
    padding-top: 26px;
  }
  .ritual-panel h3 {
    font-size: 2.3rem;
  }
  .ritual-panel p:not(.eyebrow) {
    font-size: 0.9rem;
  }
  .ritual-foot {
    font-size: 0.6rem;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
    margin-top: 30px;
  }
  .value,
  .value:first-child,
  .value:last-child {
    padding: 0;
    border: 0;
  }
  .value h3 {
    font-size: 1.28rem;
  }
  .value p {
    font-size: 0.79rem;
    line-height: 1.8;
  }
  .value svg {
    margin-bottom: 14px;
  }
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 15px;
  }
  .review {
    flex: 0 0 88%;
    scroll-snap-align: start;
  }
  .review blockquote {
    font-size: 1.2rem;
  }
  .review-author {
    flex-direction: row;
  }
  .latest-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 14px;
  }
  .latest-grid .product-info h3 {
    font-size: 1.05rem;
    min-height: 5.3em;
  }
  .latest-grid .product-image {
    aspect-ratio: 0.9;
  }
  .latest-grid .badge {
    font-size: 0.51rem;
    left: 7px;
    top: 8px;
    padding: 4px 6px;
  }
  .latest-grid .badge-sale {
    left: auto;
    right: 7px;
  }
  .latest-grid .product-meta {
    font-size: 0.56rem;
  }
  .latest-grid .product-buy {
    font-size: 0.73rem;
    gap: 6px;
    flex-wrap: wrap;
  }
  .latest-grid .price del {
    font-size: 0.63rem;
    margin-right: 4px;
  }
  .latest .section-heading {
    flex-wrap: wrap;
  }
  .brand-story {
    grid-template-columns: 1fr;
  }
  .story-visual {
    min-height: 0;
    height: 370px;
  }
  .story-copy {
    padding: 42px 6%;
  }
  .story-copy p:not(.eyebrow) {
    font-size: 0.87rem;
  }
  .newsletter {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 45px 6%;
  }
  .newsletter h2 {
    font-size: 2.25rem;
  }
  .footer {
    padding: 45px 6% 20px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }
  .footer-intro {
    display: block;
  }
  .footer-intro p {
    margin-top: 20px;
  }
  .footer-contact {
    grid-column: 1/-1;
  }
  .footer-links,
  .contact-email {
    font-size: 0.8rem;
  }
  .footer-bottom {
    gap: 20px;
    align-items: start;
    font-size: 0.59rem;
  }
  .socials a {
    width: 35px;
    height: 35px;
  }
  .socials {
    gap: 15px;
  }
  .values-section .section-heading {
    text-align: left;
    justify-content: start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 761px) and (max-width: 1050px) {
}
.value p {
  font-size: 0.875rem;
}
.story-copy p:not(.eyebrow) {
  font-size: 0.875rem;
}
.product-meta {
  font-size: 0.75rem;
}
.category p {
  font-size: 0.75rem;
}
.footer-links {
  font-size: 0.8125rem;
}
@media (max-width: 760px) {
  .value p {
    font-size: 0.875rem;
  }
  .latest-grid .product-meta {
    font-size: 0.625rem;
  }
}
