:root {
  /* ---------------------------------------------------------------
     Bremod Performance — brand tokens
     Single source of truth for colour, type and shape. Prefer these
     variables over raw hex/px values so the site stays consistent.
     --------------------------------------------------------------- */

  /* Brand colour — greens */
  --green: #2f7b20;          /* primary brand green (CTAs, active, links) */
  --green-strong: #256417;   /* hover / pressed green */
  --deep: #102410;           /* deep green — dark surfaces, footers */
  --night: #181b17;          /* near-black surfaces (bands, overlays) */
  --surface: #eef4ec;        /* pale green tint — section fills, chips */
  --edge: #9aae96;           /* green hairline accent (hover borders) */

  /* Accent — warm */
  --gold: #a16207;           /* secondary accent (ingredient / editorial) */
  --clay: #664b3d;           /* warm brown for supporting text on tints */

  /* Neutrals */
  --ink: #151915;            /* primary text */
  --ink-soft: #293229;       /* softened primary text on tints */
  --muted: #667064;          /* secondary text */
  --line: #dfe5dc;           /* hairlines, borders */
  --line-2: #cbd5c8;         /* slightly deeper hairline */
  --paper: #f7f8f2;          /* page background */
  --card: #fbfcfa;           /* raised card background */
  --white: #ffffff;

  /* Type scale — one ladder for the whole site */
  --fs-eyebrow: 12px;        /* labels, kickers, meta */
  --fs-small: 13px;          /* fine print, captions */
  --fs-body: 14px;           /* body copy */
  --fs-body-lg: 16px;        /* lead paragraphs */
  --fs-lead: clamp(18px, 2vw, 24px); /* hero/intro lead copy */
  --fs-h6: 18px;
  --fs-h5: 20px;
  --fs-h4: 24px;
  --fs-h3: clamp(24px, 3.2vw, 42px);   /* section sub-headings */
  --fs-h2: clamp(28px, 4vw, 44px);     /* section titles */
  --fs-h1: clamp(36px, 4.5vw, 58px);   /* page titles */
  --fs-display: clamp(42px, 6vw, 82px);/* hero display */

  /* Font weights — standard steps only */
  --fw-regular: 500;
  --fw-bold: 700;
  --fw-heavy: 800;
  --fw-black: 900;

  /* Corner radius scale */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.optimized-picture {
  display: contents;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(47, 123, 32, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: block;
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 6px clamp(18px, 5vw, 72px);
  background: var(--night);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
}

.utility-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.utility-bar a:hover {
  color: #b9dfb1;
}

.utility-contact {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-phone {
  margin: 4px 0 0;
}

.footer-phone a {
  color: var(--deep);
  font-weight: 900;
}

.utility-bar svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 54px);
  min-height: 80px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand picture {
  display: block;
}

.brand img {
  display: block;
  width: clamp(168px, 14vw, 205px);
  height: auto;
  border-radius: 0;
  background: transparent;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--deep);
  cursor: pointer;
  touch-action: manipulation;
}

.nav-toggle span {
  position: absolute;
  top: 19px;
  left: 11px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: none;
  transform-origin: center;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(14px, 1.5vw, 24px);
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-nav a[aria-current="page"],
.site-nav a.active,
.site-nav a:hover {
  color: var(--green);
}

.site-nav a[aria-current="page"]::after,
.site-nav a.active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: currentColor;
  content: "";
}

.site-nav .nav-contact {
  min-height: 40px;
  padding: 8px 17px;
  border: 1px solid var(--green);
  color: var(--green);
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact[aria-current="page"] {
  background: var(--green);
  color: var(--white);
}

.site-nav .nav-contact::after {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  padding: clamp(32px, 5vw, 64px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 78px);
  background: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 0;
  font-size: var(--fs-display);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: var(--fs-h2);
  line-height: 1.08;
}

.section-heading p,
.footer-column p,
.lead,
.detail-list dd {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 16px;
  padding: 0 20px;
  border: 1px solid var(--deep);
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(16, 36, 16, 0.13);
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--deep);
}

.home-hero {
  grid-template-columns: minmax(430px, min(36vw, 700px)) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 56px);
  align-items: center;
  min-height: min(680px, calc(100dvh - 74px));
  background: #fbfcf9;
}

.hero-copy {
  width: min(720px, 100%);
  min-width: 0;
  margin: 0;
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: 56px;
  line-height: 1.02;
}

.hero-copy .lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-signals span {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
}

.hero-product-carousel {
  display: grid;
  gap: 8px;
  width: 100%;
  min-width: 0;
  justify-self: end;
}

.hero-mobile-carousel {
  display: flex;
  width: 100%;
  gap: 14px;
  padding: 2px 2px 12px;
  overflow: hidden;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.hero-mobile-carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.hero-mobile-carousel::-webkit-scrollbar {
  display: none;
}

.hero-mobile-slide {
  position: relative;
  display: grid;
  flex: 0 0 clamp(292px, 32%, 380px);
  grid-template-rows: auto minmax(82px, auto);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 36, 16, 0.08);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-mobile-carousel.is-dragging .hero-mobile-slide {
  cursor: grabbing;
}

.hero-mobile-slide:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 123, 32, 0.42);
  box-shadow: 0 18px 42px rgba(16, 36, 16, 0.11);
}

