@charset "UTF-8";
/* ---------- COLORS ---------- */
/* ---------- FONT FAMILIES ---------- */
/* ---------- TYPOGRAPHY ---------- */
/* ---------- CSS CUSTOM PROPERTIES (для runtime-доступа из JS/замеров) ---------- */
:root {
  --c-white: #FFFFFF;
  --c-black: #000000;
  --c-ivory: #F7F1DF;
  --c-light-gray: #FAFAF9;
  --c-gold: #B29261;
  --c-orange: #E60000;
  --ff-display: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  --ff-sans: "CaslonDoric-stand", "Figtree", system-ui, -apple-system, sans-serif;
  --ff-script: "Shelley-stand", "Imperial Script", "Great Vibes", cursive;
}

.hero {
  position: relative;
  width: 100%;
  height: 800px; /* fixed per Figma frame */
  color: #FFFFFF;
  overflow: hidden;
  /* Figma 512:20440 — raw image fill вытянут через REST API /v1/files/:key/images
     по imageRef f56596b9... (tooling/fetch-figma-rest-images.mjs). Чистое оригинальное фото
     без wordmark/nav overlay — они рендерятся HTML-ом поверх. */
  background: url("../../assets/img/sections/hero-bg.png") center/cover no-repeat, linear-gradient(180deg, #0e0b08 0%, #1a130c 45%, #0c0906 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__chrome {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hero__header {
  /* Figma "Desktop Navigation" component: 1312 × 81, inset 64px from left/right. */
  flex: 0 0 auto;
  width: 1312px;
  height: 81px;
  margin: 44px 64px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.hero__nav {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero__nav a {
  font-family: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.hero__nav a:hover {
  opacity: 0.75;
}
.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__tagline {
  font-family: "CaslonDoric-stand", "Figtree", system-ui, -apple-system, sans-serif;
  font-weight: 450;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.83em;
  text-transform: uppercase;
  margin: 0;
  color: #FFFFFF;
}
.hero__logo {
  /* Figma Logo symbol: 312×40 SVG (экспортирован через REST → assets/img/icons/wordmark.svg).
     Текст внутри H1 скрыт (для SEO/a11y), визуально рендерится SVG. */
  display: block;
  width: 312px;
  height: 40px;
  margin: 0;
  background: url("../../assets/img/icons/wordmark.svg") center/contain no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
.hero__inquire-top {
  justify-self: end;
  font-family: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid #FFFFFF;
  transition: opacity 0.2s ease;
}
.hero__inquire-top:hover {
  opacity: 0.75;
}
.hero__cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 50px;
}
.hero__cta-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.5);
}
.hero__cta-button {
  font-family: "Chiswick-stand", "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.hero__cta-button:hover {
  border-bottom-color: #FFFFFF;
}
.hero {
  /* ───── Responsive overrides (tablet & mobile) ───── */
}
@media (max-width: 1023px) {
  .hero {
    height: auto;
    min-height: 640px;
  }
  .hero__header {
    width: auto;
    height: auto;
    margin: 32px 40px 0;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
  }
  .hero__nav {
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero__logo {
    font-size: 26px;
    line-height: 1.2;
  }
  .hero__cta {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .hero {
    height: auto;
    min-height: 560px;
  }
  .hero__header {
    width: auto;
    height: auto;
    margin: 24px 20px 0;
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 16px;
  }
  .hero__nav {
    order: 2;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero__nav a {
    font-size: 12px;
  }
  .hero__brand {
    order: 1;
  }
  .hero__logo {
    font-size: 22px;
    letter-spacing: 0.02em;
  }
  .hero__tagline {
    font-size: 10px;
  }
  .hero__inquire-top {
    order: 3;
    justify-self: center;
    font-size: 12px;
  }
  .hero__cta {
    padding-bottom: 32px;
    gap: 12px;
  }
  .hero__cta-divider {
    height: 32px;
  }
  .hero__cta-button {
    font-size: 12px;
  }
}