:root {
  --cream: #f5f1e9;
  --paper: #fbf8f2;
  --ink: #2d2924;
  --muted: #756d63;
  --clay: #9a6048;
  --sand: #ded3c4;
  --sage: #697263;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--clay);
  color: var(--paper);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a,
button,
summary,
input,
textarea {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease,
    opacity 180ms ease, transform 180ms ease;
}

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

button {
  font: inherit;
  color: inherit;
}

.shell {
  margin-inline: auto;
  width: min(100% - 2.5rem, 76rem);
}

.eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.nav-link {
  position: relative;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button-dark,
.button-light {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border: 1px solid var(--ink);
  padding: 0.85rem 1.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  cursor: pointer;
}

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

.button-dark:hover {
  background: var(--clay);
  border-color: var(--clay);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(45 41 36 / 10%);
  background: rgb(245 241 233 / 90%);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 120px;
  height: 100px;
  object-fit: contain;
}

.brand-mark {
  margin-left: 0.45rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.8rem;
}

.mobile-menu {
  position: relative;
}

.mobile-menu summary {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  list-style: none;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.menu-line {
  width: 1.25rem;
  height: 1px;
  background: currentColor;
}

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

.mobile-nav {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  display: flex;
  width: 12rem;
  flex-direction: column;
  border: 1px solid rgb(45 41 36 / 12%);
  background: var(--cream);
  box-shadow: 0 18px 40px rgb(46 39 33 / 8%);
}

.mobile-nav a {
  border-bottom: 1px solid rgb(45 41 36 / 10%);
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
}

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

.bg-paper {
  background: var(--paper);
}

.bg-clay {
  background: var(--clay);
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: calc(100svh - 5rem);
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  opacity: 0.75;
}

.hero-overlay {
  background: linear-gradient(to right, rgb(45 41 36 / 85%), rgb(45 41 36 / 35%), rgb(45 41 36 / 10%));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100svh - 5rem);
  align-items: flex-end;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero-copy {
  max-width: 41rem;
}

.hero-copy p {
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgb(245 241 233 / 75%);
  margin-top: 2rem;
}

.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.hero-actions .button-dark:hover {
  background: var(--clay);
  color: var(--cream);
}

.hero-actions .button-light {
  border-color: var(--cream);
  color: var(--cream);
}

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

.section-block {
  padding: 6rem 0;
}

.section-top {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.section-top p {
  max-width: 32rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
}

.section-grid-2,
.section-grid-about,
.section-grid-care,
.section-grid-contact,
.section-grid-product {
  display: grid;
  gap: 3rem;
}

.media-tall {
  min-height: 34rem;
  background: var(--sand);
  overflow: hidden;
}

.media-tall-sm {
  min-height: 29rem;
  background: var(--sand);
  overflow: hidden;
}

.side-copy {
  align-self: center;
}

.side-copy p {
  margin-top: 1.6rem;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
}

.mood-grid {
  margin-top: 3.4rem;
  display: grid;
  gap: 1rem;
}

.mood-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand);
}

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

.mood-card img {
  transition: transform 700ms ease;
}

.mood-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(45 41 36 / 75%), transparent 55%);
}

.mood-card-copy {
  position: absolute;
  left: 1.75rem;
  right: 1.75rem;
  bottom: 1.75rem;
  color: var(--cream);
}

.mood-card-copy p {
  margin: 0;
}

