:root {
  --ink: #11151b;
  --ink-2: #171c24;
  --paper: #ffffff;
  --soft: #f6f4f1;
  --line: #e8e2d9;
  --gold: #c58b43;
  --gold-2: #dda660;
  --muted: #5c6068;
  --shadow: 0 10px 28px rgba(17, 21, 27, 0.12);
  --shadow-soft: 0 4px 18px rgba(17, 21, 27, 0.09);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 76px;
  --section-y: clamp(64px, 8vw, 96px);
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-slow: 0.9s;
  --duration-mid: 0.55s;
  --duration-fast: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-y: scroll;
}

body {
  min-width: 320px;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: auto;
}

main {
  display: block;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button {
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}

.section--muted {
  background: var(--soft);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  background:
    radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(90deg, #0d1116, #181c23 50%, #0f1319);
  color: var(--paper);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
  transition:
    box-shadow var(--duration-fast) var(--ease-out-quart),
    backdrop-filter var(--duration-mid) var(--ease-out-quart);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 0;
}

.logo__photo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  overflow: hidden;
  background: #05070a;
  box-shadow: 0 0 0 3px rgba(197, 139, 67, 0.16);
  transition: transform var(--duration-mid) var(--ease-out-expo), box-shadow var(--duration-mid) var(--ease-out-quart);
}

.logo:hover .logo__photo {
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(197, 139, 67, 0.28), 0 8px 24px rgba(197, 139, 67, 0.2);
}

.logo__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
  min-width: 0;
}

.logo__name {
  font-family: var(--font-body);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--duration-mid) var(--ease-out-quart);
}

.logo__accent {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #f0c078 0%, var(--gold-2) 38%, var(--gold) 72%, #9a6428 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: filter var(--duration-mid) var(--ease-out-quart);
}

.logo:hover .logo__accent {
  filter: brightness(1.12);
}

.logo:hover .logo__name {
  color: rgba(255, 255, 255, 0.78);
}

.nav__list {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
  list-style: none;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--duration-fast) var(--ease-out-quart);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-2);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-mid) var(--ease-out-expo);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
}

.header__phone svg {
  width: 20px;
  height: 20px;
  color: var(--gold-2);
  flex-shrink: 0;
}

.header__phone small {
  display: block;
  font: inherit;
  opacity: 0.85;
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
}

.lang-switch__btn {
  min-width: 40px;
  height: 32px;
  padding-inline: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  transition:
    color var(--duration-fast) ease,
    background var(--duration-mid) var(--ease-out-quart);
}

.lang-switch__btn.active {
  color: var(--ink);
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--duration-fast) var(--ease-out-expo),
    box-shadow var(--duration-mid) var(--ease-out-quart),
    background var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.btn--gold {
  color: #fff;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 8px 20px rgba(197, 139, 67, 0.28);
}

.btn--gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease-out-expo);
  z-index: -1;
}

.btn--gold:hover {
  box-shadow: 0 12px 28px rgba(197, 139, 67, 0.38);
}

.btn--gold:hover::before {
  transform: translateX(120%);
}

.btn--outline {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.burger span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.06);
  animation: heroKenBurns 24s var(--ease-out-quart) infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1.06); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 21, 27, 0.88) 0%, rgba(17, 21, 27, 0.55) 38%, rgba(17, 21, 27, 0.15) 62%, rgba(17, 21, 27, 0.05) 100%),
    linear-gradient(0deg, rgba(17, 21, 27, 0.4) 0%, transparent 40%);
  animation: heroOverlayIn 1.4s var(--ease-out-expo) both;
}

@keyframes heroOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(48px, 8vw, 80px);
  max-width: 640px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  color: var(--paper);
  text-wrap: balance;
}

.hero__subtitle {
  margin-top: 20px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero__title,
.hero__subtitle,
.hero__actions > .btn {
  animation: heroReveal var(--duration-slow) var(--ease-out-expo) both;
}

.hero__title { animation-delay: 0.15s; }
.hero__subtitle { animation-delay: 0.3s; }
.hero__actions > .btn:nth-child(1) { animation-delay: 0.45s; }
.hero__actions > .btn:nth-child(2) { animation-delay: 0.55s; }

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

/* Section titles */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: clamp(28px, 3.5vw, 40px);
  text-wrap: balance;
}

.section-title--center {
  text-align: center;
  position: relative;
  padding-bottom: 16px;
}

.section-title--center::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 2px;
  transform-origin: center;
  transition: width var(--duration-slow) var(--ease-out-expo);
}

.section-title--light {
  color: var(--paper);
}

