:root {
  --red: #d20035;
  --red-deep: #9c1029;
  --red-dark: #6f101f;
  --ink: #171514;
  --ink-soft: #4e4946;
  --stone: #f2efeb;
  --stone-2: #e8e3de;
  --cream: #fbf9f6;
  --white: #fff;
  --green: #234d40;
  --line: rgba(23, 21, 20, 0.13);
  --shadow: 0 22px 60px rgba(45, 29, 24, 0.12);
  --shadow-small: 0 10px 30px rgba(45, 29, 24, 0.09);
  --radius: 22px;
  --radius-small: 12px;
  --container: 1240px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

::selection {
  color: var(--white);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid #1b75d0;
  outline-offset: 3px;
}

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

.section {
  padding-block: clamp(78px, 9vw, 132px);
}

.section--tight {
  padding-block: clamp(58px, 7vw, 92px);
}

.section--stone {
  background: var(--stone);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 70px);
}

.section-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section--ink .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: #ff8ba5;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  box-shadow: 0 10px 26px rgba(156, 16, 41, 0.2);
  transform: translateY(-2px);
}

.button svg,
.text-link svg,
.promo-bar svg,
.nav-contact svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--light {
  color: var(--red-deep);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(23, 21, 20, 0.35);
}

.button--outline:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-deep);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--red);
}

.promo-bar {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
}

.promo-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.promo-inner a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  text-decoration: none;
}

.promo-inner svg {
  width: 15px;
  height: 15px;
}

.service-bar {
  color: #5d5855;
  background: #f0eeeb;
  font-size: 0.72rem;
  font-weight: 650;
}

.service-inner {
  display: grid;
  min-height: 30px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
}

.service-inner span:not(:last-child) {
  border-right: 1px solid rgba(23, 21, 20, 0.1);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 21, 20, 0.08);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  gap: clamp(22px, 4vw, 62px);
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--red);
  border-radius: 50% 50% 50% 16%;
  transform: rotate(-8deg);
}

.brand-mark::after {
  position: absolute;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--white);
  border-radius: 50%;
}

.brand-mark i {
  position: absolute;
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 4px;
}

.brand-mark i:first-child {
  transform: rotate(44deg);
}

.brand-mark i:last-child {
  transform: rotate(-44deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy b {
  font-size: 1.22rem;
  letter-spacing: -0.05em;
}

.brand-copy b span {
  color: var(--red);
}

.brand-copy small {
  margin-top: 5px;
  color: #77716d;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.main-nav a {
  position: relative;
  padding-block: 29px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-contact {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 16px;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-contact:hover {
  background: var(--red);
  transform: translateY(-1px);
}

.nav-contact svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 146px));
  display: grid;
  overflow: hidden;
  align-items: stretch;
  color: var(--white);
  background: #3f352f url("../assets/images/hero.webp") center / cover no-repeat;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 68%;
  content: "";
  background: linear-gradient(116deg, rgba(112, 16, 31, 0.99), rgba(206, 0, 47, 0.92));
  clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 30%;
  bottom: -150px;
  width: 360px;
  height: 360px;
  content: "";
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.hero-inner {
  display: flex;
  min-height: inherit;
  padding-block: clamp(70px, 9vw, 120px);
  align-items: center;
}

.hero-copy {
  width: min(680px, 57%);
}

.hero-kicker {
  display: inline-flex;
  padding: 7px 11px;
  margin-bottom: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 25px;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: #ffc7d3;
  font-style: normal;
  font-weight: 400;
}

.hero-copy > p {
  max-width: 570px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}

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

.hero-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-secondary:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero-note {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
}

.hero-note::before {
  width: 42px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.5);
}

.hero-badge {
  position: absolute;
  right: max(26px, calc((100vw - var(--container)) / 2));
  bottom: 26px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 6px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(7deg);
}

.hero-badge strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.hero-badge span {
  display: block;
  margin-top: 5px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.trust-band {
  color: var(--white);
  background: var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 118px;
  padding: 25px 25px;
  align-items: center;
  gap: 15px;
}

.trust-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  color: #ff8da6;
  background: rgba(223, 0, 56, 0.13);
  border-radius: 50%;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 0.96rem;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(23, 21, 20, 0.1);
  border-radius: var(--radius);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  border-color: rgba(223, 0, 56, 0.22);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 0.88;
  overflow: hidden;
  background: #eeeae6;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.2, .75, .25, 1);
}

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

.product-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(23, 21, 20, 0.9);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  padding: 23px;
  flex: 1;
  flex-direction: column;
}