.hero-mobile-slide picture {
  display: block;
  padding: 16px;
  background: #ffffff;
}

.hero-mobile-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  -webkit-user-drag: none;
}

.hero-mobile-slide > span:last-child {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--deep);
}

.hero-mobile-slide strong {
  font-size: 16px;
  line-height: 1.25;
}

.hero-mobile-slide small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: var(--radius-md);
  background: #875308;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
}

.hero-carousel-controls > button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.hero-carousel-controls > button:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 123, 32, 0.45);
  background: var(--surface);
}

.hero-carousel-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel-dots button {
  display: grid;
  width: 28px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-carousel-dots button::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #b8c2b5;
  content: "";
  transition: width 160ms ease, background 160ms ease;
}

.hero-carousel-dots button[aria-current="true"]::before {
  width: 22px;
  background: var(--green);
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.brand-strip div {
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--surface);
}

.brand-strip strong,
.brand-strip span {
  display: block;
}

.brand-strip strong {
  margin-bottom: 4px;
  color: var(--deep);
  font-size: 16px;
}

.brand-strip span {
  color: var(--muted);
  font-size: 14px;
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(180px, 0.75fr);
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.hero-feature-product,
.hero-mini-product {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hero-feature-product:hover,
.hero-mini-product:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 123, 32, 0.45);
  box-shadow: 0 14px 30px rgba(16, 36, 16, 0.1);
}

.hero-feature-product {
  align-content: start;
  gap: 12px;
  padding: clamp(18px, 3vw, 26px);
}

.hero-feature-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-feature-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.hero-feature-product strong {
  color: var(--deep);
  font-size: var(--fs-h3);
  line-height: 1.08;
}

.hero-feature-product span:last-child {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero-product-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.hero-mini-product {
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 14px;
}

.hero-mini-product img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1.08 / 1;
  object-fit: contain;
}

.hero-mini-product span {
  padding-top: 10px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.hero-image {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  min-width: 0;
}

.hero-visual-only {
  padding-top: clamp(22px, 4vw, 46px);
  padding-bottom: clamp(26px, 5vw, 56px);
}

.hero-link {
  display: block;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hero-link:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 123, 32, 0.45);
  box-shadow: 0 14px 30px rgba(16, 36, 16, 0.11);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9.5;
  object-fit: cover;
}

.section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 28px;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 0;
  color: var(--deep);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(47, 123, 32, 0.38);
  text-underline-offset: 5px;
}

.category-showcase {
  background: var(--paper);
}

.category-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.category-feature {
  display: grid;
  align-content: start;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.category-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 123, 32, 0.45);
  box-shadow: 0 12px 28px rgba(16, 36, 16, 0.1);
}

.category-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  object-fit: cover;
  background: #f3f2ee;
  border-bottom: 1px solid var(--line);
}

.category-feature span,
.category-feature h3,
.category-feature p {
  margin-left: 18px;
  margin-right: 18px;
}

.category-feature span {
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-feature h3 {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.category-feature p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.product-section {
  padding-top: clamp(30px, 5vw, 56px);
}

.featured-section {
  background: var(--paper);
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1180px, 100%);
  margin: 0 auto 28px;
}

.category-row a {
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.category-row a.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 123, 32, 0.45);
  box-shadow: 0 12px 28px rgba(16, 36, 16, 0.1);
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 12px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-meta {
  padding: 18px;
}

.product-meta .category {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta h3 {
  min-height: 52px;
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.25;
}

.product-meta p {
  min-height: 44px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.product-link,
.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: var(--white);
}

.why-copy,
.why-list {
  width: min(1180px, 100%);
}

.why-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.why-list div {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.why-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 32px;
  margin-bottom: 18px;
  border: 1px solid rgba(47, 123, 32, 0.24);
  border-radius: 8px;
  background: var(--white);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.why-list h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.why-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.inquiry-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--deep);
  color: var(--white);
}

.inquiry-cta > div:first-child {
  width: min(760px, 100%);
}

.inquiry-cta .eyebrow {
  color: #93d083;
}

.inquiry-cta h2 {
  color: var(--white);
}

.inquiry-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.inquiry-cta .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--deep);
}

.inquiry-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.catalog-filter-bar {
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.catalog-tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto 20px;
}

.catalog-search {
  display: grid;
  gap: 7px;
  width: min(520px, 100%);
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

.catalog-search input {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.catalog-search input::placeholder {
  color: #748072;
  opacity: 1;
}

.catalog-search input:hover {
  border-color: var(--edge);
}

.catalog-search input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 123, 32, 0.12);
}

