:root {
  --ink: #10191d;
  --ink-soft: #1a282d;
  --paper: #f1ece1;
  --paper-deep: #d8c9aa;
  --white: #fffdf8;
  --accent: #d94b35;
  --accent-bright: #ef674f;
  --muted: #7e827d;
  --line: rgba(16, 25, 29, 0.18);
  --display: "Unbounded", Arial, sans-serif;
  --body: "IBM Plex Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --container: min(1280px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

svg {
  display: block;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 96px;
  padding: 0 max(40px, calc((100vw - min(1280px, calc(100vw - 80px))) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(16, 25, 29, 0.88);
  backdrop-filter: blur(16px);
  transition: height 220ms ease, color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  height: 72px;
}

.site-header[data-theme="light"] {
  color: var(--ink);
  border-color: rgba(16, 25, 29, 0.14);
  background: rgba(241, 236, 225, 0.92);
}

.site-header[data-theme="dark"] {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.site-header[data-theme="accent"] {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(190, 56, 40, 0.92);
}

.site-header[data-theme="accent"] .brand b,
.site-header[data-theme="accent"] .header-contact svg {
  color: var(--paper);
  fill: var(--paper);
}

.site-header[data-theme="accent"] .brand-mark i {
  background: var(--paper);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand b {
  color: var(--accent-bright);
  font-weight: inherit;
}

.brand > span:last-child {
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 7px);
  width: 18px;
  height: 18px;
}

.brand-mark i {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg) skew(-8deg, -8deg);
}

.brand-mark i:first-child {
  grid-column: 1 / 3;
  justify-self: center;
}

.brand-mark i:nth-child(2) {
  grid-row: 2;
}

.brand-mark i:nth-child(3) {
  grid-row: 2;
  grid-column: 2;
}

.nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
}

.nav a {
  position: relative;
  text-decoration: none;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 15px;
  color: var(--white);
  border: 1px solid #bd3928;
  border-radius: 30px;
  background: #bd3928;
  box-shadow: 0 7px 20px rgba(217, 75, 53, 0.22);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-contact-link:hover,
.header-contact-link:focus-visible {
  color: var(--white);
  border-color: #a93124;
  outline: 0;
  background: #a93124;
  box-shadow: 0 9px 24px rgba(217, 75, 53, 0.32);
  transform: translateY(-1px);
}

.header-messengers {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-messengers a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: currentColor;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-messengers a:hover,
.header-messengers a:focus-visible {
  color: var(--ink);
  border-color: var(--accent-bright);
  outline: 0;
  background: var(--accent-bright);
  transform: translateY(-2px);
}

.header-messengers svg {
  width: 16px;
  fill: currentColor;
}

.header-messengers .header-max {
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.header-messengers [data-copy-state="copied"] {
  color: var(--ink);
  border-color: var(--paper-deep);
  background: var(--paper-deep);
}

.site-header[data-theme="light"] .header-messengers a {
  border-color: rgba(16, 25, 29, 0.28);
}

.site-header[data-theme="accent"] .header-contact-link {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
  box-shadow: 0 7px 20px rgba(16, 25, 29, 0.16);
}

.site-header[data-theme="accent"] .header-contact-link:hover,
.site-header[data-theme="accent"] .header-contact-link:focus-visible {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px 9px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.nav-open .nav-toggle > span:first-child {
  transform: translateY(5px) rotate(45deg);
}

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

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

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

section[id] {
  scroll-margin-top: 72px;
}

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

.hero-photo {
  position: absolute;
  inset: 0;
  transform: scale(1.008);
  animation: heroSettle 1.8s cubic-bezier(.2,.7,.2,1) both;
  will-change: transform;
}

.hero-photo::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(6, 15, 19, 0.94) 0%, rgba(7, 16, 20, 0.76) 34%, rgba(6, 13, 16, 0.06) 71%),
    linear-gradient(0deg, rgba(6, 12, 15, 0.76) 0%, transparent 46%);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(40px, calc((100vw - min(1280px, calc(100vw - 80px))) / 2));
  width: min(720px, 54vw);
  transform: translateY(-43%);
}

.eyebrow,
.kicker {
  margin: 0 0 24px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f2d9b9;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.04;
}

h1 {
  max-width: 790px;
  margin-bottom: 30px;
  font-size: clamp(48px, 5.3vw, 82px);
}

h1 span {
  display: block;
  color: var(--paper-deep);
  font-weight: 500;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 35px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-quicknav {
  display: grid;
  flex: 0 0 360px;
  grid-template-columns: 1fr 1fr;
  min-height: 48px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.hero-quicknav a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.hero-quicknav a:first-child {
  color: var(--ink);
  background: var(--paper);
  font-weight: 600;
}

.hero-quicknav a:hover,
.hero-quicknav a:focus-visible {
  outline: 0;
  background: rgba(255, 255, 255, 0.12);
}

.hero-quicknav a:first-child:hover,
.hero-quicknav a:first-child:focus-visible {
  background: var(--white);
}

.hero-quicknav span {
  margin-left: 7px;
  color: var(--accent-bright);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 58px;
  padding: 0 25px;
  border: 0;
  text-decoration: none;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.button svg,
.log-footer svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button-primary {
  color: var(--white);
  border-radius: 999px;
  background: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #bd3928;
  transform: translateY(-2px);
}

.text-link {
  font-size: 14px;
  text-decoration: none;
}

.text-link span {
  padding-left: 8px;
  color: var(--accent-bright);
}

.hero-facts {
  display: flex;
  gap: 0;
  width: fit-content;
  margin: 48px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts div {
  min-width: 155px;
  padding: 16px 25px 0 0;
}

.hero-facts div + div {
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-facts dt,
.hero-facts dd {
  margin: 0;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 500;
}

.penza-stamp {
  position: absolute;
  z-index: 2;
  right: max(40px, calc((100vw - min(1280px, calc(100vw - 80px))) / 2));
  bottom: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  transform: rotate(-2deg);
}

.penza-stamp strong {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--paper-deep);
  border: 1px solid rgba(216, 201, 170, 0.6);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.07em;
}

.hero-index {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--mono);
  font-size: 8px;
  transform: translateY(-50%);
}

.hero-index i {
  width: 1px;
  height: 76px;
  background: linear-gradient(var(--accent-bright) 30%, rgba(255, 255, 255, 0.15) 30%);
}

.section {
  padding: 140px max(40px, calc((100vw - min(1280px, calc(100vw - 80px))) / 2));
}

.service {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(560px, 1.22fr);
  gap: 100px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 70px;
  padding-top: 26px;
}

h2 {
  margin-bottom: 32px;
  font-size: clamp(40px, 4.1vw, 64px);
}

h2 em {
  color: var(--accent);
  font-style: normal;
}

.section-heading > p:last-child,
.specs-head + p,
.comfort-intro > p:last-child {
  max-width: 480px;
  color: #5d625f;
  font-size: 17px;
}

.service-log {
  border-top: 2px solid var(--ink);
}

.log-top {
  display: flex;
  justify-content: space-between;
  padding: 13px 0 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.log-entry {
  position: relative;
  display: grid;
  grid-template-columns: 155px 1fr 34px;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.log-entry-featured {
  margin-right: -34px;
  margin-left: -34px;
  padding-right: 34px;
  padding-left: 34px;
  background: var(--white);
  border-top: 0;
  box-shadow: 0 17px 60px rgba(29, 31, 26, 0.08);
}

.log-distance strong,
.log-distance span {
  display: block;
}

.log-distance strong {
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.log-distance span {
  margin-top: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.log-symbol strong {
  color: var(--accent);
  letter-spacing: 0;
}

.log-code {
  margin-bottom: 7px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.log-entry h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.04em;
}

.log-entry p:last-child {
  max-width: 510px;
  margin: 0;
  color: #626661;
  font-size: 14px;
}

.log-check {
  display: grid;
  place-items: center;
  align-self: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  border-radius: 50%;
  background: var(--ink);
  font-size: 13px;
}

.log-entry-featured .log-check {
  background: var(--accent);
}

.log-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 25px;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.price-section {
  padding-top: 0;
}

.price-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  overflow: hidden;
  min-height: 560px;
  color: var(--white);
  background: var(--ink);
}

.price-card::before {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: 57%;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.13);
  transform: rotate(12deg);
}

.price-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 64px;
}

.price-copy h2 {
  max-width: 620px;
  font-size: clamp(40px, 4vw, 62px);
}

.price-copy > p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
}

.price-factors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price-factors article {
  position: relative;
  min-width: 0;
  padding: 20px 18px 0 0;
}

.price-factors article + article {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.price-factors article:not(:last-child)::after {
  position: absolute;
  top: -13px;
  right: -7px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--accent-bright);
  content: "+";
  background: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
}

.price-factors article > span {
  color: var(--accent-bright);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.price-factors h3 {
  min-height: 40px;
  margin: 13px 0 9px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.price-factors p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.5;
}

.price-value {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: linear-gradient(135deg, rgba(216, 201, 170, 0.05), rgba(217, 75, 53, 0.08));
}

.price-value > span {
  margin-bottom: 17px;
  color: var(--paper-deep);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-value strong {
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -0.08em;
  line-height: 1;
}

.price-value small {
  color: var(--accent-bright);
  font-size: 0.55em;
}

.price-value p {
  max-width: 340px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.specs {
  padding-top: 115px;
}

.specs-head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  margin-bottom: 65px;
}

.specs-head h2 {
  margin: 0;
}

.spec-tabs {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.tab-list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.tab-list::-webkit-scrollbar {
  display: none;
}

.tab-list button {
  position: relative;
  flex: 1 0 auto;
  min-height: 70px;
  padding: 0 25px;
  color: var(--muted);
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tab-list button::after {
  position: absolute;
  right: 22px;
  bottom: -1px;
  left: 22px;
  height: 3px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.tab-list button[aria-selected="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
}

.tab-list button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.spec-panel {
  min-height: 320px;
  padding: 20px 0 30px;
}

.tab-spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 70px;
  margin: 0;
}

.tab-spec-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 25px;
  min-height: 62px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.tab-spec-list dt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.term-help {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: var(--ink);
  border: 1px solid rgba(16, 25, 29, 0.3);
  border-radius: 50%;
  cursor: help;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.term-help::after {
  position: absolute;
  z-index: 5;
  bottom: calc(100% + 10px);
  left: 50%;
  width: min(250px, 72vw);
  padding: 11px 13px;
  color: var(--white);
  border-radius: 3px;
  content: attr(data-tooltip);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(16, 25, 29, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 5px);
  transition: opacity 150ms ease, transform 150ms ease;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.term-help:hover::after,
.term-help:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.term-help:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.tab-spec-list dd {
  margin: 0;
  text-align: right;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: -0.035em;
}

.vin-placeholder {
  font-family: var(--mono) !important;
  letter-spacing: 0.08em !important;
}

.panel-note {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.comfort {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  padding-top: 90px;
  background: #e8e0d0;
}

.comfort-intro {
  padding-top: 35px;
}

.comfort-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(16, 25, 29, 0.3);
  border-left: 1px solid rgba(16, 25, 29, 0.3);
}

.comfort-card {
  position: relative;
  min-height: 295px;
  padding: 38px;
  border-right: 1px solid rgba(16, 25, 29, 0.3);
  border-bottom: 1px solid rgba(16, 25, 29, 0.3);
  transition: color 250ms ease, background 250ms ease;
}

.comfort-card:hover {
  color: var(--white);
  background: var(--ink-soft);
}

.comfort-card-accent {
  color: var(--white);
  background: var(--accent);
}

.comfort-card > svg {
  width: 64px;
  height: 64px;
  margin: 33px 0 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.feature-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: currentColor;
  opacity: 0.45;
  font-family: var(--mono);
  font-size: 9px;
}

.comfort-card h3 {
  margin-bottom: 11px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.04em;
}

.comfort-card p {
  margin-bottom: 0;
  color: currentColor;
  opacity: 0.68;
  font-size: 13px;
}

.comfort-card-wide {
  display: grid;
  grid-column: 1 / 3;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 210px;
}

.equalizer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 80px;
}

.equalizer i {
  width: 5px;
  height: var(--h, 40%);
  background: currentColor;
  opacity: 0.6;
}

.equalizer i:nth-child(2), .equalizer i:nth-child(8) { --h: 70%; }
.equalizer i:nth-child(3), .equalizer i:nth-child(7) { --h: 100%; }
.equalizer i:nth-child(4), .equalizer i:nth-child(6) { --h: 54%; }
.equalizer i:nth-child(5) { --h: 84%; }

.gallery {
  --gallery-image-height: clamp(360px, 52vh, 520px);
  --gallery-inset: max(40px, calc((100vw - min(1280px, calc(100vw - 80px))) / 2));
  overflow: hidden;
  padding: 100px 0 90px;
  color: var(--white);
  background: var(--ink-soft);
}

.gallery-head {
  width: var(--container);
  margin: 0 auto 46px;
}

.gallery-head h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.gallery-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--gallery-inset);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.gallery-viewport::-webkit-scrollbar {
  display: none;
}

.gallery-viewport:focus-visible {
  outline: 1px solid var(--accent-bright);
  outline-offset: 4px;
}

.gallery-track {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: max-content;
  min-width: 100%;
  padding: 0 var(--gallery-inset);
}

.gallery-photo {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: calc(var(--gallery-image-height) * 0.75);
  height: var(--gallery-image-height);
  overflow: hidden;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink);
  cursor: zoom-in;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.gallery-photo-wide {
  width: calc(var(--gallery-image-height) * 1.3333);
}

.gallery-photo::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  content: "↗";
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(16, 25, 29, 0.74);
  font-family: var(--mono);
  font-size: 14px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}

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

.gallery-photo:hover img {
  transform: scale(1.015);
}

.gallery-photo:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: -3px;
}

.gallery-controls {
  display: grid;
  grid-template-columns: 46px minmax(160px, 1fr) 46px auto;
  gap: 14px;
  align-items: center;
  width: var(--container);
  margin: 24px auto 0;
}

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

.gallery-arrow svg,
.lightbox-arrow svg,
.lightbox-close svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  color: var(--ink);
  border-color: var(--accent-bright);
  outline: 0;
  background: var(--accent-bright);
}

.gallery-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.gallery-range {
  --gallery-progress: 0%;
  width: 100%;
  height: 4px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  appearance: none;
  background: linear-gradient(90deg, var(--accent-bright) 0 var(--gallery-progress), rgba(255, 255, 255, 0.18) var(--gallery-progress) 100%);
  cursor: ew-resize;
}

.gallery-range::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

.gallery-range::-moz-range-track {
  height: 4px;
  background: transparent;
}

.gallery-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  margin-top: -8px;
  border: 4px solid var(--ink-soft);
  border-radius: 50%;
  appearance: none;
  background: var(--accent-bright);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.gallery-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 4px solid var(--ink-soft);
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.gallery-range:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 2px var(--white);
}

.gallery-range:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 2px var(--white);
}

.gallery-count,
.lightbox-count {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  font-family: var(--mono);
}

.gallery-count strong,
.lightbox-count strong {
  color: var(--paper-deep);
  font-size: 15px;
  font-weight: 500;
}

.gallery-count span,
.lightbox-count span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

html.lightbox-open,
html.lightbox-open body {
  overflow: hidden;
}

.photo-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  border: 0;
  background: rgba(7, 13, 16, 0.98);
}

.photo-lightbox:not([open]) {
  display: none;
}

.photo-lightbox::backdrop {
  background: rgba(7, 13, 16, 0.96);
}

.lightbox-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lightbox-toolbar {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 24px;
  background: linear-gradient(180deg, rgba(7, 13, 16, 0.88), transparent);
}

.lightbox-count {
  align-self: center;
}

.lightbox-zoom-controls {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 40px;
  background: rgba(16, 25, 29, 0.72);
}

.lightbox-zoom-controls button,
.lightbox-close,
.lightbox-arrow {
  color: var(--white);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lightbox-zoom-controls button {
  min-width: 44px;
  height: 40px;
  padding: 0 13px;
  font-family: var(--mono);
  font-size: 16px;
}

.lightbox-zoom-controls button + button {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.lightbox-zoom-controls [data-lightbox-reset] {
  min-width: 72px;
  font-size: 10px;
}

.lightbox-zoom-controls button:hover,
.lightbox-zoom-controls button:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  color: var(--paper-deep);
  outline: 0;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-zoom-controls button:disabled {
  color: rgba(255, 255, 255, 0.28);
  cursor: default;
}

.lightbox-close {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.lightbox-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 84px 100px 70px;
  cursor: zoom-in;
  touch-action: none;
}

.lightbox-image {
  display: block;
  width: auto;
  max-width: calc(100vw - 200px);
  height: auto;
  max-height: calc(100dvh - 154px);
  object-fit: contain;
  user-select: none;
  will-change: transform;
  transform-origin: center;
  transition: transform 180ms ease;
  -webkit-user-drag: none;
}

.lightbox-stage.is-zoomed {
  cursor: grab;
}

.lightbox-stage.is-interacting {
  cursor: grabbing;
}

.lightbox-stage.is-interacting .lightbox-image {
  transition: none;
}

.lightbox-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(16, 25, 29, 0.55);
  transform: translateY(-50%);
}

.lightbox-arrow-prev {
  left: 24px;
}

.lightbox-arrow-next {
  right: 24px;
}

.lightbox-help {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.honesty {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--white);
  background: var(--ink);
}

.honesty-photo {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  margin-left: calc(max(40px, (100vw - min(1280px, calc(100vw - 80px))) / 2) * -1);
  background: var(--ink);
}

.honesty-photo::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(90deg, transparent 65%, var(--ink) 100%),
    linear-gradient(0deg, rgba(16,25,29,.72), transparent 45%);
}

.honesty-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 66% center;
}

.photo-label {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 35px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  transform: rotate(-3deg);
}

.photo-label span,
.photo-label strong {
  display: block;
}

.photo-label span {
  color: var(--accent);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-label strong {
  margin-top: 2px;
  font-size: 11px;
}

.honesty-copy {
  align-self: center;
  padding: 85px 0 85px 85px;
}

.honesty-copy h2 {
  margin-bottom: 42px;
}

.honesty-copy blockquote {
  margin: 0 0 28px;
  padding-left: 25px;
  color: var(--paper-deep);
  border-left: 2px solid var(--accent);
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.honesty-copy > p {
  color: rgba(255, 255, 255, 0.58);
}

.sale-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 33px;
}

.sale-badges span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 30px;
  font-size: 10px;
}

.sale-badges b {
  color: var(--paper-deep);
}

.comparison {
  background: var(--paper);
}

.comparison-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 65px;
}

.comparison-head h2 {
  margin-bottom: 0;
}

.comparison-head > p {
  max-width: 470px;
  margin-bottom: 8px;
  color: var(--muted);
}

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

.comparison-grid article {
  min-height: 300px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison-grid span,
.comparison-next > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-grid h3 {
  margin: 95px 0 14px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.04em;
}

.comparison-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.comparison-next {
  display: grid;
  grid-template-columns: 150px 1fr 0.8fr;
  gap: 35px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink);
}

.comparison-next div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.comparison-next b {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 500;
}

.comparison-next p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-heading {
  padding-top: 25px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 35px;
  gap: 20px;
  align-items: center;
  padding: 27px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.035em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  border-radius: 50%;
  background: var(--ink);
  font-family: var(--body);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -5px 60px 28px 0;
  color: #626661;
  font-size: 14px;
}

.contact {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  color: var(--white);
  background: #cc4533;
}

.contact-map {
  position: absolute;
  inset: 0;
  opacity: 0.21;
}

.contact-map svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--paper);
  stroke-width: 1;
}

.contact-map circle {
  fill: var(--paper);
  stroke: none;
}

.contact-map circle:last-child {
  fill: var(--ink);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.contact .kicker {
  color: #ffd6be;
}

.contact h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4.8vw, 72px);
}