.product-category {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-card h3 {
  margin-bottom: 12px;
}

.product-price {
  flex: 0 0 auto;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.2;
}

.product-tagline {
  min-height: 50px;
  margin-bottom: 19px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-specs {
  display: grid;
  padding: 14px 0;
  margin: auto 0 19px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-specs div {
  padding-inline: 10px;
  text-align: center;
}

.product-specs div:first-child {
  padding-left: 0;
}

.product-specs div:last-child {
  padding-right: 0;
}

.product-specs div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.product-specs strong,
.product-specs span {
  display: block;
}

.product-specs strong {
  font-size: 0.88rem;
}

.product-specs span {
  color: #79736f;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.product-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
}

.product-actions .button {
  min-height: 46px;
  padding-inline: 16px;
  font-size: 0.82rem;
}

.icon-button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

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

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 20px;
}

.category-card {
  position: relative;
  min-height: 440px;
  display: flex;
  overflow: hidden;
  padding: 30px;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  isolation: isolate;
  text-decoration: none;
}

.category-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 32%, rgba(10, 8, 7, 0.83));
}

.category-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.category-card:hover img {
  transform: scale(1.045);
}

.category-card span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.category-card i {
  display: grid;
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--red);
  border-radius: 50%;
  font-style: normal;
  transition: transform 180ms ease;
}

.category-card:hover i {
  transform: translateX(4px);
}

.category-card i svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card--large {
  grid-row: span 2;
  min-height: 900px;
}

.category-card--large img {
  object-position: 61% center;
}

.manifesto {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.manifesto::after {
  position: absolute;
  right: -14vw;
  bottom: -26vw;
  width: 55vw;
  height: 55vw;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.012);
}

.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: center;
}

.manifesto h2 {
  margin-bottom: 25px;
  color: var(--white);
}

.manifesto h2 span {
  color: #ff8ba5;
}

.manifesto-copy > p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
}

.manifesto-list {
  display: grid;
  margin: 34px 0 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 24px;
  list-style: none;
  padding: 0;
}

.manifesto-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.manifesto-list li::before {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  content: "✓";
  color: var(--ink);
  background: #ff8ba5;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.advisor-card {
  padding: clamp(28px, 4vw, 46px);
  color: var(--ink);
  background: var(--stone);
  border-radius: var(--radius);
  transform: rotate(1.5deg);
}

