
:root {
  --primary: #c92b2b;
  --primary-dark: #a31f1f;
  --secondary: #17181d;
  --secondary-2: #232734;
  --soft: #f5f7fb;
  --soft-2: #eef1f6;
  --text: #22252b;
  --muted: #6b7280;
  --white: #ffffff;
  --gold: #d7b16d;
  --shadow: 0 18px 45px rgba(12, 18, 38, 0.12);
  --shadow-strong: 0 24px 60px rgba(12, 18, 38, 0.16);
  --radius: 24px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(201,43,43,0.08), transparent 22%),
    radial-gradient(circle at 100% 20%, rgba(215,177,109,0.10), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
::selection {
  background: rgba(201,43,43,0.16);
  color: var(--secondary);
}
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #eef2f6; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 999px;
  border: 2px solid #eef2f6;
}
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 4px;
  width: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  box-shadow: 0 0 16px rgba(201,43,43,0.5);
}
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
  pointer-events: none;
  z-index: 0;
}
.orb-1 { width: 260px; height: 260px; top: 80px; right: -60px; background: rgba(201,43,43,0.17); }
.orb-2 { width: 260px; height: 260px; top: 40%; left: -70px; background: rgba(215,177,109,0.20); }
.orb-3 { width: 220px; height: 220px; bottom: 10%; right: 10%; background: rgba(36,46,74,0.12); }
.topbar {
  background: linear-gradient(90deg, #11141b, #242b3b);
  color: #e5e7eb;
  font-size: 14px;
  position: relative;
  z-index: 20;
}
.topbar-content {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-phones {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-phones a {
  color: #fff;
  font-weight: 700;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(236,239,245,0.7);
  transition: all .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 16px 40px rgba(18, 24, 39, 0.08);
  background: rgba(255,255,255,0.9);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  background: rgba(255,255,255,0.9);
  padding: 10px 14px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(12, 18, 38, 0.06);
}
.brand img {
  width: 185px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  color: var(--secondary);
  font-weight: 700;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 99px;
  transition: width .25s ease;
}
.nav a:hover::after,
.nav a:focus-visible::after { width: 100%; }
.menu-toggle {
  display: none;
  border: none;
  background: rgba(245,247,251,0.95);
  color: var(--secondary);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(12,18,38,.08);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 88px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201,43,43,0.12), transparent 35%), linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(246,248,252,0.92) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85), transparent 95%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  background: rgba(201,43,43,0.10);
  color: var(--primary-dark);
  border: 1px solid rgba(201,43,43,0.15);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(201,43,43,0.08);
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.15;
  color: var(--secondary);
}
.hero-en {
  color: var(--primary-dark);
  font-weight: 700;
  margin: 0 0 14px;
}
.hero p {
  font-size: 18px;
  color: #3b4150;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 16px 28px rgba(201,43,43,0.24);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-2));
  color: #fff;
}
.btn-light {
  background: rgba(255,255,255,0.9);
  color: var(--secondary);
  border: 1px solid #d8deea;
  box-shadow: 0 12px 24px rgba(12,18,38,0.06);
}
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.highlight-card {
  background: rgba(255,255,255,0.72);
  padding: 16px 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
}
.highlight-card strong {
  display: block;
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 4px;
}
.highlight-card span { color: var(--muted); }
.hero-image-card {
  background: rgba(255,255,255,0.82);
  border-radius: 32px;
  padding: 14px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
}
.floating-card { animation: floatY 5s ease-in-out infinite; }
.hero-image-card img {
  width: 100%;
  height: min(600px, 70vh);
  object-fit: cover;
  border-radius: 26px;
}
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  width: 40px;
  height: 66px;
  border: 2px solid rgba(23,24,29,.25);
  border-radius: 999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
}
.scroll-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: scrollDot 1.8s infinite;
}
.section {
  padding: 88px 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, rgba(248,250,252,0.85) 0%, rgba(238,242,248,0.85) 100%);
}
.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
.section-heading.no-margin {
  margin-bottom: 22px;
}
.section-heading span {
  display: inline-block;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 8px;
}
.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--secondary);
  line-height: 1.25;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.feature-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 23px;
  background: linear-gradient(135deg, rgba(201,43,43,0.12), rgba(215,177,109,0.18));
  color: var(--primary-dark);
  font-weight: 800;
}
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.feature-card p { margin: 0; color: var(--muted); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 18px;
}
.gallery-item {
  margin: 0;
  background: rgba(255,255,255,0.88);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  border: 1px solid rgba(255,255,255,.9);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: var(--shadow-strong);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.gallery-item figcaption {
  padding: 14px 14px 16px;
  font-weight: 700;
  color: var(--secondary);
}
.location-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}
.location-text, .map-wrap {
  background: rgba(255,255,255,0.82);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
}
.info-list {
  display: grid;
  gap: 14px;
}
.info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245,247,251,.95), rgba(255,255,255,.95));
  border: 1px solid #edf1f5;
}
.info-item strong { color: var(--secondary); }
.info-item a { color: var(--primary-dark); font-weight: 700; word-break: break-word; }
.map-wrap iframe {
  width: 100%;
  min-height: 100%;
  height: 420px;
  border: 0;
  border-radius: 22px;
}
.section-contact {
  background: linear-gradient(135deg, #151821, #23293a 60%, #7f2525 150%);
  color: #fff;
}
.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 22px 45px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
}
.contact-tag {
  display: inline-block;
  color: #fecaca;
  font-weight: 800;
  margin-bottom: 10px;
}
.contact-box h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 38px);
}
.contact-box p { margin: 0; color: #d1d5db; }
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #f4f5f9);
  color: var(--secondary);
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(0,0,0,.12);
  transition: transform .25s ease;
}
.contact-btn:hover { transform: translateY(-3px); }
.site-footer {
  background: #0f1116;
  color: #cbd5e1;
  padding: 28px 0;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-wrap strong, .footer-wrap p { margin: 0; }
.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(18,24,39,.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .25s ease;
  z-index: 40;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 12, 20, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
}
.image-modal.active { display: flex; }
.image-modal img {
  max-width: min(1000px, 92vw);
  max-height: 88vh;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.modal-close {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  background: #fff;
  color: var(--secondary);
}
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(22px); opacity: 0; }
}
@media (max-width: 1050px) {
  .hero-grid,
  .location-grid,
  .features-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,0.96);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #edf0f5;
    backdrop-filter: blur(12px);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 18px;
    border-bottom: 1px solid #edf0f5;
  }
  .nav a:last-child { border-bottom: 0; }
  .hero,
  .section { padding: 56px 0; }
  .hero-highlights,
  .features-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .topbar-content,
  .footer-wrap { justify-content: center; text-align: center; }
  .hero p { font-size: 16px; }
  .contact-btn { width: 100%; min-width: 0; }
  .scroll-indicator { display: none; }
  .brand img { width: 150px; }
  .contact-box,
  .location-text,
  .map-wrap,
  .feature-card,
  .gallery-item,
  .hero-image-card { border-radius: 22px; }
}