.reveal.is-visible .section-title--center::after {
  animation: titleLineGrow var(--duration-slow) var(--ease-out-expo) both;
}

@keyframes titleLineGrow {
  from { width: 0; opacity: 0; }
  to { width: 56px; opacity: 1; }
}

.section-head {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.section-head .section-title {
  margin-bottom: 16px;
}

.section-lead {
  max-width: 52ch;
  margin-inline: auto;
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

/* Features + Advantages */
.advantages__inner {
  display: flex;
  flex-direction: column;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: clamp(28px, 3.5vw, 36px);
  margin-bottom: clamp(28px, 3.5vw, 36px);
  border-bottom: 1px solid var(--line);
}

.advantages__title {
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition:
    transform var(--duration-mid) var(--ease-out-expo),
    box-shadow var(--duration-mid) var(--ease-out-quart);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg, 0 16px 40px rgba(17, 21, 27, 0.14));
}

.feature-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(197, 139, 67, 0.12);
  transition: transform var(--duration-mid) var(--ease-out-expo), background var(--duration-fast) ease;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(197, 139, 67, 0.2);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--duration-mid) var(--ease-out-expo),
    box-shadow var(--duration-mid) var(--ease-out-quart);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(17, 21, 27, 0.16);
}

.service-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 280px;
  overflow: hidden;
}

.service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 21, 27, 0.45) 100%);
  opacity: 0;
  transition: opacity var(--duration-mid) var(--ease-out-quart);
}

.service-card:hover .service-card__image::after {
  opacity: 1;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

.service-card__body {
  position: relative;
  padding: 48px 32px 32px;
  text-align: center;
}

.round-icon {
  position: absolute;
  left: 50%;
  top: -36px;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--ink);
  box-shadow: 0 0 0 4px var(--paper);
  transition:
    transform var(--duration-mid) var(--ease-out-expo),
    box-shadow var(--duration-mid) var(--ease-out-quart);
}

.service-card:hover .round-icon {
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 0 0 4px var(--paper), 0 8px 24px rgba(197, 139, 67, 0.3);
}

.round-icon svg {
  width: 34px;
  height: 34px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 30px);
  line-height: 1.2;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 36ch;
  margin-inline: auto;
}

/* Advantages */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.advantage {
  text-align: center;
  padding: 24px 16px;
}

.advantage__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--duration-mid) var(--ease-out-expo),
    box-shadow var(--duration-mid) var(--ease-out-quart);
}

.advantage:hover .advantage__icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 28px rgba(197, 139, 67, 0.18);
}

.advantage__icon svg {
  width: 32px;
  height: 32px;
}

