:root {
  --black: #14120f;
  --graphite: #1f1d19;
  --graphite-soft: #312b24;
  --warm: #f3e7d6;
  --warm-light: #fff5e6;
  --warm-card: #fff0dc;
  --gold: #dca23a;
  --gold-soft: #f0ca74;
  --red: #a9271f;
  --brown: #574031;
  --muted: #7d6f61;
  --line: rgba(100, 72, 48, 0.16);
  --line-dark: rgba(240, 202, 116, 0.23);
  --shadow: 0 26px 76px rgba(74, 49, 31, 0.17);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 0, rgba(255, 248, 229, 0.72), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(220, 162, 58, 0.1), transparent 26%),
    var(--warm);
  color: #261c15;
  font-family:
    Inter, "Segoe UI", Roboto, Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.gallery-open {
  overflow: hidden;
}

body.phone-picker-open {
  overflow: hidden;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(220, 162, 58, 0.75);
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(240, 202, 116, 0.12);
  background: rgba(25, 23, 20, 0.88);
  backdrop-filter: blur(20px);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  min-height: 84px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(240, 202, 116, 0.12);
}

.brand-name {
  color: #fffaf1;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 247, 234, 0.86);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

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

.main-nav a:hover {
  color: #fff8ec;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fffaf1;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-weight: 800;
  transition: color 180ms ease;
}

.phone-link:hover {
  color: var(--gold-soft);
}

.phone-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--gold);
  fill: currentColor;
  transform: translateY(0);
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, #d3952d 0%, #edbf60 58%, #f5d78d 100%);
  color: #19110b;
  box-shadow:
    0 14px 32px rgba(178, 115, 30, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button--primary .phone-icon {
  color: #19110b;
}

.button--primary:hover {
  box-shadow:
    0 18px 42px rgba(178, 115, 30, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.button--ghost {
  border-color: rgba(240, 202, 116, 0.56);
  background: rgba(42, 36, 29, 0.56);
  color: #fff8ec;
}

.button--ghost .phone-icon {
  color: var(--gold);
}

.button--ghost:hover {
  border-color: rgba(240, 202, 116, 0.86);
  background: rgba(220, 162, 58, 0.16);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.button--outline {
  border-color: rgba(220, 162, 58, 0.34);
  background: #fff4e3;
  color: #7f251d;
}

.button--outline:hover {
  border-color: rgba(220, 162, 58, 0.72);
  background: #ffeed6;
  box-shadow: 0 12px 28px rgba(92, 58, 35, 0.1);
}

.button--large {
  min-width: 220px;
  min-height: 56px;
  padding: 17px 28px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(240, 202, 116, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff8ec;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff8ec;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-dark {
  background:
    radial-gradient(circle at 16% 15%, rgba(220, 162, 58, 0.14), transparent 34%),
    radial-gradient(circle at 84% 8%, rgba(169, 39, 31, 0.11), transparent 28%),
    linear-gradient(135deg, #17140f 0%, #24211d 52%, #191814 100%);
  color: #fff7ea;
}

.noscript-fallback {
  padding: 118px 0 34px;
  background:
    radial-gradient(circle at 18% 0, rgba(220, 162, 58, 0.18), transparent 30%),
    linear-gradient(135deg, #1b1814 0%, #28231c 100%);
  color: #fff7ea;
}

.noscript-fallback__card {
  padding: 28px;
  border: 1px solid rgba(240, 202, 116, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 244, 224, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.noscript-fallback__card h2,
.noscript-fallback__card h3 {
  color: #fff7ea;
}

.noscript-fallback__card p {
  color: rgba(255, 248, 236, 0.78);
}

.noscript-fallback__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.noscript-fallback__grid > div {
  padding: 18px;
  border: 1px solid rgba(240, 202, 116, 0.14);
  border-radius: var(--radius);
  background: rgba(25, 22, 18, 0.68);
}

.noscript-fallback__grid a {
  display: block;
  margin-top: 8px;
  color: var(--gold-soft);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 128px 0 34px;
  background-color: #1a1713;
  background-image: url("assets/hero-authoritet-service.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(19, 17, 14, 0.96) 0%, rgba(19, 17, 14, 0.9) 31%, rgba(19, 17, 14, 0.62) 49%, rgba(19, 17, 14, 0.22) 69%, rgba(19, 17, 14, 0.14) 84%, rgba(19, 17, 14, 0.38) 100%),
    radial-gradient(circle at 70% 45%, rgba(220, 162, 58, 0.15), transparent 31%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 34%, rgba(0, 0, 0, 0.24) 100%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 72% 50%, transparent 0%, transparent 42%, rgba(29, 22, 16, 0.12) 74%, rgba(0, 0, 0, 0.44) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 45%, rgba(0, 0, 0, 0.42) 100%);
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: 1;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.hero-glow--left {
  bottom: 18%;
  left: 0;
  background: rgba(169, 39, 31, 0.38);
}

.hero-glow--right {
  top: 22%;
  right: 12%;
  background: rgba(220, 162, 58, 0.4);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  font-weight: 700;
}

h1 {
  max-width: 720px;
  color: #fff7ea;
  font-size: 62px;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

h1 span {
  color: var(--gold);
}

h2 {
  color: #231812;
  font-size: 38px;
}

.section-dark h2 {
  color: #fff7ea;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.service-line {
  margin: 24px 0 0;
  color: #fff8ee;
  font-weight: 800;
}

.hero-description {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 248, 236, 0.84);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.call-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: rgba(255, 248, 236, 0.76);
  font-size: 14px;
}

.call-note .phone-icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
  color: var(--gold);
}

.benefit-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid rgba(240, 202, 116, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 244, 224, 0.1);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  background: rgba(34, 30, 25, 0.72);
  backdrop-filter: blur(12px);
}

.benefit-icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.benefit-icon svg,
.service-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
}

.benefit-item strong {
  display: block;
  color: #fff7ea;
  line-height: 1.15;
}

.benefit-item span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 248, 236, 0.68);
  font-size: 13px;
}

.anticor-info {
  padding: 58px 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(220, 162, 58, 0.14), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(169, 39, 31, 0.1), transparent 28%),
    linear-gradient(135deg, #211d18 0%, #2d261e 48%, #1c1a16 100%);
  color: #fff7ea;
}

.anticor-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(240, 202, 116, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 0, rgba(220, 162, 58, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(255, 244, 224, 0.08), rgba(255, 244, 224, 0.035)),
    rgba(38, 32, 26, 0.82);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.26);
}

.anticor-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 202, 116, 0.55), transparent);
  content: "";
}

.anticor-card__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.anticor-card__copy {
  max-width: 820px;
}

.anticor-card h2 {
  color: #fff7ea;
}

.anticor-card__copy p,
.anticor-details p,
.anticor-details li {
  color: rgba(255, 248, 236, 0.8);
  overflow-wrap: anywhere;
}

.anticor-card__copy p {
  margin: 18px 0 0;
  font-size: 16px;
}

.anticor-details {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(240, 202, 116, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 244, 224, 0.08), rgba(255, 244, 224, 0.035)),
    rgba(21, 19, 16, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: revealDetails 180ms ease;
}

.anticor-details[hidden] {
  display: none;
}

.anticor-details p {
  margin: 0 0 16px;
}

.anticor-details p:last-child {
  margin-bottom: 0;
}

.anticor-details h3 {
  margin: 22px 0 10px;
  color: var(--gold-soft);
  font-size: 18px;
}

.anticor-details ul,
.anticor-details ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
  margin: 0 0 18px;
}

.anticor-details li::marker {
  color: var(--gold);
  font-weight: 900;
}

@keyframes revealDetails {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: 80px 0;
}

.section-warm {
  background:
    radial-gradient(circle at 12% 0, rgba(255, 249, 235, 0.86), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(220, 162, 58, 0.13), transparent 26%),
    linear-gradient(180deg, rgba(255, 245, 229, 0.78), rgba(243, 231, 214, 0.96)),
    var(--warm);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading--dark .section-kicker {
  color: var(--gold-soft);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding-right: 28px;
  color: #574031;
  font-weight: 800;
}

.text-link::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--red);
  content: "";
  transform: translateY(-50%);
}

.text-link::before {
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.text-link--light {
  color: #fff4df;
}

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

.service-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(100, 72, 48, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.96), rgba(255, 239, 218, 0.9)),
    var(--warm-card);
  box-shadow: 0 18px 48px rgba(76, 52, 41, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(220, 162, 58, 0.58);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.service-card--with-cta {
  grid-column: span 2;
  border-color: rgba(220, 162, 58, 0.26);
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(220, 162, 58, 0.28);
  border-radius: var(--radius);
  background: rgba(220, 162, 58, 0.1);
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
  color: #2b1e16;
}

.service-card p {
  margin: 0;
  color: #59493d;
  font-size: 14px;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.service-points li {
  padding: 6px 9px;
  border: 1px solid rgba(220, 162, 58, 0.24);
  border-radius: 999px;
  background: rgba(220, 162, 58, 0.1);
  color: #68422b;
  font-size: 12px;
  font-weight: 900;
}

.service-card__button {
  width: fit-content;
  min-height: 42px;
  margin-top: 16px;
  padding: 11px 16px;
}

.works {
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 80% 6%, rgba(220, 162, 58, 0.15), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(169, 39, 31, 0.1), transparent 28%),
    linear-gradient(135deg, #181510 0%, #25211c 52%, #191814 100%);
}

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

.work-card {
  appearance: none;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 202, 116, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 244, 224, 0.08), rgba(255, 244, 224, 0.035)),
    rgba(38, 34, 29, 0.62);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.work-card:hover {
  border-color: rgba(240, 202, 116, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 244, 224, 0.11), rgba(255, 244, 224, 0.05)),
    rgba(48, 42, 34, 0.72);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.work-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1.55;
  overflow: hidden;
  background: #191713;
}

.work-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 42%, rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 76% 18%, rgba(220, 162, 58, 0.16), transparent 28%);
  content: "";
  pointer-events: none;
}

