:root {
  --bg: #070806;
  --bg-soft: #0b0c0a;
  --panel: #11120f;
  --panel-2: #171814;

  --text: #f4f1e8;
  --muted: #aaa89f;

  --gold: #caa75f;
  --gold-light: #f0d392;

  --line: rgba(230, 199, 134, 0.18);

  --max: 1200px;

  --radius: 28px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  background: var(--bg);
  width: 100%;
  min-width: 0;
}


body {

  margin: 0;

  width: 100%;

  min-width: 0;

  background: var(--bg);

  color: var(--text);

  font-family:
    "Manrope",
    sans-serif;

  line-height: 1.65;

  overflow-x: hidden;

}


main {

  display: block;

  width: 100%;

  min-width: 0;

}


img {

  display: block;

  max-width: 100%;

}


a {

  color: inherit;

  text-decoration: none;

}


button,
input,
select,
textarea {

  font: inherit;

}


/* =========================
   ЗАГОЛОВКИ
   ========================= */


h1,
h2,
h3 {

  margin: 0;

  font-family:
    "Cormorant Garamond",
    serif;

  font-weight: 600;

  line-height: 0.96;

}


h1 {

  font-size:
    clamp(
      64px,
      11vw,
      150px
    );

  letter-spacing:
    -0.045em;

}


h2 {

  font-size:
    clamp(
      44px,
      7vw,
      84px
    );

  letter-spacing:
    -0.035em;

  margin-bottom:
    24px;

}


h3 {

  font-size:
    38px;

}


p {

  margin:
    0 0 18px;

}


.eyebrow {

  margin-bottom:
    15px;

  color:
    var(--gold-light);

  text-transform:
    uppercase;

  letter-spacing:
    0.18em;

  font-size:
    12px;

  font-weight:
    600;

}


/* =========================
   КНОПКИ
   ========================= */


.button {

  display:
    inline-flex;

  justify-content:
    center;

  align-items:
    center;

  min-height:
    52px;

  padding:
    0 26px;

  border:
    1px solid transparent;

  border-radius:
    999px;

  text-transform:
    uppercase;

  letter-spacing:
    0.09em;

  font-size:
    12px;

  font-weight:
    600;

  cursor:
    pointer;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;

}


.button:hover {

  transform:
    translateY(-2px);

}


.button.gold {

  color:
    #090909;

  background:
    linear-gradient(
      135deg,
      var(--gold-light),
      var(--gold)
    );

}


.button.outline {

  border-color:
    rgba(
      213,
      169,
      82,
      0.65
    );

  color:
    var(--gold-light);

}


.button.outline:hover {

  background:
    rgba(
      213,
      169,
      82,
      0.08
    );

}


/* =========================
   ПЕРВЫЙ ЧЁРНЫЙ ЭКРАН
   ========================= */


.intro-screen {

  position:
    relative;

  width:
    100%;

  min-height:
    100vh;

  min-height:
    100svh;

  display:
    grid;

  place-items:
    center;

  overflow:
    hidden;

  background:
    #000;

}


.intro-glow {

  position:
    absolute;

  width:
    70vw;

  height:
    70vw;

  max-width:
    800px;

  max-height:
    800px;

  border-radius:
    50%;

  background:
    radial-gradient(
      circle,
      rgba(
        206,
        158,
        69,
        0.10
      ),
      rgba(
        0,
        0,
        0,
        0
      ) 65%
    );

  opacity:
    0;

  animation:
    introGlow
    2.4s
    0.4s
    ease
    forwards;

}


.intro-logo {

  position:
    relative;

  z-index:
    1;

  width:
    min(
      42vw,
      350px
    );

  opacity:
    0;

  filter:
    blur(16px);

  transform:
    scale(0.88);

  animation:
    introLogo
    2.1s
    0.25s
    cubic-bezier(
      0.2,
      0.75,
      0.2,
      1
    )
    forwards;

}


.intro-scroll {

  position:
    absolute;

  bottom:
    38px;

  left:
    50%;

  width:
    max-content;

  max-width:
    calc(100% - 32px);

  transform:
    translateX(-50%);

  display:
    flex;

  flex-direction:
    column;

  align-items:
    center;

  gap:
    12px;

  color:
    rgba(
      255,
      255,
      255,
      0.48
    );

  text-transform:
    uppercase;

  letter-spacing:
    0.2em;

  font-size:
    9px;

  text-align:
    center;

  opacity:
    0;

  animation:
    fadeUp
    1s
    1.9s
    ease
    forwards;

}


.intro-scroll i {

  width:
    1px;

  height:
    38px;

  background:
    linear-gradient(
      to bottom,
      var(--gold),
      transparent
    );

  animation:
    scrollLine
    1.7s
    infinite
    ease-in-out;

}


/* =========================
   АНИМАЦИЯ ЛОГОТИПА
   ========================= */


@keyframes introLogo {

  to {

    opacity:
      1;

    filter:
      blur(0);

    transform:
      scale(1);

  }



}


@keyframes introGlow {

  to {

    opacity:
      1;

  }

}


@keyframes fadeUp {

  from {

    opacity:
      0;

    transform:
      translate(
        -50%,
        14px
      );

  }


  to {

    opacity:
      1;

    transform:
      translate(
        -50%,
        0
      );

  }

}


@keyframes scrollLine {

  0%,
  100% {

    opacity:
      0.25;

    transform:
      scaleY(0.65);

    transform-origin:
      top;

  }


  50% {

    opacity:
      1;

    transform:
      scaleY(1);

    transform-origin:
      top;

  }

}


/* =========================
   ВЕРХНЕЕ МЕНЮ
   ========================= */


.topbar {

  position:
    sticky;

  top:
    0;

  z-index:
    50;

  width:
    100%;

  height:
    76px;

  padding:
    0
    max(
      22px,
      calc(
        (100vw - var(--max)) / 2
      )
    );

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    24px;

  background:
    rgba(
      5,
      5,
      5,
      0.74
    );

  border-bottom:
    1px solid
    rgba(
      255,
      255,
      255,
      0.06
    );

  backdrop-filter:
    blur(18px);

  -webkit-backdrop-filter:
    blur(18px);

}


