:root {
  --bg: #050911;
  --bg-soft: #0b111b;
  --card: rgba(255,255,255,0.06);
  --card-strong: rgba(255,255,255,0.09);
  --line: rgba(255,255,255,0.1);
  --line-soft: rgba(255,255,255,0.06);
  --text: #f4f7fc;
  --muted: #b8c1d0;
  --accent: #d6b07c;
  --accent-strong: #f2dfc0;
  --success: rgba(28, 161, 96, 0.18);
  --error: rgba(220, 53, 69, 0.18);
  --shadow: 0 26px 70px rgba(0,0,0,0.35);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(214,176,124,0.16), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(255,255,255,0.08), transparent 18%),
    radial-gradient(circle at 75% 80%, rgba(214,176,124,0.10), transparent 20%),
    linear-gradient(180deg, #07101a 0%, #04070d 100%);
}

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
.container { width: min(1240px, calc(100% - 32px)); margin: 0 auto; }
.site-shell { overflow: hidden; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(18px);
  background: rgba(5,9,17,0.66);
  border-bottom: 1px solid var(--line);
}

.nav-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand strong { display: block; font-size: 1rem; letter-spacing: .02em; }
.brand small { display: block; color: var(--muted); margin-top: 3px; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(214,176,124,0.22);
  background: linear-gradient(135deg, rgba(214,176,124,0.25), rgba(255,255,255,0.06));
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a { color: var(--muted); }
.main-nav a:hover { color: var(--text); }

.lang-switcher {
  display: inline-flex;
  gap: 8px;
}
.lang-switcher button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  transition: .2s ease;
}
.lang-switcher button:hover,
.lang-switcher button.active {
  background: linear-gradient(135deg, rgba(214,176,124,0.20), rgba(255,255,255,0.08));
  border-color: rgba(214,176,124,0.28);
}

.hero {
  padding: 84px 0 38px;
}
.hero-grid,
.two-col,
.contact-grid,
.metrics-grid,
.gallery-grid,
.cards,
.faq-grid,
.form-row {
  display: grid;
  gap: 22px;
}
.hero-grid {
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 32px;
}
.two-col,
.contact-grid { grid-template-columns: 1fr 1fr; }
.metrics-grid { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-grid {
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: 230px 230px;
}
.gallery-grid .gallery-1 { grid-row: 1 / span 2; }
.faq-grid { grid-template-columns: repeat(3, 1fr); }
.form-row { grid-template-columns: 1fr 1fr; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

p, li, summary, small, span {
  line-height: 1.65;
}

.lead,
.section-text,
p,
li,
summary,
small {
  color: var(--muted);
}

.section {
  padding: 58px 0;
}
.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.centered {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 22px;
}
.section-head { margin-bottom: 24px; }

.glass-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.045));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 28px;
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 30%);
  pointer-events: none;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #0e1116;
  background: linear-gradient(135deg, rgba(214,176,124,0.98), rgba(255,255,255,0.92));
}
.btn-secondary {
  background: rgba(255,255,255,0.04);
}
.btn-submit { width: 100%; margin-top: 6px; }

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.point-card {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.point-card strong {
  display: block;
  margin-bottom: 6px;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: .92rem;
}
.badge-soft { color: var(--accent-strong); }

.hero-visual { min-height: 610px; }
.visual-top,
.visual-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.visual-bottom {
  margin-top: auto;
  display: block;
}
.visual-stage {
  position: relative;
  height: 360px;
  margin: 34px 0 16px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.2), transparent 16%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
}
.visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}
.orb-a { width: 120px; height: 120px; background: rgba(214,176,124,0.35); top: 36px; left: 80px; }
.orb-b { width: 100px; height: 100px; background: rgba(255,255,255,0.20); top: 70px; right: 90px; }
.orb-c { width: 150px; height: 150px; background: rgba(214,176,124,0.18); bottom: 30px; left: 50%; transform: translateX(-50%); }
.arch {
  position: absolute;
  bottom: 82px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 180px 180px 0 0;
  border: 2px solid rgba(255,255,255,0.36);
  border-bottom: none;
}
.arch-one { width: 210px; height: 150px; }
.arch-two { width: 280px; height: 200px; opacity: .5; }
.table-line {
  position: absolute;
  left: 45px;
  right: 45px;
  bottom: 78px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(214,176,124,0.55), rgba(255,255,255,0.15));
}
.candles {
  position: absolute;
  left: 50%;
  bottom: 84px;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 22px;
}
.candles span {
  display: block;
  width: 14px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, rgba(255,248,220,0.96), rgba(214,176,124,0.8));
  box-shadow: 0 0 20px rgba(255,244,214,0.22);
}
.candles span:nth-child(1) { height: 70px; }
.candles span:nth-child(2) { height: 98px; }
.candles span:nth-child(3) { height: 54px; }