.catalog-result-count {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.catalog-filter-bar .category-row {
  margin-bottom: 0;
}

.catalog-listing {
  padding-top: 34px;
}

.catalog-empty {
  width: min(1180px, 100%);
  margin: 0 auto 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-empty[hidden] {
  display: none;
}

.catalog-empty h2 {
  margin-bottom: 6px;
  font-size: 22px;
}

.catalog-empty p {
  margin: 0;
  color: var(--muted);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
  background: var(--white);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--deep);
  text-decoration: underline;
  text-decoration-color: rgba(47, 123, 32, 0.3);
  text-underline-offset: 4px;
}

.breadcrumb span:last-child {
  color: var(--green);
}

.detail-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.detail-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.detail-media {
  min-width: 0;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.detail-gallery-thumb,
.variant-option {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--deep);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.detail-gallery-thumb:hover,
.detail-gallery-thumb.is-active,
.variant-option:hover {
  border-color: rgba(47, 123, 32, 0.55);
  box-shadow: 0 8px 20px rgba(16, 36, 16, 0.08);
}

.detail-gallery-thumb:focus-visible,
.variant-option:focus-visible {
  outline: 3px solid rgba(47, 123, 32, 0.28);
  outline-offset: 2px;
}

.detail-gallery-thumb {
  display: grid;
  grid-template-rows: auto minmax(44px, auto);
  overflow: hidden;
  padding: 0;
}

.detail-gallery-thumb picture,
.detail-gallery-thumb img {
  display: block;
  width: 100%;
}

.detail-gallery-thumb img {
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.detail-gallery-thumb span {
  display: grid;
  place-items: center;
  padding: 8px 6px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}

.variant-section {
  background: var(--paper);
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.variant-option {
  display: grid;
  grid-template-rows: auto minmax(52px, auto);
  overflow: hidden;
  padding: 0;
  text-align: left;
}

.variant-option picture,
.variant-option img {
  display: block;
  width: 100%;
}

.variant-option img {
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.variant-option strong {
  display: grid;
  align-content: center;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.detail-copy h1 {
  margin-top: 12px;
}

.lead {
  font-size: 18px;
}

.detail-list {
  margin: 28px 0 10px;
  border-top: 1px solid var(--line);
}

.detail-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  font-weight: 900;
}

.detail-list dd {
  margin: 0;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.product-facts div {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product-facts dt {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0;
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.detail-actions .button {
  margin-top: 0;
}

.detail-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.detail-assurance-grid div,
.detail-support-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.detail-assurance-grid strong,
.detail-support-card h2,
.detail-support-card h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 16px;
  line-height: 1.25;
}

.detail-assurance-grid span,
.detail-support-card p {
  display: block;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.detail-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--paper);
}

.detail-support-card {
  background: var(--white);
}

.detail-support-card a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(47, 123, 32, 0.32);
  text-underline-offset: 4px;
}

.related-section {
  background: var(--white);
}

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

.contact-section {
  background: var(--paper);
}

.contact-heading {
  width: min(980px, 100%);
  margin: 0 auto 20px;
}

.contact-heading h1 {
  font-size: var(--fs-h1);
}

.brand-intro {
  width: min(980px, 100%);
  margin: 0 auto 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.brand-intro h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.brand-intro p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.about-brand-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.about-product-panel {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 12px;
}

.about-product-picture {
  display: block;
  width: min(100%, 340px);
}

.about-product-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.error-picture {
  display: block;
  min-width: 0;
}

.error-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: 66vh;
  background: var(--white);
}

.error-copy {
  width: min(620px, 100%);
}

.error-code {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.error-copy h1 {
  margin-bottom: 16px;
  font-size: var(--fs-display);
}

.error-copy > p:not(.error-code) {
  color: var(--muted);
  font-size: 18px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.error-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-card h2 {
  margin-bottom: 0;
  font-size: 22px;
}

.contact-card a {
  color: var(--green);
  font-weight: 900;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.shop-contact-card {
  grid-column: 1 / -1;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
}

.shop-contact-card .shop-mark {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 76px;
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: var(--white);
}

.shop-contact-card h2 {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.shop-name {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  color: var(--deep) !important;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(47, 123, 32, 0.1);
  color: var(--green);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(150px, 0.7fr) minmax(120px, 0.5fr) minmax(130px, 0.5fr) minmax(230px, 1fr);
  gap: 28px;
  padding: 46px clamp(18px, 5vw, 72px);
  background: #f1f3ed;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 4px;
  color: var(--deep);
  font-size: 18px;
}

.footer-column a {
  display: block;
  color: #30402f;
}

.footer-brand-logo {
  display: block;
  width: 190px;
  margin-bottom: 8px;
}

.footer-brand-logo img,
.footer-brand > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: transparent;
  mix-blend-mode: multiply;
}

.footer-column p {
  margin: 0;
}

.site-footer .footer-column p {
  color: var(--muted);
}

.footer-copyright {
  grid-column: 1 / -1;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-copyright p {
  margin: 0;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}

.footer-column .icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

.icon-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
}

.footer-shop-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-top: 7px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.footer-shop-identity img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--white);
}

.footer-shop-identity small,
.footer-shop-identity strong {
  display: block;
}

.footer-shop-identity small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.footer-shop-identity strong {
  color: var(--deep);
  font-size: 12px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.legal-section {
  padding-top: 72px;
  padding-bottom: 96px;
  background: var(--white);
}

.legal-content {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 0;
}

.legal-content h1 {
  margin-bottom: 10px;
  font-size: 52px;
}

.legal-content > .lead {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.65;
}

.legal-block {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.legal-block p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-block p + p {
  margin-top: 12px;
}

.legal-block a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 720px;
  }
}

@media (max-width: 1080px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    width: min(760px, 100%);
  }

  .hero-product-carousel {
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 14px;
  }

  .hero,
  .home-hero,
  .error-section,
  .product-detail,
  .why-section,
  .detail-support,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-product-carousel {
    justify-self: center;
  }

  .brand-strip,
  .category-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .split-heading,
  .inquiry-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .legal-section {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .legal-content h1 {
    font-size: 38px;
  }

  .legal-content > .lead {
    font-size: 17px;
  }

  .legal-block {
    padding-top: 24px;
    margin-top: 24px;
  }

  .legal-block h2 {
    font-size: 21px;
  }

  .site-header {
    padding: 10px 18px;
  }

  .brand img {
    width: 128px !important;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
    z-index: 20;
    gap: 0;
    padding: 8px 18px 14px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 16px 30px rgba(16, 36, 16, 0.12);
    font-size: 14px;
  }

  .site-header.is-nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-width: 0;
    padding: 10px 0;
    border-top: 1px solid rgba(16, 36, 16, 0.08);
  }

  .nav-menu {
    border-top: 1px solid rgba(16, 36, 16, 0.08);
  }

  .nav-menu summary {
    min-width: 0;
    padding: 10px 0;
  }

  .nav-menu[data-current="true"] > summary::before {
    display: none;
  }

  .nav-submenu {
    position: static;
    width: 100%;
    padding: 0 0 8px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-submenu a {
    min-height: 40px;
    padding: 8px 0;
    border-top: 0;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .hero-product-carousel {
    width: 100%;
    justify-self: start;
    overflow: visible;
  }

  .hero-mobile-carousel {
    display: flex;
    width: calc(100% + 18px);
    margin-right: -18px;
    padding: 2px 18px 12px 0;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .hero-mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  .hero-mobile-slide {
    display: grid;
    flex: 0 0 min(78vw, 304px);
    grid-template-rows: auto minmax(68px, auto);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(16, 36, 16, 0.08);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .hero-mobile-slide picture {
    display: block;
    padding: 16px;
    background: var(--paper);
  }

  .hero-mobile-slide img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .hero-mobile-slide > span:last-child {
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 12px 14px;
    color: var(--deep);
  }

  .hero-mobile-slide strong {
    font-size: 15px;
    line-height: 1.25;
  }

  .hero-mobile-slide small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
  }

  .hero-carousel-controls {
    justify-content: center;
  }

  .hero-carousel-controls > button {
    display: none;
  }

  .hero-visual-card {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .hero-product-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .site-header,
  .hero,
  .section,
  .catalog-filter-bar,
  .product-detail,
  .site-footer {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .site-header {
    overflow: visible;
  }

  .hero-image,
  .hero-showcase,
  .section-heading,
  .brand-strip,
  .category-feature-grid,
  .why-list,
  .detail-assurance-grid,
  .detail-support,
  .inquiry-cta,
  .category-row,
  .catalog-tools,
  .catalog-empty,
  .contact-heading,
  .brand-intro,
  .product-grid {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .catalog-tools {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .about-brand-intro {
    grid-template-columns: 1fr;
  }

  .about-product-panel {
    min-height: 180px;
    padding: 8px;
  }

  .catalog-result-count {
    margin: 0;
  }

  .featured-section .product-card:nth-child(n + 5) {
    display: none;
  }

  h1 {
    font-size: 36px;
    overflow-wrap: anywhere;
  }

  .brand-strip,
  .category-feature-grid,
  .why-list,
  .detail-assurance-grid,
  .detail-support,
  .product-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .brand-strip {
    margin-right: auto;
    margin-left: auto;
    border: 1px solid var(--line);
  }

  .brand-strip div {
    padding: 18px;
  }

  .category-feature h3,
  .why-list h3 {
    font-size: 18px;
  }

  .detail-actions .button,
  .inquiry-actions .button,
  .error-actions .button {
    width: 100%;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

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

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

/* Brand story chapters */
.about-manifesto {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 8vw, 124px);
  background: var(--white);
}

.about-manifesto > div {
  min-width: 0;
}

.about-manifesto h2,
.brand-stage-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.about-manifesto h2 {
  max-width: 600px;
  font-size: var(--fs-h1);
}

.about-manifesto-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-manifesto-copy p:last-child {
  margin-bottom: 0;
}

.brand-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  min-height: 590px;
}

.brand-stage-dark {
  background: var(--night);
  color: var(--white);
}

.brand-stage-light {
  background: var(--white);
  color: var(--ink);
}

.brand-stage-media {
  display: block;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
}

.brand-stage-media img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.brand-stage-reverse {
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
}

.brand-stage-reverse .brand-stage-media {
  order: 2;
}

.brand-stage-reverse .brand-stage-copy {
  order: 1;
}

.brand-stage-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  min-width: 0;
  padding: clamp(48px, 7vw, 108px);
}

.brand-stage-copy .eyebrow {
  color: #93d083;
}

.brand-stage-light .brand-stage-copy .eyebrow {
  color: var(--green);
}

.brand-stage-copy h2 {
  max-width: 650px;
  margin-bottom: 20px;
  color: inherit;
  font-size: var(--fs-h1);
  line-height: 1.04;
}

.brand-stage-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.brand-stage-light .brand-stage-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.brand-stage-copy .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--deep);
}

.brand-stage-promise,
.brand-stage-promise .brand-stage-media img {
  min-height: 520px;
}

.brand-stage-promise .brand-stage-media img {
  object-position: center center;
}

.product-editorial-media {
  position: relative;
  margin: 0;
}

.product-editorial-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-editorial-media figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 8px 10px;
  background: rgba(10, 13, 10, 0.78);
  color: var(--white);
  font-size: 12px;
  line-height: 1.4;
}

.product-editorial--care .product-editorial-media img,
.product-editorial--science .product-editorial-media img {
  object-position: center center;
}

.product-editorial--ingredient .product-editorial-media img {
  object-position: center center;
}

@media (max-width: 980px) {
  .about-manifesto {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-stage,
  .brand-stage-reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand-stage-reverse .brand-stage-media,
  .brand-stage-reverse .brand-stage-copy {
    order: initial;
  }

  .brand-stage-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .brand-stage-media img,
  .brand-stage-promise .brand-stage-media img {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .about-manifesto h2 {
    font-size: 39px;
  }

  .about-manifesto-copy p {
    font-size: 17px;
  }

  .brand-stage-media {
    aspect-ratio: 4 / 3;
  }

  .brand-stage-copy {
    padding: 44px 18px 50px;
  }

  .brand-stage-copy h2 {
    font-size: 38px;
  }

  .brand-stage-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .product-editorial-media figcaption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
}

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

/* Editorial brand system */
.brand-hero,
.about-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(560px, calc(100dvh - 110px), 760px);
  overflow: hidden;
  background: #2d251f;
  color: var(--white);
}

.brand-hero::after,
.about-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(12, 14, 11, 0.34);
  content: "";
}

.brand-hero-media,
.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
}

.brand-hero-media img,
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-hero-media img {
  object-position: center center;
}

.brand-hero-copy {
  align-self: center;
  width: min(620px, 44%);
  margin-left: auto;
  padding: clamp(44px, 6vw, 88px) clamp(28px, 7vw, 112px) clamp(44px, 6vw, 88px) 32px;
  z-index: 1;
}

.brand-hero-copy .eyebrow,
.about-hero-copy .eyebrow {
  color: #d8efcf;
  font-size: 13px;
}

.brand-hero-copy h1,
.about-hero-copy h1,
.editorial-copy h2,
.about-story h2,
.about-approach-copy h2,
.product-editorial-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.brand-hero-copy h1 {
  max-width: 600px;
  font-size: var(--fs-display);
  line-height: 0.98;
}

.brand-name-nowrap {
  white-space: nowrap;
}

.brand-rmark {
  font-size: 0.28em;
  font-weight: 400;
  vertical-align: top;
  line-height: 1;
  position: relative;
  top: 0.15em;
  margin-left: 0.06em;
  opacity: 0.8;
}

.brand-hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.6;
}

.brand-hero .hero-actions {
  margin-top: 18px;
}

.brand-hero .button {
  border-color: var(--white);
}

.brand-hero-primary {
  background: var(--white);
  color: var(--deep);
}

.brand-hero-secondary {
  background: rgba(12, 20, 12, 0.22);
  color: var(--white);
}

.bestseller-section {
  padding-top: clamp(42px, 5vw, 66px);
  padding-bottom: clamp(44px, 5vw, 68px);
  background: var(--white);
}

.bestseller-section .section-heading {
  margin-bottom: 22px;
}

.bestseller-section .section-heading h2 {
  max-width: 760px;
  font-size: var(--fs-h2);
}

.bestseller-section .hero-product-carousel {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.bestseller-section .hero-mobile-slide {
  flex-basis: clamp(238px, 23.5%, 278px);
  box-shadow: 0 10px 26px rgba(16, 36, 16, 0.07);
}

.brand-promise {
  padding: clamp(34px, 5vw, 58px) clamp(18px, 7vw, 110px);
  background: var(--deep);
  color: var(--white);
  text-align: center;
}

.brand-promise p {
  width: min(980px, 100%);
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h3);
  line-height: 1.2;
  overflow-wrap: normal;
}

.editorial-band,
.about-approach,
.product-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 560px;
  background: var(--deep);
  color: var(--white);
}

.editorial-media,
.about-approach-media,
.product-editorial-media {
  display: block;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
}

.editorial-media img,
.about-approach-media img,
.product-editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.editorial-copy,
.about-approach-copy,
.product-editorial-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(48px, 7vw, 104px);
}

.editorial-copy .eyebrow,
.about-approach-copy .eyebrow,
.product-editorial-copy .eyebrow {
  color: #93d083;
}

.editorial-copy h2,
.about-approach-copy h2,
.product-editorial-copy h2 {
  max-width: 620px;
  color: var(--white);
  font-size: var(--fs-h1);
}

.editorial-copy > p:not(.eyebrow),
.about-approach-copy > p:not(.eyebrow),
.product-editorial-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.editorial-copy .button,
.about-approach-copy .button,
.product-editorial-copy .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--deep);
}

.about-hero {
  min-height: clamp(520px, 72dvh, 720px);
}

.about-hero-media img {
  object-position: center center;
}

.about-hero-copy {
  align-self: end;
  width: min(680px, 56%);
  padding: clamp(48px, 7vw, 104px) clamp(28px, 6vw, 88px);
  z-index: 1;
}

.about-hero-copy h1 {
  margin-bottom: 18px;
  font-size: var(--fs-display);
}

.about-hero-copy > p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-lead);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 110px);
  background: var(--white);
}