.contact-action {
  max-width: 650px;
}

.contact-action > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.contact-channel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 90px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.64);
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  text-decoration: none;
}

.contact-channel span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-channel strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.contact-channel-live {
  color: var(--ink);
  background: var(--paper);
}

.contact-channel-live strong {
  color: var(--ink);
}

.contact-channel-live:hover,
.contact-channel-live:focus-visible {
  background: #fff;
}

.contact-coordinates {
  position: absolute;
  right: 30px;
  bottom: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 120px;
  padding: 30px max(40px, calc((100vw - min(1280px, calc(100vw - 80px))) / 2));
  background: var(--paper);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.footer p:last-child {
  max-width: 320px;
  justify-self: end;
  text-align: right;
}

.footer-meta {
  display: grid;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
}

.footer-links a,
.footer-links button {
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: inherit;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links button:hover,
.footer-links button:focus-visible {
  color: var(--accent);
}

.analytics-consent {
  position: fixed;
  z-index: 130;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  width: min(620px, calc(100vw - 40px));
  padding: 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(16, 25, 29, 0.97);
  box-shadow: 0 18px 55px rgba(7, 12, 15, 0.3);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -0.03em;
}

.analytics-consent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.analytics-consent a {
  color: var(--paper-deep);
  text-underline-offset: 3px;
}

.analytics-consent-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.analytics-consent-actions button {
  min-height: 40px;
  padding: 9px 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
}

.analytics-consent-actions .analytics-consent-accept {
  border-color: #bd3928;
  background: #bd3928;
}

.privacy-page,
.error-page {
  width: min(780px, calc(100vw - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 70px 0 100px;
}

.privacy-page h1,
.error-page h1 {
  max-width: 740px;
  margin: 35px 0 30px;
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 64px);
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.privacy-page h2 {
  margin: 46px 0 14px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.privacy-page p,
.privacy-page li,
.error-page p {
  color: var(--muted);
  font-size: 15px;
}

.privacy-page li + li {
  margin-top: 8px;
}

.privacy-back {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.privacy-settings {
  min-height: 44px;
  margin-top: 8px;
  padding: 10px 15px;
  color: var(--ink);
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: var(--body);
  font-weight: 600;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

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

@keyframes heroSettle {
  from { transform: scale(1.045); }
  to { transform: scale(1.008); }
}

@media (max-width: 1100px) {
  :root { --container: calc(100vw - 52px); }
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding-right: 26px;
    padding-left: 26px;
  }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 26px;
    left: 26px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 9px;
    color: var(--white);
    background: rgba(16, 25, 29, 0.97);
    box-shadow: 0 20px 50px rgba(16, 25, 29, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }
  .nav a {
    padding: 14px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .site-header.nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-toggle { display: block; justify-self: end; }
  .hero-content { left: 26px; width: 65vw; }
  .penza-stamp { right: 26px; }
  .service { grid-template-columns: 0.75fr 1.25fr; gap: 58px; }
  .log-entry { grid-template-columns: 120px 1fr 30px; gap: 18px; }
  .price-copy { padding: 60px 48px; }
  .price-value { padding: 44px; }
  .comfort { grid-template-columns: 0.6fr 1.4fr; gap: 45px; }
  .honesty-copy { padding-left: 55px; }
  .comparison-grid article { padding: 30px; }
  .comparison-next { grid-template-columns: 120px 1fr; }
  .comparison-next p { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --container: calc(100vw - 36px); }
  body { padding-bottom: 0; }
  .site-header { height: 78px; gap: 14px; }
  .header-contact-link { min-height: 40px; padding: 9px 13px; font-size: 10px; box-shadow: 0 6px 18px rgba(217, 75, 53, 0.28); }
  .header-messengers { display: none; }
  .hero { min-height: 760px; height: 100svh; max-height: 900px; }
  .hero-photo {
    bottom: auto;
    height: clamp(410px, 51svh, 470px);
  }
  .hero-photo::after { background-image: linear-gradient(0deg, var(--ink) 0%, rgba(8, 18, 23, 0.84) 21%, rgba(8, 18, 23, 0.2) 54%, transparent 73%); }
  .hero-photo img { object-position: 76% center; }
  .hero-content { top: auto; right: 18px; bottom: 38px; left: 18px; width: auto; transform: none; }
  h1 { margin-bottom: 20px; font-size: clamp(39px, 10.5vw, 65px); }
  .hero-lead { max-width: 620px; margin-bottom: 24px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; width: min(100%, 620px); }
  .hero-actions .button { width: 100%; min-height: 52px; }
  .hero-quicknav { flex-basis: auto; width: 100%; min-height: 42px; }
  .hero-quicknav a { font-size: 11px; }
  .hero-facts { margin-top: 30px; }
  .hero-facts div { min-width: 0; padding-right: 17px; }
  .hero-facts div + div { padding-left: 17px; }
  .hero-facts dd { font-size: 12px; }
  .penza-stamp, .hero-index { display: none; }
  .section { padding: 90px 18px; }
  .service, .comfort, .faq { grid-template-columns: 1fr; gap: 48px; }
  .section-heading { position: static; padding-top: 0; }
  .log-entry-featured { margin-right: 0; margin-left: 0; padding-right: 20px; padding-left: 20px; }
  .price-section { padding-top: 0; }
  .price-card { grid-template-columns: 1fr; }
  .price-card::before { display: none; }
  .price-copy { padding: 48px 32px 38px; }
  .price-value { padding: 36px 32px 48px; }
  .specs { padding-top: 80px; }
  .specs-head { grid-template-columns: 1fr; gap: 25px; margin-bottom: 45px; }
  .tab-spec-list { grid-template-columns: 1fr; column-gap: 0; }
  .tab-list button { min-height: 60px; padding: 0 18px; }
  .comfort { gap: 40px; }
  .gallery { --gallery-inset: 26px; padding: 80px 0 72px; }
  .gallery-head { width: calc(100% - 36px); margin-bottom: 38px; }
  .gallery-photo { width: min(72vw, 460px); height: auto; aspect-ratio: 3 / 4; }
  .gallery-photo-wide { width: min(72vw, 460px); aspect-ratio: 3 / 4; }
  .gallery-photo-wide img { object-fit: contain; }
  .gallery-controls { grid-template-columns: 42px minmax(100px, 1fr) 42px auto; gap: 10px; width: calc(100% - 36px); margin-top: 18px; }
  .gallery-arrow { width: 42px; height: 42px; }
  .lightbox-toolbar { padding: max(12px, env(safe-area-inset-top)) 12px 12px; }
  .lightbox-stage { padding: 72px 14px 68px; }
  .lightbox-image { max-width: calc(100vw - 28px); max-height: calc(100dvh - 140px); }
  .lightbox-arrow { width: 46px; height: 46px; background: rgba(16, 25, 29, 0.72); }
  .lightbox-arrow-prev { left: 8px; }
  .lightbox-arrow-next { right: 8px; }
  .lightbox-help { bottom: max(14px, env(safe-area-inset-bottom)); font-size: 8px; }
  .honesty { grid-template-columns: 1fr; padding: 0; }
  .honesty-photo { min-height: 520px; margin-left: 0; }
  .honesty-photo > img { object-position: 68% center; }
  .honesty-copy { padding: 80px 24px; }
  .comparison-head { grid-template-columns: 1fr; gap: 24px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-grid article { min-height: 220px; }
  .comparison-grid h3 { margin-top: 55px; }
  .comparison-next { grid-template-columns: 1fr; gap: 16px; }
  .comparison-next p { grid-column: auto; }
  .contact { padding-top: 90px; padding-bottom: 90px; }
  .contact-inner { grid-template-columns: 1fr; gap: 55px; }
  .contact-action { max-width: none; }
  .footer { grid-template-columns: 1fr; gap: 16px; padding: 36px 18px; }
  .footer .brand, .footer p:last-child { justify-self: center; }
  .footer p:last-child { text-align: center; }
}

@media (max-width: 540px) {
  .brand { font-size: 13px; }
  .header-contact-link { margin-right: 1px; }
  .hero { min-height: 740px; }
  .hero-photo img { object-position: 76% center; }
  .eyebrow { margin-bottom: 17px; }
  h1 { font-size: 37px; }
  .hero-actions { align-items: stretch; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-quicknav a { font-size: 10px; }
  .hero-facts { width: 100%; }
  .hero-facts div { flex: 1; padding-right: 10px; }
  .hero-facts div + div { padding-left: 10px; }
  .hero-facts dd { font-size: 10px; }
  .section { padding-top: 76px; padding-bottom: 76px; }
  h2 { font-size: 36px; }
  .section-heading > p:last-child, .comfort-intro > p:last-child { font-size: 15px; }
  .log-top { display: none; }
  .service-log { padding-top: 8px; }
  .log-entry { grid-template-columns: 82px 1fr; gap: 15px; padding: 24px 0; }
  .log-entry-featured { padding-right: 16px; padding-left: 16px; }
  .log-distance strong { font-size: 18px; }
  .log-entry h3 { font-size: 15px; }
  .log-entry p:last-child { font-size: 12px; }
  .log-check { display: none; }
  .log-footer { min-height: 70px; padding: 0 17px; font-size: 13px; }
  .price-card { min-height: auto; }
  .price-copy h2 { font-size: 35px; }
  .price-copy { padding: 38px 22px 24px; }
  .price-value { padding: 30px 22px 42px; }
  .price-value strong { font-size: 41px; }
  .price-factors { grid-template-columns: 1fr; margin-top: 28px; border-top: 0; }
  .price-factors article,
  .price-factors article + article { padding: 17px 0; border-top: 1px solid rgba(255, 255, 255, 0.16); border-left: 0; }
  .price-factors article:not(:last-child)::after { display: none; }
  .price-factors h3 { min-height: 0; margin-top: 8px; }
  .tab-list { margin-right: -18px; margin-left: -18px; padding-left: 18px; }
  .tab-spec-list div { gap: 15px; }
  .tab-spec-list dd { max-width: 58%; font-size: 11px; }
  .term-help::after {
    left: -24px;
    width: calc(100vw - 54px);
    transform: translateY(5px);
  }
  .term-help[aria-label="Что такое иммобилайзер"]::after { left: -77px; }
  .term-help:hover::after,
  .term-help:focus-visible::after { transform: translateY(0); }
  .comfort { padding-right: 18px; padding-left: 18px; }
  .comfort-grid { grid-template-columns: 1fr; }
  .comfort-card, .comfort-card-wide { grid-column: auto; min-height: 245px; }
  .comfort-card-wide { display: block; }
  .equalizer { justify-content: flex-start; height: 55px; margin-top: 25px; }
  .gallery { --gallery-inset: 18px; }
  .gallery-track { transform: none; }
  .gallery-photo, .gallery-photo-wide { width: 82vw; }
  .gallery-controls { grid-template-columns: 38px minmax(80px, 1fr) 38px auto; gap: 8px; }
  .gallery-arrow { width: 38px; height: 38px; }
  .gallery-arrow svg { width: 17px; }
  .gallery-count strong { font-size: 13px; }
  .lightbox-zoom-controls button { min-width: 38px; height: 38px; padding: 0 10px; }
  .lightbox-zoom-controls [data-lightbox-reset] { min-width: 58px; }
  .lightbox-close { width: 40px; height: 40px; }
  .lightbox-stage { padding-right: 8px; padding-left: 8px; }
  .lightbox-image { max-width: calc(100vw - 16px); }
  .lightbox-help { max-width: calc(100vw - 120px); overflow: hidden; text-overflow: ellipsis; }
  .honesty-photo { min-height: 430px; }
  .honesty-photo > img { object-position: 68% center; }
  .honesty-copy { padding: 65px 18px; }
  .comparison-grid article { min-height: 200px; padding: 25px; }
  .comparison-next div { align-items: flex-start; flex-direction: column; }
  .faq-list summary { font-size: 14px; }
  .contact { min-height: 660px; }
  .contact h2 { font-size: 38px; }
  .contact-channels { grid-template-columns: 1fr; }
  .contact-channel { min-height: 76px; }
  .analytics-consent {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100vw - 24px);
  }
  .analytics-consent-actions { align-items: stretch; }
  .analytics-consent-actions button { flex: 1; }
}

@media (max-width: 360px) {
  .site-header {
    gap: 8px;
    padding-right: 12px;
    padding-left: 12px;
  }
  .brand { gap: 8px; font-size: 11px; }
  .header-contact-link { min-height: 38px; padding: 8px 10px; font-size: 9px; }
  .nav-toggle { width: 40px; height: 40px; }
}

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

.button-primary {
  background: #bd3928;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #a93124;
}

.footer .brand b {
  color: #b93627;
}

.footer p {
  color: #5d625f;
}

.spec-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 44px;
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--line);
}

.spec-summary div {
  min-height: 118px;
  padding: 23px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-summary dt,
.spec-summary dd {
  margin: 0;
}

.spec-summary dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-summary dd {
  margin-top: 22px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.045em;
}

.panel-intro {
  max-width: 720px;
  margin: 14px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.honesty-details {
  max-width: 680px;
}

.faq-intro {
  max-width: 400px;
  color: var(--muted);
}

.contact-channels-social .contact-channel {
  gap: 8px;
}

.channel-name {
  display: flex;
  align-items: center;
  gap: 9px;
}

.channel-logo {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.channel-logo-max {
  display: grid;
  place-items: center;
  width: 32px;
  color: #fff;
  border-radius: 5px;
  background: linear-gradient(135deg, #471aff, #00bfff);
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.contact-channel small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.contact-channel-live .channel-logo {
  fill: currentColor;
}

@media (max-width: 820px) {
  .spec-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-summary div {
    min-height: 105px;
  }
}

@media (max-width: 540px) {
  .spec-summary div {
    padding: 18px;
  }

  .spec-summary dd {
    margin-top: 16px;
    font-size: 14px;
  }
}

@media (min-width: 821px) and (max-width: 1100px) and (orientation: portrait) {
  .hero {
    min-height: 900px;
    height: 100svh;
    max-height: 1180px;
  }

  .hero-photo {
    bottom: auto;
    height: clamp(520px, 52svh, 620px);
  }
  .hero-photo::after { background-image: linear-gradient(0deg, var(--ink) 0%, rgba(8, 18, 23, 0.84) 21%, rgba(8, 18, 23, 0.2) 54%, transparent 73%); }
  .hero-photo img { object-position: 76% center; }

  .hero-content {
    top: auto;
    right: 26px;
    bottom: 44px;
    left: 26px;
    width: auto;
    transform: none;
  }

  .hero-content h1 {
    max-width: 760px;
    font-size: clamp(48px, 7vw, 64px);
  }

  .hero-lead {
    max-width: 680px;
    font-size: 16px;
  }
}
