/* ===========================
   CSS-переменные
   =========================== */
:root {
  --gold: #C9A84C;
  --gold-dark: #a8872f;
  --gold-light: #e2c97e;
  --dark: #0c0c14;
  --dark-2: #12121e;
  --dark-3: #1a1a2e;
  --dark-4: #222238;
  --dark-card: #16162a;
  --text: #d0d0e0;
  --text-muted: #888899;
  --white: #ffffff;
  --border: rgba(201, 168, 76, 0.15);

  --font-main: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
}

/* ===========================
   Сброс и базовые стили
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===========================
   Контейнер
   =========================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   Типографика
   =========================== */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

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

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-sub {
  margin: 0 auto;
}

.accent {
  color: var(--gold);
}

/* ===========================
   Кнопки
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width:230px
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  box-shadow: 0 4px 24px rgba(201,168,76,0.3);
}

.btn--gold:hover {
  box-shadow: 0 6px 32px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1px solid rgba(201,168,76,0.6);
  color: var(--gold);
}

.btn--outline:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
}

.btn--header {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  font-size: 12px;
}

.btn--header:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--call {
  border: 1px solid rgba(201,168,76,0.6);
  color: var(--gold);
  background: transparent;
}

.btn--call:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

/* ===========================
   Модал "Заказать звонок"
   =========================== */
.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.callback-modal.active {
  pointer-events: all;
  opacity: 1;
}

.callback-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.callback-modal__box {
  position: relative;
  z-index: 1;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition);
  box-shadow: var(--shadow);
}

.callback-modal.active .callback-modal__box {
  transform: translateY(0) scale(1);
}

.callback-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  color: var(--text-muted);
  line-height: 1;
  transition: color var(--transition);
}

.callback-modal__close:hover {
  color: var(--white);
}

.callback-modal__icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.callback-modal__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.callback-modal__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.callback-modal__form .form-group {
  text-align: left;
}

.callback-btn-contacts {
  margin-top: 20px;
}

@media (max-width: 480px) {
  .callback-modal__box {
    padding: 36px 20px 28px;
  }

  .callback-modal__title {
    font-size: 22px;
  }
}

/* ===========================
   Логотип
   =========================== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.logo__icon {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(201,168,76,0.55);
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  background: rgba(12,12,20,0.24);
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.header__phone-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header__phone-icon svg {
  width: 100%;
  height: 100%;
}

.header__phone:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
  transform: translateY(-1px);
}

/* ===========================
   Хедер
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(12, 12, 20, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  gap: 36px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-bottom: 4px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav__link:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

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

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

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

/* ===========================
   Герой
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 12, 20, 0.85) 0%,
    rgba(12, 12, 20, 0.6) 50%,
    rgba(12, 12, 20, 0.75) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero__content {
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title--accent {
  color: var(--gold);
  display: block;
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 500px;
}

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

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.8); }
}

/* ===========================
   Быстрая статистика
   =========================== */
.quickstats {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.quickstats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quickstats__item {
  text-align: center;
  padding: 24px;
  position: relative;
}

.quickstats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.quickstats__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.quickstats__suffix {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}

.quickstats__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   О компании
   =========================== */
.about {
  padding: 64px 0;
  background: var(--dark-2);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__img-wrap {
  position: relative;
}

.about__img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(0.9);
}

/* Заглушка при отсутствии фото */
.about__img[src*="svg"] {
  background: var(--dark-card);
  border: 1px solid var(--border);
}

.about__badge-wrap {
  position: absolute;
  bottom: -24px;
  right: -24px;
}

.about__exp-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}

.about__exp-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.about__exp-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
}

.about__desc {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
}

.about__list {
  margin: 32px 0 40px;
}

.about__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}

.about__list-icon {
  color: var(--gold);
  font-size: 8px;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ===========================
   Услуги
   =========================== */
.services {
  padding: 64px 0;
  background: var(--dark);
}

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

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin-bottom: 24px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===========================
   Статистика
   =========================== */
.stats {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}

.stats__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stats__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 20, 0.65);
  z-index: 1;
}