.about-story-heading,
.about-story-copy,
.brand-principles {
  min-width: 0;
}

.about-story h2 {
  max-width: 520px;
  font-size: var(--fs-h1);
}

.about-story-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-story-copy p:last-child {
  margin-bottom: 0;
}

.brand-principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-principles div {
  min-width: 0;
  padding: 30px clamp(0px, 2.5vw, 34px);
}

.brand-principles div + div {
  border-left: 1px solid var(--line);
}

.brand-principles span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-principles h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.brand-principles p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.about-approach {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  background: var(--night);
}

.about-inquiry {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-notice {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  background: var(--paper);
}

.detail-notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--deep);
  font-size: 15px;
}

.detail-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.product-editorial {
  min-height: 500px;
}

.product-editorial-media img {
  min-height: 500px;
}

@media (max-width: 980px) {
  .brand-hero-copy {
    width: min(590px, 58%);
    padding-right: 40px;
  }

  .editorial-band,
  .about-approach,
  .product-editorial {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .editorial-media,
  .about-approach-media,
  .product-editorial-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .editorial-media img,
  .about-approach-media img,
  .product-editorial-media img {
    min-height: 0;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .brand-hero,
  .about-hero {
    min-height: clamp(540px, calc(100svh - 112px), 670px);
  }

  .brand-hero::after,
  .about-hero::after {
    background: rgba(10, 12, 9, 0.48);
  }

  .brand-hero-media img {
    object-position: 39% center;
  }

  .brand-hero-copy {
    align-self: end;
    width: 100%;
    margin-left: 0;
    padding: 44px 18px 46px;
  }

  .brand-hero-copy h1 {
    max-width: 340px;
    font-size: 46px;
  }

  .brand-hero-copy > p:not(.eyebrow) {
    max-width: 340px;
    font-size: 17px;
    line-height: 1.55;
  }

  .brand-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .brand-hero .button {
    width: 100%;
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
  }

  .bestseller-section .hero-mobile-slide {
    flex-basis: min(78vw, 304px);
  }

  .brand-promise {
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .brand-promise p {
    font-size: 25px;
  }

  .editorial-copy,
  .about-approach-copy,
  .product-editorial-copy {
    padding: 44px 18px 50px;
  }

  .editorial-copy h2,
  .about-approach-copy h2,
  .product-editorial-copy h2 {
    font-size: 36px;
  }

  .about-hero-media img {
    object-position: 62% center;
  }

  .about-hero-copy {
    width: 100%;
    padding: 44px 18px;
  }

  .about-hero-copy h1 {
    max-width: 350px;
    font-size: 46px;
  }

  .about-story h2 {
    font-size: 38px;
  }

  .about-story-copy p {
    font-size: 17px;
  }

  .brand-principles {
    grid-template-columns: 1fr;
  }

  .brand-principles div {
    padding: 24px 0;
  }

  .brand-principles div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .inquiry-cta,
  .about-inquiry {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .editorial-media,
  .about-approach-media,
  .product-editorial-media {
    aspect-ratio: 4 / 3;
  }
}

/* Responsive primary navigation */
@media (max-width: 1080px) {
  .nav-shell {
    min-height: 72px;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    margin-left: auto;
  }

  .nav-shell > .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    width: 100%;
    padding: 12px clamp(18px, 5vw, 72px) 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 30px rgba(16, 36, 16, 0.11);
  }

  .site-header.is-nav-open .nav-shell > .site-nav {
    display: grid;
  }

  .nav-shell > .site-nav a {
    justify-content: flex-start;
    min-height: 52px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(16, 36, 16, 0.09);
  }

  .nav-shell > .site-nav a::after {
    display: none;
  }

  .nav-shell > .site-nav .nav-contact {
    align-self: center;
    justify-content: center;
    min-height: 42px;
    margin: 5px 0;
    padding: 8px 16px;
    border-bottom: 1px solid var(--green);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0;
  }

  .utility-bar {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
    padding: 9px 18px;
  }

  .brand img {
    width: 150px !important;
  }

  .nav-shell > .site-nav {
    grid-template-columns: 1fr;
    padding: 5px 18px 16px;
    background: var(--white);
  }

  .nav-shell > .site-nav a {
    min-height: 49px;
    padding: 9px 0;
    border-top: 0;
  }

  .nav-shell > .site-nav .nav-contact {
    margin-top: 8px;
  }

  .category-feature img {
    aspect-ratio: 4 / 3;
  }
}

/* Hair guide and concern-led discovery */
.guide-hero {
  position: relative;
  display: grid;
  min-height: clamp(430px, 58dvh, 610px);
  overflow: hidden;
  background: var(--night);
  color: var(--white);
  isolation: isolate;
}

.guide-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(15, 13, 11, 0.45);
  content: "";
}

.guide-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.guide-hero-copy {
  align-self: end;
  width: min(750px, 68%);
  padding: clamp(48px, 7vw, 104px) clamp(18px, 7vw, 108px);
}

.guide-hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-display);
  font-weight: 500;
  line-height: 1;
}