.mood-card-copy .mood-title {
  margin-top: 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.spotlight {
  padding: 6rem 0;
}

.spotlight-grid {
  display: grid;
}

.spotlight-media {
  min-height: 34rem;
  background: var(--sand);
}

.spotlight-copy {
  background: var(--clay);
  color: var(--cream);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-copy h2 {
  margin: 1rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.9rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.spotlight-copy p {
  margin: 0;
}

.spotlight-copy .scent {
  margin-top: 0.8rem;
  color: rgb(245 241 233 / 78%);
  font-size: 0.9rem;
}

.spotlight-copy .desc {
  margin-top: 1.8rem;
  line-height: 1.9;
  color: rgb(245 241 233 / 82%);
}

.spotlight-copy .price {
  margin-top: 1.8rem;
  font-size: 1.2rem;
}

.quote-band {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid rgb(45 41 36 / 10%);
  border-bottom: 1px solid rgb(45 41 36 / 10%);
}

.quote-band .section-title {
  margin-inline: auto;
  max-width: 56rem;
  margin-top: 1rem;
}

.instagram-grid {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.instagram-grid .img-square {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--sand);
}

.instagram-grid .img-square img:hover {
  transform: scale(1.04);
}

.instagram-grid img {
  transition: transform 700ms ease;
}

.newsletter {
  padding: 5rem 0;
}

.newsletter-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.newsletter h2 {
  margin: 0.9rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  letter-spacing: -0.03em;
  font-weight: 400;
}

.newsletter p {
  margin: 0.8rem 0 0;
  max-width: 34rem;
  color: rgb(245 241 233 / 75%);
  font-size: 0.95rem;
  line-height: 1.85;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  border-bottom: 1px solid rgb(245 241 233 / 65%);
  padding-bottom: 0.6rem;
  width: 100%;
  max-width: 32rem;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--cream);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgb(245 241 233 / 60%);
}

.newsletter-form button {
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.legal-page {
  padding-top: 7rem;
  padding-bottom: 8rem;
}

.legal-copy {
  max-width: 42rem;
  margin-top: 4rem;
}

.legal-copy h2 {
  margin: 2.5rem 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
}

.legal-copy p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.legal-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.product-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 0.75rem;
}

.product-card a {
  display: block;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand);
}

.product-image-wrap img {
  transition: transform 700ms ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.025);
}

