:root {
  --green: #00c853;
  --green-dark: #087b41;
  --electric-cyan: #00bce7;
  --ink: #171b19;
  --ink-soft: #3b413c;
  --night: #02050c;
  --night-soft: #0d0f13;
  --paper: #f5f7ef;
  --paper-deep: #e8eee4;
  --white: #ffffff;
  --line: #d5ddcf;
  --amber: #ffb000;
  --cyan: #00a7b5;
  --shadow: 0 22px 60px rgba(34, 34, 34, .16);
  --radius: 8px;
}

@keyframes heroImagePulse {
  0% {
    transform: scale(1.02) translate3d(-.5%, -.4%, 0);
  }

  100% {
    transform: scale(1.09) translate3d(.7%, .5%, 0);
  }
}

@keyframes catalogImageFloat {
  0% {
    transform: scale(1.02) translate3d(-.8%, -.5%, 0);
  }

  50% {
    transform: scale(1.06) translate3d(.5%, .3%, 0);
  }

  100% {
    transform: scale(1.035) translate3d(.8%, -.2%, 0);
  }
}

@keyframes promoImageFloat {
  0% {
    transform: scale(1.015) translate3d(.6%, -.3%, 0);
  }

  100% {
    transform: scale(1.075) translate3d(-.8%, .4%, 0);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
}

body.panel-open {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

svg {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.deferred-media {
  opacity: 0;
  transition: opacity .2s ease;
}

.deferred-media[data-ready="true"] {
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px max(20px, calc((100vw - 980px) / 2));
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #edf0ea;
  backdrop-filter: blur(16px);
}

.site-nav {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #edf0ea;
  background: var(--white);
}

.site-nav > div {
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(980px, calc(100% - 40px));
  min-height: 36px;
  margin: 0 auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #697168;
  border-bottom: 2px solid transparent;
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--night);
  border-bottom-color: var(--electric-cyan);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: max-content;
  max-width: 100%;
  padding: 6px 12px 6px 6px;
  background: var(--white);
  border: 1px solid rgba(0, 200, 83, .28);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  box-shadow: none;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.38rem;
  line-height: .95;
  text-transform: uppercase;
}

.brand small {
  color: #5b635a;
  font-size: .68rem;
  font-weight: 800;
}

.search-box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  height: 46px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(34, 34, 34, .06);
}

.search-box:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 200, 83, .14);
}

.search-box__icon {
  color: var(--green-dark);
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 14px 34px rgba(8, 123, 65, .28);
}

.button--primary:hover {
  background: #066a38;
}

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

.button--dark:hover {
  box-shadow: 0 14px 34px rgba(34, 34, 34, .22);
}

.button--light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button--full {
  width: 100%;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  transition: transform .18s ease, background .18s ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .18);
}

.icon-button--dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.hero {
  position: relative;
  padding: 14px 20px 0;
  background: #ffffff;
  color: var(--ink);
  overflow: visible;
}

.legacy-hero {
  display: none;
}

.hero::before {
  display: none;
}

.hero__inner {
  position: relative;
  display: block;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
}

.hero__copy {
  position: absolute;
  top: 50%;
  left: 34px;
  z-index: 3;
  width: min(360px, calc(100% - 68px));
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .4);
  transform: translateY(-50%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 310px;
  margin: 0;
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 2.28rem;
  line-height: .98;
  text-transform: uppercase;
}

.hero__lead {
  display: none;
  max-width: 380px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
  line-height: 1.45;
}

.hero__actions {
  display: none;
}

.hero__stats {
  display: none;
}

.hero__stats div {
  min-width: 0;
  display: grid;
  align-content: start;
  min-height: 100px;
  padding: 15px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
}

.hero__stats strong,
.hero__stats span {
  display: block;
}

.hero__stats strong {
  color: var(--green);
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero__stats span {
  margin-top: 7px;
  color: rgba(255, 255, 255, .72);
  font-size: .85rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-stage {
  position: relative;
  min-width: 0;
}

.hero-stage__topline {
  position: absolute;
  top: 12px;
  left: 14px;
  right: 14px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.hero-stage__topline span {
  width: max-content;
  max-width: calc(100% - 54px);
  padding: 5px 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  aspect-ratio: 16 / 4.5;
  border: 1px solid #e7e7e7;
  border-radius: var(--radius);
  background: #111;
  box-shadow: none;
  isolation: isolate;
}

.spotlight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroImagePulse 13s ease-in-out infinite alternate;
  transition: transform .5s ease, opacity .3s ease;
  will-change: transform;
}

.spotlight-card.is-switching img {
  animation: none;
  opacity: .25;
  transform: scale(1.08);
}

.spotlight-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .08) 58%, rgba(0, 0, 0, .16)),
    linear-gradient(0deg, rgba(0, 0, 0, .44), transparent 54%);
  z-index: 1;
}

.spotlight-card__content {
  position: absolute;
  inset: auto 24px 22px auto;
  z-index: 2;
  display: grid;
  gap: 7px;
  width: min(310px, 34%);
  padding: 14px;
  color: var(--white);
  background: rgba(0, 0, 0, .58);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.spotlight-card__content span {
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--green);
  border-radius: var(--radius);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-card__content h2 {
  margin: 0;
  color: var(--white);
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.72rem;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.spotlight-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
  line-height: 1.45;
}

.spotlight-card__content strong {
  color: var(--white);
  font-size: 1.22rem;
}

.spotlight-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 92px;
  justify-content: start;
  gap: 14px;
  margin-top: 16px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 0 4px 14px;
}

.product-categories {
  width: min(980px, calc(100% - 40px));
  margin: 8px auto 0;
}

.brand-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 18px;
  width: min(980px, calc(100% - 40px));
  margin: 28px auto 8px;
  padding: 28px;
  color: var(--white);
  background: var(--night);
  border-top: 3px solid var(--electric-cyan);
  box-shadow: 0 20px 46px rgba(2, 5, 12, .14);
}

.brand-proof__intro {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
}

.brand-proof__intro h2 {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 2.18rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-proof__intro > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  line-height: 1.55;
}

.brand-proof .eyebrow {
  color: var(--electric-cyan);
}

.brand-proof__visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: #11151b;
  border: 1px solid rgba(255, 255, 255, .16);
}

.brand-proof__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 41, 24, .68), transparent 58%);
  content: "";
  pointer-events: none;
}

.brand-proof__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.brand-proof:hover .brand-proof__visual img { transform: scale(1.04); }

.brand-proof__visual span {
  position: absolute;
  z-index: 1;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: .85rem;
  font-weight: 900;
}

.brand-proof__cards {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 8px;
}

.brand-proof__cards > div {
  display: grid;
  gap: 5px;
  min-height: 96px;
  padding: 13px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.brand-proof__cards > div:hover {
  background: rgba(0, 188, 231, .09);
  border-color: rgba(0, 188, 231, .68);
  transform: translateY(-3px);
}

.brand-proof__cards b { color: var(--green); font-size: .66rem; }
.brand-proof__cards strong { color: var(--white); font-size: .86rem; }
.brand-proof__cards span { color: rgba(255, 255, 255, .62); font-size: .75rem; line-height: 1.35; }

.product-categories .spotlight-strip {
  margin-top: 0;
  padding-bottom: 8px;
}

.spotlight-pill {
  display: grid;
  grid-template-rows: 76px auto;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 7px;
  min-height: 112px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  text-decoration: none;
}

.spotlight-pill[aria-pressed="true"] {
  color: var(--green-dark);
  background: transparent;
  border-color: transparent;
}

.spotlight-pill img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  padding: 6px;
  background: #fff2a8;
  border: 2px solid transparent;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(34, 34, 34, .08);
}

.spotlight-pill[aria-pressed="true"] img {
  border-color: var(--green);
  background: #e8ffe8;
}

.spotlight-pill span {
  min-width: 0;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
}

.promo-band {
  width: min(980px, calc(100% - 40px));
  margin: 24px auto 0;
}

.promo-carousel {
  position: relative;
}

.promo-carousel__viewport {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(34, 34, 34, .1);
}

.promo-slide {
  position: absolute;
  inset: 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .48s ease, visibility .48s step-end;
}

.promo-slide.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .48s ease;
}

.promo-slide img {
  display: block;
  width: 100%;
  min-height: 300px;
  aspect-ratio: 3.27 / 1;
  object-fit: cover;
  transition: transform .55s ease;
}

.promo-slide:hover img,
.promo-slide:focus-visible img {
  transform: scale(1.012);
}

.promo-slide:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: -3px;
}

.promo-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: rgba(34, 34, 34, .62);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .2s ease, background .2s ease;
}