.guide-hero-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--fs-lead);
  line-height: 1.65;
}

.guide-jump-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  scrollbar-width: none;
}

.guide-jump-nav::-webkit-scrollbar {
  display: none;
}

.guide-jump-nav a {
  flex: 0 0 auto;
  min-height: 58px;
  padding: 19px clamp(17px, 2.3vw, 34px);
  border-left: 1px solid var(--line);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.guide-jump-nav a:last-child {
  border-right: 1px solid var(--line);
}

.guide-jump-nav a:hover {
  background: var(--surface);
  color: var(--green);
}

.concern-section,
.shade-finder-section,
.comparison-section {
  background: var(--white);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.concern-grid a {
  display: grid;
  align-content: start;
  min-height: 148px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcfa;
}

.concern-grid a:hover {
  background: #eef4ec;
  color: var(--green);
}

.concern-grid strong,
.concern-grid span {
  display: block;
}

.concern-grid strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.concern-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.home-concern-section {
  background: var(--white);
}

.guide-route-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid #b9c5b6;
  border-left: 1px solid #b9c5b6;
  background: var(--deep);
  color: var(--white);
}

.guide-route-row a {
  display: grid;
  min-height: 126px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.guide-route-row a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.guide-route-row span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.5;
}

.guide-routine-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  min-height: 560px;
  background: #eee4dd;
}