.brand {

  display:
    flex;

  align-items:
    center;

  gap:
    12px;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    20px;

}


.brand img {

  width:
    42px;

  height:
    42px;

  object-fit:
    contain;

}


.topbar nav {

  display:
    flex;

  align-items:
    center;

  gap:
    27px;

}


.topbar nav a {

  color:
    #d7d2ca;

  font-size:
    13px;

}


.nav-cta {

  padding:
    10px 18px;

  border:
    1px solid
    var(--line);

  border-radius:
    999px;

  color:
    var(--gold-light)
    !important;

}


.menu {

  display:
    none;

  border:
    0;

  background:
    transparent;

  color:
    #fff;

  font-size:
    26px;

}


/* =========================
   БОЛЬШАЯ ФОТОГРАФИЯ
   ========================= */


.hero {

  position:
    relative;

  width:
    100%;

  min-height:
    100vh;

  min-height:
    100svh;

  display:
    flex;

  align-items:
    flex-end;

  overflow:
    hidden;

  isolation:
    isolate;

}


.hero-bg {

  position:
    absolute;

  inset:
    0;

  z-index:
    0;

  background:
    url(
      "assets/river-sunset.jpg"
    )
    center 56%
    /
    cover
    no-repeat;

  transform:
    scale(1.08);

  transition:
    transform
    1.5s
    ease;

}


.hero.is-visible
.hero-bg {

  transform:
    scale(1);

}


.hero-shade {

  position:
    absolute;

  inset:
    0;

  z-index:
    1;

  pointer-events:
    none;

  background:

    linear-gradient(
      to top,
      rgba(
        0,
        0,
        0,
        0.94
      )
      0%,

      rgba(
        0,
        0,
        0,
        0.30
      )
      58%,

      rgba(
        0,
        0,
        0,
        0.55
      )
      100%
    ),

    radial-gradient(
      circle at 60% 35%,
      transparent
      0%,

      rgba(
        0,
        0,
        0,
        0.25
      )
      58%,

      rgba(
        0,
        0,
        0,
        0.75
      )
      100%
    );

}


.hero-content {

  position:
    relative;

  z-index:
    2;

  width:
    min(
      var(--max),
      calc(
        100% - 44px
      )
    );

  margin:
    0 auto;

  padding:
    120px 0 90px;

  text-align:
    left;

}


.hero-logo {

  width:
    150px;

  margin-bottom:
    28px;

  filter:
    drop-shadow(
      0
      18px
      40px
      rgba(
        0,
        0,
        0,
        0.45
      )
    );

}


.lead {

  max-width:
    650px;

  margin:
    24px 0 34px;

  color:
    #dedad2;

  font-size:
    clamp(
      17px,
      2vw,
      22px
    );

}


/* =========================
   ОСНОВНЫЕ СЕКЦИИ
   ========================= */


.section {

  width:
    min(
      var(--max),
      calc(
        100% - 44px
      )
    );

  margin:
    0 auto;

  padding:
    120px 0;

}


.section-lead,
.intro > p:not(.eyebrow) {

  max-width:
    800px;

  color:
    #bdb8af;

  font-size:
    18px;

}


.dark {

  width:
    100%;

  max-width:
    none;

  padding-left:
    max(
      22px,
      calc(
        (100vw - var(--max)) / 2
      )
    );

  padding-right:
    max(
      22px,
      calc(
        (100vw - var(--max)) / 2
      )
    );

  background:
    #080808;

}


/* =========================
   ЦИФРЫ
   ========================= */


.facts {

  margin-top:
    55px;

  display:
    grid;

  grid-template-columns:
    repeat(
      4,
      1fr
    );

  border-top:
    1px solid
    var(--line);

  border-bottom:
    1px solid
    var(--line);

}


.facts span {

  padding:
    26px 20px;

  display:
    flex;

  flex-direction:
    column;

  color:
    var(--muted);

  border-right:
    1px solid
    var(--line);

  font-size:
    13px;

}


.facts span:last-child {

  border-right:
    0;

}


.facts b {

  color:
    var(--gold-light);

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    30px;

  font-weight:
    600;

}


/* =========================
   КАРТОЧКИ ДОМИКОВ
   ========================= */


.cards {

  margin-top:
    48px;

  display:
    grid;

  grid-template-columns:
    repeat(
      3,
      1fr
    );

  gap:
    20px;

}


.house-card {

  overflow:
    hidden;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.08
    );

  border-radius:
    var(--radius);

  background:
    linear-gradient(
      180deg,
      #141414,
      #0d0d0d
    );

  box-shadow:
    0
    30px
    70px
    rgba(
      0,
      0,
      0,
      0.22
    );

}


.card-photo {

  aspect-ratio:
    4 / 3;

  overflow:
    hidden;

}


.card-photo img {

  width:
    100%;

  height:
    100%;

  object-fit:
    cover;

  transition:
    transform
    0.8s
    cubic-bezier(
      0.2,
      0.75,
      0.2,
      1
    );

}


.house-card:hover
.card-photo img {

  transform:
    scale(1.035);

}


.card-body {

  padding:
    28px;

}


.card-body p,
.card-body li {

  color:
    #aaa59c;

}


.card-body ul {

  padding:
    0;

  margin:
    23px 0;

  list-style:
    none;

}


.card-body li {

  padding:
    7px 0;

  border-bottom:
    1px solid
    rgba(
      255,
      255,
      255,
      0.055
    );

  font-size:
    13px;

}


.symbol {

  color:
    var(--gold);

  font-size:
    24px;

}


.price {

  margin:
    24px 0 20px;

  color:
    var(--gold-light);

  font-size:
    25px;

  font-family:
    "Cormorant Garamond",
    serif;

}


.price small {

  color:
    #888;

  font-family:
    "Manrope",
    sans-serif;

  font-size:
    11px;

}


.photo-note {

  margin-top:
    25px;

  color:
    #706d67;

  font-size:
    12px;

}


/* =========================
   ВНУТРИ ДОМИКА
   ========================= */


.split {

  display:
    grid;

  grid-template-columns:
    1fr 1fr;

  gap:
    70px;

  align-items:
    center;

}


