*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
:root {
  --paper: #f6f1e8;
  --paper-soft: #fffaf1;
  --ink: #151c1a;
  --muted: #66746e;
  --line: rgba(21, 28, 26, 0.14);
  --night: #101716;
  --sea: #0f6b67;
  --gold: #bd8b4f;
  --white: #fff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.object-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(13, 18, 17, 0.46);
  backdrop-filter: blur(18px);
}
.object-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-links a,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}
.object-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 128px 0 78px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}
.object-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8, 13, 12, 0.82), rgba(8, 13, 12, 0.42) 48%, rgba(8, 13, 12, 0.12)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.object-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(300px, 380px);
  gap: 70px;
  align-items: end;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e0b77b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
h1 {
  margin-top: 22px;
  max-width: 780px;
  font-size: 82px;
}
.name-ru {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-lead {
  max-width: 670px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  padding: 26px;
  background: rgba(16, 23, 22, 0.64);
  backdrop-filter: blur(16px);
}
.hero-panel h2 {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 18px;
}
.metrics {
  display: grid;
  gap: 13px;
}
.metric {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.metric:last-child { border-bottom: 0; padding-bottom: 0; }
.metric span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.metric strong {
  color: var(--white);
  font-size: 14px;
}
.section {
  padding: 92px 0;
}
.section.dark {
  background: var(--night);
  color: var(--white);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(280px, 1fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
}
.section h2 {
  font-size: 64px;
}
.section-copy {
  color: var(--muted);
  font-size: 18px;
}
.dark .section-copy { color: rgba(255, 255, 255, 0.68); }
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
}
.story-card,
.memo-card,
.fact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
  padding: 28px;
}
.story-card p,
.memo-card p,
.fact-card p {
  color: var(--muted);
  font-size: 17px;
}
.story-card p + p { margin-top: 18px; }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.fact-card {
  min-height: 150px;
}
.fact-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fact-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.12;
}
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
}
.gallery-side {
  display: grid;
  gap: 16px;
}
.memo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.memo-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.memo-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.memo-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 30px;
}
.memo-card p { color: rgba(255, 255, 255, 0.68); }
.cta-section {
  padding: 90px 0;
  background: #0f1715;
  color: var(--white);
}
.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 44px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 38px;
  background: rgba(255, 255, 255, 0.06);
}
.cta-box h2 { font-size: 64px; }
.lead-form {
  display: grid;
  gap: 12px;
}
.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.lead-form select option { color: var(--ink); }
.lead-form input::placeholder { color: rgba(255, 255, 255, 0.56); }
.phone-row {
  display: grid;
  grid-template-columns: minmax(118px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
}
.form-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.45;
}
.form-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--gold);
}
.form-check a {
  color: #f0c98c;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-status {
  min-height: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.45;
}
.form-status.is-error { color: #ffb6a8; }
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.small-note {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}
.object-footer {
  padding: 36px 0;
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
}
.object-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 980px) {
  .object-hero-inner,
  .section-head,
  .story-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .hero-panel { max-width: 560px; }
  h1 { font-size: 64px; }
  .section h2,
  .cta-box h2 { font-size: 52px; }
  .memo-grid,
  .fact-grid {
    grid-template-columns: 1fr;
  }
  .phone-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .container { width: min(100% - 32px, 1180px); }
  .nav-links a:not(.btn-gold) { display: none; }
  .object-nav { min-height: 66px; }
  .object-hero { padding: 106px 0 58px; }
  h1 { font-size: 46px; }
  .section h2,
  .cta-box h2 { font-size: 38px; }
  .name-ru { font-size: 14px; }
  .hero-lead { font-size: 18px; }
  .hero-actions .btn { width: 100%; }
  .metric { grid-template-columns: 1fr; gap: 4px; }
  .section { padding: 68px 0; }
  .gallery { grid-template-columns: 1fr; }
  .cta-box { padding: 24px; }
  .object-footer .container {
    display: grid;
  }
}