.guide-routine-copy {
  align-self: center;
  padding: clamp(46px, 7vw, 100px);
}

.guide-routine-copy h2 {
  max-width: 580px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h1);
  font-weight: 500;
}

.guide-routine-copy > p {
  max-width: 620px;
  color: var(--clay);
  font-size: 17px;
  line-height: 1.7;
}

.guide-routine-media,
.guide-routine-media img {
  width: 100%;
  height: 100%;
}

.guide-routine-media img {
  min-height: 560px;
  object-fit: cover;
}

.routine-steps {
  display: grid;
  gap: 0;
  margin: 28px 0 8px;
  padding: 0;
  border-top: 1px solid rgba(102, 75, 61, 0.25);
  list-style: none;
}

.routine-steps li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(102, 75, 61, 0.25);
}

.routine-steps span {
  color: var(--clay);
}

.shade-tools,
.comparison-selectors {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(2, minmax(180px, 0.75fr)) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.shade-tools label,
.comparison-selectors label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.shade-tools label span,
.comparison-selectors label span {
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.shade-tools input,
.shade-tools select,
.comparison-selectors select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.shade-tools input:focus,
.shade-tools select:focus,
.comparison-selectors select:focus {
  border-color: var(--green);
  outline: 3px solid rgba(47, 123, 32, 0.15);
}

.shade-tools > p {
  min-width: 90px;
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-align: right;
}

.shade-result-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.shade-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.shade-card:hover {
  border-color: var(--edge);
  box-shadow: 0 10px 24px rgba(16, 36, 16, 0.08);
}

.shade-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fbfbfa;
}

.shade-card span {
  display: grid;
  align-content: start;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.shade-card strong,
.shade-card small {
  display: block;
}

.shade-card strong {
  font-size: 13px;
  line-height: 1.4;
}

.shade-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.shade-more-row {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.shade-more-row .button {
  min-width: 190px;
  margin-top: 0;
}

.guide-note {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid #a56445;
  background: #f6efea;
  color: var(--clay);
  font-size: 14px;
  line-height: 1.65;
}

.professional-choice-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--deep);
  color: var(--white);
}

.professional-choice-panel {
  min-width: 0;
  padding: clamp(48px, 6vw, 90px) clamp(18px, 6vw, 86px);
}

.professional-choice-panel + .professional-choice-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.professional-choice-panel h2 {
  max-width: 560px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h1);
  font-weight: 500;
}