.badge-row {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.badge {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.badge-sale {
  background: var(--clay);
  color: var(--cream);
}

.badge-new {
  background: var(--cream);
}

.badge-sold {
  background: var(--ink);
  color: var(--cream);
}

.product-copy {
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.product-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}

.product-copy p {
  margin: 0;
}

.product-copy div > p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.price {
  font-size: 0.95rem;
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 0.65rem;
}

.is-sold-out {
  opacity: 0.96;
}

.shop-hero {
  border-bottom: 1px solid rgb(45 41 36 / 10%);
  padding: 5rem 0;
}

.shop-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 23rem;
  line-height: 1.8;
}

.filter-row {
  margin-bottom: 3rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgb(45 41 36 / 10%);
  border-bottom: 1px solid rgb(45 41 36 / 10%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
}

.filter-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  padding: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.filter-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
}

.filter-btn.is-active {
  color: var(--clay);
}

.filter-btn.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.filter-count {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.empty-state {
  border: 1px dashed rgb(45 41 36 / 20%);
  padding: 4rem 1.5rem;
  text-align: center;
}

.empty-state h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.15rem;
  font-weight: 400;
}

.empty-state button {
  margin-top: 1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.page-intro {
  padding: 4rem 0;
}

.page-intro p {
  max-width: 35rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.copy-large {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
}

.story-grid {
  display: grid;
  gap: 2rem;
}

.values-grid {
  display: grid;
  gap: 2.5rem;
}

.value-card {
  border-top: 1px solid rgb(245 241 233 / 35%);
  padding-top: 1rem;
}

.value-card h3 {
  margin: 0.9rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.value-card p {
  margin: 0.75rem 0 0;
  line-height: 1.8;
  color: rgb(245 241 233 / 75%);
}

.care-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2.4rem;
}

.care-tip {
  border-top: 1px solid rgb(45 41 36 / 20%);
  padding-top: 1rem;
}

.care-tip h3 {
  margin: 0.9rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.care-tip p {
  margin: 0.65rem 0 0;
  max-width: 35rem;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--muted);
}

.safety-callout {
  border-left: 2px solid var(--clay);
  padding-left: 1.4rem;
}

.safety-callout p {
  line-height: 1.9;
  color: var(--muted);
}

.contact-layout {
  padding: 5rem 0;
  display: grid;
  gap: 2.5rem;
}

.contact-copy p {
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.85;
}

.contact-list {
  margin-top: 2.4rem;
  border-top: 1px solid rgb(45 41 36 / 15%);
  padding-top: 1.65rem;
  display: grid;
  gap: 1.5rem;
}

.contact-list a {
  margin-top: 0.4rem;
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.contact-list a:hover {
  color: var(--clay);
}

.form-card {
  border: 1px solid rgb(45 41 36 / 10%);
  background: var(--paper);
  padding: 1.75rem;
}

.contact-form {
  display: grid;
  gap: 1.55rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

.field-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field-label span {
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  color: var(--muted);
}

.field {
  display: block;
  width: 100%;
  margin-top: 0.65rem;
  border: 0;
  border-bottom: 1px solid rgb(45 41 36 / 30%);
  border-radius: 0;
  background: transparent;
  padding: 0.75rem 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  outline: none;
}

.field:focus {
  border-color: var(--clay);
}

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

.form-note {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--muted);
}

.simple-page {
  max-width: 48rem;
  padding: 5rem 0;
}

.simple-page p {
  color: var(--muted);
  line-height: 1.9;
}

.product-page {
  background: var(--paper);
  padding: 2rem 0 4rem;
}

.back-link {
  display: inline-block;
}

.product-layout {
  margin-top: 2.2rem;
  display: grid;
  gap: 2.4rem;
}

.product-gallery {
  display: grid;
  gap: 0.75rem;
}

.product-main {
  background: var(--sand);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.thumb {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--sand);
  opacity: 0.75;
}

.thumb.is-active,
.thumb:hover {
  opacity: 1;
}

.product-info {
  align-self: start;
}

.product-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.flag {
  color: var(--clay);
}

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

.product-title {
  margin: 1rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.1rem, 8vw, 5.1rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.product-scent,
.product-description,
.product-note {
  color: var(--muted);
}

.product-scent {
  margin-top: 1rem;
  line-height: 1.75;
}

.product-price {
  margin-top: 1.5rem;
  font-size: 1.35rem;
}

.product-description {
  margin-top: 1.5rem;
  line-height: 1.9;
}

.product-specs {
  margin-top: 1.8rem;
  border-top: 1px solid rgb(45 41 36 / 15%);
  border-bottom: 1px solid rgb(45 41 36 / 15%);
}

.product-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgb(45 41 36 / 15%);
  padding: 0.95rem 0;
  font-size: 0.92rem;
}

.product-spec-row:last-child {
  border-bottom: 0;
}

.product-spec-row dt {
  color: var(--muted);
}

.full-width {
  width: 100%;
}

.button-dark.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-note {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.7;
}

.product-accordion {
  margin-top: 2rem;
  border-top: 1px solid rgb(45 41 36 / 15%);
}

.product-accordion details {
  border-bottom: 1px solid rgb(45 41 36 / 15%);
  padding: 1rem 0;
}

.product-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
}

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

.product-accordion .plus {
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  color: var(--clay);
}

.product-accordion details[open] .plus {
  transform: rotate(45deg);
}

.product-accordion-content {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.related-wrap {
  padding: 4.5rem 0;
}

.related-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.related-top a {
  display: none;
}

.site-footer {
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
}

.footer-brand {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.footer-copy {
  margin-top: 1rem;
  max-width: 26rem;
  color: rgb(245 241 233 / 65%);
  font-size: 0.88rem;
  line-height: 1.8;
}

.footer-label {
  color: rgb(245 241 233 / 45%);
  margin: 0;
}

.footer-links {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.footer-meta {
  border-top: 1px solid rgb(245 241 233 / 15%);
  padding: 1.2rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.75rem;
  color: rgb(245 241 233 / 45%);
}

.footer-meta p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

@media (min-width: 640px) {
  .shell {
    width: min(100% - 4rem, 76rem);
  }

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

  .product-copy {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .related-grid,
  .product-grid {
    gap: 3.4rem 1.3rem;
  }
}

@media (min-width: 768px) {
  .header-inner {
    min-height: 7rem;
  }

  .main-nav {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .hero-content {
    align-items: center;
    padding-bottom: 6rem;
  }

  .section-block,
  .spotlight,
  .quote-band,
  .newsletter {
    padding: 7.6rem 0;
  }

  .section-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 4rem;
  }

  .mood-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

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

  .spotlight-copy {
    padding: 3.5rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .newsletter-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .shop-hero {
    padding: 6.4rem 0;
  }

  .shop-hero .section-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .filter-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .section-grid-about,
  .section-grid-care {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 3.7rem;
  }

  .story-grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 3rem;
  }

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

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

  .contact-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    padding: 7rem 0;
  }

  .form-card {
    padding: 2.5rem;
  }

  .product-page {
    padding: 3rem 0 5.2rem;
  }

  .product-layout {
    margin-top: 2.8rem;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 4rem;
  }

  .product-gallery {
    grid-template-columns: 5fr 1.25fr;
  }

  .product-main {
    order: 2;
  }

  .product-thumbs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-accordion-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .related-top a {
    display: inline-block;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    padding: 5rem 0;
  }

  .footer-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .product-grid,
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem 1.75rem;
  }

  .section-top {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
}

@media (max-width: 380px) {
  .shell {
    width: min(100% - 2rem, 76rem);
  }

  .button-dark,
  .button-light {
    width: 100%;
  }
}

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

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