.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.work-card:hover .work-photo img {
  transform: scale(1.035);
}

.work-card h3 {
  padding: 16px 16px 4px;
  color: #fff8ec;
  font-size: 17px;
}

.work-card p {
  margin: 0;
  padding: 0 16px 18px;
  color: rgba(255, 248, 236, 0.72);
  font-size: 14px;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.gallery-modal[hidden],
.phone-picker[hidden] {
  display: none;
}

.gallery-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.74);
  backdrop-filter: blur(10px);
}

.gallery-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  max-height: min(88vh, 860px);
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(220, 162, 58, 0.15), transparent 34%),
    #1c1915;
  color: #fff7ea;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.46);
}

.gallery-modal__header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.gallery-modal__kicker {
  margin: 0 0 6px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-modal__panel h2 {
  margin: 0;
  color: #fff7ea;
  font-size: 30px;
  line-height: 1.15;
}

.gallery-modal__close {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff7ea;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.gallery-modal__close:hover,
.gallery-nav:hover:not(:disabled) {
  border-color: rgba(245, 179, 22, 0.62);
  background: rgba(245, 179, 22, 0.13);
}

.gallery-viewer {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 14px;
  align-items: center;
}

.gallery-current {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: #14120f;
}

.gallery-current img {
  width: 100%;
  height: min(62vh, 610px);
  object-fit: contain;
  background: #14120f;
}

.gallery-current figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  color: rgba(255, 248, 236, 0.86);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.gallery-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 64px;
  border: 1px solid rgba(245, 179, 22, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold-soft);
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.gallery-nav:disabled {
  cursor: default;
  opacity: 0.34;
}

.gallery-modal__footer {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.gallery-counter {
  min-width: 74px;
  padding: 8px 12px;
  border: 1px solid rgba(245, 179, 22, 0.22);
  border-radius: 999px;
  background: rgba(245, 179, 22, 0.1);
  color: var(--gold-soft);
  font-weight: 900;
  text-align: center;
}

.phone-picker {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.phone-picker[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.phone-picker__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.74);
  backdrop-filter: blur(10px);
}

.phone-picker__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(220, 162, 58, 0.16), transparent 36%),
    #1c1915;
  color: #fff7ea;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.46);
}

.phone-picker__panel h2 {
  margin: 0 42px 18px 0;
  color: #fff7ea;
  font-size: 24px;
  line-height: 1.18;
}

.phone-picker__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff7ea;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.phone-picker__list {
  display: grid;
  gap: 10px;
}

.phone-choice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(220, 162, 58, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff7ea;
  font-weight: 800;
  overflow-wrap: anywhere;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.phone-choice:hover {
  border-color: rgba(240, 202, 116, 0.68);
  background: rgba(220, 162, 58, 0.14);
  transform: translateY(-2px);
}

.phone-choice .phone-icon {
  color: var(--gold);
}

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

.review-card {
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(100, 72, 48, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.96), rgba(255, 239, 218, 0.9)),
    var(--warm-card);
  box-shadow: 0 18px 50px rgba(76, 52, 41, 0.08);
}

.stars {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0;
}

.review-card blockquote {
  margin: 0;
  color: #3d3027;
}

.review-author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2f2722, #8f4b37);
  color: #fff7ea;
  font-weight: 900;
}