.professional-choice-panel > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.strength-grid,
.system-links {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

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

.strength-grid a,
.system-links a {
  display: grid;
  min-height: 96px;
  padding: 17px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.strength-grid a:hover,
.system-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.strength-grid span,
.system-links span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.salon-guide-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 7vw, 112px);
  background: #f5eee9;
}

.salon-guide-section > div:first-child p {
  max-width: 620px;
  color: var(--clay);
  font-size: 17px;
  line-height: 1.72;
}

.salon-guide-points {
  display: grid;
  align-content: center;
  border-top: 1px solid #cfbdb1;
}

.salon-guide-points p {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid #cfbdb1;
}

.salon-guide-points span {
  color: var(--clay);
}

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

.comparison-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.comparison-card {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison-card img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 18px;
  object-fit: contain;
  background: #fbfbfa;
}

.comparison-card h3 {
  min-height: 54px;
  margin-bottom: 8px;
  font-size: 19px;
}

.comparison-card > p {
  min-height: 66px;
  color: var(--muted);
  font-size: 14px;
}

.comparison-card dl {
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}

.comparison-card dl div {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.comparison-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-card dd {
  margin: 3px 0 0;
  font-size: 14px;
}

.catalogue-download-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(44px, 6vw, 78px) clamp(18px, 7vw, 108px);
  background: var(--night);
  color: var(--white);
}