.split > img {

  width:
    100%;

  min-height:
    530px;

  object-fit:
    cover;

  border-radius:
    var(--radius);

}


.amenities {

  display:
    flex;

  flex-wrap:
    wrap;

  gap:
    9px;

  margin-top:
    30px;

}


.amenities span {

  padding:
    10px 13px;

  color:
    #c6c1b8;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.09
    );

  border-radius:
    999px;

  font-size:
    12px;

}


/* =========================
   ОТДЫХ
   ========================= */


.rest {

  width:
    100%;

  max-width:
    none;

  padding-left:
    max(
      22px,
      calc(
        (100vw - var(--max)) / 2
      )
    );

  padding-right:
    max(
      22px,
      calc(
        (100vw - var(--max)) / 2
      )
    );

  background:
    #0a0a0a;

}


.feature-grid {

  display:
    grid;

  grid-template-columns:
    repeat(
      2,
      1fr
    );

  gap:
    20px;

  margin-top:
    48px;

}


.feature-grid article {

  padding-bottom:
    24px;

}


.feature-grid img,
.placeholder {

  width:
    100%;

  aspect-ratio:
    16 / 9;

  object-fit:
    cover;

  margin-bottom:
    20px;

  border-radius:
    var(--radius);

}


.placeholder {

  display:
    grid;

  place-items:
    center;

  background:

    radial-gradient(
      circle at 50% 20%,
      rgba(
        213,
        169,
        82,
        0.13
      ),
      transparent
      45%
    ),

    linear-gradient(
      145deg,
      #181818,
      #0d0d0d
    );

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.06
    );

  color:
    rgba(
      213,
      169,
      82,
      0.42
    );

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    54px;

  letter-spacing:
    0.15em;

}


.feature-grid h3 {

  font-size:
    34px;

}


.feature-grid p {

  color:
    #99948c;

}


/* =========================
   О МЕСТЕ
   ========================= */


.story {

  text-align:
    center;

  max-width:
    900px;

}


.story p:not(.eyebrow) {

  color:
    #aaa59c;

  font-size:
    18px;

}


/* =========================
   БРОНИРОВАНИЕ
   ========================= */


#booking {

  scroll-margin-top:
    96px;

}


.booking {

  display:
    grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap:
    75px;

  align-items:
    start;

}


.booking-copy {

  position:
    sticky;

  top:
    120px;

}


.booking-copy p {

  color:
    #aaa59c;

}


.booking-counter {

  display:
    inline-grid;

  gap:
    5px;

  min-width:
    min(100%, 285px);

  margin-top:
    22px;

  padding:
    20px 22px;

  overflow:
    hidden;

  border:
    1px solid rgba(202, 167, 95, 0.2);

  border-radius:
    20px;

  background:
    linear-gradient(
      145deg,
      rgba(202, 167, 95, 0.1),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035);

}


.booking-counter-label,
.booking-counter-note {

  color:
    #918d84;

  font-size:
    12px;

  line-height:
    1.45;

}


.booking-counter-label {

  color:
    #c9c4ba;

  font-weight:
    600;

  letter-spacing:
    0.09em;

  text-transform:
    uppercase;

}


.booking-counter strong {

  color:
    var(--gold-light);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(38px, 5vw, 52px);

  font-weight:
    400;

  font-variant-numeric:
    tabular-nums;

  letter-spacing:
    -0.035em;

  line-height:
    1;

  transition:
    transform 0.25s ease,
    color 0.25s ease;

}


.booking-counter.is-updated strong {

  color:
    #fff1bd;

  transform:
    translateY(-2px) scale(1.025);

}


/* Золотая гравировка, которая покрывается медной патиной. */
.oxidation-ornament {

  position:
    fixed;

  z-index:
    1200;

  width:
    118px;

  height:
    118px;

  color:
    #e4bd63;

  pointer-events:
    none;

  transform-origin:
    center;

  animation:
    oxidation-bloom 1.15s cubic-bezier(0.2, 0.72, 0.2, 1) forwards;

}


.oxidation-ornament svg {

  width:
    100%;

  height:
    100%;

  overflow:
    visible;

  filter:
    drop-shadow(0 0 8px currentColor);

  transform:
    rotate(-10deg);

  animation:
    oxidation-turn 1.15s ease-out forwards;

}


.oxidation-ring,
.oxidation-leaf,
.oxidation-curl {

  fill:
    none;

  stroke:
    currentColor;

  stroke-linecap:
    round;

  stroke-linejoin:
    round;

  vector-effect:
    non-scaling-stroke;

}


.oxidation-ring {

  stroke-width:
    0.9;

  stroke-dasharray:
    5 5;

}


.oxidation-ring-inner {

  stroke-dasharray:
    2 4;

}


.oxidation-leaf {

  stroke-width:
    1.15;

}


.oxidation-leaf path:first-child {

  fill:
    currentColor;

  fill-opacity:
    0.1;

}


.oxidation-curl {

  stroke-width:
    1.25;

  stroke-dasharray:
    42;

  stroke-dashoffset:
    42;

  animation:
    oxidation-carve 0.75s 0.08s ease-out forwards;

}


.oxidation-core {

  fill:
    currentColor;

}


@keyframes oxidation-bloom {

  0% {
    opacity: 0;
    color: #e8c56f;
    transform: translate(-50%, -50%) scale(0.28);
  }

  28% {
    opacity: 0.92;
    color: #edcf7c;
  }

  62% {
    opacity: 0.82;
    color: #a4a263;
  }

  82% {
    opacity: 0.58;
    color: #4e8b76;
  }

  100% {
    opacity: 0;
    color: #2f7467;
    transform: translate(-50%, -50%) scale(1.18);
  }

}


@keyframes oxidation-turn {

  from {
    transform: rotate(-12deg);
  }

  to {
    transform: rotate(7deg);
  }

}


@keyframes oxidation-carve {

  to {
    stroke-dashoffset: 0;
  }

}


.booking form {

  padding:
    32px;

  border-radius:
    var(--radius);

  background:
    linear-gradient(
      180deg,
      #141414,
      #0d0d0d
    );

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.08
    );

}


