:root {
  --color-primary: #4f6b53;
  --color-primary-dark: #3e5642;
  --color-primary-pale: #dce6dc;
  --color-secondary: #8a6b35;
  --color-background: #f6f2e8;
  --color-surface: #fff;
  --color-text: #2f2f2f;
  --color-text-light: #666;
  --color-border: #ddd8cc;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: Inter, system-ui, sans-serif;
  --container-width: 1200px;
  --container-padding: 20px;
  --header-height: 90px;
  --radius-control: 8px;
  --radius-card: 12px;
  --shadow-sm: 0 2px 8px rgb(0 0 0 / 6%);
  --shadow-md: 0 12px 34px rgb(41 53 42 / 10%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-background);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

button, input, select, textarea { font: inherit; }

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

button { border: 0; }

button, input, select, textarea { border-radius: var(--radius-control); }

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

h1, h2, h3 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.06;
}

h1 { font-size: clamp(3rem, 5.8vw, 5rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2.35rem, 4vw, 3.45rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.45rem, 2.4vw, 2rem); }

p { color: var(--color-text-light); }

.container { width: min(calc(100% - (var(--container-padding) * 2)), var(--container-width)); margin-inline: auto; }

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--color-primary-dark);
  transform: translateY(-110%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid #9a793c; outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid rgb(47 47 47 / 7%);
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(12px);
  transition: height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled { height: 78px; background: rgb(255 255 255 / 96%); box-shadow: var(--shadow-sm); }

.site-header__inner { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand, .site-footer__brand { display: inline-flex; align-items: center; color: var(--color-primary); }
.brand__logo {
  display: block;
  width: min(230px, 25vw);
  height: 76px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.primary-navigation { display: flex; align-items: center; gap: clamp(0.75rem, 1.5vw, 1.65rem); }
.primary-navigation a { position: relative; color: #292b26; font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; white-space: nowrap; }
.primary-navigation a::after { position: absolute; bottom: -0.55rem; left: 0; width: 0; height: 2px; background: var(--color-secondary); content: ""; transition: width 220ms ease; }
.primary-navigation a:hover::after, .primary-navigation a:focus-visible::after, .primary-navigation a.is-active::after { width: 100%; }
.primary-navigation .header-cta { display: inline-flex; min-height: 48px; align-items: center; gap: 0.45rem; padding: 0.7rem 1.35rem; border-radius: 999px; color: #fff; background: var(--color-primary); }
.primary-navigation .header-cta::after { display: none; }
.primary-navigation .header-cta.is-active { background: var(--color-primary-dark); box-shadow: inset 0 0 0 2px rgb(255 255 255 / 32%); }
.header-cta svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.site-header__tools { display: flex; gap: .7rem; align-items: center; }
.header-cart { position: relative; display: grid; width: 2.7rem; height: 2.7rem; flex: 0 0 auto; place-items: center; border: 1px solid #d9d8d1; border-radius: 50%; color: var(--color-primary-dark); background: #fff; transition: color 180ms ease, border-color 180ms ease, background 180ms ease; }
.header-cart:hover, .header-cart:focus-visible { border-color: var(--color-primary); color: #fff; background: var(--color-primary); }
.header-cart svg { width: 1.3rem; height: 1.3rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.65; }
.header-cart__count { position: absolute; top: -.35rem; right: -.35rem; display: grid; min-width: 1.25rem; height: 1.25rem; padding: 0 .2rem; place-items: center; border: 2px solid #fff; border-radius: 999px; color: #fff; background: var(--color-secondary); font-size: .66rem; font-weight: 600; line-height: 1; }
.menu-toggle { display: none; padding: 0.4rem; color: var(--color-primary); background: transparent; font-size: 1.8rem; cursor: pointer; }

.hero { position: relative; display: grid; min-height: max(700px, calc(100svh - var(--header-height))); align-items: center; overflow: hidden; padding: calc(var(--header-height) + 3.5rem) 0 5.5rem; background: #eee6d7 url("../img/hero-wellness.png") center / cover no-repeat; }
.hero__wash { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgb(255 255 255 / 88%) 0%, rgb(255 255 255 / 70%) 32%, rgb(255 255 255 / 18%) 67%, transparent 100%); }
.hero__content { position: relative; z-index: 1; max-width: 800px; margin-inline: auto; text-align: center; }
.hero__mark { display: block; width: 42px; height: 56px; margin: 0 auto 1.15rem; fill: none; stroke: #49573b; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.35; }
.hero h1 { margin-bottom: 0.9rem; color: #2f3829; font-family: var(--font-heading); font-size: clamp(3.1rem, 7vw, 5.8rem); font-weight: 500; letter-spacing: 0.045em; line-height: 0.98; }
.hero__tagline { margin-bottom: 1.25rem; color: #3d4632; font-family: var(--font-heading); font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.25; }
.hero__lead { max-width: 600px; margin-inline: auto; color: #30332d; font-family: var(--font-body); font-size: 1.05rem; line-height: 1.6; }
.button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.25rem; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 0.45rem; padding: 0.8rem 1.75rem; border: 2px solid transparent; border-radius: 999px; font-family: var(--font-body); font-size: 0.94rem; font-weight: 500; transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.button--primary { color: #fff; background: var(--color-primary); }
.button--primary:hover { background: var(--color-primary-dark); }
.button--secondary { border-color: rgb(79 107 83 / 55%); color: #303a2d; background: rgb(255 255 255 / 20%); }
.button--secondary:hover { color: #fff; background: var(--color-primary); }
.button--light { color: var(--color-primary-dark); background: #fff; }
.button__leaf { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.hero__scroll { position: absolute; z-index: 1; bottom: 1.5rem; left: 50%; display: grid; width: 28px; height: 44px; place-items: center; border: 1px solid rgb(47 47 47 / 50%); border-radius: 16px; color: #30372d; font-size: 1.25rem; transform: translateX(-50%); }
.hero__scroll span { transform: translateY(-2px); }

.section { padding: 7rem 0; }
.section--cream { background: var(--color-background); }
.section--white { background: var(--color-surface); }
.section--green { color: #fff; background: var(--color-primary); }
.section-heading { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.section-heading h2 { margin-bottom: 1rem; }
.section-heading p:last-child { max-width: 650px; margin-inline: auto; }
.section-heading__mark { display: block; width: 100px; height: 28px; margin: 0 auto 0.65rem; fill: none; stroke: #828879; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.1; }

.care-spaces-section { padding-top: 4.8rem; padding-bottom: 5.5rem; }
.care-spaces-section .container { width: min(calc(100% - (var(--container-padding) * 2)), 1800px); }
.care-spaces-section .section-heading { margin-bottom: 2.1rem; }
.care-spaces-section .section-heading h2 { margin-bottom: 0.45rem; color: #30382c; font-size: clamp(2.2rem, 3.5vw, 2.8rem); font-weight: 500; }
.care-spaces-section .section-heading p:last-child { color: #4b4e48; font-family: var(--font-body); font-size: 1rem; }
.care-grid { display: grid; grid-template-columns: repeat(6, minmax(280px, 1fr)); gap: 1rem; margin-inline: auto; }
.care-card { display: flex; width: 100%; max-width: 400px; min-width: 0; flex-direction: column; justify-self: center; overflow: hidden; border: 1px solid #e4e3de; border-radius: 14px; background: #fff; box-shadow: 0 3px 12px rgb(51 52 46 / 8%); color: inherit; transition: transform 200ms ease, box-shadow 200ms ease; }
.care-card:hover, .care-card:focus-visible { transform: translateY(-5px); box-shadow: 0 12px 22px rgb(51 52 46 / 13%); }
.care-card__image { position: relative; aspect-ratio: 1.12; flex: 0 0 auto; background-image: url("../img/care-spaces-grid.png"); background-repeat: no-repeat; background-size: 300% 200%; }
.care-card--skin .care-card__image { background-position: 0 0; }
.care-card--natural .care-card__image { background-position: 50% 0; }
.care-card--body .care-card__image { background-position: 100% 0; }
.care-card--rest .care-card__image { background-position: 0 100%; }
.care-card--balance .care-card__image { background-position: 50% 100%; }
.care-card--start .care-card__image { background-position: 100% 100%; }
.care-card__icon { position: absolute; right: 50%; bottom: -1.6rem; display: block; width: 5rem; height: 5rem; padding: 1.15rem; border: 1px solid #e0e2dc; border-radius: 50%; color: #777c73; background: #fff; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.35; transform: translateX(50%); }
.care-card__body { display: flex; min-height: 236px; flex: 1; flex-direction: column; align-items: center; padding: 3.5rem 1.05rem 1.25rem; text-align: center; }
.care-card h3 { margin-bottom: 0.85rem; color: #30372d; font-family: var(--font-heading); font-size: clamp(1.28rem, 1.55vw, 1.75rem); font-weight: 600; line-height: 1.12; }
.care-card p { max-width: 18rem; margin: 0; color: #51534f; font-family: var(--font-body); font-size: 0.86rem; line-height: 1.55; }
.care-card__arrow { display: block; margin-top: auto; padding-top: 1rem; color: #383c35; font-family: var(--font-body); font-size: 1.65rem; line-height: 1; }

.featured-products-section { padding-top: 5rem; padding-bottom: 5.5rem; }
.featured-products-section__container { width: min(calc(100% - (var(--container-padding) * 2)), 1800px); }
.featured-products-section .section-heading { margin-bottom: 2rem; }
.featured-products-section .section-heading h2 { margin-bottom: 0.45rem; color: #30372d; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 500; }
.featured-products-section .section-heading p:last-child { color: #4b4e48; font-family: var(--font-body); font-size: 1rem; }
.product-slider { display: flex; align-items: center; gap: 1rem; }
.product-slider__track { display: grid; flex: 1; grid-auto-columns: minmax(260px, 1fr); grid-auto-flow: column; gap: 1rem; min-width: 0; padding: 0.35rem 0.2rem 1rem; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.product-slider__track::-webkit-scrollbar { display: none; }
.product-slider__control { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border: 1px solid #d8dcd1; border-radius: 50%; color: #50584b; background: #fff; font-family: var(--font-body); font-size: 1.4rem; cursor: pointer; transition: background 180ms ease, color 180ms ease, border-color 180ms ease; }
.product-slider__control:hover:not(:disabled), .product-slider__control:focus-visible:not(:disabled) { border-color: var(--color-primary); color: #fff; background: var(--color-primary); }
.product-slider__control:disabled { cursor: default; opacity: 0.35; }
.product-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid #e4e3de; border-radius: 14px; background: #fff; box-shadow: 0 3px 12px rgb(51 52 46 / 8%); color: inherit; scroll-snap-align: start; transition: transform 200ms ease, box-shadow 200ms ease; }
.product-card:hover, .product-card:focus-visible { transform: translateY(-4px); box-shadow: 0 12px 22px rgb(51 52 46 / 13%); }
.product-card__image { aspect-ratio: 1.35; flex: 0 0 auto; background-image: url("../img/featured-products-grid.png"); background-repeat: no-repeat; background-size: 300% 200%; }
.product-card--soap .product-card__image { background-position: 0 0; }
.product-card--oil .product-card__image { background-position: 50% 0; }
.product-card--tea .product-card__image { background-position: 100% 0; }
.product-card--cream .product-card__image { background-position: 0 100%; }
.product-card--extract .product-card__image { background-position: 50% 100%; }
.product-card--candle .product-card__image { background-position: 100% 100%; }
.product-card__body { display: flex; min-height: 188px; flex: 1; flex-direction: column; padding: 1.25rem 1.35rem 1.1rem; }
.product-card h3 { margin-bottom: 0.65rem; color: #30372d; font-family: var(--font-heading); font-size: clamp(1.2rem, 1.35vw, 1.45rem); font-weight: 600; line-height: 1.08; }
.product-card p { margin: 0; color: #555950; font-family: var(--font-body); font-size: 0.86rem; line-height: 1.5; }
.product-card__body > span { display: block; margin-top: auto; padding-top: 1rem; color: #30372d; font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; }
.product-card__body b { margin-left: 0.35rem; font-size: 1.25rem; font-weight: 400; }

@media (max-width: 1799px) {
  .care-grid { width: min(100%, 1232px); grid-template-columns: repeat(3, minmax(280px, 1fr)); }
}

.philosophy-section { padding-top: 5rem; padding-bottom: 5rem; }
.philosophy-section .container { width: min(calc(100% - (var(--container-padding) * 2)), 1600px); }
.philosophy { display: flex; flex-direction: column; gap: clamp(2.5rem, 4vw, 4rem); align-items: center; padding: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 4vw, 4.5rem); border-radius: 18px; background: #f5f2e7; }
.philosophy__copy { max-width: 620px; text-align: center; }
.philosophy__ornament { display: block; width: 100px; height: 24px; margin: 0 auto 1rem; fill: none; stroke: #8c927f; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.1; }
.philosophy__copy h2 { margin-bottom: 1.2rem; color: #30372d; font-size: 2rem; font-weight: 500; line-height: 1.1; }
.philosophy__copy p { margin-bottom: 0; color: #454943; font-family: var(--font-body); font-size: 1rem; line-height: 1.6; }
.philosophy__action { margin-top: -1.25rem; }
.philosophy__action .button { min-height: 48px; padding-inline: 1.5rem; }
.steps { position: relative; display: grid; width: 100%; grid-template-columns: repeat(5, 1fr); gap: 0.8rem; padding: 0; margin: 0; list-style: none; border: 0; }
.steps::before { position: absolute; z-index: 0; top: 44px; right: 10%; left: 10%; border-top: 1px solid #c9cfc0; content: ""; }
.steps li { position: relative; z-index: 1; display: flex; min-width: 0; flex-direction: column; align-items: center; padding: 0 0.35rem; border: 0; text-align: center; }
.steps__icon { display: grid; width: 88px; height: 88px; place-items: center; border: 1px solid #d6ddca; border-radius: 50%; color: #68715f; background: #e5ecd9; }
.steps__icon svg { width: 48px; height: 48px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.35; }
.steps__number { margin-top: 0.85rem; color: #4f5948; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; }
.steps h3 { margin: 0.35rem 0 0.6rem; color: #30372d; font-family: var(--font-heading); font-size: clamp(1.12rem, 1.35vw, 1.45rem); line-height: 1.15; }
.steps p { max-width: 12rem; margin: 0; color: #555950; font-family: var(--font-body); font-size: 0.82rem; line-height: 1.5; }

.empty-panel { max-width: 720px; padding: 3.5rem; margin: 0 auto; border: 1px solid var(--color-border); background: var(--color-surface); text-align: center; }
.empty-panel p { margin-bottom: 1.5rem; }
.editorial-split { display: grid; grid-template-columns: 1fr 0.78fr; gap: clamp(3rem, 9vw, 9rem); align-items: center; }
.editorial-split > div:first-child > p:not(.eyebrow) { max-width: 560px; margin-bottom: 2rem; font-size: 1.08rem; line-height: 1.8; }
.editorial-split__art { min-height: 460px; border-radius: 0 110px 0 110px; background: linear-gradient(145deg, rgb(220 230 220 / 75%), rgb(79 107 83 / 90%)), repeating-linear-gradient(120deg, transparent 0 30px, rgb(255 255 255 / 11%) 31px 33px); box-shadow: var(--shadow-md); }
.newsletter__panel { max-width: 760px; padding: clamp(2rem, 6vw, 4rem); margin: 0 auto; background: var(--color-surface); box-shadow: var(--shadow-md); text-align: center; }
.newsletter__panel h2 { margin-bottom: 1rem; }
.newsletter__panel p:not(.eyebrow) { max-width: 600px; margin: 0 auto 2rem; }
.callout { text-align: center; }
.callout h2 { max-width: 720px; margin: 0 auto 1rem; color: #fff; }
.callout .eyebrow { color: #f1ddad; }
.callout p:not(.eyebrow) { max-width: 620px; margin: 0 auto 2rem; color: rgb(255 255 255 / 88%); }

.site-footer { position: relative; overflow: hidden; padding: 2rem 0 1.8rem; color: #4b5146; background: #faf9f6; }
.site-footer__inner { position: relative; display: grid; grid-template-columns: minmax(260px, 1.45fr) repeat(2, minmax(160px, 0.85fr)) minmax(230px, 1fr) minmax(140px, 0.65fr); gap: 1.75rem clamp(1.25rem, 2.8vw, 3.5rem); align-items: start; }
.site-footer__brand { justify-content: flex-start; padding-top: 0.35rem; }
.site-footer__logo { display: block; width: min(330px, 100%); height: auto; object-fit: contain; object-position: center; mix-blend-mode: multiply; }
.site-footer__column h2 { margin-bottom: 0.5rem; color: #3f483b; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1.2; }
.site-footer__column ul { padding: 0; margin: 0; list-style: none; }
.site-footer__column li { line-height: 1.25; }
.site-footer__column li + li { margin-top: 0.25rem; }
.site-footer__column a { display: inline-flex; align-items: center; gap: 0.55rem; color: #5b6058; font-family: var(--font-body); font-size: 0.77rem; font-weight: 400; line-height: 1.35; }
.site-footer__column a:hover, .site-footer__column a:focus-visible { color: var(--color-primary-dark); }
.site-footer__contact svg { width: 1rem; height: 1rem; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.site-footer__botanical { align-self: end; width: 180px; height: 180px; margin: -2rem -1.5rem -2rem auto; color: #b9c0ad; opacity: 0.82; }

.page-hero { padding: calc(var(--header-height) + 5rem) 0 4.5rem; text-align: center; }
.page-hero__copy { max-width: 800px; margin: 0 auto; }
.page-hero__copy h1 { margin-bottom: 1rem; }
.page-hero__copy p:not(.eyebrow) { font-size: 1.08rem; }
.page-content { padding: 1rem 0 7rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.info-card { padding: 2rem; border: 1px solid var(--color-border); background: #fff; }
.info-card h2 { margin-bottom: 0.8rem; font-size: 2rem; }
.info-card p { margin-bottom: 1.25rem; }
.prose { max-width: 800px; margin: 0 auto; }
.prose section { padding: 2rem 0; border-bottom: 1px solid var(--color-border); }
.prose h2 { margin-bottom: 1rem; font-size: 2.2rem; }
.prose li { margin-bottom: 0.65rem; color: var(--color-text-light); }

@media (max-width: 1050px) {
  .care-grid { grid-template-columns: repeat(3, 1fr); }
  .care-card { min-height: 235px; }
  .site-footer__inner { grid-template-columns: minmax(230px, 1.3fr) repeat(3, minmax(140px, 1fr)); }
  .site-footer__botanical { position: absolute; right: -1rem; bottom: -2rem; width: 135px; height: 135px; opacity: 0.48; }
}

@media (max-width: 820px) {
  :root { --header-height: 72px; }
  .brand__logo { width: min(190px, 48vw); height: 58px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .primary-navigation { position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; padding: 1rem var(--container-padding) 1.5rem; border-bottom: 1px solid var(--color-border); background: #fff; box-shadow: var(--shadow-md); }
  .primary-navigation.is-open { display: grid; }
  .primary-navigation a { padding: 0.65rem 0; }
  .primary-navigation a::after { bottom: 0.35rem; }
  .primary-navigation .header-cta { justify-content: center; padding: 0.75rem 1rem; }
  .hero { min-height: 680px; padding-top: calc(var(--header-height) + 3rem); text-align: center; }
  .hero__content { max-width: 620px; }
  .hero__wash { background: rgb(255 255 255 / 66%); }
  .hero__lead { margin-inline: auto; }
  .button-row { justify-content: center; }
  .care-grid { width: min(100%, 832px); grid-template-columns: repeat(2, minmax(280px, 1fr)); }
  .product-slider { gap: 0.5rem; }
  .product-slider__control { width: 36px; height: 36px; font-size: 1.2rem; }
  .care-card__body { min-height: 220px; }
  .philosophy, .editorial-split { grid-template-columns: 1fr; }
  .philosophy { gap: 2.5rem; }
  .philosophy__copy { max-width: 520px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .steps::before { display: none; }
  .editorial-split__art { min-height: 300px; }
  .site-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem 1.5rem; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__botanical { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 4.7rem 0; }
  .hero { min-height: 650px; background-position: 56% center; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 3.7rem); letter-spacing: 0.02em; }
  .hero__tagline { font-size: 1.4rem; }
  .hero__lead { font-size: 1rem; }
  .button-row { display: grid; }
  .button { width: 100%; }
  .care-grid { width: min(100%, 400px); grid-template-columns: 1fr; }
  .product-slider__control { display: none; }
  .product-slider__track { grid-auto-columns: minmax(240px, 82vw); padding-inline: 0; }
  .card-grid, .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__brand { grid-column: auto; }
  .care-card__image { aspect-ratio: 1.25; }
  .care-card__body { min-height: 220px; }
  .philosophy { padding: 2rem 1.25rem; }
  .steps { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 2.5rem; }
  .empty-panel { padding: 2rem 1.3rem; }
  .newsletter__panel { padding: 2.2rem 1.35rem; }
  .page-hero { padding-top: calc(var(--header-height) + 3.5rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