.review-author strong {
  display: block;
}

.review-author span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.prices-section {
  background:
    radial-gradient(circle at 16% 0, rgba(255, 250, 238, 0.82), transparent 32%),
    radial-gradient(circle at 88% 0, rgba(220, 162, 58, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 242, 222, 0.72), rgba(243, 231, 214, 0.98)),
    var(--warm);
}

.prices-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
}

.prices-card,
.consult-card,
.contact-card,
.map-card {
  border: 1px solid rgba(100, 72, 48, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.96), rgba(255, 239, 218, 0.9)),
    var(--warm-card);
  box-shadow: 0 22px 62px rgba(76, 52, 41, 0.1);
}

.prices-card:hover,
.contact-card:hover,
.map-card:hover {
  border-color: rgba(220, 162, 58, 0.34);
  box-shadow: var(--shadow);
}

.prices-card,
.consult-card {
  padding: 30px;
}

.price-list {
  margin-top: 22px;
  border-top: 1px solid rgba(100, 72, 48, 0.16);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(100, 72, 48, 0.14);
}

.price-row strong {
  color: #2a1c14;
}

.price-row span {
  color: #9a6224;
  font-weight: 900;
  white-space: nowrap;
}

.price-note {
  margin: 22px 0 0;
  color: var(--muted);
}