.catalogue-download-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h1);
  font-weight: 500;
}

.catalogue-download-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.catalogue-download-band .button {
  flex: 0 0 auto;
  margin-top: 0;
  border-color: var(--white);
  background: var(--white);
  color: var(--deep);
}

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

  .shade-result-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .guide-routine-band,
  .professional-choice-band,
  .salon-guide-section {
    grid-template-columns: 1fr;
  }

  .guide-routine-media {
    grid-row: 1;
    aspect-ratio: 16 / 9;
  }

  .guide-routine-media img {
    min-height: 0;
  }

  .professional-choice-panel + .professional-choice-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

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

  .shade-tools > p {
    margin: 0;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .guide-hero {
    min-height: 500px;
  }

  .guide-hero-copy {
    width: 100%;
    padding: 44px 18px;
  }

  .guide-hero-copy h1 {
    font-size: 46px;
  }

  .guide-jump-nav {
    padding: 0 18px;
  }

  .concern-grid,
  .guide-route-row,
  .shade-tools,
  .comparison-selectors,
  .comparison-results {
    grid-template-columns: 1fr;
  }

  .concern-grid a {
    min-height: 118px;
  }

  .routine-steps li,
  .salon-guide-points p {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .guide-routine-copy,
  .professional-choice-panel {
    padding: 44px 18px 50px;
  }

  .guide-routine-media {
    aspect-ratio: 4 / 3;
  }

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

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

  .comparison-card h3,
  .comparison-card > p {
    min-height: 0;
  }

  .catalogue-download-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Ingredient storytelling */
.ingredient-science {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: 560px;
  background: #edf1e9;
}

.ingredient-science-media {
  display: block;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: var(--night);
}

.ingredient-science-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.ingredient-science-copy {
  display: grid;
  align-content: center;
  padding: clamp(52px, 7vw, 96px);
}

.ingredient-science-intro {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ingredient-science-copy h2 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: var(--fs-h1);
}

.ingredient-science-copy > p:not(.ingredient-science-intro):not(.ingredient-note) {
  max-width: 720px;
  margin-bottom: 28px;
  color: #4e594d;
  font-size: 17px;
}

.ingredient-list {
  border-top: 1px solid var(--line-2);
}

.ingredient-list > div {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-2);
}

.ingredient-list strong {
  color: var(--deep);
  font-size: 14px;
}

.ingredient-list span {
  color: var(--muted);
  font-size: 14px;
}

.ingredient-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 980px) {
  .ingredient-science {
    grid-template-columns: 1fr;
  }

  .ingredient-science-media,
  .ingredient-science-media img {
    min-height: 0;
  }

  .ingredient-science-media {
    aspect-ratio: 16 / 7;
  }

}

@media (max-width: 640px) {
  .ingredient-science-copy {
    padding-right: 18px;
    padding-left: 18px;
  }

  .ingredient-science-media {
    aspect-ratio: 4 / 3;
  }

  .ingredient-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

}