.advantage h3 {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.advantage p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Gallery */
.gallery {
  background:
    radial-gradient(circle at 12% 8%, rgba(221, 166, 96, 0.22), transparent 32%),
    linear-gradient(135deg, #0d1116 0%, #171c24 54%, #10141a 100%);
  color: var(--paper);
}

.gallery__head {
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.gallery__head .section-title {
  margin-bottom: 16px;
}

.gallery__lead {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
}

.gallery__wrapper {
  display: block;
}

.gallery__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.gallery__slide {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  transition:
    box-shadow var(--duration-mid) var(--ease-out-quart),
    transform var(--duration-mid) var(--ease-out-expo);
}

.gallery__slide:hover {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.gallery__slide:hover img {
  transform: scale(1.05);
}

.gallery__cta {
  width: fit-content;
  min-height: 54px;
  margin: clamp(24px, 3vw, 36px) auto 0;
}

.gallery__cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Reviews */
.reviews {
  padding-block: clamp(36px, 5vw, 56px);
}

.reviews__slider {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  min-height: 150px;
}

.review-card {
  display: none;
  padding: 28px 30px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.review-card.active {
  display: block;
  animation: reviewIn 0.65s var(--ease-out-expo);
}

@keyframes reviewIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.review-card blockquote {
  position: relative;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
}

.review-card blockquote::before {
  content: "\201C";
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  font-style: normal;
}

.review-card__meta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.review-card strong {
  font-size: 15px;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.reviews__dot {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
}

.reviews__dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}

.reviews__dot.active::after {
  background: var(--gold);
  transform: scale(1.3);
}

/* Order */
.order__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.order__inner--simple {
  grid-template-columns: 1.1fr minmax(260px, 0.7fr);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  background: var(--soft);
}

.order__text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin-top: -16px;
}

.order__telegram {
  min-height: 64px;
  font-size: 18px;
}

.order__telegram svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.order__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--soft);
  transition: box-shadow var(--duration-mid) var(--ease-out-quart);
}

.order__form:focus-within {
  box-shadow: 0 12px 36px rgba(197, 139, 67, 0.12);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  background: var(--paper);
  transition:
    border-color var(--duration-fast) ease,
    box-shadow var(--duration-mid) var(--ease-out-quart),
    transform var(--duration-fast) var(--ease-out-expo);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 139, 67, 0.2);
  transform: translateY(-1px);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: 56px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__heading {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.footer__map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: var(--radius);
  filter: grayscale(20%);
}

.footer__map-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.btn--outline-light {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.28);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn--telegram svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer__link {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
  transition: color var(--duration-fast) ease, transform var(--duration-fast) var(--ease-out-expo);
}

.footer__link:hover {
  color: var(--gold-2);
  transform: translateX(4px);
}

.footer__hours {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition:
    color var(--duration-fast) ease,
    transform var(--duration-fast) var(--ease-out-expo);
}

.footer__social-link:hover {
  color: var(--gold-2);
  transform: translateX(4px);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  transition: transform var(--duration-mid) var(--ease-out-expo);
}

.footer__social-link:hover svg {
  transform: scale(1.12);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* Responsive */
@media (max-width: 1100px) {
  .gallery__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

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

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

.nav__extras {
  display: none;
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 25;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    padding: 24px 24px 32px;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

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

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .nav__extras {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
  }

  .nav__phone svg {
    width: 20px;
    height: 20px;
    color: var(--gold-2);
    flex-shrink: 0;
  }

  .nav__extras .lang-switch {
    align-self: center;
  }

  .nav.open .nav__list li {
    animation: navItemIn 0.5s var(--ease-out-expo) both;
  }

  .nav.open .nav__list li:nth-child(1) { animation-delay: 0.05s; }
  .nav.open .nav__list li:nth-child(2) { animation-delay: 0.1s; }
  .nav.open .nav__list li:nth-child(3) { animation-delay: 0.15s; }
  .nav.open .nav__list li:nth-child(4) { animation-delay: 0.2s; }

  @keyframes navItemIn {
    from {
      opacity: 0;
      transform: translateY(-12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav__link {
    font-size: 17px;
    min-height: 48px;
    padding-inline: 12px;
  }

  .burger {
    display: flex;
  }

  .header__phone,
  .header__cta,
  .header__actions > .lang-switch {
    display: none;
  }

  .header__inner {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 68px;
    --section-y: clamp(48px, 10vw, 72px);
  }

  .shell {
    width: calc(100% - 32px);
  }

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

  .logo__accent {
    font-size: clamp(18px, 5vw, 24px);
  }

  .logo__name {
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
    align-items: flex-end;
  }

  .hero__image img {
    object-position: 60% center;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(17, 21, 27, 0.92) 0%, rgba(17, 21, 27, 0.5) 45%, rgba(17, 21, 27, 0.2) 100%);
  }

  .hero__content {
    padding-bottom: 40px;
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(32px, 8.5vw, 44px);
  }

  .hero__subtitle {
    font-size: clamp(16px, 4.2vw, 20px);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 52px;
    white-space: normal;
    text-align: center;
  }

  .section-title {
    font-size: clamp(24px, 6.5vw, 32px);
    margin-bottom: clamp(20px, 5vw, 28px);
  }

  .section-lead {
    font-size: 16px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 20px;
  }

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

  .advantage {
    padding: 16px 8px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card__image {
    min-height: 220px;
  }

  .service-card__body {
    padding: 40px 20px 24px;
  }

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

  .order__form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    min-height: 48px;
  }

  .review-card {
    padding: 28px 20px;
  }

  .review-card blockquote {
    font-size: 16px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer__social {
    align-items: center;
  }

  .footer__map iframe {
    height: 180px;
  }

  .footer__map-actions .btn {
    min-height: 52px;
  }
}

@media (max-width: 640px) {
  .gallery__track {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .shell {
    width: calc(100% - 24px);
  }

  .gallery__cta {
    width: 100%;
  }

  .order__inner--simple {
    padding: 24px 18px;
  }

  .order__telegram {
    min-height: 58px;
    font-size: 16px;
  }

  .section-head {
    margin-bottom: 24px;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: no-preference) {
  html.motion-ready .reveal {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(4px);
    transition:
      opacity var(--duration-slow) var(--ease-out-expo),
      transform var(--duration-slow) var(--ease-out-expo),
      filter var(--duration-slow) var(--ease-out-expo);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
  }

  html.motion-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  html.motion-ready .header {
    animation: headerIn 0.8s var(--ease-out-expo) both;
  }
}

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero__image img {
    animation: none;
    transform: none;
  }

  .hero__title,
  .hero__subtitle,
  .hero__actions > .btn {
    animation: none;
  }
}