.promo-carousel:hover .promo-carousel__nav,
.promo-carousel:focus-within .promo-carousel__nav {
  opacity: 1;
}

.promo-carousel__nav:hover {
  background: var(--green-dark);
}

.promo-carousel__nav--previous {
  left: 12px;
}

.promo-carousel__nav--next {
  right: 12px;
}

.promo-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 9px;
}

.promo-carousel__dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  background: #c6cdc4;
  border: 0;
  border-radius: 50%;
}

.promo-carousel__dots button[aria-pressed="true"] {
  width: 19px;
  background: var(--electric-cyan);
  border-radius: 4px;
}

.story-strip {
  width: min(980px, calc(100% - 40px));
  margin: 20px auto 0;
}

.story-strip__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.story-strip__head .eyebrow {
  margin: 0 0 2px;
  font-size: .68rem;
}

.story-strip__head h2 {
  margin: 0;
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.story-strip__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86px;
  gap: 12px;
  overflow-x: auto;
  padding: 3px 2px 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.story-card {
  display: grid;
  grid-template-rows: 78px auto;
  gap: 6px;
  align-items: start;
  width: 86px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: center;
  scroll-snap-align: start;
}

.story-card__ring {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  padding: 3px;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0, 200, 83, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.story-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid rgba(34, 34, 34, .14);
  border-radius: 50%;
}

.story-card__asset {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.story-card__play {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  background: rgba(34, 34, 34, .82);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
}

.story-card__play svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
}

.story-card > span:last-child {
  display: -webkit-box;
  overflow: hidden;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.15;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.story-card:hover .story-card__ring,
.story-card:focus-visible .story-card__ring {
  box-shadow: 0 0 0 4px rgba(0, 200, 83, .18);
  transform: translateY(-2px);
}

.story-card:hover .story-card__asset,
.story-card:focus-visible .story-card__asset {
  transform: scale(1.07);
}

.story-card:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.story-viewer {
  width: min(428px, 50.625svh, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  padding: 0;
  overflow: visible;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 26px 76px rgba(0, 0, 0, .5);
}

.story-viewer::backdrop {
  background: rgba(9, 12, 9, .78);
  backdrop-filter: blur(4px);
}

.story-viewer__card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #161816;
  border-radius: 10px;
}

.story-viewer__progress {
  position: absolute;
  top: 11px;
  right: 12px;
  left: 12px;
  z-index: 6;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 4px;
}

.story-viewer__progress i {
  position: relative;
  display: block;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, .34);
  border-radius: 4px;
}

.story-viewer__progress i.is-complete::after,
.story-viewer__progress i.is-current::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--white);
  transform-origin: left;
}

.story-viewer__progress i.is-current::after {
  animation: storyProgress 6.5s linear forwards;
}

.story-viewer__topbar {
  position: absolute;
  top: 26px;
  right: 13px;
  left: 13px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.story-viewer__identity {
  display: flex;
  min-width: 0;
  gap: 9px;
  align-items: center;
  color: var(--white);
}

.story-viewer__identity img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: cover;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
}

.story-viewer__identity span {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.story-viewer__identity strong,
.story-viewer__identity small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-viewer__identity strong {
  font-size: .79rem;
  line-height: 1.1;
}

.story-viewer__identity small {
  color: rgba(255, 255, 255, .8);
  font-size: .68rem;
  line-height: 1.1;
}

.story-viewer__close {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: rgba(0, 0, 0, .46);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
}

.story-viewer__close svg,
.story-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.story-viewer__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0d0f0d;
}

.story-viewer__asset {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0d0f0d;
}

.story-viewer__nav {
  position: absolute;
  top: 56px;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: 50%;
  align-items: center;
  color: var(--white);
  background: transparent;
  border: 0;
}

.story-viewer__nav span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transition: opacity .16s ease;
}

.story-viewer__nav--previous {
  left: 0;
  justify-content: flex-start;
  padding-left: 10px;
}

.story-viewer__nav--next {
  right: 0;
  justify-content: flex-end;
  padding-right: 10px;
}

.story-viewer__nav:hover span,
.story-viewer__nav:focus-visible span {
  opacity: 1;
}

.story-viewer__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  gap: 6px;
  padding: 13px 15px 15px;
  background: rgba(10, 15, 11, .88);
}

.story-viewer__label {
  justify-self: start;
  padding: 4px 7px;
  color: var(--ink);
  background: var(--green);
  border-radius: 4px;
  font-size: .67rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.story-viewer__body h2,
.story-viewer__body p {
  margin: 0;
}

.story-viewer__body h2 {
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.story-viewer__body p {
  color: rgba(255, 255, 255, .76);
  font-size: .8rem;
  line-height: 1.4;
}

.story-viewer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 3px;
}

.story-action {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 5px;
  font-size: .75rem;
  font-weight: 900;
  text-decoration: none;
}

.story-action:hover,
.story-action:focus-visible,
.story-action.is-liked {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.story-action:focus-visible,
.story-viewer__close:focus-visible,
.story-viewer__nav:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: -4px;
}

@keyframes storyProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.work-gallery {
  width: min(1080px, calc(100% - 40px));
  margin: 28px auto 0;
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 24px;
  align-items: end;
  margin-bottom: 14px;
}

.gallery-head h2 {
  margin: 0;
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 2.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-head p:last-child {
  margin: 0;
  color: #566056;
  font-size: .86rem;
  line-height: 1.45;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 250px);
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(34, 34, 34, .07);
  scroll-snap-align: start;
  transition: transform .2s ease, box-shadow .2s ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(34, 34, 34, .12);
}

.gallery-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--paper-deep);
  border: 0;
  text-align: left;
}

.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: catalogImageFloat 19s ease-in-out infinite alternate;
  transition: transform .35s ease;
  will-change: transform;
}

.gallery-card:hover .gallery-card__media img,
.gallery-card__media:focus-visible img {
  animation: none;
  transform: scale(1.05);
}