label {

  display:
    block;

  margin-bottom:
    16px;

  color:
    #c2bdb5;

  font-size:
    12px;

}


input,
select,
textarea {

  width:
    100%;

  margin-top:
    8px;

  padding:
    14px 15px;

  color:
    #fff;

  background:
    #080808;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.12
    );

  border-radius:
    12px;

  outline:
    none;

}


input:focus,
select:focus,
textarea:focus {

  border-color:
    rgba(
      213,
      169,
      82,
      0.75
    );

  box-shadow:
    0
    0
    0
    3px
    rgba(
      213,
      169,
      82,
      0.08
    );

}


.form-row {

  display:
    grid;

  grid-template-columns:
    1fr 1fr;

  gap:
    14px;

}


.total {

  display:
    grid;

  grid-template-columns:
    1fr auto;

  align-items:
    end;

  margin:
    23px 0;

  padding:
    19px 0;

  border-top:
    1px solid
    var(--line);

  border-bottom:
    1px solid
    var(--line);

}


.total span {

  color:
    #aaa59c;

}


.total strong {

  color:
    var(--gold-light);

  font-size:
    27px;

}


.total small {

  grid-column:
    2;

  color:
    #777;

  text-align:
    right;

}


.booking .button {

  width:
    100%;

}


.status {

  min-height:
    20px;

  margin:
    16px 0 0;

  color:
    #c7c2b8;

  font-size:
    13px;

}


.status a {

  color:
    var(--gold-light);

}


/* =========================
   КОНТАКТЫ
   ========================= */


.contacts {

  text-align:
    center;

}


.phone {

  display:
    inline-block;

  margin:
    15px 0;

  color:
    var(--gold-light);

  font-family:
    "Cormorant Garamond",
    serif;

  font-size:
    clamp(
      32px,
      5vw,
      58px
    );

}


.muted {

  color:
    #777;

}


/* =========================
   ПОДВАЛ
   ========================= */


footer {

  width:
    min(
      var(--max),
      calc(
        100% - 44px
      )
    );

  margin:
    0 auto;

  padding:
    35px 0 55px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  border-top:
    1px solid
    rgba(
      255,
      255,
      255,
      0.08
    );

  color:
    #777;

}


/* =========================
   ПОЯВЛЕНИЕ ИЗ ТЕМНОТЫ
   ========================= */


.js .reveal {

  opacity:
    0;

  transform:
    translateY(34px);

  filter:
    blur(8px);

  transition:

    opacity
    1s
    cubic-bezier(
      0.2,
      0.75,
      0.2,
      1
    ),

    transform
    1s
    cubic-bezier(
      0.2,
      0.75,
      0.2,
      1
    ),

    filter
    1s
    cubic-bezier(
      0.2,
      0.75,
      0.2,
      1
    );

}


.js .reveal.is-visible {

  opacity:
    1;

  transform:
    translateY(0);

  filter:
    blur(0);

}


/* =========================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================= */


@media
(max-width: 900px) {


  .topbar nav {

    position:
      absolute;

    top:
      76px;

    left:
      0;

    right:
      0;

    padding:
      22px;

    display:
      none;

    flex-direction:
      column;

    align-items:
      stretch;

    background:
      rgba(
        5,
        5,
        5,
        0.97
      );

    border-bottom:
      1px solid
      rgba(
        255,
        255,
        255,
        0.08
      );

  }


  .topbar nav.open {

    display:
      flex;

  }


  .menu {

    display:
      block;

  }


  .hero-content {

    padding-bottom:
      70px;

  }


  .facts {

    grid-template-columns:
      1fr 1fr;

  }


  .facts span:nth-child(2) {

    border-right:
      0;

  }


  .facts span:nth-child(-n+2) {

    border-bottom:
      1px solid
      var(--line);

  }


  .cards {

    grid-template-columns:
      1fr;

  }


  .split,
  .booking {

    grid-template-columns:
      1fr;

    gap:
      40px;

  }


  .split > img {

    min-height:
      0;

  }


  .booking-copy {

    position:
      static;

  }


  .feature-grid {

    grid-template-columns:
      1fr;

  }

}


/* =========================
   ТЕЛЕФОН
   ========================= */


@media
(max-width: 600px) {


  .section {

    width:
      min(
        calc(
          100% - 30px
        ),
        var(--max)
      );

    padding:
      82px 0;

  }


  .dark,
  .rest {

    padding-left:
      15px;

    padding-right:
      15px;

  }


  .intro-logo {

    width:
      min(
        58vw,
        270px
      );

  }


  .hero-content {

    width:
      calc(
        100% - 30px
      );

  }


  .hero-logo {

    width:
      112px;

  }


  h1 {

    font-size:
      clamp(
        52px,
        16vw,
        72px
      );

  }


  h2 {

    font-size:
      clamp(
        38px,
        12vw,
        48px
      );

  }


  .facts {

    grid-template-columns:
      1fr 1fr;

  }


  .facts span {

    padding:
      20px 12px;

  }


  .card-body {

    padding:
      24px 20px;

  }


  .form-row {

    grid-template-columns:
      1fr;

    gap:
      0;

  }


  .booking form {

    padding:
      22px 18px;

  }


  footer {

    width:
      calc(
        100% - 30px
      );

    gap:
      20px;

    flex-wrap:
      wrap;

  }

}


/* =========================
   ВАШИ ЗАЯВКИ
   ========================= */


.nav-current {

  color:
    var(--gold-light)
    !important;

}


.requests-page {

  min-height:
    100vh;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(213, 169, 82, 0.08),
      transparent 34%
    ),
    var(--bg);

}


.requests-main {

  min-height:
    calc(100vh - 76px);

}


.requests-section {

  padding-top:
    clamp(72px, 10vw, 128px);

}


.requests-heading {

  max-width:
    820px;

}


.requests-page h1 {

  margin-bottom:
    26px;

  font-size:
    clamp(56px, 10vw, 108px);

}


.requests-lead {

  max-width:
    720px;

  color:
    #bdb8af;

  font-size:
    clamp(16px, 2vw, 20px);

}