.stats .container {
  position: relative;
  z-index: 2;
}

.stats__content {
  text-align: center;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
}

.stat-item__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-item__suffix {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.stat-item__label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   Галерея
   =========================== */
.gallery {
  padding: 64px 0;
  background: var(--dark-2);
}

.gallery__filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.gallery__filter-btn {
  padding: 9px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all var(--transition);
}

.gallery__filter-btn.active,
.gallery__filter-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.06);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,20,0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__zoom {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  flex-shrink: 0;
}

.gallery__caption {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* Лайтбокс */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  color: var(--white);
  font-size: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background var(--transition);
  z-index: 10000;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--gold);
  color: var(--dark);
}

.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ===========================
   Почему мы
   =========================== */
.why {
  padding: 64px 0;
  padding-bottom: 0px;
  background: var(--dark);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why__item {
  background: var(--dark-card);
  padding: 48px 36px;
  transition: background var(--transition);
}

.why__item:hover {
  background: var(--dark-3);
}

.why__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 24px;
}

.why__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.why__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===========================
   Контакты
   =========================== */
.contacts {
  padding: 0px 0;
  padding-top: 0px;
  background: var(--dark-2);
}

.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacts__block {
  margin-bottom: 40px;
}

.contacts__block-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts__item {
  display: flex;
  gap: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.contacts__icon {
  color: var(--gold);
  font-size: 8px;
  margin-top: 5px;
  flex-shrink: 0;
}

.contacts__link {
  color: var(--gold);
  transition: color var(--transition);
}

.contacts__link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.contacts__schedule {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts__schedule li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
}

/* Форма */
.contact-form {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-select option {
  background: var(--dark-3);
}

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

.form-agree {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

.form-success {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-size: 14px;
  text-align: center;
}

/* ===========================
   Футер
   =========================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
  padding-top: 0px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer__slogan {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.6;
}

/* ===========================
   Кнопка "Наверх"
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--dark);
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
}

/* ===========================
   Lazy loading
   =========================== */
.lazy {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy.loaded {
  opacity: 1;
}

/* ===========================
   Анимации
   =========================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-up.visible,
.animate-fade-left.visible,
.animate-fade-right.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   Адаптив
   =========================== */
@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .quickstats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quickstats__item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .about__inner,
  .contacts__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contacts__info  { order: 2; }
  .contact-form    { order: 1; }

  .about__badge-wrap {
    right: 16px;
    bottom: -16px;
  }

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

  .gallery__item--wide {
    grid-column: span 1;
  }

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

  .footer__copy {
    text-align: center;
  }

  .header__brand {
    margin: 0 auto;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .about,
  .services,
  .stats,
  .gallery,
  .why,
  .contacts {
    padding: 0px 0;
  }

  .about__media {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-3);
    border-left: 1px solid var(--border);
    padding: 100px 32px 48px;
    transition: right 0.35s ease;
    z-index: 999;
    margin-left: 0;
  }

  .nav.open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 24px;
  }

  .nav__link {
    font-size: 16px;
  }

  .burger {
    display: flex;
    z-index: 1001;
  }

  .btn--header {
    display: none;
  }

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

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

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .gallery__item--mobile-hidden {
    display: none;
  }

  .gallery__show-more {
    display: block;
    margin: 28px auto 0;
    min-width: 220px;
  }

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

  .quickstats__item::after {
    display: none;
  }

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

  .contact-form {
    padding: 32px 24px;
  }

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

@media (max-width: 480px) {
  .quickstats__grid {
    grid-template-columns: 1fr;
  }

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

  .hero__title {
    font-size: 32px;
  }

  .logo__text {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .header__phone {
    padding: 8px 12px;
    font-size: 16px;
  }

  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; }
}