.advisor-number {
  margin-bottom: 40px;
  color: var(--red);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.advisor-card h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.advisor-card p {
  margin-bottom: 25px;
  color: var(--ink-soft);
}

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

.process-step {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-step strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 80px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 0.8rem;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
}

.process-step::after {
  position: absolute;
  top: 28px;
  right: -18px;
  color: rgba(23, 21, 20, 0.035);
  content: attr(data-number);
  font-size: 8rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(68px, 8vw, 105px);
  color: var(--white);
  background: linear-gradient(110deg, var(--red-dark), var(--red));
}

.cta-band::after {
  position: absolute;
  right: -100px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  content: "";
  border: 80px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-grid h2 {
  max-width: 780px;
  margin-bottom: 14px;
}

.cta-grid p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.07rem;
}

.page-hero {
  position: relative;
  padding-block: clamp(70px, 8vw, 120px);
  overflow: hidden;
  background: var(--stone);
}

.page-hero::after {
  position: absolute;
  top: -230px;
  right: -80px;
  width: 520px;
  height: 520px;
  content: "";
  border: 95px solid rgba(223, 0, 56, 0.08);
  border-radius: 50%;
}

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

.page-hero--dark::after {
  border-color: rgba(223, 0, 56, 0.22);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.page-hero--dark p {
  color: rgba(255, 255, 255, 0.67);
}

.breadcrumb {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 9px;
  color: #68625f;
  font-size: 0.78rem;
  font-weight: 700;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb span::before {
  margin-right: 9px;
  content: "/";
  color: #aaa39e;
}

.page-hero--dark .breadcrumb {
  color: rgba(255, 255, 255, 0.55);
}

.shop-shell {
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.shop-shell > *,
.shop-content,
.shop-sidebar,
.shop-toolbar,
.shop-toolbar > * {
  min-width: 0;
}

.shop-sidebar {
  position: sticky;
  top: 110px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-group + .filter-group {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.filter-group h2 {
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.filter-list {
  display: grid;
  gap: 7px;
}

.filter-button {
  display: flex;
  width: 100%;
  min-height: 40px;
  padding: 8px 11px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--ink);
  background: var(--stone);
}

.filter-button.is-active {
  font-weight: 800;
}

.filter-button span {
  display: inline-flex;
  min-width: 25px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: #77716d;
  background: var(--white);
  border-radius: 999px;
  font-size: 0.7rem;
}

.shop-toolbar {
  display: grid;
  margin-bottom: 25px;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
}

.search-field {
  position: relative;
}

.search-field svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #6d6763;
  stroke-width: 1.8;
  transform: translateY(-50%);
}

.search-field input,
.shop-toolbar select {
  width: 100%;
  min-height: 50px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.search-field input {
  padding: 12px 18px 12px 46px;
}

.shop-toolbar select {
  padding: 12px 42px 12px 16px;
}

.result-count {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

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

.empty-state {
  padding: 70px 30px;
  grid-column: 1 / -1;
  background: var(--white);
  border: 1px dashed rgba(23, 21, 20, 0.25);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.empty-state p {
  color: var(--ink-soft);
}

.product-dialog {
  width: min(980px, calc(100% - 28px));
  max-height: min(850px, calc(100vh - 32px));
  padding: 0;
  overflow: auto;
  background: var(--cream);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.product-dialog::backdrop {
  background: rgba(15, 12, 11, 0.66);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: sticky;
  z-index: 5;
  top: 16px;
  float: right;
  width: 44px;
  height: 44px;
  margin: 16px 16px -60px 0;
  color: var(--white);
  background: rgba(23, 21, 20, 0.92);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
}

.dialog-media {
  min-height: 640px;
  background: #ebe7e3;
}

.dialog-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.dialog-copy {
  padding: clamp(34px, 5vw, 60px);
}

.dialog-copy h2 {
  margin-bottom: 13px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.dialog-price {
  margin-bottom: 25px;
  color: var(--red-deep);
  font-size: 1.45rem;
  font-weight: 900;
}

.dialog-features {
  display: grid;
  padding: 0;
  margin: 25px 0 30px;
  gap: 10px;
  list-style: none;
}

.dialog-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.dialog-features li::before {
  color: var(--red);
  content: "●";
  font-size: 0.75rem;
}

.dialog-meta {
  display: grid;
  padding: 20px 0;
  margin-bottom: 26px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-meta dt {
  color: #77716d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dialog-meta dd {
  margin: 2px 0 0;
  font-weight: 750;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: #ece7e2;
  border-radius: var(--radius);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.about-visual-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 230px;
  padding: 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 700;
}

.about-copy h2 {
  margin-bottom: 25px;
}

.about-copy p {
  color: var(--ink-soft);
}

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

.value-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-card b {
  display: block;
  margin-bottom: 45px;
  color: var(--red);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  margin: 0;
  color: var(--ink-soft);
}

.workshop-band {
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.95fr 1.05fr;
  color: var(--white);
  background: var(--red-dark);
  border-radius: var(--radius);
}

.workshop-copy {
  padding: clamp(40px, 7vw, 85px);
}

.workshop-copy h2 {
  margin-bottom: 22px;
}

.workshop-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.workshop-points {
  display: grid;
  padding: clamp(40px, 7vw, 85px);
  align-content: center;
  gap: 0;
  background: var(--ink);
}

.workshop-point {
  display: grid;
  padding-block: 22px;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.workshop-point:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.workshop-point strong {
  color: #ff8ba5;
}

.workshop-point h3 {
  margin: 0 0 5px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.workshop-point p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(35px, 7vw, 90px);
  align-items: start;
}

.contact-form-card {
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.contact-form-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.contact-form-card > p {
  margin-bottom: 34px;
  color: var(--ink-soft);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label,
.fieldset-legend {
  font-size: 0.8rem;
  font-weight: 800;
}

.field label span {
  color: #77716d;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(23, 21, 20, 0.2);
  border-radius: 11px;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  min-height: 53px;
  padding: 12px 14px;
}

.field textarea {
  min-height: 155px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(223, 0, 56, 0.08);
  outline: none;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b42318;
}

.field-error {
  min-height: 17px;
  margin: 0;
  color: #b42318;
  font-size: 0.74rem;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-option {
  position: relative;
}

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

.radio-option label {
  display: inline-flex;
  min-height: 43px;
  padding: 9px 15px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.radio-option input:checked + label {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.radio-option input:focus-visible + label {
  outline: 3px solid #1b75d0;
  outline-offset: 3px;
}

.check-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--red);
}

.check-row label {
  color: var(--ink-soft);
  font-size: 0.79rem;
  line-height: 1.45;
}

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

.form-footer small {
  max-width: 360px;
  color: #77716d;
  font-size: 0.72rem;
}

.form-status {
  padding: 16px 18px;
  margin-top: 22px;
  background: #e9f5ef;
  border: 1px solid #aacdba;
  border-radius: 11px;
  color: #194b34;
}

.form-status[hidden] {
  display: none;
}

.contact-aside {
  position: sticky;
  top: 115px;
}

.selected-bike {
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--stone);
  border-radius: var(--radius);
}

.selected-bike-media {
  aspect-ratio: 1 / 0.72;
  background: #e9e4df;
}

.selected-bike-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selected-bike-copy {
  padding: 25px;
}

.selected-bike-copy small {
  color: var(--red);
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.selected-bike-copy h2 {
  margin: 8px 0 10px;
  font-size: 1.8rem;
}

.selected-bike-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.contact-card {
  padding: 26px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.contact-card h2 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.contact-card p {
  display: flex;
  margin-bottom: 13px;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.88rem;
}

.contact-card svg,
.footer-contact svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card a {
  color: var(--white);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 115px;
  padding: 22px;
  background: var(--stone);
  border-radius: var(--radius-small);
}

.legal-nav strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding-block: 6px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--red);
}

.legal-content {
  min-width: 0;
}

.legal-alert {
  padding: 20px 22px;
  margin-bottom: 42px;
  color: #5d3514;
  background: #fff4dc;
  border: 1px solid #e6c88f;
  border-radius: var(--radius-small);
}

.legal-alert strong {
  display: block;
  margin-bottom: 4px;
}

.legal-content section {
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  letter-spacing: -0.03em;
}

.legal-content h3 {
  margin: 25px 0 10px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content ul,
.legal-content ol {
  padding-left: 21px;
}

.legal-content address {
  color: var(--ink-soft);
  font-style: normal;
}

.site-footer {
  color: var(--white);
  background: #11100f;
}

.footer-main {
  display: grid;
  padding-block: 76px 65px;
  grid-template-columns: 1.5fr repeat(3, 0.72fr);
  gap: clamp(35px, 6vw, 80px);
}

.brand--light .brand-copy b,
.brand--light .brand-copy small {
  color: var(--white);
}

.brand--light .brand-copy b span {
  color: #ff8ba5;
}

.footer-brand p {
  max-width: 310px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.footer-main h2 {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-main ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-main li + li {
  margin-top: 9px;
}

.footer-main a,
.link-button {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-main a:hover,
.link-button:hover {
  color: var(--white);
}

.link-button {
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.footer-contact p {
  display: flex;
  margin-bottom: 13px;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.footer-contact svg {
  color: #ff8ba5;
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

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

.privacy-notice {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  width: min(760px, calc(100% - 44px));
  padding: 18px;
  margin-left: auto;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 25px 80px rgba(23, 21, 20, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(12px);
}

.privacy-notice[hidden] {
  display: none;
}

.privacy-notice.is-visible {
  opacity: 1;
  transform: none;
}

.privacy-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.privacy-notice strong {
  font-size: 0.92rem;
}

.privacy-notice p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

.privacy-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.privacy-actions a {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.privacy-close {
  position: absolute;
  top: 6px;
  right: 8px;
  display: none;
  padding: 4px 8px;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.3rem;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: transform 220ms ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .nav-shell {
    gap: 20px;
  }

  .main-nav {
    gap: 18px;
  }

  .nav-contact span {
    display: none;
  }

  .nav-contact {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .hero::before {
    width: 74%;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

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

  .category-card--large {
    grid-row: span 1;
    grid-column: 1 / -1;
    min-height: 560px;
  }

  .shop-shell {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
  }

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

  .footer-main {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .promo-center,
  .service-bar {
    display: none;
  }

  .promo-inner {
    justify-content: center;
  }

  .promo-inner > span {
    display: none;
  }

  .nav-shell {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy b {
    font-size: 1.08rem;
  }

  .main-nav {
    position: fixed;
    z-index: 110;
    top: 106px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 42px 28px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    width: 100%;
    padding-block: 16px;
    border-bottom: 1px solid var(--line);
    font-size: 1.6rem;
    letter-spacing: -0.03em;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 390px;
    background-position: 68% top;
    background-size: auto 500px;
    background-color: var(--red-dark);
  }

  .hero::before {
    top: 350px;
    width: 100%;
    background: linear-gradient(145deg, var(--red-dark), var(--red));
    clip-path: polygon(0 38px, 100% 0, 100% 100%, 0 100%);
  }

  .hero::after {
    right: -80px;
    bottom: -100px;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 65px 75px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-badge {
    top: 310px;
    right: 18px;
    bottom: auto;
    width: 92px;
    height: 92px;
    border-width: 4px;
  }

  .hero-badge strong {
    font-size: 1.2rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .manifesto-grid,
  .about-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .advisor-card {
    transform: none;
  }

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

  .process-step {
    min-height: 260px;
  }

  .process-step strong {
    margin-bottom: 50px;
  }

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

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

  .shop-sidebar {
    position: static;
    padding: 16px;
  }

  .filter-group + .filter-group {
    display: none;
  }

  .filter-group h2 {
    margin-bottom: 10px;
  }

  .filter-list {
    display: flex;
    padding-bottom: 4px;
    overflow-x: auto;
    gap: 8px;
  }

  .filter-button {
    width: auto;
    flex: 0 0 auto;
    gap: 8px;
    background: var(--stone);
    border-radius: 999px;
  }

  .filter-button.is-active {
    color: var(--white);
    background: var(--ink);
  }

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

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

  .dialog-media,
  .dialog-media img {
    min-height: 390px;
  }

  .about-visual,
  .about-visual img {
    min-height: 500px;
  }

  .workshop-band {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: static;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-nav {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    padding-block: 25px;
    flex-wrap: wrap;
  }
}

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

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

  .trust-grid,
  .featured-grid,
  .product-grid,
  .shop-content .product-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 94px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .category-card,
  .category-card--large {
    min-height: 410px;
    grid-column: auto;
  }

  .manifesto-list {
    grid-template-columns: 1fr;
  }

  .shop-toolbar {
    grid-template-columns: 1fr 1fr;
  }

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

  .shop-toolbar select {
    min-width: 0;
  }

  .result-count {
    text-align: right;
  }

  .product-dialog {
    max-height: calc(100vh - 14px);
  }

  .dialog-media,
  .dialog-media img {
    min-height: 330px;
  }

  .dialog-copy {
    padding: 28px 22px 34px;
  }

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

  .field--full {
    grid-column: auto;
  }

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

  .about-visual,
  .about-visual img {
    min-height: 420px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-note {
    display: none;
  }

  .privacy-notice {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    padding: 16px;
    grid-template-columns: 38px 1fr;
  }

  .privacy-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .privacy-close {
    display: block;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .promo-bar,
  .service-bar,
  .site-header,
  .site-footer,
  .privacy-notice,
  .legal-nav {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .section {
    padding-block: 20px;
  }

  .legal-layout {
    display: block;
  }
}