.requests-list {

  display:
    grid;

  gap:
    20px;

  margin-top:
    48px;

}


.request-card,
.requests-empty {

  padding:
    clamp(24px, 4vw, 40px);

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  border-radius:
    var(--radius);

  background:
    linear-gradient(
      145deg,
      rgba(22, 22, 22, 0.98),
      rgba(11, 11, 11, 0.98)
    );

  box-shadow:
    0 30px 70px
    rgba(0, 0, 0, 0.22);

}


.request-card-head {

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    20px;

  margin-bottom:
    24px;

}


.request-card-head time {

  color:
    #77736c;

  font-size:
    12px;

}


.request-status {

  display:
    inline-flex;

  align-items:
    center;

  gap:
    9px;

  color:
    var(--gold-light);

  text-transform:
    uppercase;

  letter-spacing:
    0.12em;

  font-size:
    11px;

}


.request-status-dot {

  width:
    8px;

  height:
    8px;

  border-radius:
    50%;

  background:
    var(--gold);

  box-shadow:
    0 0 18px
    rgba(213, 169, 82, 0.78);

}


.request-card h2,
.requests-empty h2 {

  margin-bottom:
    24px;

  font-size:
    clamp(38px, 6vw, 58px);

}


.request-details {

  display:
    grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap:
    10px;

  margin:
    0;

}


.request-details div {

  min-width:
    0;

  padding:
    16px;

  border:
    1px solid
    rgba(255, 255, 255, 0.06);

  border-radius:
    14px;

  background:
    rgba(255, 255, 255, 0.025);

}


.request-details dt {

  margin-bottom:
    7px;

  color:
    #77736c;

  text-transform:
    uppercase;

  letter-spacing:
    0.1em;

  font-size:
    10px;

}


.request-details dd {

  margin:
    0;

  color:
    #e7e1d7;

  font-size:
    14px;

  overflow-wrap:
    anywhere;

}


.request-note {

  margin:
    24px 0 0;

  padding-top:
    22px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.07);

  color:
    #bdb8af;

}


.requests-empty {

  text-align:
    center;

}


.requests-empty p {

  max-width:
    560px;

  margin:
    0 auto 28px;

  color:
    #aaa59c;

}


.requests-noscript {

  margin-top:
    28px;

  color:
    #aaa59c;

}


@media
(max-width: 900px) {

  .request-details {

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

  }

}


@media
(max-width: 600px) {

  .requests-section {

    padding-top:
      64px;

  }


  .requests-list {

    margin-top:
      34px;

  }


  .request-card-head {

    align-items:
      flex-start;

    flex-direction:
      column;

    gap:
      8px;

  }


  .request-details {

    grid-template-columns:
      1fr;

  }

}


/* =========================
   ЕСЛИ АНИМАЦИИ ОТКЛЮЧЕНЫ
   ========================= */


@media
(prefers-reduced-motion: reduce) {


  html {

    scroll-behavior:
      auto;

  }


  .intro-logo {
    opacity: 0;
    filter: none;
    transform: none;
    animation: introReducedFade 0.55s 0.1s ease-out forwards !important;
  }

  .intro-glow {
    opacity: 0;
    transform: none;
    animation: introReducedFade 0.65s 0.1s ease-out forwards !important;
  }

  .intro-scroll {
    opacity: 0;
    filter: none;
    transform: translateX(-50%);
    animation: introReducedScroll 0.45s 0.5s ease-out forwards !important;
  }

  .intro-scroll i {
    animation: none;
  }

  .js .reveal {
    opacity: 0;
    transform: none;
    filter: none;
    transition: opacity 0.45s ease;
  }

  .js .reveal.is-visible {
    opacity: 1;
  }

  }

@keyframes introReducedFade {
  to {
    opacity: 1;
  }
}

@keyframes introReducedScroll {
  to {
    opacity: 1;
    transform: translateX(-50%);
  }
}

/* =========================
   СОВРЕМЕННОЕ ОБНОВЛЕНИЕ
   ========================= */


::selection {
  color: #080806;
  background: var(--gold-light);
}


body {
  background:
    radial-gradient(
      circle at 10% 18%,
      rgba(202, 167, 95, 0.055),
      transparent 24rem
    ),
    radial-gradient(
      circle at 92% 68%,
      rgba(93, 113, 76, 0.07),
      transparent 30rem
    ),
    var(--bg);
}


.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: #090a07;
  background: var(--gold-light);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}


.skip-link:focus {
  transform: translateY(0);
}


:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}


.topbar {
  top: 12px;
  width: min(calc(100% - 24px), calc(var(--max) + 48px));
  height: 68px;
  margin: 12px auto 0;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(9, 10, 8, 0.76);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}


.topbar .brand {
  gap: 10px;
  white-space: nowrap;
}


.topbar .brand img {
  width: 38px;
  height: 38px;
}


.topbar .brand span {
  font-size: 19px;
  letter-spacing: 0.01em;
}


.topbar nav {
  gap: 3px;
}


.topbar nav a {
  padding: 9px 11px;
  border-radius: 999px;
  color: #c7c5bd;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}


.topbar nav a:hover {
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.055);
}


.topbar .nav-cta {
  margin-left: 5px;
  padding-inline: 17px;
  border-color: rgba(240, 211, 146, 0.34);
  background: rgba(202, 167, 95, 0.08);
}


.hero {
  width: min(calc(100% - 24px), 1500px);
  min-height: calc(100svh - 104px);
  margin: 12px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 34px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}


.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(4, 5, 4, 0.9) 0%,
      rgba(4, 5, 4, 0.52) 45%,
      rgba(4, 5, 4, 0.12) 74%
    ),
    linear-gradient(
      to top,
      rgba(2, 3, 2, 0.82) 0%,
      transparent 62%
    );
}


.hero-content {
  width: min(calc(100% - 64px), var(--max));
  padding: 110px 0 72px;
}


.hero-logo {
  width: 124px;
  margin-bottom: 24px;
}


.hero h1 {
  max-width: 820px;
  text-wrap: balance;
}


.lead {
  max-width: 540px;
  color: rgba(244, 241, 232, 0.82);
  text-wrap: balance;
}


