/* ===== VARIABLES ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #e4c06e;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --dark: #0d0d0d;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --dark-4: #2a2a2a;
  --text: #e8e8e8;
  --text-muted: #9a9a9a;
  --border: rgba(201, 168, 76, 0.2);
  --radius: 12px;
  --transition: 0.25s ease;
  --header-h: 68px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 56px;
  font-size: 1rem;
}

/* ===== ACCESSIBILITY ===== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav__link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__link:hover { color: var(--gold); }

.lang-toggle {
  margin-left: 16px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}
.lang-toggle:hover { background: var(--gold-dim); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: 12px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  padding: 12px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--dark-3);
  font-size: 0.95rem;
}
.mobile-nav__link:last-child { border-bottom: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: #000;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn--outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0d0d0d 0%, #111 100%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero__label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b89a40;
  margin-bottom: 24px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-shadow:
    0 0 80px rgba(201, 168, 76, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===== ADVANTAGES ===== */
.advantages {
  padding: 100px 0;
  background: var(--dark-2);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.advantage-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.advantage-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.1);
}

.advantage-card__icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.advantage-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.advantage-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--dark);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-item {
  display: flex;
  gap: 20px;
  padding: 32px 28px;
  background: var(--dark-3);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.service-item:hover { background: var(--dark-4); }

.service-item__num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #6b5520;
  line-height: 1;
  flex-shrink: 0;
}

.service-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.service-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 0;
  background: var(--dark-2);
}

.steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  background: var(--dark-2);
}

.step__line {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 1px;
  background: var(--border);
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== LOCATION ===== */
.location {
  padding: 100px 0;
  background: var(--dark);
}

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

.location__item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  color: var(--gold);
}
.location__item svg { flex-shrink: 0; margin-top: 3px; }
.location__item strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.location__item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.location__item .landmark {
  color: var(--text-muted);
  font-size: 0.85rem;
  opacity: 0.7;
}

.location__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  background: var(--dark-3);
}

.location__map iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: none;
  filter: grayscale(30%) invert(90%) hue-rotate(180deg);
}

.map-placeholder {
  width: 100%;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
}
.map-placeholder svg { color: #5a4520; }
.map-placeholder p { font-size: 0.9rem; color: #6e6e6e; }

/* ===== SEO TEXT ===== */
.seo-text {
  padding: 64px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.seo-text__block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.seo-text__block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 820px;
}

.seo-text__block strong {
  color: var(--text);
  font-weight: 500;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--dark-2);
}

.contact__cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 280px;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.12);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-card--tg .contact-card__icon { color: #29a8e0; background: rgba(41, 168, 224, 0.1); }

.contact-card span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-card strong {
  font-size: 1rem;
  color: var(--text);
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 20px;
}
.footer__links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

/* ===== FLOATING CTA ===== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: var(--transition);
}
.floating-btn:hover { transform: scale(1.1); }

.floating-btn--phone { background: var(--gold); color: #000; }
.floating-btn--tg { background: #29a8e0; color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; margin-left: auto; }
  .lang-toggle { margin-left: 8px; }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .step { max-width: 100%; }
  .step__line { display: none; }

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

  .floating-cta { display: flex; }
}

@media (max-width: 640px) {
  .advantages { padding: 72px 0; }
  .services { padding: 72px 0; }
  .how { padding: 72px 0; }
  .location { padding: 72px 0; }
  .contact { padding: 72px 0; }

  .hero__cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }

  .footer__inner { flex-direction: column; text-align: center; }

  .contact-card { min-width: unset; width: 100%; }
  .contact__cards { flex-direction: column; align-items: center; }
}