.metric {
  padding: 22px;
}
.metric strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.service-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}
.service-card li { margin-bottom: 8px; }
.icon-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: radial-gradient(circle at 30% 30%, #fff3e0, #d6b07c);
  box-shadow: 0 0 16px rgba(214,176,124,0.34);
}
.accent-card {
  border-color: rgba(214,176,124,0.22);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 24px;
  min-height: 100%;
  display: flex;
  align-items: end;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(6,8,12,0.62) 100%);
}
.gallery-card > div { position: relative; z-index: 1; }
.gallery-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--accent-strong);
}
.gallery-1 {
  background:
    radial-gradient(circle at 60% 18%, rgba(255,255,255,0.26), transparent 22%),
    radial-gradient(circle at 45% 68%, rgba(214,176,124,0.22), transparent 24%),
    linear-gradient(135deg, #d6cab8 0%, #a88e74 28%, #584737 100%);
}
.gallery-2 {
  background:
    radial-gradient(circle at 40% 24%, rgba(255,255,255,0.28), transparent 18%),
    linear-gradient(135deg, #e8d3d6 0%, #b78d95 32%, #483743 100%);
}
.gallery-3 {
  background:
    radial-gradient(circle at 60% 20%, rgba(255,255,255,0.26), transparent 16%),
    linear-gradient(135deg, #d8c7a2 0%, #8f7345 30%, #1b1a20 100%);
}
.gallery-4 {
  background:
    radial-gradient(circle at 55% 22%, rgba(255,255,255,0.24), transparent 18%),
    linear-gradient(135deg, #d9cfbf 0%, #9c8865 28%, #3a3028 100%);
}

.timeline {
  display: grid;
  gap: 16px;
}
.timeline-item strong {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(214,176,124,0.16);
  color: var(--accent-strong);
  border: 1px solid rgba(214,176,124,0.18);
}

.portrait-card {
  display: grid;
  place-items: center;
  min-height: 430px;
}
.portrait-frame {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1 / 1.05;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  display: grid;
  place-items: center;
}
.portrait-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,176,124,0.46), rgba(214,176,124,0.05));
  filter: blur(10px);
}
.portrait-initial {
  position: relative;
  z-index: 1;
  width: 164px;
  height: 164px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214,176,124,0.92), rgba(255,255,255,0.92));
  color: #11131a;
  font-size: 4rem;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.quote-card { margin-top: 24px; }
.quote-card p {
  margin: 0;
  color: var(--accent-strong);
  font-size: 1.05rem;
}

.faq-grid details {
  padding: 22px 24px;
}
.faq-grid summary {
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-weight: 700;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid p { margin: 14px 0 0; }

.address-card,
.contact-note { margin-top: 18px; }
.contact-note strong { display: block; margin-bottom: 8px; }
.form-card label { display: block; }
.form-card span { display: block; margin-bottom: 8px; color: var(--text); }
.form-card input,
.form-card textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: .2s ease;
}
.form-card input:focus,
.form-card textarea:focus {
  border-color: rgba(214,176,124,0.34);
  box-shadow: 0 0 0 4px rgba(214,176,124,0.08);
}
.form-card textarea { resize: vertical; min-height: 170px; }
::placeholder { color: #8f99ab; }
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
}
.checkbox input {
  width: auto;
  margin-top: 4px;
}
.hp-wrap {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.form-status.success { background: var(--success); }
.form-status.error { background: var(--error); }

.site-footer {
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-wrap p { margin: 0 0 4px; }

.legal-page {
  padding: 40px 0 70px;
}
.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--accent);
}
.legal-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(214,176,124,0.10);
  border: 1px solid rgba(214,176,124,0.22);
  color: var(--accent-strong);
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .cards-3,
  .faq-grid,
  .metrics-grid,
  .form-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid { grid-template-rows: repeat(4, 240px); }
  .gallery-grid .gallery-1 { grid-row: auto; }
  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hero { padding-top: 64px; }
  .main-nav { gap: 12px; }
  .main-nav a { font-size: .95rem; }
  .hero-points { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .visual-stage { height: 280px; }
  .container { width: min(1240px, calc(100% - 22px)); }
  .glass-card { padding: 22px; border-radius: 24px; }
}