.consult-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(220, 162, 58, 0.26), transparent 44%),
    linear-gradient(135deg, #312820, #1f1d19 72%);
  color: #fff8ec;
}

.consult-card h3 {
  max-width: 430px;
  font-size: 25px;
}

.consult-card p {
  max-width: 470px;
  color: rgba(255, 248, 236, 0.72);
}

.consult-card .call-note {
  color: rgba(255, 248, 236, 0.72);
}

.consult-mark {
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(255, 214, 107, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 120px;
  line-height: 1;
}

.about-section {
  padding: 72px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 17px;
}

.about-copy p {
  margin: 0;
}

.contacts-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(220, 162, 58, 0.15), transparent 31%),
    radial-gradient(circle at 8% 0, rgba(255, 250, 238, 0.78), transparent 30%),
    linear-gradient(180deg, rgba(255, 245, 229, 0.62), rgba(243, 231, 214, 0.98)),
    var(--warm);
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
}

.contact-card {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: start;
}

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

.contact-list strong,
.contact-list a {
  min-width: 0;
  color: #2c1d15;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.inline-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.inline-phone .phone-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  color: var(--gold);
}

.contact-phones {
  display: grid;
  gap: 8px;
}

.social-row,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(100, 72, 48, 0.17);
  border-radius: var(--radius);
  background: #fff4e3;
  color: #35251d;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.social-link:hover {
  border-color: rgba(220, 162, 58, 0.78);
  background: #ffeed6;
  transform: translateY(-2px);
}

.social-link--disabled,
.social-link--disabled:hover {
  border-color: rgba(100, 72, 48, 0.17);
  background: #fff4e3;
  color: #7d6f61;
  cursor: default;
  opacity: 0.58;
  filter: saturate(0.5);
  transform: none;
}

.contact-card .call-note,
.footer-contact .call-note {
  color: var(--muted);
}

.map-card {
  position: relative;
  overflow: hidden;
}

.map-embed-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(220, 162, 58, 0.28), transparent 31%),
    radial-gradient(circle at 18% 86%, rgba(169, 39, 31, 0.24), transparent 29%),
    linear-gradient(135deg, #332a21 0%, #211f1b 58%, #171510 100%);
  color: #fff7ea;
}

.map-embed-card::before {
  position: absolute;
  top: -80px;
  right: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(220, 162, 58, 0.22);
  content: "";
  filter: blur(56px);
}

.map-embed-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.26), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%, rgba(0, 0, 0, 0.24));
  content: "";
}