.button {
  min-height: 54px;
  padding-inline: 27px;
  border-radius: 16px;
  letter-spacing: 0.075em;
  box-shadow: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}


.button:hover {
  transform: translateY(-2px);
}


.button.gold {
  background:
    linear-gradient(135deg, #f4dda6, #c29b50);
  box-shadow: 0 14px 34px rgba(194, 155, 80, 0.16);
}


.button.gold:hover {
  box-shadow: 0 18px 42px rgba(194, 155, 80, 0.24);
}


.section {
  padding: 136px 0;
}


.intro.section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  column-gap: clamp(44px, 8vw, 110px);
  align-items: end;
}


.intro.section .eyebrow,
.intro.section h2 {
  grid-column: 1;
}


.intro.section .section-lead {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin-bottom: 26px;
}


.intro.section .facts {
  grid-column: 1 / -1;
}


.facts {
  gap: 10px;
  border: 0;
}


.facts span {
  min-height: 116px;
  justify-content: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012));
}


.facts span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.065);
}


.facts b {
  margin-bottom: 2px;
  font-size: 34px;
}


.dark,
.rest {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background:
    radial-gradient(circle at 82% 8%, rgba(202, 167, 95, 0.06), transparent 28rem),
    #090a08;
}


.cards {
  gap: 16px;
}


.house-card {
  position: relative;
  border-color: rgba(255, 255, 255, 0.075);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(25, 27, 22, 0.98), rgba(12, 13, 11, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.house-card:hover {
  border-color: rgba(240, 211, 146, 0.22);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}


.card-photo {
  margin: 10px 10px 0;
  aspect-ratio: 5 / 4;
  border-radius: 21px;
}


.card-body {
  padding: 28px 30px 30px;
}


.card-body h3 {
  margin-top: 4px;
  font-size: clamp(38px, 4vw, 48px);
}


.card-body li {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom-color: rgba(255, 255, 255, 0.045);
}


.card-body li::before {
  content: "";
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}


.split.section {
  width: min(calc(100% - 24px), calc(var(--max) + 84px));
  margin-block: 72px;
  padding: 18px 18px 18px clamp(34px, 6vw, 78px);
  gap: clamp(38px, 7vw, 90px);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(23, 25, 20, 0.94), rgba(10, 11, 9, 0.96));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.22);
}


.split > div {
  padding-block: 34px;
}


.split > img {
  min-height: 600px;
  border-radius: 27px;
}


.amenities {
  gap: 7px;
}


.amenities span {
  border-color: rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.025);
}


.feature-grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  grid-template-rows: repeat(3, auto);
  gap: 0 clamp(36px, 7vw, 96px);
  align-items: stretch;
}


.feature-grid article {
  padding-bottom: 0;
}


.feature-grid article:first-child {
  grid-row: 1 / 4;
  padding: 12px 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.025);
}


.feature-grid article:first-child h3,
.feature-grid article:first-child p {
  margin-inline: 18px;
}


.feature-grid article:not(:first-child) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 176px;
  padding: 26px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.feature-grid article:not(:first-child) .placeholder {
  display: none;
}


.feature-grid img {
  aspect-ratio: 4 / 3;
  margin-bottom: 26px;
  border-radius: 21px;
}


.feature-grid h3 {
  margin-bottom: 9px;
  font-size: clamp(32px, 4vw, 42px);
}


.feature-grid p {
  max-width: 540px;
  margin-bottom: 0;
}


.photo-story {
  width: min(calc(100% - 24px), calc(var(--max) + 84px));
  padding-block: 132px;
}


.photo-story-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: clamp(36px, 8vw, 112px);
  margin-bottom: 42px;
}


.photo-story-heading h2,
.photo-story-heading p {
  margin-bottom: 0;
}


.photo-story-heading > p {
  color: #aaa59c;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.75;
}


.photo-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}


.photo-story-grid figure {
  position: relative;
  height: clamp(360px, 38vw, 520px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 26px;
  background: #10110e;
}


.photo-story-grid .photo-story-wide {
  grid-column: 1 / -1;
  height: clamp(380px, 48vw, 650px);
}


.photo-story-grid figure::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(2, 3, 2, 0.82), transparent);
}


.photo-story-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}


.photo-story-grid .photo-story-wide img {
  object-position: center 54%;
}


.photo-story-grid figure:nth-child(2) img {
  object-position: center 42%;
}


.photo-story-grid figure:hover img {
  transform: scale(1.025);
}


.photo-story-grid figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: rgba(244, 241, 232, 0.9);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.story {
  max-width: 980px;
  padding-block: 150px;
}


.story::before {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin: 0 auto 34px;
  background: var(--gold);
}


.booking.section {
  width: min(calc(100% - 24px), calc(var(--max) + 84px));
  margin-block: 72px;
  padding: clamp(28px, 5vw, 68px);
  gap: clamp(42px, 7vw, 90px);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(202, 167, 95, 0.08), transparent 22rem),
    linear-gradient(145deg, rgba(22, 24, 19, 0.97), rgba(9, 10, 8, 0.98));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.24);
}


.booking form {
  padding: clamp(22px, 4vw, 38px);
  border-color: rgba(255, 255, 255, 0.075);
  border-radius: 27px;
  background: rgba(5, 6, 5, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}


input,
select,
textarea {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(5, 6, 5, 0.76);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}


textarea {
  min-height: 104px;
  resize: vertical;
}


input:hover,
select:hover,
textarea:hover {
  border-color: rgba(255, 255, 255, 0.18);
}


.total {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.024);
}


.contacts {
  width: min(calc(100% - 24px), var(--max));
  margin-block: 72px;
  padding: clamp(74px, 10vw, 128px) 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(202, 167, 95, 0.09), transparent 28rem),
    rgba(255, 255, 255, 0.018);
}


.phone {
  transition: color 0.2s ease;
}


.phone:hover {
  color: #fff0c7;
}


footer {
  padding-top: 28px;
}


.requests-page {
  background:
    radial-gradient(circle at 20% 4%, rgba(202, 167, 95, 0.08), transparent 26rem),
    var(--bg);
}


