@font-face {
  font-family: "MontserratLocal";
  src: url("../assets/fonts/montserrat-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MontserratLocal";
  src: url("../assets/fonts/montserrat-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MontserratLocal";
  src: url("../assets/fonts/montserrat-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MontserratLocal";
  src: url("../assets/fonts/montserrat-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OuterLocal";
  src: url("../assets/fonts/made-outer-sans.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #101213;
  --ink-soft: #17191a;
  --ink-raised: #202324;
  --paper: #f2f1eb;
  --paper-warm: #e8e6dd;
  --white: #fff;
  --muted: #a5a7a5;
  --muted-dark: #606463;
  --yellow: #ffca0a;
  --yellow-soft: #f3c622;
  --navy: #13294c;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(16, 18, 19, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 40px;
  --header-height: 88px;
  --container: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "MontserratLocal", Montserrat, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(92px, 10vw, 164px);
  overflow-x: clip;
}

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

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

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

.section--compact {
  padding-block: clamp(64px, 7vw, 112px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1.7fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 100px);
}

.section-heading--stack {
  display: block;
}

.section-heading--stack .display-title {
  max-width: 980px;
  margin-top: 24px;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--yellow);
  content: "";
}

.eyebrow--no-line::before {
  display: none;
}

.display-title {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(40px, 6vw, 90px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.display-title--wide {
  max-width: 1260px;
}

.display-title em {
  color: var(--yellow);
  font-style: normal;
}

.lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.45;
}

.section--dark .lead {
  color: var(--muted);
}

.body-copy {
  max-width: 680px;
  color: var(--muted-dark);
  font-size: 17px;
}

.body-copy p {
  margin: 0 0 1.4em;
}

.body-copy--light {
  color: var(--muted);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  padding: 14px 22px;
  overflow: hidden;
  gap: 13px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: color 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: inherit;
  content: "";
  transform: translateY(105%);
  transition: transform 0.45s var(--ease);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button:hover::before {
  transform: translateY(0);
}

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

.button--primary {
  color: var(--ink);
  background: var(--yellow);
}

.button--primary::before {
  background: var(--white);
}

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

.button--dark::before {
  background: #343737;
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.button--ghost-light {
  color: var(--ink);
  border-color: rgba(16, 18, 19, 0.26);
  background: transparent;
}

.button--small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 11px;
}

.button__icon,
.arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.35s var(--ease);
}

.button:hover .button__icon,
.link-arrow:hover .arrow-icon {
  transform: translate(4px, -2px);
}

.link-arrow {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  min-height: 34px;
  padding: 7px 13px;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: height 0.35s var(--ease), background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled,
.page-inner .site-header {
  height: 74px;
  color: var(--white);
  background: rgba(16, 18, 19, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(20px) saturate(140%);
}

.header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 190px 1fr auto;
  gap: 36px;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: 174px;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 38px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.015em;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

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

.header__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.request-indicator {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.request-indicator svg {
  width: 19px;
  height: 19px;
}

.request-count {
  position: absolute;
  top: -4px;
  right: -2px;
  display: none;
  min-width: 19px;
  height: 19px;
  padding-inline: 4px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
}

.request-count.is-visible {
  display: flex;
}

.request-count.is-bumping,
.request-indicator.is-bumping {
  animation: cart-badge-bump 0.48s var(--ease);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  position: absolute;
  left: 0;
}

.menu-toggle__lines::before {
  top: -6px;
}

.menu-toggle__lines::after {
  top: 6px;
}

.menu-open .menu-toggle__lines {
  background: transparent;
}

.menu-open .menu-toggle__lines::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle__lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 990;
  inset: 0;
  display: grid;
  padding: 118px 32px 40px;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.45s var(--ease);
}

.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(28px, 8vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.mobile-menu__footer {
  display: flex;
  align-self: end;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}

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

.hero__background,
.hero__veil,
.hero__grid,
.hero__noise,
.dust-field {
  position: absolute;
  inset: 0;
}

.hero__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroScale 12s var(--ease) both;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.94) 0%, rgba(5, 7, 8, 0.72) 40%, rgba(5, 7, 8, 0.17) 76%, rgba(5, 7, 8, 0.25) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, transparent 48%, rgba(0, 0, 0, 0.72) 100%);
}

.hero__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero__noise {
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.dust-field {
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.dust-particle {
  position: absolute;
  width: var(--size, 3px);
  height: var(--size, 3px);
  background: rgba(255, 226, 170, var(--opacity, 0.38));
  border-radius: 50%;
  filter: blur(var(--blur, 0px));
  animation: dustFloat var(--duration, 11s) linear var(--delay, 0s) infinite;
}

.hero__inner {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 44px);
  padding-bottom: 90px;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: clamp(30px, 5vw, 86px);
  align-items: center;
}

.hero__content {
  max-width: 860px;
}

.hero__kicker {
  display: flex;
  margin-bottom: 32px;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: riseIn 0.9s 0.12s var(--ease) both;
}

.hero__kicker span:first-child {
  color: var(--ink);
  background: var(--yellow);
  padding: 7px 10px;
  border-radius: 3px;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(52px, 7.6vw, 118px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-wrap: balance;
  animation: riseIn 1.05s 0.2s var(--ease) both;
}

.hero h1 em {
  display: block;
  color: var(--yellow);
  font-style: normal;
}

.hero__summary {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  animation: riseIn 1s 0.32s var(--ease) both;
}

.hero__actions {
  display: flex;
  margin-top: 38px;
  gap: 12px;
  flex-wrap: wrap;
  animation: riseIn 1s 0.42s var(--ease) both;
}

.hero__facts {
  display: flex;
  margin: 46px 0 0;
  padding: 0;
  gap: 26px;
  flex-wrap: wrap;
  list-style: none;
  animation: riseIn 1s 0.52s var(--ease) both;
}

.hero__facts li {
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__facts li::before {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255, 202, 10, 0.8);
  content: "";
}

.hero__product-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: min(76vh, 750px);
  perspective: 1200px;
  animation: stageReveal 1.25s 0.28s var(--ease) both;
}

.hero-product {
  position: absolute;
  z-index: 3;
  right: clamp(0px, 4vw, 70px);
  bottom: 2%;
  width: min(76%, 470px);
  height: 88%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 46px 35px rgba(0, 0, 0, 0.52));
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-origin: 50% 75%;
  transition: opacity 0.3s ease, filter 0.3s ease;
  animation: productHover 5.4s 1.6s ease-in-out infinite;
}

.hero-product.is-changing {
  opacity: 0;
  filter: blur(14px) drop-shadow(0 46px 35px rgba(0, 0, 0, 0.52));
}

.hero-product__halo {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 4%;
  width: 78%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 202, 10, 0.18), transparent 64%);
  border-radius: 50%;
  filter: blur(10px);
}

.hero-product__outline {
  position: absolute;
  z-index: 0;
  right: -6%;
  bottom: 5%;
  width: min(88%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.hero-product__outline::before,
.hero-product__outline::after {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 202, 10, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-product__outline::after {
  inset: 24%;
}

.hero-product__meta {
  position: absolute;
  z-index: 5;
  right: 0;
  top: 19%;
  display: flex;
  width: 178px;
  padding: 17px;
  flex-direction: column;
  color: var(--white);
  background: rgba(16, 18, 19, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(18px);
}

.hero-product__meta small {
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-product__meta strong {
  font-size: 22px;
  line-height: 1.05;
}

.hero-product__meta span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.hero-product__switcher {
  position: absolute;
  z-index: 6;
  right: 6px;
  bottom: 7%;
  display: flex;
  gap: 8px;
}

.hero-product__switcher button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-product__switcher button.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: scale(1.35);
}

.hero__scroll {
  position: absolute;
  z-index: 5;
  bottom: 27px;
  left: 50%;
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll::before {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  content: "";
  animation: scrollLine 1.8s ease-in-out infinite;
}

.metric-band {
  color: var(--ink);
  background: var(--yellow);
}

.metric-band__inner {
  display: grid;
  min-height: 180px;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  display: flex;
  padding: 30px clamp(20px, 3vw, 46px);
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(16, 18, 19, 0.2);
}

.metric:first-child {
  border-left: 1px solid rgba(16, 18, 19, 0.2);
}

.metric strong {
  font-family: "OuterLocal", "MontserratLocal", sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric span {
  max-width: 210px;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifesto {
  overflow: hidden;
}

.manifesto::before {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 48vw;
  height: 48vw;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  content: "";
}

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.46fr) minmax(0, 1.54fr);
  gap: clamp(40px, 8vw, 140px);
}

.manifesto__copy {
  position: relative;
  z-index: 1;
}

.manifesto__copy .display-title {
  max-width: 1170px;
}

.manifesto__footer {
  display: grid;
  margin-top: clamp(54px, 8vw, 120px);
  padding-top: 32px;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-top: 1px solid var(--line-light);
}

.manifesto__seal {
  display: flex;
  width: 132px;
  height: 132px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(7deg);
}

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

.value-card {
  min-height: 320px;
  padding: clamp(26px, 3.5vw, 50px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.value-card__number {
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.value-card h3 {
  max-width: 270px;
  margin: 80px 0 18px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.value-card p {
  max-width: 300px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.category-card {
  position: relative;
  display: flex;
  min-height: 440px;
  padding: clamp(22px, 2.5vw, 38px);
  overflow: hidden;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: color 0.45s var(--ease), background 0.45s var(--ease);
}

.category-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: var(--card-accent, var(--yellow));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}

.category-card:hover {
  color: var(--ink);
  background: var(--card-accent, var(--yellow));
}

.category-card:hover::after {
  transform: scaleX(1);
}

.category-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-card:hover .category-card__top {
  color: rgba(16, 18, 19, 0.65);
}

.category-card__icon {
  width: 128px;
  height: 128px;
  margin: 42px auto 28px;
  object-fit: contain;
  filter: grayscale(1) brightness(2.2);
  opacity: 0.82;
  transition: filter 0.45s var(--ease), opacity 0.45s ease, transform 0.6s var(--ease);
}

.category-card:hover .category-card__icon {
  filter: brightness(0.15);
  opacity: 0.76;
  transform: translateY(-8px) rotate(-3deg) scale(1.05);
}

.category-card h3 {
  margin: auto 0 16px;
  font-size: clamp(19px, 1.8vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.category-card p {
  min-height: 72px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.category-card:hover p {
  color: rgba(16, 18, 19, 0.68);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  background: #e9e8e2;
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.product-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-9px);
}

.product-card__visual {
  position: relative;
  display: flex;
  height: clamp(330px, 36vw, 510px);
  overflow: hidden;
  align-items: flex-end;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 68%, color-mix(in srgb, var(--product-accent) 24%, transparent), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(16, 18, 19, 0.04));
}

.product-card__visual::before {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(16, 18, 19, 0.1);
  border-radius: 50%;
  content: "";
  transform: scale(0.88);
  transition: transform 0.7s var(--ease), border-color 0.5s ease;
}

.product-card:hover .product-card__visual::before {
  border-color: color-mix(in srgb, var(--product-accent) 72%, transparent);
  transform: scale(1.05);
}

.product-card__image {
  position: relative;
  z-index: 1;
  width: 66%;
  height: 91%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 18px rgba(0, 0, 0, 0.2));
  transition: transform 0.65s var(--ease), filter 0.5s ease;
}

.product-card:hover .product-card__image {
  filter: drop-shadow(0 38px 26px rgba(0, 0, 0, 0.27));
  transform: translateY(-10px) rotate(-1.5deg) scale(1.025);
}

.product-card__badge {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__quick {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: flex;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.3s ease, transform 0.35s var(--ease), background 0.25s ease;
}

.product-card:hover .product-card__quick,
.product-card__quick:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card__quick:hover {
  color: var(--ink);
  background: var(--yellow);
}

.product-card__quick svg {
  width: 18px;
  height: 18px;
}

.product-card__body {
  padding: 25px 26px 28px;
  background: rgba(255, 255, 255, 0.58);
}

.product-card__meta {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: "OuterLocal", "MontserratLocal", sans-serif;
  font-size: clamp(27px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.product-card__subtitle {
  min-height: 44px;
  margin: 11px 0 22px;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.45;
}

.product-card__footer {
  display: flex;
  padding-top: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid rgba(16, 18, 19, 0.12);
}

.product-card__footer a {
  font-size: 11px;
  font-weight: 700;
}

.request-toggle {
  display: inline-flex;
  min-height: 38px;
  padding: 9px 13px;
  gap: 7px;
  align-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(16, 18, 19, 0.24);
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
}

.request-toggle:hover,
.request-toggle.is-added {
  background: var(--yellow);
  border-color: var(--yellow);
}

.request-toggle.is-added {
  transform: scale(0.96);
}

.product-card.is-cart-feedback {
  box-shadow: 0 24px 70px rgba(16, 18, 19, 0.18);
}

.product-card.is-cart-feedback .product-card__image {
  transform: translateY(-7px) scale(1.035);
}

.cart-flyer {
  position: fixed;
  z-index: 3000;
  margin: 0;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 12px 10px rgba(0, 0, 0, 0.2));
  will-change: transform, opacity;
}

.cart-toast {
  position: fixed;
  z-index: 2900;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  display: flex;
  max-width: min(380px, calc(100vw - 32px));
  min-height: 54px;
  padding: 14px 18px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.32s var(--ease);
}

.cart-toast::before {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  content: "✓";
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes cart-badge-bump {
  0%, 100% { transform: scale(1); }
  42% { transform: scale(1.28) rotate(-6deg); }
  68% { transform: scale(0.92) rotate(2deg); }
}

.request-toggle svg {
  width: 14px;
  height: 14px;
}

.section-actions {
  display: flex;
  margin-top: 46px;
  justify-content: center;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 8vw, 132px);
  align-items: stretch;
}

.process-steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-dark);
}

.process-step {
  position: relative;
  display: grid;
  padding: 28px 8px 28px 0;
  grid-template-columns: 54px 1fr 24px;
  gap: 18px;
  align-items: start;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  cursor: pointer;
  text-align: left;
  transition: color 0.35s ease, padding-left 0.4s var(--ease);
}

.process-step::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -22px;
  width: 3px;
  background: var(--yellow);
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s var(--ease);
}

.process-step.is-active,
.process-step:hover {
  padding-left: 12px;
  color: var(--white);
}

.process-step.is-active::before {
  transform: scaleY(1);
}

.process-step__num {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
}

.process-step strong {
  display: block;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.process-step span:not(.process-step__num) {
  display: block;
  max-width: 420px;
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.5;
}

.process-step svg {
  width: 18px;
  height: 18px;
}

.process-visual {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  min-height: 660px;
  overflow: hidden;
  background: #2a2c2c;
  border-radius: var(--radius-lg);
}

.process-visual img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  filter: saturate(0.45) contrast(1.08);
  transition: opacity 0.4s ease, transform 0.8s var(--ease);
}

.process-visual.is-changing img {
  opacity: 0.35;
  transform: scale(1.04);
}

.process-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.8));
  content: "";
}

.process-visual__label {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.process-visual__label strong {
  font-size: clamp(28px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.process-visual__label span {
  color: var(--yellow);
  font-family: "OuterLocal", sans-serif;
  font-size: 80px;
  line-height: 0.8;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.editorial-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.editorial-card:nth-child(2),
.editorial-card:nth-child(3) {
  min-height: 500px;
  margin-top: 110px;
}

.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.05);
  transition: transform 0.8s var(--ease), filter 0.6s ease;
}

.editorial-card:hover img {
  filter: grayscale(0.15) contrast(1.05);
  transform: scale(1.045);
}

.editorial-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.86));
  content: "";
}

.editorial-card__body {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
}

.editorial-card__body small {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-card__body h3 {
  max-width: 440px;
  margin: 12px 0 0;
  font-size: clamp(23px, 2.8vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.documents-band {
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
}

.documents-band::after {
  position: absolute;
  right: -9vw;
  bottom: -38vw;
  width: 68vw;
  height: 68vw;
  border: 1px solid rgba(16, 18, 19, 0.16);
  border-radius: 50%;
  content: "";
}

.documents-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(290px, 0.6fr);
  gap: 80px;
  align-items: end;
}

.documents-band h2 {
  max-width: 940px;
  margin: 24px 0 0;
  font-size: clamp(44px, 7vw, 102px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.documents-band__side {
  max-width: 420px;
}

.documents-band__side p {
  margin: 0 0 28px;
  font-size: 16px;
}

.map-section {
  overflow: hidden;
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.45fr);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
}

.map-canvas {
  position: relative;
  display: flex;
  min-height: 680px;
  padding: clamp(25px, 4vw, 60px);
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #17191a;
  background-size: 52px 52px;
}

.map-canvas::before {
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  background: rgba(255, 202, 10, 0.1);
  border-radius: 50%;
  content: "";
  filter: blur(100px);
}

.map-svg-host {
  position: relative;
  z-index: 1;
  width: 100%;
}

.map-svg-host > svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.map-svg-host #features path {
  fill: #393d3e;
  stroke: #8a8f8f;
  stroke-width: 0.9;
  cursor: pointer;
  transition: fill 0.28s ease, stroke 0.28s ease, filter 0.28s ease, transform 0.28s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.map-svg-host #features path:hover,
.map-svg-host #features path.is-active {
  fill: var(--yellow);
  stroke: var(--yellow);
  filter: drop-shadow(0 0 13px rgba(255, 202, 10, 0.48));
  transform: translateY(-1px);
}

.map-svg-host #points,
.map-svg-host #label_points {
  display: none;
}

.map-tooltip {
  position: absolute;
  z-index: 10;
  max-width: 220px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  font-size: 11px;
  font-weight: 700;
  transform: translate(-50%, calc(-100% - 14px));
  transition: opacity 0.2s ease;
}

.map-tooltip.is-visible {
  opacity: 1;
}

.region-panel {
  display: flex;
  min-height: 680px;
  padding: clamp(30px, 4vw, 54px);
  flex-direction: column;
  background: #202324;
  border-left: 1px solid var(--line-dark);
}

.region-panel__index {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.region-panel h3 {
  margin: auto 0 12px;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.region-panel__city {
  color: var(--muted);
  font-size: 14px;
}

.region-panel__status {
  display: flex;
  margin: 32px 0;
  padding: 20px 0;
  gap: 13px;
  align-items: flex-start;
  color: var(--muted);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: 12px;
}

.region-panel__status::before {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  flex: 0 0 auto;
  background: #72d488;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(114, 212, 136, 0.6);
  content: "";
}

.region-select {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  padding: 12px 42px 12px 16px;
  color: var(--white);
  background: #17191a;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  cursor: pointer;
}

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

.professional-card {
  position: relative;
  min-height: 390px;
  padding: clamp(30px, 4vw, 56px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.professional-card__mark {
  color: var(--yellow-soft);
  font-size: 70px;
  line-height: 0.6;
}

.professional-card blockquote {
  margin: 85px 0 0;
  font-size: clamp(21px, 2.2vw, 31px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.professional-card footer {
  margin-top: 28px;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta {
  color: var(--white);
  background: var(--ink);
}

.final-cta__box {
  position: relative;
  display: grid;
  min-height: 560px;
  padding: clamp(36px, 7vw, 100px);
  overflow: hidden;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 70px;
  align-items: end;
  background: var(--ink-raised);
  border-radius: var(--radius-lg);
}

.final-cta__box::before,
.final-cta__box::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.final-cta__box::before {
  top: -50%;
  right: -8%;
  width: 58vw;
  height: 58vw;
}

.final-cta__box::after {
  top: -30%;
  right: 2%;
  width: 42vw;
  height: 42vw;
}

.final-cta__copy,
.final-cta__side {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 930px;
  margin: 24px 0 0;
  font-size: clamp(48px, 7.5vw, 108px);
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.final-cta h2 em {
  color: var(--yellow);
  font-style: normal;
}

.final-cta__side p {
  max-width: 380px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 15px;
}

.final-cta__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  color: var(--white);
  background: #080a0b;
}

.footer__top {
  display: grid;
  padding-block: 86px 72px;
  grid-template-columns: 1.05fr 0.7fr 0.7fr 0.9fr;
  gap: clamp(34px, 5vw, 90px);
}

.footer__brand img {
  width: 190px;
  max-height: 46px;
  object-fit: contain;
  object-position: left;
}

.footer__brand p {
  max-width: 360px;
  margin: 26px 0 0;
  color: #787c7b;
  font-size: 13px;
}

.footer__column h3 {
  margin: 0 0 24px;
  color: #686c6b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__column nav,
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__column a,
.footer__contacts span {
  color: #c5c8c7;
  font-size: 13px;
  transition: color 0.25s ease;
}

.footer__column a:hover {
  color: var(--yellow);
}

.footer__bottom {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #5f6262;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.footer__bottom a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal[data-reveal="left"] {
  transform: translateX(-40px);
}

.reveal[data-reveal="right"] {
  transform: translateX(40px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 64svh;
  padding-top: calc(var(--header-height) + 70px);
  overflow: hidden;
  align-items: end;
  color: var(--white);
  background: var(--ink);
}

.page-hero::before {
  position: absolute;
  top: -35%;
  right: -8%;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent);
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  padding-bottom: clamp(64px, 8vw, 114px);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.page-hero__title {
  max-width: 1000px;
  margin: 26px 0 0;
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.075em;
}

.page-hero__title em {
  display: block;
  color: var(--yellow);
  font-style: normal;
}

.page-hero__side {
  padding-top: 28px;
  color: var(--muted);
  border-top: 1px solid var(--line-dark);
  font-size: 15px;
}

.page-hero__side strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
}

.catalog-hero-products {
  position: absolute;
  z-index: 1;
  top: 16%;
  right: 3%;
  width: min(35vw, 510px);
  height: 72%;
  opacity: 0.24;
  filter: grayscale(0.4);
}

.catalog-hero-products img {
  position: absolute;
  bottom: 0;
  width: 47%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 30px 20px rgba(0, 0, 0, 0.4));
}

.catalog-hero-products img:nth-child(1) {
  left: 0;
  transform: rotate(-6deg);
}

.catalog-hero-products img:nth-child(2) {
  left: 28%;
  z-index: 2;
  transform: translateY(-8%) rotate(1deg);
}

.catalog-hero-products img:nth-child(3) {
  right: 0;
  transform: rotate(7deg);
}

.catalog-controls {
  position: sticky;
  z-index: 20;
  top: 73px;
  padding-block: 18px;
  background: rgba(242, 241, 235, 0.92);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
}

.catalog-controls__inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.6fr) minmax(180px, 0.45fr);
  gap: 16px;
  align-items: center;
}

.search-field {
  position: relative;
}

.search-field svg {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 18px;
  height: 18px;
  color: var(--muted-dark);
  transform: translateY(-50%);
}

.search-field input,
.catalog-select {
  width: 100%;
  min-height: 50px;
  padding: 11px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line-light);
  border-radius: 999px;
}

.search-field input {
  padding-left: 48px;
}

.category-filters {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  scrollbar-width: none;
}

.category-filters::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  min-height: 42px;
  padding: 10px 15px;
  color: var(--muted-dark);
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.catalog-summary {
  display: flex;
  margin-bottom: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted-dark);
  font-size: 12px;
}

.catalog-summary strong {
  color: var(--ink);
}

.empty-state {
  display: none;
  min-height: 320px;
  padding: 60px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--line-light);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state.is-visible {
  display: flex;
}

.empty-state h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

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

.product-detail-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 70px);
  overflow: hidden;
  background: var(--paper);
}

.breadcrumbs {
  display: flex;
  padding-block: 22px;
  gap: 10px;
  align-items: center;
  color: var(--muted-dark);
  font-size: 11px;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.product-detail-grid {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  border-top: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.product-detail-visual {
  position: relative;
  display: flex;
  min-height: 760px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--product-accent) 25%, transparent), transparent 46%),
    #e4e3dd;
  border-right: 1px solid var(--line-light);
}

.product-detail-visual::before,
.product-detail-visual::after {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(16, 18, 19, 0.1);
  border-radius: 50%;
  content: "";
}

.product-detail-visual::after {
  width: 46%;
}

.product-detail-visual img {
  position: relative;
  z-index: 1;
  width: min(54%, 420px);
  height: 83%;
  object-fit: contain;
  filter: drop-shadow(0 40px 28px rgba(0, 0, 0, 0.24));
  animation: productHover 5.4s 0.5s ease-in-out infinite;
}

.product-detail-copy {
  display: flex;
  min-width: 0;
  padding: clamp(42px, 6vw, 88px);
  flex-direction: column;
  justify-content: center;
}

.product-detail-copy h1 {
  margin: 20px 0 12px;
  font-family: "OuterLocal", "MontserratLocal", sans-serif;
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.product-detail-copy__subtitle {
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(18px, 2vw, 26px);
}

.product-detail-copy__description {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--muted-dark);
  font-size: 15px;
}

.product-detail-copy__meta {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.detail-meta {
  padding: 18px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.detail-meta small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.detail-meta strong {
  font-size: 16px;
}

.product-detail-actions {
  display: flex;
  margin-top: 34px;
  gap: 10px;
  flex-wrap: wrap;
}

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

.product-spec {
  min-height: 220px;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.product-spec small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-spec strong {
  display: block;
  margin-top: 55px;
  color: var(--white);
  font-size: clamp(23px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(60px, 10vw, 150px);
}

.detail-copy h2 {
  margin: 0 0 30px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.detail-copy p {
  color: var(--muted-dark);
  font-size: 17px;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.benefit-list li {
  display: flex;
  min-height: 68px;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  font-size: 13px;
  font-weight: 600;
}

.benefit-list li::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.product-note {
  margin-top: 32px;
  padding: 18px 20px;
  color: #775d00;
  background: rgba(255, 202, 10, 0.22);
  border-left: 3px solid var(--yellow);
  border-radius: 0 10px 10px 0;
  font-size: 12px;
}

.instruction-grid {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.instruction-step {
  min-height: 280px;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  counter-increment: step;
}

.instruction-step::before {
  display: block;
  color: var(--yellow-soft);
  content: "0" counter(step);
  font-family: "OuterLocal", sans-serif;
  font-size: 38px;
}

.instruction-step h3 {
  margin: 72px 0 12px;
  font-size: 20px;
  line-height: 1.1;
}

.instruction-step p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 12px;
}

.related-products {
  margin-top: 70px;
}

.company-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: end;
}

.company-intro__statement {
  font-size: clamp(38px, 5vw, 78px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.company-intro__statement em {
  color: var(--yellow-soft);
  font-style: normal;
}

.company-image-wide {
  position: relative;
  height: auto;
  aspect-ratio: 3 / 2;
  margin-top: clamp(70px, 10vw, 150px);
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.company-image-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.96);
}

.company-image-wide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 70%);
  content: "";
}

.company-image-wide__caption {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  left: 35px;
  max-width: 360px;
  color: var(--white);
  font-size: 12px;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.document-card {
  display: flex;
  min-height: 390px;
  padding: clamp(28px, 4vw, 50px);
  flex-direction: column;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  transition: background 0.35s ease, transform 0.4s var(--ease);
}

.document-card:hover {
  background: var(--white);
  transform: translateY(-7px);
}

.document-card__icon {
  display: flex;
  width: 62px;
  height: 76px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px 18px 8px 8px;
}

.document-card__icon svg {
  width: 26px;
  height: 26px;
}

.document-card h3 {
  margin: auto 0 15px;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.document-card p {
  min-height: 60px;
  margin: 0 0 25px;
  color: var(--muted-dark);
  font-size: 12px;
}

.document-card__meta {
  display: flex;
  padding-top: 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  font-size: 10px;
  font-weight: 700;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.scenario-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.scenario-card:nth-child(1),
.scenario-card:nth-child(4) {
  grid-column: span 7;
}

.scenario-card:nth-child(2),
.scenario-card:nth-child(3) {
  grid-column: span 5;
}

.scenario-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.7);
  transition: filter 0.5s ease, transform 0.7s var(--ease);
}

.scenario-card:hover img {
  filter: grayscale(0.2);
  transform: scale(1.035);
}

.scenario-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.86));
  content: "";
}

.scenario-card__copy {
  position: absolute;
  z-index: 2;
  right: clamp(26px, 4vw, 50px);
  bottom: clamp(26px, 4vw, 50px);
  left: clamp(26px, 4vw, 50px);
}

.scenario-card__copy small {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scenario-card h3 {
  max-width: 640px;
  margin: 14px 0;
  font-size: clamp(30px, 4vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.scenario-card p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 18px;
}

.contact-card {
  min-height: 560px;
  padding: clamp(34px, 6vw, 80px);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
}

.contact-card--dark {
  color: var(--white);
  background: var(--ink);
  border-color: transparent;
}

.contact-card h2 {
  margin: 100px 0 24px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.contact-list {
  display: flex;
  margin-top: 34px;
  flex-direction: column;
  border-top: 1px solid currentColor;
}

.contact-list a,
.contact-list span {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
}

.contact-card--dark .contact-list {
  border-color: var(--line-dark);
}

.contact-card--dark .contact-list a,
.contact-card--dark .contact-list span {
  color: #c6c9c8;
  border-color: var(--line-dark);
}

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

.contact-list small {
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  z-index: 1500;
  inset: 0;
  display: flex;
  padding: 24px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 6, 0.76);
  backdrop-filter: blur(12px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: calc(100svh - 48px);
  padding: clamp(30px, 5vw, 64px);
  overflow-y: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
  transform: translateY(26px) scale(0.98);
  transition: transform 0.45s var(--ease);
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  cursor: pointer;
}

.modal__close svg {
  width: 20px;
  height: 20px;
}

.modal h2 {
  max-width: 560px;
  margin: 18px 0 12px;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.modal__intro {
  max-width: 580px;
  margin: 0 0 30px;
  color: var(--muted-dark);
  font-size: 14px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line-light);
  border-radius: 12px;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-footer {
  display: flex;
  margin-top: 22px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.form-footer small {
  max-width: 330px;
  color: var(--muted-dark);
  font-size: 10px;
}

.quick-view {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 46px;
  align-items: center;
}

#quick-view-modal .modal__dialog {
  width: min(100%, 920px);
}

.quick-view__visual {
  position: relative;
  display: flex;
  min-height: 470px;
  align-items: flex-end;
  justify-content: center;
  background: #e3e2dc;
  border-radius: var(--radius);
}

.quick-view__visual img {
  width: 72%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 26px 18px rgba(0, 0, 0, 0.22));
}

.quick-view__copy h2 {
  margin: 14px 0 10px;
  font-family: "OuterLocal", "MontserratLocal", sans-serif;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.quick-view__copy {
  min-width: 0;
}

.quick-view__copy p {
  color: var(--muted-dark);
  font-size: 13px;
}

.quick-specs {
  margin: 24px 0;
  border-top: 1px solid var(--line-light);
}

.quick-spec {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line-light);
  font-size: 11px;
}

.quick-spec span {
  color: var(--muted-dark);
}

.quick-view__actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

@keyframes heroScale {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes stageReveal {
  from { opacity: 0; filter: blur(20px); transform: translateY(55px) scale(0.94); }
  to { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}

@keyframes productHover {
  0%, 100% { transform: translateY(0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); }
  50% { transform: translateY(-10px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); }
}

@keyframes dustFloat {
  0% { opacity: 0; transform: translate3d(0, 30px, 0) scale(0.7); }
  15% { opacity: var(--opacity, 0.4); }
  75% { opacity: calc(var(--opacity, 0.4) * 0.6); }
  100% { opacity: 0; transform: translate3d(var(--drift, 80px), -110vh, 0) scale(1.2); }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleX(0.35); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

@media (max-width: 1240px) {
  :root {
    --header-height: 78px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 10px;
  }

  .header__inner {
    grid-template-columns: 165px 1fr auto;
    gap: 20px;
  }

  .brand {
    width: 155px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  }

  .hero h1 {
    font-size: clamp(52px, 7vw, 90px);
  }

  .hero-product__meta {
    display: none;
  }

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

  .category-card:nth-child(4),
  .category-card:nth-child(5) {
    min-height: 380px;
  }

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

  .editorial-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .editorial-card:nth-child(3) {
    display: none;
  }

  .product-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr);
  }
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header__consult {
    display: none;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .header__actions {
    gap: 8px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .section-heading,
  .manifesto__grid,
  .page-hero__inner,
  .company-intro {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  }

  .hero h1 {
    font-size: clamp(48px, 7.8vw, 78px);
  }

  .hero__summary {
    font-size: 15px;
  }

  .metric-band__inner,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .product-card__visual {
    height: 500px;
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-visual {
    position: relative;
    top: auto;
    min-height: 520px;
  }

  .process-visual img {
    min-height: 520px;
  }

  .map-shell {
    grid-template-columns: 1fr;
  }

  .map-canvas {
    min-height: 520px;
  }

  .region-panel {
    min-height: auto;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .region-panel h3 {
    margin-top: 60px;
  }

  .professional-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .professional-card {
    min-height: 320px;
  }

  .final-cta__box,
  .documents-band__inner {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer__column:last-child {
    grid-column: 2 / -1;
  }

  .catalog-controls {
    position: relative;
    top: auto;
  }

  .catalog-controls__inner {
    grid-template-columns: 1fr 1fr;
  }

  .category-filters {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

  .product-detail-visual,
  .product-detail-copy {
    min-height: 650px;
  }

  .product-detail-visual {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

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

  .scenario-card,
  .scenario-card:nth-child(n) {
    grid-column: span 6;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --radius: 18px;
    --radius-lg: 26px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding-block: 84px;
  }

  .site-header,
  .site-header.is-scrolled,
  .page-inner .site-header {
    height: 68px;
  }

  .brand {
    width: 142px;
  }

  .request-indicator {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    padding: 96px 20px 28px;
  }

  .mobile-menu__footer {
    flex-direction: column;
    gap: 8px;
  }

  .display-title {
    font-size: clamp(40px, 13vw, 66px);
  }

  .hero {
    min-height: 900px;
  }

  .hero__background {
    object-position: 63% center;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(5, 7, 8, 0.9) 0%, rgba(5, 7, 8, 0.72) 48%, rgba(5, 7, 8, 0.88) 100%),
      linear-gradient(90deg, rgba(5, 7, 8, 0.7), transparent);
  }

  .hero__inner {
    display: flex;
    min-height: 900px;
    padding-top: 116px;
    padding-bottom: 70px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__kicker {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(49px, 16.3vw, 73px);
  }

  .hero__summary {
    margin-top: 24px;
  }

  .hero__actions {
    margin-top: 25px;
  }

  .hero__actions .button {
    flex: 1 1 auto;
  }

  .hero__facts {
    margin-top: 24px;
    gap: 10px 18px;
  }

  .hero__product-stage {
    min-height: 350px;
    margin-top: 10px;
  }

  .hero-product {
    right: 11%;
    width: 61%;
    height: 108%;
  }

  .hero-product__outline {
    right: 3%;
    width: 72%;
  }

  .hero-product__halo {
    right: 1%;
    width: 77%;
  }

  .hero-product__switcher {
    right: 9%;
  }

  .hero__scroll {
    display: none;
  }

  .metric-band__inner,
  .values-grid,
  .categories-grid,
  .product-grid,
  .professional-grid {
    grid-template-columns: 1fr;
  }

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

  .metric-band__inner {
    padding-block: 12px;
  }

  .metric {
    min-height: 124px;
    border-right: 1px solid rgba(16, 18, 19, 0.2);
    border-bottom: 1px solid rgba(16, 18, 19, 0.2);
  }

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

  .manifesto__seal {
    width: 112px;
    height: 112px;
    margin-left: 0;
  }

  .value-card {
    min-height: 260px;
  }

  .value-card h3 {
    margin-top: 55px;
  }

  .category-card,
  .category-card:nth-child(n) {
    min-height: 330px;
  }

  .category-card__icon {
    width: 100px;
    height: 100px;
    margin: 22px auto;
  }

  .product-card__visual {
    height: 430px;
  }

  .process-step {
    grid-template-columns: 40px 1fr 18px;
  }

  .process-visual,
  .process-visual img {
    min-height: 430px;
  }

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

  .editorial-card,
  .editorial-card:nth-child(2),
  .editorial-card:nth-child(3) {
    display: block;
    min-height: 480px;
    margin-top: 0;
  }

  .documents-band__inner {
    gap: 40px;
  }

  .map-canvas {
    min-height: 380px;
    padding: 15px;
  }

  .region-panel {
    padding: 26px;
  }

  .region-panel h3 {
    margin-top: 44px;
  }

  .final-cta__box {
    min-height: 650px;
    padding: 38px 24px;
    gap: 44px;
  }

  .final-cta h2 {
    font-size: clamp(46px, 15vw, 72px);
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__column:last-child {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    padding-block: 25px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }

  .page-hero {
    min-height: 72svh;
  }

  .page-hero__inner {
    gap: 46px;
  }

  .page-hero__title {
    font-size: clamp(58px, 18vw, 90px);
  }

  .catalog-hero-products {
    right: -5%;
    width: 72vw;
    opacity: 0.13;
  }

  .catalog-controls__inner {
    grid-template-columns: 1fr;
  }

  .category-filters {
    grid-row: auto;
  }

  .catalog-select {
    display: none;
  }

  .catalog-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-detail-visual,
  .product-detail-copy {
    min-height: 560px;
  }

  .product-detail-copy {
    padding: 34px 24px 50px;
  }

  .product-detail-copy h1 {
    font-size: clamp(60px, 18vw, 88px);
  }

  .product-detail-copy h1.product-name--long {
    font-size: clamp(46px, 12.8vw, 58px);
    letter-spacing: -0.075em;
  }

  .product-detail-copy__meta,
  .product-spec-grid,
  .instruction-grid {
    grid-template-columns: 1fr;
  }

  .product-spec {
    min-height: 160px;
  }

  .product-spec strong {
    margin-top: 34px;
  }

  .instruction-step {
    min-height: 220px;
  }

  .instruction-step h3 {
    margin-top: 48px;
  }

  .company-image-wide {
    height: auto;
    aspect-ratio: 3 / 2;
  }

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

  .scenario-card,
  .scenario-card:nth-child(n) {
    min-height: 500px;
    grid-column: 1 / -1;
  }

  .contact-card {
    min-height: 500px;
  }

  .contact-card h2 {
    margin-top: 72px;
  }

  .modal {
    padding: 10px;
  }

  .modal__dialog {
    max-height: calc(100svh - 20px);
    border-radius: 22px;
  }

  .form-grid,
  .quick-view {
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-view__visual {
    min-height: 340px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 870px;
  }

  .hero__inner {
    min-height: 870px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero__facts li:nth-child(3) {
    display: none;
  }

  .hero__product-stage {
    min-height: 300px;
  }

  .product-card__visual {
    height: 380px;
  }

  .button {
    min-height: 50px;
    padding-inline: 17px;
  }

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

/* Compact website revision: denser hierarchy, static hero and lighter map interaction. */
.section {
  padding-block: clamp(72px, 7vw, 112px);
}

.section-heading {
  gap: clamp(28px, 5vw, 72px);
  margin-bottom: clamp(38px, 5vw, 64px);
}

.display-title {
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: 1;
}

.lead {
  font-size: clamp(17px, 1.5vw, 22px);
}

.hero {
  min-height: 780px;
}

.hero__background {
  object-position: center;
  animation: none;
}

.hero__grid,
.hero__noise,
.dust-field,
.hero__product-stage {
  display: none;
}

.hero__inner {
  display: flex;
  min-height: max(780px, 100svh);
  padding-top: calc(var(--header-height) + 46px);
  padding-bottom: 74px;
  align-items: center;
}

.hero__content {
  max-width: 760px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(50px, 5.8vw, 86px);
  line-height: 0.93;
}

.hero__summary {
  max-width: 610px;
  margin-top: 27px;
  font-size: clamp(15px, 1.25vw, 18px);
}

.hero__actions {
  margin-top: 30px;
}

.hero__facts {
  margin-top: 32px;
}

.metric-band__inner {
  min-height: 154px;
}

.metric {
  padding-block: 24px;
}

.metric strong {
  font-size: clamp(34px, 3.9vw, 58px);
}

.categories-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  border: 0;
}

.category-card,
.category-card:nth-child(n) {
  min-height: 280px;
  padding: 25px 27px;
  background: #17191a;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
}

.category-card--direction {
  background: #1c1f20;
}

.category-card__icon {
  width: 84px;
  height: 84px;
  margin: 28px auto 20px;
}

.category-card h3 {
  margin: auto 0 10px;
  font-size: clamp(20px, 1.7vw, 26px);
}

.category-card p {
  min-height: 54px;
  font-size: 11px;
  line-height: 1.48;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

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

.product-card__visual {
  height: clamp(250px, 22vw, 310px);
}

.product-card__image {
  width: 60%;
  height: 90%;
  filter: drop-shadow(0 18px 13px rgba(0, 0, 0, 0.18));
}

.product-card:hover .product-card__image {
  filter: drop-shadow(0 24px 18px rgba(0, 0, 0, 0.23));
  transform: translateY(-6px) rotate(-1deg) scale(1.015);
}

.product-card__badge {
  top: 14px;
  left: 14px;
  max-width: calc(100% - 70px);
  padding: 6px 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card__quick {
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
}

.product-card__body {
  padding: 17px 18px 19px;
}

.product-card__meta {
  margin-bottom: 10px;
  gap: 10px;
  font-size: 9px;
  white-space: nowrap;
}

.product-card h3 {
  font-size: clamp(22px, 1.8vw, 30px);
}

.product-card__subtitle {
  display: -webkit-box;
  min-height: 38px;
  margin: 8px 0 14px;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__footer {
  padding-top: 13px;
  gap: 9px;
}

.product-card__footer a {
  font-size: 10px;
}

.request-toggle {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 9px;
}

.page-hero {
  min-height: 52svh;
  padding-top: calc(var(--header-height) + 48px);
}

.page-hero__title {
  font-size: clamp(50px, 7vw, 96px);
  line-height: 0.9;
}

.documents-band h2 {
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 0.96;
}

.professional-card {
  min-height: 280px;
  padding: clamp(28px, 3.2vw, 42px);
}

.professional-card__mark {
  font-size: 52px;
}

.professional-card blockquote {
  margin-top: 48px;
  font-size: clamp(18px, 1.7vw, 24px);
}

.professional-card footer {
  margin-top: 20px;
}

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

.client-logo {
  display: flex;
  min-height: 132px;
  padding: 18px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 16px;
}

.client-logo img {
  width: 82%;
  height: 74px;
  object-fit: contain;
  filter: saturate(0.9) contrast(1.03);
}

.map-canvas::before {
  background: radial-gradient(circle, rgba(255, 202, 10, 0.12), transparent 68%);
  filter: none;
}

.map-svg-host #features path {
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.map-svg-host #features path:hover,
.map-svg-host #features path.is-active {
  filter: none;
  transform: none;
}

.final-cta__box {
  min-height: 480px;
}

.final-cta h2 {
  font-size: clamp(44px, 5.8vw, 84px);
  line-height: 0.95;
}

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

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

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

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

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

  .product-card__visual {
    height: 340px;
  }

  .professional-card {
    min-height: 240px;
  }

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

@media (max-width: 760px) {
  .section {
    padding-block: 70px;
  }

  .display-title {
    font-size: clamp(36px, 10.5vw, 54px);
  }

  .hero,
  .hero__inner {
    min-height: 760px;
  }

  .hero__background {
    object-position: 68% center;
  }

  .hero__inner {
    padding-top: 110px;
    padding-bottom: 54px;
  }

  .hero h1 {
    max-width: 540px;
    font-size: clamp(44px, 13.5vw, 58px);
  }

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

  .metric {
    min-height: 132px;
  }

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

  .category-card,
  .category-card:nth-child(n) {
    min-height: 235px;
  }

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

  .product-card__visual {
    height: 340px;
  }

  .page-hero {
    min-height: 56svh;
  }

  .page-hero__title {
    font-size: clamp(46px, 14vw, 66px);
  }

  .professional-card {
    min-height: 230px;
  }

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

  .client-logo {
    min-height: 108px;
    padding: 12px;
  }

  .client-logo img {
    height: 62px;
  }

  .final-cta__box {
    min-height: 540px;
  }

  .final-cta h2 {
    font-size: clamp(42px, 12vw, 60px);
  }
}

@media (max-width: 430px) {
  .hero,
  .hero__inner {
    min-height: 740px;
  }

  .product-card__visual {
    height: 300px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .dust-field {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Firebase-backed storefront */
.page-hero--compact {
  min-height: 43svh;
}

.store-state {
  display: flex;
  width: 100%;
  min-height: 126px;
  padding: 24px;
  grid-column: 1 / -1;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line-light);
  border-radius: 18px;
}

.store-state__mark {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 50%;
}

.store-state--loading .store-state__mark {
  border-color: var(--yellow) transparent var(--yellow) var(--yellow);
  background: transparent;
  animation: store-spin 0.85s linear infinite;
}

.store-state--error {
  color: #741d16;
  background: #fff0ee;
  border-color: rgba(154, 43, 32, 0.25);
}

.store-state--error .store-state__mark {
  background: #d64a3a;
  border-color: #d64a3a;
}

.store-state h3,
.store-state p {
  margin: 0;
}

.store-state h3 {
  font-size: 18px;
  line-height: 1.25;
}

.store-state p {
  margin-top: 4px;
  color: currentColor;
  font-size: 12px;
  opacity: 0.75;
}

.store-state .button {
  margin-left: auto;
}

@keyframes store-spin {
  to { transform: rotate(360deg); }
}

.product-card__price {
  margin: 2px 0 15px;
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stock-ok {
  color: #2d7e46;
}

.stock-empty {
  color: #a33b31;
}

.request-toggle:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.store-cart {
  padding-top: clamp(54px, 6vw, 90px);
}

.store-cart__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, 0.65fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.store-cart__heading,
.checkout__heading {
  display: flex;
  margin-bottom: 25px;
  gap: 25px;
  align-items: end;
  justify-content: space-between;
}

.store-cart__heading h2,
.checkout__heading h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.cart-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-line {
  display: grid;
  min-height: 190px;
  padding: 20px;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-light);
  border-radius: 20px;
  transition: opacity 0.22s ease, transform 0.28s var(--ease), background-color 0.22s ease;
}

.cart-line.is-updating {
  background: color-mix(in srgb, var(--yellow) 12%, rgba(255, 255, 255, 0.72));
  transform: scale(0.992);
}

.cart-line.is-removing {
  opacity: 0;
  transform: translateX(18px) scale(0.98);
  pointer-events: none;
}

.quantity-control output.is-bumping {
  animation: quantity-bump 0.3s var(--ease);
}

@keyframes quantity-bump {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

.cart-line > img {
  width: 100%;
  height: 146px;
  object-fit: contain;
  filter: drop-shadow(0 12px 9px rgba(0, 0, 0, 0.13));
}

.cart-line__copy h3 {
  margin: 7px 0 3px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.cart-line__copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 12px;
}

.cart-line__controls {
  display: flex;
  min-width: 160px;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.cart-line__controls > strong {
  font-size: 20px;
}

.quantity-control {
  display: grid;
  overflow: hidden;
  grid-template-columns: 38px 40px 38px;
  border: 1px solid var(--line-light);
  border-radius: 10px;
}

.quantity-control button,
.quantity-control output {
  display: flex;
  min-height: 38px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 0;
}

.quantity-control button {
  cursor: pointer;
  font-size: 19px;
}

.quantity-control button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.quantity-control output {
  background: #ebebe6;
  font-size: 13px;
  font-weight: 700;
}

.cart-line__remove,
.text-button {
  padding: 0;
  color: var(--muted-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-line--unavailable {
  border-color: rgba(163, 59, 49, 0.3);
}

.cart-line__warning {
  display: block;
  margin-top: 8px;
  color: #a33b31;
  font-weight: 700;
}

.cart-summary {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  padding: 28px;
  background: var(--ink);
  border-radius: 22px;
  color: var(--white);
}

.cart-summary__row,
.cart-total {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.cart-summary__row {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.cart-summary p {
  margin: 20px 0;
  color: var(--muted);
  font-size: 11px;
}

.cart-total {
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.cart-total strong {
  color: var(--yellow);
  font-size: 24px;
}

.cart-summary .button {
  width: 100%;
  margin-top: 24px;
}

.checkout {
  margin-top: clamp(70px, 9vw, 130px);
  padding-top: clamp(54px, 6vw, 88px);
  border-top: 1px solid var(--line-light);
}

.checkout__heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
}

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

.checkout-card {
  display: grid;
  min-height: 390px;
  padding: 30px;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line-light);
  border-radius: 22px;
}

.checkout-card--wide {
  min-height: 0;
  grid-column: 1 / -1;
}

.checkout-card__number {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.checkout-card__content h3 {
  margin: 0 0 8px;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.checkout-card__content > p {
  margin: 0 0 20px;
  color: var(--muted-dark);
  font-size: 12px;
}

.checkout .field > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout .field > span small {
  color: var(--muted-dark);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.checkout .field input,
.checkout .field textarea {
  background: var(--white);
}

.checkout-card .button {
  margin-top: 14px;
}

.auth-mode-switch {
  display: grid;
  margin-bottom: 18px;
  padding: 4px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  background: #e8e8e3;
  border-radius: 13px;
}

.auth-mode-switch button {
  min-height: 42px;
  padding: 8px 12px;
  color: var(--muted-dark);
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.auth-mode-switch button[aria-selected="true"] {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(16, 18, 19, 0.08);
}

.auth-mode-switch button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--yellow) 45%, transparent);
  outline-offset: 1px;
}

.auth-mode-switch button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.auth-panel {
  display: grid;
  gap: 12px;
}

.auth-panel[hidden] {
  display: none;
}

.auth-panel .form-grid {
  grid-template-columns: 1fr;
}

.auth-panel .button {
  justify-content: center;
}

.auth-panel .text-button {
  justify-self: start;
}

.password-requirements {
  margin: -2px 0 0;
  color: var(--muted-dark);
  font-size: 10px;
  line-height: 1.45;
}

.email-verification {
  display: grid;
  padding: 20px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-light);
  border-radius: 16px;
}

.email-verification[hidden],
.email-signed-in[hidden] {
  display: none;
}

.email-verification__mark {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: 50%;
}

.email-verification small,
.email-signed-in small {
  display: block;
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-verification strong,
.email-signed-in strong {
  display: block;
  margin-top: 3px;
  overflow-wrap: anywhere;
}

.email-verification p {
  margin: 7px 0 0;
  color: var(--muted-dark);
  font-size: 11px;
}

.email-verification__actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.email-verification__actions .button {
  margin-top: 0;
}

.email-signed-in {
  display: flex;
  padding: 18px;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  background: #e5f4e7;
  border: 1px solid rgba(45, 126, 70, 0.22);
  border-radius: 14px;
}

.email-signed-in div {
  display: flex;
  flex-direction: column;
}

.form-message {
  margin: 16px 0 0;
  padding: 12px 14px;
  background: #ecece8;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

.form-message[data-kind="error"] {
  color: #741d16;
  background: #fff0ee;
}

.form-message[data-kind="success"] {
  color: #285e38;
  background: #e5f4e7;
}

.form-legal {
  margin-top: 18px !important;
  font-size: 9px !important;
  line-height: 1.5;
}

.fulfillment-switch {
  display: grid;
  max-width: 540px;
  margin-bottom: 20px;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.fulfillment-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fulfillment-switch span {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  background: #e8e8e3;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.fulfillment-switch input:checked + span {
  background: var(--yellow);
  border-color: var(--ink);
}

.fulfillment-switch input:focus-visible + span {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.checkout-comment {
  margin-top: 18px;
}

.checkout-card--payment {
  min-height: 0;
}

.payment-methods {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 0;
}

.payment-option {
  position: relative;
  display: grid;
  min-height: 112px;
  padding: 20px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 16px;
}

.payment-option--active {
  cursor: pointer;
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.payment-option--disabled {
  color: var(--muted-dark);
  background: #eeeee9;
}

.payment-option input {
  position: absolute;
  opacity: 0;
}

.payment-option__indicator {
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #b4b5b0;
  border-radius: 50%;
}

.payment-option input:checked + .payment-option__indicator {
  background: radial-gradient(circle, var(--ink) 0 38%, var(--yellow) 42% 100%);
  border-color: var(--ink);
}

.payment-option--active:focus-within {
  outline: 3px solid color-mix(in srgb, var(--yellow) 58%, transparent);
  outline-offset: 3px;
}

.payment-option__copy {
  display: grid;
  gap: 6px;
}

.payment-option__copy strong {
  font-size: 16px;
}

.payment-option__copy > span {
  color: var(--muted-dark);
  font-size: 11px;
}

.payment-option__badge {
  width: fit-content;
  margin-top: 12px;
  padding: 6px 9px;
  grid-column: 2;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-option--disabled .payment-option__badge {
  color: var(--muted-dark);
  background: #dcddd8;
}

.checkout__submit {
  display: flex;
  margin-top: 14px;
  padding: 28px 30px;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
  border-radius: 22px;
}

.checkout__submit > div:first-child {
  display: grid;
}

.checkout__submit small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout__submit strong {
  font-size: 20px;
}

.checkout__submit p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.checkout__submit [data-order-error] {
  max-width: 520px;
  margin: 0 0 10px;
}

.button--order {
  min-width: 250px;
}

.button--order:disabled {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.45;
}

.order-success {
  min-height: 70svh;
  padding-inline: max(24px, calc((100% - var(--container)) / 2));
  background: var(--ink);
  color: var(--white);
}

.order-success h2 {
  max-width: 900px;
  margin: 20px 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.order-success > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.order-success__facts {
  display: grid;
  max-width: 900px;
  margin: 45px 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.order-success__facts > div {
  display: grid;
  padding: 24px 20px;
  border-right: 1px solid var(--line-dark);
}

.order-success__facts > div:last-child {
  border-right: 0;
}

.order-success__facts small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.order-success__facts strong {
  margin-top: 5px;
  font-size: 17px;
}

@media (max-width: 1020px) {
  .store-cart__grid {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

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

  .checkout-card--wide {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .store-state {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .store-state .button {
    width: 100%;
    margin-left: 0;
  }

  .store-cart__heading,
  .checkout__heading,
  .checkout__submit {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-line {
    min-height: 0;
    padding: 16px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 15px;
  }

  .cart-line > img {
    height: 115px;
  }

  .cart-line__copy h3 {
    font-size: 20px;
  }

  .cart-line__controls {
    min-width: 0;
    grid-column: 1 / -1;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
  }

  .checkout-card {
    min-height: 0;
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .checkout-card__number {
    width: 34px;
    height: 34px;
  }

  .email-verification__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .email-verification__actions .button,
  .email-verification__actions .text-button {
    width: 100%;
    justify-content: center;
  }

  .checkout .form-grid {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .button--order {
    width: 100%;
    min-width: 0;
  }

  .order-success__facts {
    grid-template-columns: 1fr;
  }

  .order-success__facts > div {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .order-success__facts > div:last-child {
    border-bottom: 0;
  }
}