.map-embed-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid rgba(240, 202, 116, 0.2);
  border-radius: var(--radius);
  background: rgba(28, 24, 19, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.map-kicker {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(240, 202, 116, 0.34);
  border-radius: 999px;
  background: rgba(220, 162, 58, 0.14);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-embed-card h3 {
  margin: 0;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.map-embed-card p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 248, 236, 0.82);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.map-embed-card p strong {
  color: #fffaf1;
}

.map-embed-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.map-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  padding: 24px;
}

.map-card__footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 56px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.1fr) 0.9fr 0.8fr minmax(230px, 1fr);
  gap: 36px;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 248, 236, 0.7);
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fff8ec;
  font-size: 16px;
}

.footer-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 248, 236, 0.68);
  font-size: 14px;
}

.footer-list a {
  transition: color 180ms ease;
}

.footer-list a:hover {
  color: var(--gold-soft);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 8px 0 16px;
  color: #fff8ec;
  font-size: 20px;
  font-weight: 900;
}

.footer-phone .phone-icon {
  color: var(--gold);
}

.footer-socials .social-link {
  border-color: rgba(240, 202, 116, 0.16);
  background: rgba(255, 244, 224, 0.07);
  color: #fff8ec;
}

.footer-socials .social-link--disabled,
.footer-socials .social-link--disabled:hover {
  border-color: rgba(240, 202, 116, 0.16);
  background: rgba(255, 244, 224, 0.07);
  color: rgba(255, 248, 236, 0.66);
}

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
    grid-column: 4;
    grid-row: 1;
    margin-left: 0;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(240, 202, 116, 0.22);
    border-radius: var(--radius);
    background:
      linear-gradient(145deg, rgba(29, 25, 20, 0.995), rgba(20, 18, 15, 0.995));
    box-shadow:
      0 28px 76px rgba(0, 0, 0, 0.48),
      inset 0 1px 0 rgba(255, 248, 236, 0.06);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-header.is-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav a {
    padding: 13px 8px;
    color: rgba(255, 248, 236, 0.95);
    text-align: center;
  }

  .header-actions {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    gap: 0;
  }

  .header-actions .phone-link {
    display: none;
  }

  .header-actions .button {
    min-height: 46px;
    padding: 0 15px;
    font-size: 14px;
  }

  .hero {
    min-height: 0;
    padding-top: 118px;
    background-position: 68% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(19, 17, 14, 0.96) 0%, rgba(19, 17, 14, 0.9) 36%, rgba(19, 17, 14, 0.66) 58%, rgba(19, 17, 14, 0.28) 82%, rgba(19, 17, 14, 0.42) 100%),
      radial-gradient(circle at 70% 45%, rgba(220, 162, 58, 0.12), transparent 31%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 34%, rgba(0, 0, 0, 0.32) 100%);
  }

  .hero-copy {
    max-width: 760px;
  }

  .anticor-card__top {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

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

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

  .header-shell {
    min-height: 76px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-name {
    font-size: 17px;
  }

  .main-nav {
    top: 76px;
    right: 14px;
    left: 14px;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 106px;
    padding-bottom: 32px;
    background-position: 67% center;
  }

  .hero-glow {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-actions,
  .section-heading,
  .map-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    min-height: 44px;
  }

  .contact-list strong,
  .contact-list a,
  .footer-list a,
  .footer-phone {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .inline-phone,
  .footer-list a {
    min-width: 44px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 26px;
  }

  .button--large,
  .hero-actions .button,
  .anticor-card .button,
  .contact-card .button,
  .consult-card .button,
  .footer-contact .button {
    width: 100%;
  }

  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 32px;
  }

  .reviews-grid,
  .prices-layout,
  .about-grid,
  .contacts-grid,
  .noscript-fallback__grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    background: rgba(25, 23, 20, 0.94);
  }

  .header-shell {
    min-height: 70px;
    gap: 8px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-link {
    gap: 9px;
  }

  .brand-name {
    max-width: 112px;
    overflow: hidden;
    font-size: 16px;
    text-overflow: ellipsis;
  }

  .header-actions .button {
    min-height: 44px;
    padding: 0 12px;
    font-size: 13px;
  }

  .header-actions .button .phone-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

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

  .main-nav {
    top: 70px;
  }

  .hero {
    padding-top: 94px;
    padding-bottom: 30px;
    background-position: 62% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(19, 17, 14, 0.78) 0%, rgba(19, 17, 14, 0.86) 40%, rgba(19, 17, 14, 0.7) 100%),
      linear-gradient(90deg, rgba(19, 17, 14, 0.95) 0%, rgba(19, 17, 14, 0.78) 60%, rgba(19, 17, 14, 0.38) 100%),
      radial-gradient(circle at 64% 38%, rgba(220, 162, 58, 0.13), transparent 34%);
  }

  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 28px;
  }

  .section-kicker {
    font-size: 12px;
  }

  .service-line,
  .hero-description {
    font-size: 15px;
  }

  .service-line {
    margin-top: 20px;
    line-height: 1.45;
  }

  .anticor-info {
    padding: 44px 0;
  }

  .anticor-card {
    padding: 22px;
  }

  .anticor-card__top {
    gap: 20px;
  }

  .anticor-card__copy p,
  .anticor-details p,
  .anticor-details li {
    font-size: 15px;
  }

  .anticor-details {
    margin-top: 22px;
    padding: 18px;
  }

  .anticor-details ul,
  .anticor-details ol {
    padding-left: 20px;
  }

  .hero-description {
    margin-top: 16px;
    color: rgba(255, 248, 236, 0.88);
  }

  .services-grid,
  .works-grid,
  .benefit-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .works-grid,
  .reviews-grid,
  .contact-list,
  .footer-grid {
    gap: 14px;
  }

  .work-photo {
    aspect-ratio: 1.38;
  }

  .service-card {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .service-card--with-cta {
    grid-column: auto;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.48;
  }

  .service-card__button {
    width: 100%;
  }

  .benefit-item {
    grid-template-columns: 42px 1fr;
    padding: 16px;
  }

  .prices-card,
  .consult-card,
  .contact-card {
    padding: 22px;
  }

  .price-row {
    display: grid;
    gap: 7px;
    padding: 15px 0;
  }

  .price-row span {
    font-size: 18px;
    white-space: normal;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(100, 72, 48, 0.1);
  }

  .contact-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .contact-list strong,
  .contact-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .inline-phone {
    min-height: 44px;
    font-size: 16px;
  }

  .footer-list a,
  .footer-phone {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .map-embed-card {
    min-height: 300px;
    padding: 16px;
  }

  .map-embed-card__content {
    padding: 20px;
  }

  .map-embed-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-modal {
    align-items: center;
    padding: 10px;
  }

  .gallery-modal__panel {
    width: min(100%, 430px);
    max-height: calc(100dvh - 20px);
    padding: 14px;
    overflow: auto;
  }

  .gallery-modal__panel h2 {
    font-size: 22px;
  }

  .gallery-modal__header {
    gap: 12px;
    margin-bottom: 12px;
  }

  .gallery-modal__close {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .gallery-viewer {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-current {
    grid-column: 1 / -1;
    order: -1;
  }

  .gallery-current img {
    height: min(48dvh, 430px);
  }

  .gallery-current figcaption {
    position: static;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
  }

  .gallery-nav {
    width: 100%;
    min-height: 52px;
    font-size: 32px;
  }

  .phone-picker {
    padding: 12px;
  }

  .phone-picker__panel {
    max-height: calc(100dvh - 24px);
    overflow: auto;
    padding: 18px;
  }

  .phone-picker__panel h2 {
    font-size: 22px;
  }
}

@media (max-width: 360px) {
  .brand-link {
    gap: 0;
  }

  .brand-name {
    display: none;
  }

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

  .hero {
    background-position: 58% center;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand-name {
    max-width: 102px;
    font-size: 15px;
  }

  .header-actions .button {
    padding: 0 10px;
  }

  .header-actions .button span {
    font-size: 0;
  }

  .header-actions .button span::after {
    font-size: 13px;
    content: "Звонок";
  }

  .hero {
    background-position: 60% center;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .button--large {
    min-height: 52px;
    padding: 15px 18px;
  }

  .benefit-item,
  .service-card {
    border-radius: 10px;
  }

  .map-embed-card h3 {
    font-size: 27px;
  }
}

@media (max-width: 390px) {
  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    max-width: 94px;
  }

  .header-actions .button {
    min-width: 46px;
    padding: 0 9px;
  }

  h1 {
    font-size: 31px;
  }

  .hero-description {
    font-size: 14px;
  }
}