.requests-section {
  padding-top: clamp(92px, 12vw, 150px);
}


.request-card,
.requests-empty {
  border-color: rgba(255, 255, 255, 0.075);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(23, 25, 20, 0.96), rgba(10, 11, 9, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}


.request-details div {
  border-color: rgba(255, 255, 255, 0.065);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.022);
}


@media (max-width: 900px) {
  .topbar {
    top: 8px;
    width: calc(100% - 16px);
    height: 64px;
    margin-top: 8px;
    padding-inline: 14px;
    border-radius: 18px;
  }

  .topbar nav {
    position: fixed;
    top: 80px;
    left: 8px;
    right: 8px;
    padding: 10px;
    gap: 3px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    background: rgba(9, 10, 8, 0.96);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .topbar nav a {
    padding: 12px 14px;
  }

  .topbar .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

  .hero {
    width: calc(100% - 16px);
    min-height: calc(100svh - 88px);
    margin-top: 8px;
    border-radius: 26px;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 100px 0 48px;
  }

  .hero-shade {
    background:
      linear-gradient(
        to top,
        rgba(2, 3, 2, 0.92) 0%,
        rgba(2, 3, 2, 0.42) 58%,
        rgba(2, 3, 2, 0.2) 100%
      );
  }

  .intro.section {
    grid-template-columns: 1fr;
  }

  .intro.section .eyebrow,
  .intro.section h2,
  .intro.section .section-lead,
  .intro.section .facts {
    grid-column: 1;
    grid-row: auto;
  }

  .intro.section .section-lead {
    margin-top: 4px;
  }

  .facts span:nth-child(2),
  .facts span:nth-child(-n+2) {
    border: 1px solid rgba(255, 255, 255, 0.065);
  }

  .split.section,
  .booking.section {
    width: calc(100% - 16px);
    margin-block: 50px;
    padding: 22px;
    border-radius: 30px;
  }

  .split > div {
    padding: 22px 8px 0;
  }

  .split > img {
    min-height: 0;
    max-height: 680px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .feature-grid article:first-child {
    grid-row: auto;
    margin-bottom: 12px;
  }

  .feature-grid article:not(:first-child) {
    min-height: 0;
    padding: 24px 4px;
  }

  .photo-story-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


@media (max-width: 600px) {
  .topbar .brand img {
    width: 35px;
    height: 35px;
  }

  .topbar .brand span {
    font-size: 17px;
  }

  .menu {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    font-size: 23px;
  }

  .intro-screen {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .intro-logo {
    width: min(54vw, 238px);
  }

  .hero {
    min-height: 82svh;
  }

  .hero-logo {
    width: 92px;
  }

  .section {
    width: calc(100% - 32px);
    padding-block: 92px;
  }

  .dark,
  .rest {
    padding-inline: 16px;
  }

  .facts {
    gap: 8px;
  }

  .facts span {
    min-height: 100px;
    padding: 16px;
    border-radius: 17px;
  }

  .cards {
    gap: 14px;
  }

  .house-card,
  .feature-grid article:first-child,
  .request-card,
  .requests-empty {
    border-radius: 24px;
  }

  .card-photo,
  .feature-grid img {
    border-radius: 17px;
  }

  .card-body {
    padding: 24px 22px 26px;
  }

  .story {
    padding-block: 105px;
  }

  .photo-story {
    width: calc(100% - 16px);
    padding-block: 92px;
  }

  .photo-story-heading {
    padding-inline: 8px;
  }

  .photo-story-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .photo-story-grid .photo-story-wide {
    grid-column: auto;
    height: 330px;
  }

  .photo-story-grid figure {
    height: 430px;
    border-radius: 22px;
  }

  .photo-story-grid figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .booking.section {
    padding: 18px;
  }

  .booking form {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .booking-counter {
    width: 100%;
  }

  .contacts {
    width: calc(100% - 16px);
    margin-block: 48px;
    padding: 82px 18px;
    border-radius: 30px;
  }

  .request-details {
    gap: 8px;
  }
}

/* КОНЕЦ СОВРЕМЕННОГО ОБНОВЛЕНИЯ */


/* =========================
   КАТАЛОГ И СТРАНИЦЫ ДОМИКОВ
   ========================= */

[hidden] {
  display: none !important;
}

.form-privacy-note {
  margin: -3px 0 20px;
  color: #77766f;
  font-size: 11px;
  line-height: 1.55;
}

.home-houses-lead {
  max-width: 720px;
  color: #aaa59c;
}

.subpage-main {
  min-height: 75vh;
}

.houses-page,
.house-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(202, 167, 95, 0.075), transparent 30rem),
    radial-gradient(circle at 92% 65%, rgba(52, 114, 91, 0.055), transparent 34rem),
    var(--bg);
}

.catalog-hero {
  max-width: 920px;
  padding-top: clamp(78px, 10vw, 138px);
  padding-bottom: 54px;
  text-align: center;
}

.catalog-hero h1,
.house-detail-heading h1 {
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(70px, 13vw, 146px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.catalog-lead {
  max-width: 720px;
  margin: 0 auto;
  color: #b8b3aa;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
  text-wrap: balance;
}

.houses-catalog {
  width: min(calc(100% - 24px), calc(var(--max) + 84px));
  padding: 0 0 92px;
}

.houses-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.house-catalog-card {
  display: block;
  overflow: hidden;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(24, 26, 21, 0.98), rgba(9, 10, 8, 0.98));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.house-catalog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(240, 211, 146, 0.25);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}

.house-catalog-photo {
  position: relative;
  margin: 10px 10px 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 21px;
}

.house-catalog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.5s ease;
}

.house-catalog-photo-oksky img {
  object-position: 43% center;
}

.house-catalog-photo-elovy img {
  object-position: 70% center;
}

.house-catalog-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.house-catalog-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 5, 4, 0.58), transparent 52%);
}

.house-catalog-symbol {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 16px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(240, 211, 146, 0.34);
  border-radius: 50%;
  background: rgba(7, 8, 6, 0.56);
  backdrop-filter: blur(12px);
}

.house-catalog-copy {
  padding: 28px 30px 32px;
}