.gallery-card__media span {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  max-width: calc(100% - 20px);
  padding: 6px 9px;
  color: var(--ink);
  background: var(--green);
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card__zoom {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 7px;
  color: var(--white);
  background: rgba(34, 34, 34, .72);
  border-radius: 4px;
  font-size: .67rem;
  font-style: normal;
  font-weight: 800;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}

.gallery-card__media:hover .gallery-card__zoom,
.gallery-card__media:focus-visible .gallery-card__zoom {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card__body {
  display: grid;
  flex: 1;
  gap: 5px;
  align-content: start;
  padding: 12px;
}

.gallery-card h3 {
  margin: 0;
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.23rem;
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.gallery-card strong {
  color: var(--green-dark);
  font-size: .7rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.gallery-card p {
  display: -webkit-box;
  margin: 2px 0 4px;
  overflow: hidden;
  color: #566056;
  font-size: .8rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gallery-card__action {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  width: max-content;
  margin-top: auto;
  padding-top: 5px;
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 900;
  text-decoration: none;
}

.gallery-card__action span {
  transition: transform .18s ease;
}

.gallery-card__action:hover span {
  transform: translateX(3px);
}

.gallery-lightbox {
  width: min(820px, calc(100% - 28px));
  max-height: min(86vh, 760px);
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #1b1d1b;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

.gallery-lightbox::backdrop {
  background: rgba(10, 12, 10, .72);
  backdrop-filter: blur(3px);
}

.gallery-lightbox img {
  display: block;
  width: 100%;
  max-height: min(72vh, 650px);
  object-fit: contain;
  background: #111;
}

.gallery-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: rgba(0, 0, 0, .62);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
}

.models-page {
  min-height: 100vh;
  background: #ffffff;
}

.category-page {
  min-height: 100vh;
  background: #fff;
}

.category-main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 52px;
}

.category-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding: 8px 0 22px;
  border-bottom: 1px solid var(--line);
}

.category-intro h1 {
  margin: 0;
  color: var(--ink);
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 2.45rem;
  line-height: .98;
  text-transform: uppercase;
}

.category-intro p:not(.eyebrow) {
  max-width: 630px;
  margin: 10px 0 0;
  color: #596459;
  line-height: 1.5;
}

.category-directory {
  display: flex;
  gap: 8px;
  padding: 17px 0 13px;
  overflow-x: auto;
}

.category-directory a {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 8px 11px;
  color: #5b685c;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
  transition: color .16s ease, border-color .16s ease, background .16s ease;
}

.category-directory a:hover,
.category-directory a[aria-current="page"] {
  color: #087a3e;
  background: #effaf2;
  border-color: rgba(0, 200, 83, .52);
}

.category-status {
  margin: 5px 0 13px;
  color: #617062;
  font-size: .79rem;
  font-weight: 800;
}

.category-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(34, 34, 34, .05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.category-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(34, 34, 34, .11);
}

.category-product-card__media {
  display: block;
  aspect-ratio: 1 / .82;
  overflow: hidden;
  background: #f4f6f3;
}

.category-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.category-product-card:hover .category-product-card__media img {
  transform: scale(1.035);
}

.category-product-card__body {
  display: grid;
  flex: 1;
  gap: 8px;
  padding: 13px;
}

.category-product-card__body > span {
  color: #087a3e;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-product-card h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.08;
}

.category-product-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.category-product-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #5a665b;
  font-size: .8rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.category-product-card__foot {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 4px;
}

.category-product-card__foot strong {
  color: #087a3e;
  font-size: .85rem;
}

.category-product-card__foot a {
  color: #183c26;
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
}

.category-product-card__foot a span {
  display: inline-block;
  transition: transform .16s ease;
}

.category-product-card__foot a:hover span {
  transform: translateX(3px);
}

@media (max-width: 980px) {
  .category-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.models-main {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.models-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 28px;
  align-items: end;
  padding: 6px 0 20px;
  border-bottom: 1px solid var(--line);
}

.models-intro h1 {
  margin: 0;
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 2.28rem;
  line-height: .98;
  text-transform: uppercase;
}

.models-intro > p {
  margin: 0;
  color: #566056;
  font-size: .88rem;
  line-height: 1.5;
}

.models-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.models-stage {
  margin: 20px 0 4px;
  overflow: hidden;
  background: #10151a;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
}

.models-stage__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3.45 / 1;
  min-height: 220px;
  max-height: 350px;
  padding: 0;
  overflow: hidden;
  background: #171d21;
  border: 0;
  cursor: zoom-in;
}

.models-stage__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.models-stage__media:hover img,
.models-stage__media:focus-visible img { transform: scale(1.025); }

.models-stage__media:focus-visible { outline: 3px solid var(--green); outline-offset: -3px; }

.models-stage__action {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: #07140b;
  background: var(--green);
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.models-stage__caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
  align-items: center;
  gap: 20px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.models-stage__caption > div { display: grid; gap: 3px; }
.models-stage__caption span { color: #6ce99f; font-size: .66rem; font-weight: 900; text-transform: uppercase; }
.models-stage__caption strong { color: #fff; font-size: 1.05rem; }
.models-stage__caption p { margin: 0; color: #aeb9b2; font-size: .8rem; line-height: 1.45; }

.models-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.models-filter {
  min-height: 34px;
  padding: 6px 11px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.models-filter:hover,
.models-filter[aria-pressed="true"] {
  color: var(--green-dark);
  background: #effaf2;
  border-color: rgba(0, 200, 83, .55);
}

.models-status {
  margin: 0;
  color: #697168;
  font-size: .76rem;
  font-weight: 700;
  text-align: right;
}

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

.model-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(34, 34, 34, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.model-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(34, 34, 34, .11);
}

.model-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-deep);
  border: 0;
  text-align: left;
}

.model-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: catalogImageFloat 20s ease-in-out infinite alternate;
  transition: transform .35s ease;
}

.model-card:hover .model-card__media img,
.model-card__media:focus-visible img {
  animation: none;
  transform: scale(1.045);
}

.model-card__media span {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  color: var(--ink);
  background: var(--green);
  border-radius: 5px;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.model-card__media i {
  position: absolute;
  right: 9px;
  bottom: 9px;
  padding: 5px 7px;
  color: var(--white);
  background: rgba(34, 34, 34, .72);
  border-radius: 4px;
  font-size: .66rem;
  font-style: normal;
  font-weight: 800;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
}

.model-card__media:hover i,
.model-card__media:focus-visible i {
  opacity: 1;
  transform: translateY(0);
}

.model-card__body {
  display: grid;
  flex: 1;
  gap: 10px;
  align-content: start;
  padding: 14px;
}

.model-card__heading h2 {
  margin: 0;
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.36rem;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.model-card__heading p {
  margin: 6px 0 0;
  color: var(--green-dark);
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.model-card__note {
  display: -webkit-box;
  min-height: 2.75em;
  margin: 0;
  overflow: hidden;
  color: #566056;
  font-size: .78rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.model-card__footer {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.model-card__reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.reaction-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 31px;
  padding: 5px 8px;
  color: #596258;
  background: #f8faf6;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 800;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.reaction-button svg {
  width: .9rem;
  height: .9rem;
}

.reaction-button b {
  min-width: 1ch;
  color: var(--ink);
  font-size: .68rem;
}

.reaction-button:hover:not(:disabled),
.reaction-button.is-active {
  color: var(--green-dark);
  background: #eefaf2;
  border-color: rgba(0, 200, 83, .62);
}

.reaction-button.is-active b {
  color: var(--green-dark);
}

.reaction-button:disabled {
  cursor: wait;
  opacity: .6;
}

.model-card__request {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 900;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}

.model-card__request:hover {
  background: #066a38;
  transform: translateY(-1px);
}

.models-empty {
  display: grid;
  grid-column: 1 / -1;
  gap: 5px;
  padding: 34px 20px;
  color: #687168;
  background: #f8faf6;
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
}

.models-empty strong {
  color: var(--ink);
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.gallery-lightbox__caption {
  display: grid;
  gap: 2px;
  padding: 12px 16px 14px;
}

.gallery-lightbox__caption strong {
  font-size: 1rem;
}

.gallery-lightbox__caption span {
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
}

.catalog-controls,
.next-items,
.product-grid {
  width: min(980px, calc(100% - 40px));
  margin-inline: auto;
}

.catalog-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding: 24px 0 16px;
}

.catalog-controls h2,
.next-items h2 {
  margin: 0;
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.78rem;
  line-height: 1;
  text-transform: uppercase;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.filter-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 28px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  min-height: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(34, 34, 34, .08);
  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
  border-color: rgba(0, 200, 83, .52);
  box-shadow: 0 20px 48px rgba(34, 34, 34, .14);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.42 / 1;
  background: var(--paper-deep);
}

.product-card__media > a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-card__media > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: catalogImageFloat 18s ease-in-out infinite alternate;
  transition: transform .35s ease;
  will-change: transform;
}

.product-card:nth-child(2n) .product-card__media > a > img {
  animation-direction: alternate-reverse;
  animation-duration: 20s;
}

.product-card:nth-child(3n) .product-card__media > a > img {
  animation-duration: 16s;
}

.product-card:hover .product-card__media > a > img {
  animation: none;
  transform: scale(1.04);
}

.product-card__thumbs {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 6px;
  max-width: calc(100% - 20px);
  padding: 5px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.product-card__thumbs button,
.quote-thumbs button {
  display: block;
  padding: 2px;
  overflow: hidden;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
}

.product-card__thumbs button {
  width: 38px;
  height: 38px;
}

.product-card__thumbs button[aria-pressed="true"],
.quote-thumbs button[aria-pressed="true"] {
  border-color: var(--green);
}

.product-card__thumbs img,
.quote-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.product-card__flag {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  max-width: calc(100% - 20px);
  padding: 6px 9px;
  color: var(--ink);
  background: var(--green);
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card__body {
  display: grid;
  gap: 6px;
  padding: 10px 10px 8px;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.category-chip {
  min-width: 0;
  color: var(--green-dark);
  font-size: .68rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.category-chip:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-card__price {
  color: var(--ink);
  font-size: .88rem;
  font-weight: 900;
  white-space: nowrap;
}

.product-card h3 {
  display: -webkit-box;
  min-height: 2.08em;
  margin: 0;
  overflow: hidden;
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.04;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card h3 a:hover {
  color: var(--green-dark);
}

.product-card p {
  display: -webkit-box;
  min-height: 2.7em;
  margin: 0;
  overflow: hidden;
  color: #566056;
  font-size: .74rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.product-tags span {
  padding: 4px 6px;
  color: #334237;
  background: #eef5eb;
  border: 1px solid #dce8d8;
  border-radius: 5px;
  font-size: .66rem;
  font-weight: 700;
}

.product-card .product-tags span:nth-child(n + 3) {
  display: none;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  padding: 0 10px 10px;
}

.product-card__actions .button {
  min-height: 36px;
  padding: 8px 10px;
  font-size: .74rem;
}

.product-card__actions .icon-button {
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.product-page {
  padding-bottom: 104px;
  background: #ffffff;
}

.product-main {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 40px;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  color: #5d665d;
  font-size: .82rem;
  font-weight: 700;
}

.product-breadcrumb a {
  color: var(--green-dark);
  text-decoration: none;
}

.product-breadcrumb strong {
  color: var(--ink);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(370px, .96fr);
  gap: 28px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 98px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
}

.product-gallery__thumbs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.product-gallery__thumbs button {
  width: 64px;
  height: 64px;
  padding: 3px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-gallery__thumbs button[aria-pressed="true"] {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, .16);
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.product-gallery__stage {
  display: grid;
  place-items: center;
  min-height: 480px;
  background: #f7f7f7;
  border: 1px solid #ededed;
  border-radius: var(--radius);
  overflow: hidden;
}

.product-gallery__stage img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  animation: catalogImageFloat 18s ease-in-out infinite alternate;
}

.product-config {
  display: grid;
  gap: 16px;
}

.product-config h1 {
  margin: 0;
  color: var(--ink);
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 2.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.product-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: -4px 0 0;
  color: #6e38d5;
  font-size: .86rem;
  font-weight: 800;
}

.product-rating strong {
  color: #596157;
}

.product-summary {
  margin: 0;
  color: #566056;
  line-height: 1.5;
}

.product-tags--detail {
  gap: 8px;
}

.config-section,
.product-specs {
  display: grid;
  gap: 10px;
}

.config-section--models {
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
}

.config-section__head {
  display: grid;
  gap: 6px;
}

.config-section__head span {
  color: #627062;
  font-size: .875rem;
  line-height: 1.5;
  text-align: left;
  overflow-wrap: anywhere;
}

.config-section h2,
.product-specs h2,
.related-products h2 {
  margin: 0;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 900;
}

.option-list,
.service-options {
  display: grid;
  gap: 9px;
}

.product-configurator {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.configuration-stage {
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid #e1e6e4;
}

.configuration-stage h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.4;
}

.configuration-stage h3 > span {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: #08794c;
  font-size: .875rem;
}

.configuration-fields {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.configuration-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.configuration-field > label,
.configuration-field > span {
  font-size: .875rem;
  color: #505d56;
  font-weight: 600;
}

.configuration-field select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px;
  border: 1px solid #bfcac4;
  border-radius: 6px;
  background: #fff;
  color: #182a21;
  font: inherit;
  font-size: 1rem;
  text-overflow: ellipsis;
}

.configuration-field--fixed strong {
  font-size: 1rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.configuration-field small {
  color: #505d56;
  font-size: .875rem;
  overflow-wrap: anywhere;
}

.quantity-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: .875rem;
  font-variant-numeric: tabular-nums;
}

.quantity-table th,
.quantity-table td {
  padding: 10px 6px;
  text-align: right;
  border-bottom: 1px solid #e0e6e3;
  overflow-wrap: anywhere;
}

.quantity-table th {
  color: #526158;
  background: #f3f5f4;
  font-weight: 600;
}

.quantity-table th:first-child,
.quantity-table td:first-child {
  width: 39%;
  text-align: left;
}

.quantity-table td:first-child { padding: 0; }

.quantity-table label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 8px 6px;
  cursor: pointer;
}

.quantity-table input { accent-color: #08794c; flex-shrink: 0; }
.quantity-table tr.is-selected { background: #eaf7ef; }
.quantity-table tr.is-selected strong { color: #06663e; }
.quantity-table tbody tr:hover { background: #f1f7f4; }
.quantity-table tr:focus-within { outline: 2px solid #08794c; outline-offset: -2px; }
.configuration-field select:focus-visible { outline: 2px solid #08794c; outline-offset: 2px; }

.product-configurator__group {
  display: grid;
  gap: 7px;
}

.product-configurator__group h3 {
  margin: 0;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 900;
}

.product-configurator__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-choice {
  min-height: 40px;
  padding: 8px 12px;
  color: #445148;
  background: var(--white);
  border: 1px solid #cfd9cf;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.2;
  transition: border-color .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

.product-choice:hover {
  border-color: var(--green-dark);
}

.product-choice[aria-pressed="true"] {
  color: #065c31;
  background: #ecfff2;
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(0, 200, 83, .12);
}

.option-card,
.service-options label {
  display: grid;
  grid-template-columns: auto 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.service-options label {
  grid-template-columns: auto minmax(0, 1fr);
}

.option-card:has(input:checked),
.service-options label:has(input:checked) {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, .14);
}

.option-card:hover,
.service-options label:hover {
  transform: translateY(-1px);
}

.option-card input,
.service-options input {
  accent-color: var(--green-dark);
}

.option-card > img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid #e0e8df;
  border-radius: 6px;
  background: #fff;
}

.option-card span,
.service-options span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.option-card strong,
.service-options strong {
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.2;
}

.option-card small,
.service-options small {
  color: #667064;
  font-size: .8rem;
  line-height: 1.3;
}

.option-card b {
  color: var(--green-dark);
  font-size: 1rem;
  white-space: nowrap;
}

.product-note {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.product-note span {
  font-size: .82rem;
}

.product-note textarea {
  min-height: 92px;
  resize: vertical;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
}

.product-note textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 200, 83, .14);
}

.product-specs dl {
  display: grid;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-specs dl div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  padding: 11px 12px;
  background: #fbfcfa;
  border-bottom: 1px solid var(--line);
}

.product-specs dl div:last-child {
  border-bottom: 0;
}

.product-specs dt {
  color: #536052;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.35;
}

.related-products {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.related-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 178px;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scrollbar-width: thin;
}

.related-card {
  display: grid;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}

.related-card img {
  width: 100%;
  aspect-ratio: 1 / .76;
  object-fit: cover;
  background: var(--paper-deep);
  border-radius: var(--radius);
}

.related-card span {
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.related-card strong {
  color: var(--ink);
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.18rem;
  line-height: 1;
  text-transform: uppercase;
}

.related-card small {
  color: #5e685d;
  font-weight: 800;
}

.buy-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 12px max(20px, calc((100vw - 1040px) / 2));
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -14px 40px rgba(34, 34, 34, .1);
  backdrop-filter: blur(14px);
}

.buy-bar > div:first-child {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.buy-bar span,
.buy-bar small {
  color: #5c665c;
  font-size: .78rem;
  font-weight: 800;
}

.buy-bar strong {
  color: var(--green-dark);
  font-size: 1.55rem;
  line-height: 1;
}

.buy-bar small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.buy-bar__qty {
  display: grid;
  grid-template-columns: auto 36px 28px 36px;
  gap: 8px;
  align-items: center;
}

.buy-bar__qty span {
  grid-column: 1 / -1;
  text-align: center;
}

.buy-bar__qty button {
  width: 36px;
  height: 34px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.buy-bar__qty button:disabled {
  opacity: .42;
  cursor: not-allowed;
}

.next-items {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, 1.15fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 42px;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

.next-items ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-items li {
  padding: 14px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
}

.quote-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  gap: 18px;
  width: min(460px, 100%);
  height: 100svh;
  padding: 20px;
  background: var(--paper);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 80px rgba(0, 0, 0, .22);
  transform: translateX(104%);
  transition: transform .24s ease;
}

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

.quote-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-panel__head h2 {
  margin: 0;
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.quote-product {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-product img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
  animation: catalogImageFloat 14s ease-in-out infinite alternate;
  will-change: transform;
}

.quote-product span {
  color: var(--green-dark);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-product h3 {
  margin: 3px 0 4px;
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.quote-product p {
  margin: 0;
  color: #596157;
  font-size: .9rem;
  line-height: 1.35;
}

.quote-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 4px;
  scrollbar-width: thin;
}

.quote-thumbs button {
  flex: 0 0 62px;
  width: 62px;
  height: 52px;
}

.quote-form {
  display: grid;
  align-content: start;
  gap: 13px;
  overflow-y: auto;
  padding-right: 2px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.quote-form label span {
  font-size: .82rem;
}

.quote-form select,
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.quote-form select,
.quote-form input {
  height: 44px;
  padding: 0 12px;
}

.quote-form textarea {
  resize: vertical;
  min-height: 86px;
  padding: 11px 12px;
}

.quote-form select:focus,
.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 200, 83, .14);
}

.price-box {
  display: grid;
  gap: 4px;
  padding: 15px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.price-box span {
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-box strong {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.price-box small {
  color: rgba(255, 255, 255, .72);
}

.panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.panel-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.floating-quote {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 15px;
  color: var(--white);
  background: var(--green-dark);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(8, 123, 65, .35);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .18s ease, transform .18s ease;
}

.floating-quote.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  align-items: center;
  padding: 26px 20px 90px;
  color: #586158;
  background: #edf2e9;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--ink);
  text-transform: uppercase;
}

.site-footer a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.notify-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto;
  padding: 22px 24px;
  color: var(--white);
  background: var(--green-dark);
  border-left: 6px solid var(--amber);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(8, 123, 65, .2);
}

.notify-callout div {
  display: grid;
  gap: 4px;
}

.notify-callout p,
.notify-callout strong,
.notify-callout span {
  margin: 0;
}

.notify-callout p {
  color: #c4f6d9;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.notify-callout strong {
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.notify-callout span {
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .search-box {
    grid-column: 1 / -1;
    order: 3;
  }

  .hero__inner {
    min-height: auto;
    padding-top: 0;
  }

  .hero__copy {
    left: 24px;
    width: min(340px, calc(100% - 48px));
  }

  .hero h1 {
    font-size: 2.38rem;
  }

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

  .models-intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .catalog-controls,
  .next-items {
    grid-template-columns: 1fr;
  }

  .promo-carousel__viewport,
  .promo-slide img {
    min-height: 250px;
  }

  .story-viewer__card {
    min-height: 0;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .gallery-track {
    grid-auto-columns: 235px;
  }

  .notify-callout {
    align-items: flex-start;
  }

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

  .product-gallery {
    position: static;
  }

  .product-gallery__stage {
    min-height: 420px;
  }

  .buy-bar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .buy-bar__qty {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand-proof {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-top: 20px;
    padding: 20px;
  }

  .brand-proof__intro h2 { font-size: 1.45rem; }

  .brand-proof__visual { min-height: 205px; }

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

  .site-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: 1.22rem;
  }

  .brand small {
    font-size: .68rem;
  }

  .header-whats {
    padding-inline: 12px;
  }

  .site-nav > div {
    width: calc(100% - 28px);
    gap: 18px;
  }

  .hero__inner {
    padding-inline: 0;
  }

  .hero__copy {
    display: none;
  }

  .hero h1 {
    max-width: 300px;
    font-size: 2.02rem;
  }

  .hero__lead {
    display: none;
  }

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

  .spotlight-card {
    min-height: 310px;
    aspect-ratio: auto;
  }

  .spotlight-card__content {
    inset: auto 12px 12px 12px;
    display: grid;
    width: auto;
    padding: 12px;
  }

  .spotlight-card__content h2 {
    font-size: 1.28rem;
  }

  .spotlight-card__content p {
    display: none;
  }

  .spotlight-card__content strong {
    font-size: 1.05rem;
  }

  .spotlight-strip {
    grid-auto-columns: 82px;
    gap: 10px;
  }

  .spotlight-pill {
    grid-template-rows: 68px auto;
    min-height: 104px;
  }

  .spotlight-pill img {
    width: 68px;
    height: 68px;
    border-radius: 16px;
  }

  .catalog-controls,
  .next-items,
  .product-grid,
  .promo-band,
  .story-strip,
  .product-categories,
  .work-gallery {
    width: calc(100% - 28px);
  }

  .models-main {
    width: calc(100% - 28px);
    padding-top: 20px;
  }

  .models-intro h1 {
    font-size: 1.92rem;
  }

  .models-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .models-status {
    text-align: left;
  }

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

  .model-card__media i {
    opacity: 1;
    transform: none;
  }

  .catalog-controls h2,
  .next-items h2,
  .gallery-head h2 {
    font-size: 1.9rem;
  }

  .gallery-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gallery-track {
    grid-auto-columns: minmax(205px, 72vw);
  }

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

  .product-card {
    min-height: 0;
  }

  .next-items {
    padding: 20px;
  }

  .promo-carousel__viewport,
  .promo-slide img {
    min-height: 212px;
    aspect-ratio: 1.72 / 1;
  }

  .promo-carousel__nav {
    width: 32px;
    height: 32px;
    opacity: 1;
  }

  .promo-carousel__nav--previous {
    left: 8px;
  }

  .promo-carousel__nav--next {
    right: 8px;
  }

  .story-strip {
    margin-top: 16px;
  }

  .story-strip__track {
    grid-auto-columns: 74px;
    gap: 10px;
  }

  .story-card {
    grid-template-rows: 68px auto;
    width: 74px;
  }

  .story-card__ring {
    width: 68px;
    height: 68px;
  }

  .story-viewer {
    width: 100vw;
    max-width: none;
    margin: 0;
    border-radius: 0;
  }

  .story-viewer__card {
    width: 100vw;
    min-height: 100svh;
    height: 100svh;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .story-viewer__topbar {
    top: 27px;
    right: 14px;
    left: 14px;
  }

  .story-viewer__progress {
    right: 14px;
    left: 14px;
  }

  .story-viewer__nav {
    top: 58px;
    width: 50%;
    height: auto;
  }

  .story-viewer__body {
    padding: 12px 14px 14px;
  }

  .story-viewer__body h2 {
    font-size: 1.38rem;
  }

  .next-items ul {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    padding: 16px;
  }

  .notify-callout {
    flex-direction: column;
    gap: 15px;
    width: calc(100% - 28px);
    padding: 20px;
  }

  .notify-callout .button {
    width: 100%;
  }

  .product-page {
    padding-bottom: 156px;
  }

  .product-main {
    width: calc(100% - 28px);
    padding-top: 16px;
  }

  .product-breadcrumb {
    font-size: .76rem;
  }

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

  .product-gallery__thumbs {
    order: 2;
    grid-auto-flow: column;
    grid-auto-columns: 58px;
    overflow-x: auto;
  }

  .product-gallery__thumbs button {
    width: 58px;
    height: 58px;
  }

  .product-gallery__stage {
    min-height: 300px;
  }

  .product-config h1 {
    font-size: 1.78rem;
  }

  .option-card {
    grid-template-columns: auto 44px minmax(0, 1fr);
  }

  .option-card b {
    grid-column: 3;
  }

  .option-card > img {
    width: 44px;
    height: 44px;
  }

  .config-section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .config-section__head span {
    text-align: left;
  }

  .product-specs dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .related-track {
    grid-auto-columns: 152px;
  }

  .category-main {
    width: calc(100% - 28px);
    padding-top: 16px;
  }

  .category-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .category-intro h1 {
    font-size: 2rem;
  }

  .category-intro .button {
    width: 100%;
  }

  .category-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-product-card__body {
    padding: 11px;
  }

  .category-product-card h2 {
    font-size: .93rem;
  }

  .category-product-card p {
    font-size: .75rem;
  }

  .buy-bar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px;
  }

  .buy-bar small {
    white-space: normal;
  }

  .buy-bar .button {
    width: 100%;
  }
}

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

/* Portfólio imersivo: uma vitrine visual própria, sem competir com o catálogo. */
.models-page {
  color: #eef4ef;
  background: #080a0d;
}

.models-page .site-header {
  background: rgba(8, 10, 13, .96);
  border-bottom-color: rgba(255, 255, 255, .1);
}

.models-page .site-nav {
  background: #080a0d;
  border-bottom-color: rgba(255, 255, 255, .1);
}

.models-page .site-nav a { color: #aeb9b2; }
.models-page .site-nav a:hover,
.models-page .site-nav a[aria-current="page"] { color: #fff; }

.models-page .brand {
  background: #10151a;
  border-color: rgba(0, 200, 83, .42);
}

.models-page .brand strong { color: #fff; }
.models-page .brand small { color: #afbbb3; }

.models-page .search-box {
  color: #72e29d;
  background: #10151a;
  border-color: rgba(255, 255, 255, .14);
}

.models-page .search-box input { color: #f4f8f5; }
.models-page .search-box input::placeholder { color: #839087; }

.models-page .header-whats {
  color: #08110b;
  background: var(--green);
}

.models-main {
  width: min(1220px, calc(100% - 48px));
  padding: 38px 0 58px;
}

.models-intro {
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr);
  gap: 34px;
  padding: 14px 0 27px;
  border-bottom-color: rgba(255, 255, 255, .14);
}

.models-intro .eyebrow { color: var(--green); }

.models-intro h1 {
  max-width: 700px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.65rem);
  letter-spacing: 0;
}

.models-intro__context {
  display: grid;
  gap: 14px;
  align-content: end;
}

.models-intro > .models-intro__context > p {
  max-width: 420px;
  color: #b7c1ba;
  font-size: .92rem;
  line-height: 1.65;
}

.models-intro__signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9e3dc;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.models-intro__signal i {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 200, 83, .14);
  animation: live-dot-beat 1.65s ease-in-out infinite;
}

.models-intro__signal i::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(0, 200, 83, .72);
  border-radius: 50%;
  content: "";
  animation: live-dot-ring 1.65s ease-out infinite;
}

@keyframes live-dot-beat {
  0%, 100% { opacity: .78; transform: scale(.88); }
  45% { opacity: 1; transform: scale(1.12); }
}

@keyframes live-dot-ring {
  0% { opacity: .78; transform: scale(.5); }
  70%, 100% { opacity: 0; transform: scale(1.45); }
}

@media (prefers-reduced-motion: reduce) {
  .models-intro__signal i,
  .models-intro__signal i::after { animation: none; }
}

.models-toolbar {
  align-items: center;
  padding: 17px 0 20px;
}

.models-filters {
  flex-wrap: nowrap;
  max-width: 100%;
  padding-bottom: 2px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.models-filter {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  color: #b6c0b8;
  background: #11161b;
  border-color: rgba(255, 255, 255, .13);
  border-radius: 5px;
}

.models-filter b {
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  color: #b8c6bd;
  background: rgba(255, 255, 255, .08);
  border-radius: 4px;
  font-size: .65rem;
}

.models-filter:hover,
.models-filter[aria-pressed="true"] {
  color: #fff;
  background: #123a28;
  border-color: rgba(0, 200, 83, .75);
}

.models-filter[aria-pressed="true"] b {
  color: #07140b;
  background: var(--green);
}

.models-status { color: #93a198; white-space: nowrap; }

.models-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 112px;
  gap: 12px;
}

.model-card {
  min-height: 0;
  background: #11161a;
  border-color: rgba(255, 255, 255, .12);
  border-radius: 6px;
  box-shadow: none;
}

.model-card:hover { box-shadow: 0 16px 34px rgba(0, 0, 0, .35); }
.model-card--feature { grid-column: span 2; grid-row: span 4; }
.model-card--wide { grid-column: span 2; grid-row: span 3; }
.model-card--tall { grid-row: span 4; }
.model-card--standard { grid-row: span 3; }

.model-card__media {
  min-height: 0;
  flex: 1;
  aspect-ratio: auto;
  background: #171d21;
}

.model-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0);
  transition: background .2s ease;
}

.model-card__media img { animation: none; }
.model-card:hover .model-card__media img,
.model-card__media:focus-visible img { transform: scale(1.035); }
.model-card:hover .model-card__media::after,
.model-card__media:focus-visible::after { background: rgba(0, 0, 0, .16); }

.model-card__media span {
  z-index: 1;
  color: #062212;
  border-radius: 3px;
}

.model-card__media i { z-index: 1; }

.model-card__body {
  gap: 8px;
  padding: 12px;
  background: #11161a;
}

.model-card__heading h2 { color: #fff; font-size: 1.2rem; }
.model-card__heading p { color: #6fe6a0; }
.model-card__note { color: #aeb9b2; }

.model-card__footer {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.model-card__reactions { gap: 5px; }

.reaction-button {
  min-height: 29px;
  color: #c8d0ca;
  background: #1a2125;
  border-color: rgba(255, 255, 255, .14);
}

.reaction-button b { color: #fff; }
.reaction-button:hover:not(:disabled),
.reaction-button.is-active { color: #79ecaa; background: #123a28; border-color: rgba(0, 200, 83, .7); }

.model-card__request {
  min-height: 32px;
  padding: 7px 9px;
  color: #06150c;
  background: var(--green);
  border-radius: 4px;
  white-space: nowrap;
}

.model-card__request:hover { background: #19de67; }

.models-empty {
  color: #aeb9b2;
  background: #11161a;
  border-color: rgba(255, 255, 255, .16);
}

.models-empty strong { color: #fff; }

.models-page .site-footer {
  color: #a8b3ac;
  background: #0c1014;
  border-top-color: rgba(255, 255, 255, .1);
}

.models-page .site-footer strong { color: #fff; }
.models-page .site-footer a { color: #72e7a3; }

.models-page .gallery-lightbox {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, .55fr);
  width: min(1080px, calc(100% - 32px));
  max-height: min(86vh, 760px);
  background: #10151a;
  border: 1px solid rgba(255, 255, 255, .14);
}

.models-page .gallery-lightbox img {
  height: min(72vh, 690px);
  max-height: none;
  background: #080a0d;
}

.models-page .gallery-lightbox__caption {
  align-content: end;
  padding: 26px;
}

.gallery-lightbox__caption strong { display: block; margin-top: 8px; color: #fff; font-size: 1.35rem; }
.gallery-lightbox__caption span { display: block; margin-top: 5px; }
.gallery-lightbox__eyebrow { color: #67eba0 !important; font-size: .68rem !important; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }

.gallery-lightbox__request {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  margin-top: 20px;
  padding: 8px 12px;
  color: #06150c;
  background: var(--green);
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
}

/* Catálogo: mantém a leitura do título inteira antes da seleção de categorias. */
.catalog-controls {
  display: block;
  padding: 30px 0 15px;
}

.catalog-controls > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.catalog-controls .eyebrow { margin: 0 0 5px; }

.catalog-controls h2 {
  max-width: 560px;
  font-size: 2rem;
}

.filter-bar {
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 7px;
  margin-top: 15px;
  padding: 2px 0 5px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 7px 11px;
  border-radius: 5px;
  font-size: .78rem;
}

@media (max-width: 640px) {
  .catalog-controls { padding-top: 23px; }
  .catalog-controls > div:first-child { display: block; }
  .catalog-controls h2 { font-size: 1.7rem; }
}

@media (max-width: 980px) {
  .models-main { width: min(960px, calc(100% - 36px)); }
  .models-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .models-main { width: calc(100% - 28px); padding: 24px 0 42px; }
  .models-intro { gap: 16px; padding-bottom: 20px; }
  .models-intro h1 { font-size: 2.55rem; }
  .models-stage { margin-top: 16px; }
  .models-stage__media { aspect-ratio: 4 / 3; min-height: 0; max-height: 360px; }
  .models-stage__caption { grid-template-columns: 1fr; gap: 6px; padding: 12px; }
  .models-toolbar { gap: 10px; }
  .models-status { white-space: normal; }
  .models-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 110px; gap: 8px; }
  .model-card--feature { grid-column: span 2; grid-row: span 3; }
  .model-card--wide { grid-column: span 2; grid-row: span 3; }
  .model-card--tall { grid-row: span 3; }
  .model-card--standard { grid-row: span 3; }
  .model-card__body { padding: 10px; }
  .model-card__heading h2 { font-size: 1rem; }
  .model-card__note { display: none; }
  .model-card__footer { grid-template-columns: 1fr; }
  .model-card__request { width: 100%; }
  .models-page .gallery-lightbox { display: block; width: min(420px, calc(100% - 24px)); }
  .models-page .gallery-lightbox img { height: min(64vh, 560px); }
  .models-page .gallery-lightbox__caption { padding: 16px; }
  .gallery-lightbox__request { width: 100%; }
}

.story-strip__track,
.spotlight-strip,
.filter-bar,
.models-filters {
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.story-strip__track::-webkit-scrollbar,
.spotlight-strip::-webkit-scrollbar,
.filter-bar::-webkit-scrollbar,
.models-filters::-webkit-scrollbar { display: none; }

.story-card,
.spotlight-pill,
.filter-button,
.models-filter { scroll-snap-align: start; }

#catalogo,
.models-toolbar { scroll-margin-top: 112px; }

body { overflow-x: clip; }

/* Home em formato de vitrine: foco em banners, categorias e compra rápida. */
.legacy-hero,
.brand-proof {
  display: none;
}

.promo-band,
.product-categories,
.catalog-controls,
.product-grid,
.next-items {
  width: min(1160px, calc(100% - 40px));
}

.promo-band { margin-top: 18px; }

.promo-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(250px, .82fr);
  gap: 6px;
}

.promo-mosaic__primary {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #edf2e9;
  border-radius: 5px;
}

.promo-mosaic__side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.promo-mosaic__tile {
  display: block;
  min-height: 0;
  overflow: hidden;
  background: #edf2e9;
  border-radius: 5px;
  outline: 0;
}

.promo-mosaic__tile:focus-visible { outline: 3px solid var(--green); outline-offset: -3px; }

.promo-mosaic__tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.promo-mosaic__tile:hover img,
.promo-mosaic__tile:focus-visible img { transform: scale(1.015); }

.promo-mosaic__tile--primary { height: 100%; }
.promo-mosaic__tile--side { min-height: 0; }

.promo-mosaic .promo-carousel__nav { opacity: 0; }
.promo-mosaic__primary:hover .promo-carousel__nav,
.promo-mosaic__primary:focus-within .promo-carousel__nav { opacity: 1; }

.promo-mosaic .promo-carousel__dots {
  position: absolute;
  bottom: 9px;
  left: 50%;
  z-index: 2;
  margin: 0;
  padding: 5px 7px;
  background: rgba(0, 0, 0, .38);
  border-radius: 4px;
  transform: translateX(-50%);
}

.promo-mosaic .promo-carousel__dots button { background: rgba(255, 255, 255, .7); }
.promo-mosaic .promo-carousel__dots button[aria-pressed="true"] { background: var(--green); }

.product-categories {
  margin-top: 14px;
  padding: 11px 12px 3px;
  background: #fff;
  border: 1px solid #e6ebe3;
  border-radius: 5px;
}

.product-categories .spotlight-strip {
  grid-auto-columns: 92px;
  gap: 13px;
  justify-content: space-between;
  padding-bottom: 7px;
}

.spotlight-pill { grid-template-rows: 58px auto; min-height: 88px; gap: 5px; }

.spotlight-pill img {
  width: 58px;
  height: 58px;
  padding: 4px;
  border-radius: 13px;
  box-shadow: none;
}

.spotlight-pill span { font-size: .67rem; }

.catalog-controls { padding: 25px 0 12px; }
.catalog-controls h2 { font-size: 1.75rem; }

.product-grid { gap: 10px; padding-bottom: 36px; }

.product-card {
  box-shadow: none;
  border-radius: 5px;
}

.product-card__media { aspect-ratio: 1.24 / 1; }
.product-card__media > a > img { animation: none; }
.product-card__body { gap: 5px; padding: 9px 10px 7px; }
.product-card h3 { min-height: 2em; font-size: 1rem; }
.product-card p { display: none; }
.product-card__flag { top: 7px; left: 7px; padding: 4px 6px; border-radius: 3px; font-size: .61rem; }
.product-card__price { color: #e35f1d; font-size: .92rem; }
.product-tags span { padding: 3px 5px; font-size: .61rem; }
.product-card__actions { padding: 0 10px 9px; }
.product-card__actions .button { min-height: 33px; }

@media (max-width: 980px) {
  .promo-mosaic { grid-template-columns: minmax(0, 1.55fr) minmax(210px, .72fr); }
  .promo-mosaic__primary { min-height: 250px; }
  .product-categories .spotlight-strip { justify-content: start; }
}

@media (max-width: 640px) {
  .promo-band,
  .product-categories,
  .catalog-controls,
  .product-grid,
  .next-items { width: calc(100% - 28px); }
  .promo-mosaic { grid-template-columns: 1fr; gap: 7px; }
  .promo-mosaic__primary { min-height: 200px; }
  .promo-mosaic__side { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 116px; }
  .product-categories { overflow: hidden; }
  .product-categories .spotlight-strip { grid-auto-columns: 74px; gap: 10px; overflow-x: auto; }
  .spotlight-pill { grid-template-rows: 52px auto; min-height: 80px; }
  .spotlight-pill img { width: 52px; height: 52px; }
}

/* Guias Veloso: biblioteca editorial e consulta prática. */
.guides-page {
  background:
    linear-gradient(180deg, #f4f8f4 0, #fff 360px),
    #fff;
}

.guides-main {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.guides-intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr);
  min-height: 310px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce5dc;
  border-radius: 8px;
}

.guides-intro__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.guides-intro__copy h1 {
  max-width: 560px;
  margin: 4px 0 14px;
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guides-intro__copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: #566057;
  font-size: .98rem;
  line-height: 1.65;
}

.guides-intro__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.guides-intro__signals span {
  padding: 7px 9px;
  color: #075f35;
  background: #e9f7ed;
  border: 1px solid #cbe8d3;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 800;
}

.guides-intro__feature {
  position: relative;
  display: block;
  min-height: 310px;
  overflow: hidden;
  background: #101512;
  text-decoration: none;
}

.guides-intro__feature::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(7, 15, 10, .86));
}

.guides-intro__feature img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transition: transform .45s ease;
}

.guides-intro__feature:hover img,
.guides-intro__feature:focus-visible img {
  transform: scale(1.035);
}

.guides-intro__feature > span {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 1;
  display: grid;
  gap: 5px;
  color: #fff;
}

.guides-intro__feature small {
  color: #61e593;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guides-intro__feature strong {
  max-width: 420px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.guide-quick-reference {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  align-items: center;
  margin: 18px 0 44px;
  padding: 18px 22px;
  color: #fff;
  background: #111713;
  border-left: 5px solid var(--green);
  border-radius: 6px;
}

.guide-quick-reference h2 {
  margin: 2px 0 0;
  font-size: 1.15rem;
}

.guide-quick-reference .eyebrow { color: #45dd83; }

.guide-quick-reference dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: #3b443e;
  border: 1px solid #3b443e;
}

.guide-quick-reference dl div {
  min-width: 0;
  padding: 11px 13px;
  background: #1a211d;
}

.guide-quick-reference dt {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.guide-quick-reference dd {
  margin: 3px 0 0;
  color: #b8c3bb;
  font-size: .7rem;
}

.guide-library__heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.guide-library__heading h2 {
  margin: 3px 0 0;
  font-size: 1.75rem;
}

.guide-library__heading > p {
  margin: 0 0 4px;
  color: #6a736c;
  font-size: .78rem;
  font-weight: 700;
}

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

.guide-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 250px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce3dc;
  border-radius: 6px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.guide-card:hover {
  border-color: #a7d8b8;
  box-shadow: 0 15px 34px rgba(18, 61, 37, .09);
  transform: translateY(-2px);
}

.guide-card__media {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #edf2ed;
}

.guide-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

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

.guide-card__index {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 32px;
  padding: 5px 7px;
  color: #111713;
  background: #fff;
  border-radius: 3px;
  font-size: .7rem;
  font-weight: 900;
  text-align: center;
}

.guide-card__media--color::after {
  content: "CMYK";
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  color: #111;
  background: linear-gradient(90deg, #00bce7 0 25%, #e4007f 25% 50%, #ffd900 50% 75%, #202020 75%);
  border: 2px solid #fff;
  border-radius: 3px;
  font-size: .65rem;
  font-weight: 900;
}

.guide-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
}

.guide-card__body > p:first-child {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
  color: #687269;
  font-size: .67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-card__body > p:first-child span { color: #078546; }

.guide-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.16;
}

.guide-card h3 a { text-decoration: none; }
.guide-card h3 a:hover { color: #078546; }

.guide-card__body > p:not(:first-child) {
  margin: 12px 0 18px;
  color: #5e675f;
  font-size: .8rem;
  line-height: 1.55;
}

.guide-card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  margin-top: auto;
  color: #087b41;
  font-size: .77rem;
  font-weight: 900;
  text-decoration: none;
}

.guide-card__link span { color: var(--electric-cyan); font-size: 1rem; }

.guide-empty {
  padding: 46px 20px;
  text-align: center;
  border: 1px dashed #bcc8be;
  border-radius: 6px;
}

.guide-empty p { color: #69736b; }

.guide-help-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 44px;
  padding: 26px 30px;
  background: #dff6e7;
  border: 1px solid #bde6ca;
  border-radius: 6px;
}

.guide-help-band h2 {
  margin: 3px 0 0;
  font-size: 1.45rem;
}

@media (max-width: 860px) {
  .guides-intro { grid-template-columns: 1fr; }
  .guides-intro__feature { min-height: 260px; }
  .guide-quick-reference { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .guides-main { width: calc(100% - 28px); padding-top: 14px; }
  .guides-intro { min-height: 0; }
  .guides-intro__copy { padding: 26px 22px; }
  .guides-intro__copy h1 { font-size: 2.55rem; }
  .guides-intro__feature,
  .guides-intro__feature img { min-height: 220px; }
  .guide-quick-reference { margin-bottom: 34px; padding: 17px; }
  .guide-quick-reference dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-library__heading { align-items: start; flex-direction: column; gap: 7px; }
  .guide-card { grid-template-columns: 1fr; }
  .guide-card__media { min-height: 190px; aspect-ratio: 16 / 9; }
  .guide-help-band { align-items: stretch; flex-direction: column; padding: 22px; }
  .guide-help-band .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .guides-intro__feature img,
  .guide-card,
  .guide-card__media img { transition: none; }
}

.reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--electric-cyan));
  transform: scaleX(0);
  transform-origin: left center;
}

.guide-header-label {
  display: grid;
  justify-self: center;
  line-height: 1.1;
  text-align: center;
}

.guide-header-label small {
  color: #778078;
  font-size: .63rem;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-header-label strong {
  margin-top: 3px;
  color: #087b41;
  font-size: .95rem;
}

.guide-article-main {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 64px;
}

.guide-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #717a73;
  font-size: .72rem;
}

.guide-breadcrumb a { text-decoration: none; }
.guide-breadcrumb a:hover { color: #087b41; }
.guide-breadcrumb strong { color: #313933; }

.guide-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  min-height: 350px;
  overflow: hidden;
  color: #fff;
  background: #101512;
  border-radius: 8px;
}

.guide-article-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.guide-article-hero .eyebrow { color: #53df89; }

.guide-article-hero h1 {
  max-width: 650px;
  margin: 6px 0 14px;
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: .96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-article-hero__copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: #c6cec8;
  font-size: .94rem;
  line-height: 1.62;
}

.guide-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: #8f9a92;
  font-size: .68rem;
  font-weight: 700;
}

.guide-article-hero > img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.guide-article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  padding: 46px 0 12px;
}

.guide-toc {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 14px;
}

.guide-toc > strong {
  padding-bottom: 10px;
  border-bottom: 2px solid #161c18;
  font-size: .78rem;
  text-transform: uppercase;
}

.guide-toc nav { display: grid; }

.guide-toc nav a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 10px 0;
  color: #59625b;
  border-bottom: 1px solid #e3e8e3;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.guide-toc nav a span {
  color: #06904a;
  font-size: .64rem;
  font-weight: 900;
}

.guide-toc nav a:hover { color: #078546; }

.guide-share {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #253029;
  background: #fff;
  border: 1px solid #cfd8d0;
  border-radius: 5px;
  font-size: .72rem;
  font-weight: 900;
}

.guide-share:hover { color: #087b41; border-color: #75c790; }

.guide-article-content { min-width: 0; }

.guide-takeaways {
  margin-bottom: 38px;
  padding: 24px 26px;
  background: #e7f7ec;
  border-left: 5px solid var(--green);
}

.guide-takeaways h2 {
  margin: 4px 0 14px;
  font-size: 1.3rem;
}

.guide-takeaways ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-takeaways li {
  position: relative;
  padding-left: 20px;
  color: #354239;
  font-size: .85rem;
  line-height: 1.5;
}

.guide-takeaways li::before {
  content: "";
  position: absolute;
  top: .52em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #00a95b;
  border-radius: 50%;
}

.guide-content-section {
  position: relative;
  padding: 0 0 42px;
  scroll-margin-top: 126px;
}

.guide-content-section + .guide-content-section {
  padding-top: 38px;
  border-top: 1px solid #e0e6e1;
}

.guide-content-section__number {
  display: block;
  margin-bottom: 7px;
  color: #00a957;
  font-size: .66rem;
  font-weight: 900;
}

.guide-content-section h2 {
  margin: 0 0 15px;
  color: #142019;
  font-size: 1.65rem;
  line-height: 1.12;
}

.guide-content-section > p {
  margin: 0 0 14px;
  color: #465048;
  font-size: .94rem;
  line-height: 1.74;
}

.guide-points {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.guide-points li {
  position: relative;
  padding: 12px 14px 12px 38px;
  color: #3f4942;
  background: #f4f7f4;
  border-left: 3px solid #9ad8ae;
  font-size: .86rem;
  line-height: 1.5;
}

.guide-points li::before {
  content: "→";
  position: absolute;
  top: 12px;
  left: 15px;
  color: #078546;
  font-weight: 900;
}

.guide-table-wrap {
  max-width: 100%;
  margin: 22px 0;
  overflow-x: auto;
  border: 1px solid #d4ddd5;
  border-radius: 5px;
}

.guide-table {
  width: 100%;
  min-width: 610px;
  border-collapse: collapse;
  font-size: .78rem;
}

.guide-table th,
.guide-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #dfe5e0;
  text-align: left;
  vertical-align: top;
}

.guide-table thead th {
  color: #fff;
  background: #0d6137;
  font-size: .68rem;
  text-transform: uppercase;
}

.guide-table tbody th {
  color: #087b41;
  background: #f1f6f2;
  white-space: nowrap;
}

.guide-table tbody tr:last-child th,
.guide-table tbody tr:last-child td { border-bottom: 0; }

.guide-note {
  margin-top: 22px;
  padding: 17px 19px;
  background: #fff5cf;
  border-left: 4px solid #e0aa00;
}

.guide-note strong {
  color: #7d5a00;
  font-size: .68rem;
  text-transform: uppercase;
}

.guide-note p {
  margin: 6px 0 0;
  color: #51461f;
  font-size: .82rem;
  line-height: 1.55;
}

.guide-checklist {
  margin-top: 24px;
  padding: 20px;
  color: #fff;
  background: #131a16;
  border-radius: 5px;
}

.guide-checklist > strong {
  color: #4ce187;
  font-size: .72rem;
  text-transform: uppercase;
}

.guide-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.guide-checklist li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 7px;
  color: #d5ddd7;
  font-size: .78rem;
  line-height: 1.4;
}

.guide-checklist li span { color: #4ce187; font-weight: 900; }

.guide-related {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding-top: 34px;
  border-top: 1px solid #dce3dd;
}

.guide-related h2 { margin: 4px 0 0; font-size: 1.55rem; }

.guide-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guide-related-card {
  display: grid;
  grid-template-rows: 126px 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce3dd;
  border-radius: 5px;
  text-decoration: none;
}

.guide-related-card img {
  width: 100%;
  height: 126px;
  object-fit: cover;
}

.guide-related-card > span {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.guide-related-card small {
  color: #078546;
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-related-card strong { font-size: .85rem; line-height: 1.3; }
.guide-related-card:hover { border-color: #76c992; }

.guide-not-found {
  min-height: 440px;
  padding: 80px 0;
  text-align: center;
}

.guide-not-found h1 { margin: 8px 0; font-size: 2.2rem; }
.guide-not-found p:not(.eyebrow) { margin-bottom: 24px; color: #69736b; }

@media (max-width: 820px) {
  .guide-article-hero { grid-template-columns: 1fr; }
  .guide-article-hero > img { min-height: 250px; max-height: 360px; }
  .guide-article-layout { grid-template-columns: 1fr; gap: 30px; }
  .guide-toc { position: static; }
  .guide-toc nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
}

@media (max-width: 640px) {
  .guide-header-label { display: none; }
  .guide-article-main { width: calc(100% - 28px); padding-top: 14px; }
  .guide-article-hero__copy { padding: 28px 22px; }
  .guide-article-hero h1 { font-size: 2.55rem; }
  .guide-article-hero > img { min-height: 210px; }
  .guide-article-layout { padding-top: 30px; }
  .guide-toc nav { grid-template-columns: 1fr; }
  .guide-takeaways { padding: 20px; }
  .guide-content-section h2 { font-size: 1.4rem; }
  .guide-checklist ul { grid-template-columns: 1fr; }
  .guide-related__grid { grid-template-columns: 1fr; }
  .guide-related-card { grid-template-columns: 112px 1fr; grid-template-rows: 112px; }
  .guide-related-card img { height: 112px; }
}

.home-guides {
  width: min(980px, calc(100% - 40px));
  margin: 28px auto 12px;
  padding: 28px 0;
  border-top: 1px solid #dce4dd;
  border-bottom: 1px solid #dce4dd;
}

.home-guides__heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 16px;
}

.home-guides__heading h2 {
  max-width: 570px;
  margin: 3px 0 0;
  font-size: 1.55rem;
  line-height: 1.12;
}

.home-guides__heading > a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #087b41;
  font-size: .76rem;
  font-weight: 900;
  text-decoration: none;
}

.home-guides__heading > a span { color: var(--electric-cyan); font-size: 1rem; }

.home-guides__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-guides__grid > a {
  display: grid;
  grid-template-columns: 104px 1fr;
  min-width: 0;
  overflow: hidden;
  background: #f7f9f7;
  border: 1px solid #e0e6e1;
  border-radius: 5px;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.home-guides__grid > a:hover {
  border-color: #80cd99;
  transform: translateY(-2px);
}

.home-guides__grid img {
  width: 104px;
  height: 100%;
  min-height: 106px;
  object-fit: cover;
}

.home-guides__grid span {
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 0;
  padding: 12px;
}

.home-guides__grid small {
  color: #078546;
  font-size: .59rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-guides__grid strong {
  font-size: .78rem;
  line-height: 1.35;
}

@media (max-width: 820px) {
  .home-guides__grid { grid-template-columns: 1fr; }
  .home-guides__grid > a { grid-template-columns: 130px 1fr; }
  .home-guides__grid img { width: 130px; }
}

@media (max-width: 640px) {
  .home-guides { width: calc(100% - 28px); }
  .home-guides__heading { align-items: start; flex-direction: column; gap: 9px; }
  .home-guides__grid > a { grid-template-columns: 96px 1fr; }
  .home-guides__grid img { width: 96px; min-height: 96px; }
}