.house-catalog-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(42px, 5vw, 56px);
}

.house-catalog-copy > p:not(.eyebrow) {
  min-height: 48px;
  color: #aaa59c;
}

.catalog-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 18px;
  color: var(--gold-light);
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-booking,
.house-detail-booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: min(calc(100% - 24px), var(--max));
  margin-bottom: 72px;
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 0%, rgba(202, 167, 95, 0.1), transparent 22rem),
    rgba(255, 255, 255, 0.022);
}

.catalog-booking > div,
.house-detail-booking > div {
  max-width: 720px;
}

.catalog-booking h2,
.house-detail-booking h2 {
  margin-bottom: 12px;
  font-size: clamp(44px, 7vw, 72px);
}

.catalog-booking p:last-child,
.house-detail-booking p:last-child {
  margin-bottom: 0;
  color: #aaa59c;
}

.house-detail-hero {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 24px), 1500px);
  min-height: min(760px, 82svh);
  margin: 12px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 34px;
  background: #111;
}

.house-detail-hero > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.house-page-oksky .house-detail-hero > img {
  object-position: 43% center;
}

.house-page-elovy .house-detail-hero > img {
  object-position: 70% center;
}

.house-detail-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 4, 3, 0.88) 0%, rgba(3, 4, 3, 0.4) 50%, transparent 80%),
    linear-gradient(to top, rgba(3, 4, 3, 0.86), transparent 64%);
}

.house-detail-heading {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 7vw, 112px);
  right: 28px;
  bottom: clamp(42px, 8vw, 104px);
  max-width: 900px;
}

.house-detail-heading > p:last-child {
  margin-bottom: 0;
  color: rgba(244, 241, 232, 0.82);
  font-size: clamp(17px, 2.2vw, 24px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: rgba(244, 241, 232, 0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.house-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
}

.house-detail-intro h2 {
  margin-bottom: 0;
}

.house-detail-intro > p {
  margin-bottom: 14px;
  color: #b6b2aa;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.house-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
  width: min(calc(100% - 24px), calc(var(--max) + 84px));
  padding: 18px clamp(28px, 6vw, 76px) 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(23, 25, 20, 0.94), rgba(10, 11, 9, 0.96));
}

.house-detail-layout > img {
  width: 100%;
  min-height: 610px;
  object-fit: cover;
  border-radius: 27px;
}

.house-detail-layout p:not(.eyebrow) {
  color: #aaa59c;
}

.house-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 32px 0 0;
}

.house-facts div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.022);
}

.house-facts dt {
  margin-bottom: 7px;
  color: #77766f;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.house-facts dd {
  margin: 0;
  color: #e8e2d7;
  font-size: 14px;
}

.house-equipment {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(38px, 8vw, 112px);
  align-items: start;
}

.house-equipment h2 {
  margin-bottom: 0;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.equipment-grid li {
  position: relative;
  padding: 18px 18px 18px 42px;
  color: #cbc7bd;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
}

.equipment-grid li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.house-mini-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 12px;
  width: min(calc(100% - 24px), calc(var(--max) + 84px));
  padding-block: 40px 120px;
}

.house-mini-gallery figure {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
}

.house-mini-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.house-detail-booking {
  margin-top: 0;
}

.house-next {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 10px 100px;
}

.house-next a {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .houses-catalog-grid {
    grid-template-columns: 1fr;
  }

  .house-catalog-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  }

  .house-catalog-photo {
    aspect-ratio: 4 / 3;
    margin: 10px 0 10px 10px;
  }

  .house-detail-intro,
  .house-detail-layout,
  .house-equipment {
    grid-template-columns: 1fr;
  }

  .house-detail-layout {
    padding: 14px 14px 36px;
  }

  .house-detail-layout > img {
    min-height: 0;
    max-height: 680px;
  }

  .house-detail-layout > div {
    padding: 16px 12px 0;
  }

  .house-mini-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .house-mini-gallery figure:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .catalog-hero {
    padding-top: 72px;
  }

  .houses-catalog {
    width: calc(100% - 16px);
  }

  .house-catalog-card {
    display: block;
    border-radius: 24px;
  }

  .house-catalog-photo {
    margin: 8px 8px 0;
    aspect-ratio: 5 / 4;
    border-radius: 18px;
  }

  .house-catalog-copy {
    padding: 24px 22px 28px;
  }

  .house-catalog-copy > p:not(.eyebrow) {
    min-height: 0;
  }

  .catalog-booking,
  .house-detail-booking {
    align-items: stretch;
    flex-direction: column;
    width: calc(100% - 16px);
    padding: 28px 22px;
    border-radius: 26px;
  }

  .house-detail-hero {
    width: calc(100% - 16px);
    min-height: 70svh;
    margin-top: 8px;
    border-radius: 26px;
  }

  .house-detail-shade {
    background: linear-gradient(to top, rgba(3, 4, 3, 0.94), rgba(3, 4, 3, 0.18) 76%);
  }

  .house-detail-heading {
    left: 22px;
    right: 22px;
    bottom: 36px;
  }

  .breadcrumbs {
    margin-bottom: 24px;
  }

  .house-detail-intro {
    gap: 24px;
  }

  .house-detail-layout {
    width: calc(100% - 16px);
    border-radius: 28px;
  }

  .house-facts,
  .equipment-grid,
  .house-mini-gallery {
    grid-template-columns: 1fr;
  }

  .house-mini-gallery {
    width: calc(100% - 16px);
    padding-bottom: 92px;
  }

  .house-mini-gallery figure,
  .house-mini-gallery figure:first-child {
    grid-column: auto;
    min-height: 300px;
    border-radius: 21px;
  }

  .house-next {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oxidation-ornament {
    animation: oxidation-reduced 0.42s ease-out forwards;
  }

  .oxidation-ornament svg {
    animation: none;
  }
}

@keyframes oxidation-reduced {
  0% {
    opacity: 0;
    color: #e8c56f;
    transform: translate(-50%, -50%);
  }

  55% {
    opacity: 0.7;
    color: #8c9c68;
  }

  100% {
    opacity: 0;
    color: #2f7467;
    transform: translate(-50%, -50%);
  }
}
