:root{
  --bg: #fbfaf7;
  --paper: #ffffff;
  --ink: #1f2430;
  --muted: #5b6373;
  --line: rgba(31,36,48,.10);

  --accent: #b08d57;      /* тёплое золото */
  --accent-2: #1f3a34;    /* глубокий зелёный */
  --accent-soft: rgba(176,141,87,.15);

  --radius: 18px;
  --shadow: 0 18px 45px rgba(16,24,40,.10);
  --shadow-soft: 0 10px 24px rgba(16,24,40,.08);

  --wrap: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"PT Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.wrap{
  width:min(var(--wrap), calc(100% - 36px));
  margin-inline:auto;
}

.skiplink{
  position:absolute; left:-9999px; top:-9999px;
}
.skiplink:focus{
  left:16px; top:16px; z-index:9999;
  background:var(--paper);
  padding:10px 12px;
  border-radius:12px;
  box-shadow:var(--shadow-soft);
}

.topbar{
  position:relative;
  background:var(--paper);
  border-bottom:1px solid var(--line);
}

.topbar__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand__logo{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, var(--accent), rgba(176,141,87,.55));
  color:#fff;
  font-family:"Montserrat", sans-serif;
  font-weight:700;
  letter-spacing:.02em;
}
.brand__name{
  font-family:"Montserrat", sans-serif;
  font-weight:700;
}
.brand__meta{
  font-size:14px;
  color:var(--muted);
}

.topbar__contacts{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.phone{
  font-weight:700;
  letter-spacing:.01em;
}
.phone:hover{ text-decoration:none; opacity:.85; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 35px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
  user-select:none;
}
.btn:active{ transform:translateY(1px); }

.btn--primary {
  background: linear-gradient(135deg, #2ecc71 0%, #6ee7b7 100%);
  color: #006112;
  text-shadow: 0 0 4px #fffffff0;
  letter-spacing: 1px;
  text-decoration: none !important;
  border: 1px solid #ffffff70;
}

.btn--primary:hover {
  filter: brightness(1.05);
  color: #fff;
  text-shadow: 0 0 4px #999;
}

.btn--primary:active {
  transform: translateY(1px);
}
.btn--outline{
  background:transparent;
  border-color:rgba(31,58,52,.25);
  color:var(--accent-2);
}
.btn--outline:hover{ text-decoration:none; border-color:rgba(31,58,52,.45); }

.btn--ghost{
  background:rgba(255,255,255,.16);
  border-color:rgba(255,255,255,.35);
  color:#fff;
  backdrop-filter: blur(6px);
}
.btn--ghost:hover{ text-decoration:none; opacity:.95;  backdrop-filter: blur(16px); }

.header-slider{
  position:relative;
  height:clamp(420px, 56vh, 640px);
  overflow:hidden;
}

.header-slider__slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.2s ease;
  transform:scale(1.02);
}
.header-slider__slide.is-active{ opacity:1; }

.header-slider__overlay{
  position:absolute; inset:0;
  display:flex;
  align-items:flex-end;
  background:
          linear-gradient(180deg, rgba(20,22,28,.20) 0%, rgba(20,22,28,.50) 45%, rgba(20,22,28,.72) 100%);
}

.header-slider__content{
  padding:34px 0 28px;
  max-width:860px;
}

.title{
  margin:0 0 10px;
  font-family:"Montserrat", sans-serif;
  font-weight:700;
  letter-spacing:.01em;
  font-size:clamp(28px, 3.2vw, 44px);
  color:#fff;
}

.subtitle{
  margin:0 0 18px;
  color:rgba(255,255,255,.92);
  font-size:clamp(15px, 1.25vw, 18px);
}

.header-slider__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.menu{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.menu__row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:10px 0;
  flex-wrap:wrap;
}
.menu__link{
  font-weight:700;
  color:var(--accent-2);
  padding:8px 10px;
  border-radius:999px;
}
.menu__link:hover{
  background:var(--accent-soft);
  text-decoration:none;
}

.booking{
  padding:18px 0 10px;
}
.booking__inner{
  display:flex;
  gap:18px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.booking__note{
  flex:1 1 260px;
}
#booking-form{
  flex:2 1 520px;
  min-height:84px;
  border-radius:var(--radius);
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  padding:12px;
}

.section{
  padding:56px 0;
}
.section--alt{
  background:linear-gradient(180deg, rgba(176,141,87,.08) 0%, rgba(176,141,87,0) 70%);
}

.section-title{
  margin:0 0 18px;
  font-family:"Montserrat", sans-serif;
  font-weight:700;
  font-size:clamp(22px, 2.2vw, 30px);
  letter-spacing:.01em;
}

.mini-title{
  margin:0 0 10px;
  font-family:"Montserrat", sans-serif;
  font-weight:700;
  font-size:18px;
}

.lead{
  margin:0;
  font-size:16.5px;
}

.muted{
  color:var(--muted);
  margin:0;
}

.hint{
  margin:16px 0 0;
  color:var(--muted);
  font-size:14px;
}

.grid2{
  display:grid;
  grid-template-columns: 1.35fr .9fr;
  gap:16px;
  align-items:stretch;
}

.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  padding:18px;
}

.card--photo{
  padding:0;
  overflow:hidden;
}
.card--photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:320px;
}
.card--photo__caption{
  padding:14px 16px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:14px;
}

.bullets{
  display:grid;
  gap:10px;
  margin-top:14px;
}
.bullet{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--muted);
}
.dot{
  width:10px; height:10px;
  border-radius:50%;
  background:var(--accent);
  margin-top:6px;
  flex:0 0 10px;
}

.room{
  display:flex;
  gap:18px;
  align-items:stretch;
  margin:16px 0;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.room__media{
  flex:1 1 46%;
  min-height:260px;
}
.room__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:260px;
}
.room__body{
  flex:1 1 54%;
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:12px;
}
.room__title{
  margin:0;
  font-family:"Montserrat", sans-serif;
  font-weight:700;
  font-size:20px;
}
.room__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-top:6px;
}
.price{
  background:var(--accent-soft);
  color:var(--accent-2);
  padding: 8px 22px;
  border-radius:999px;
  font-weight:700;
}
.room--reverse{
  flex-direction:row-reverse;
}

.features{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.feature{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  padding:16px;
}
.feature__icon{
  width:44px; height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:var(--accent-soft);
  color:var(--accent-2);
  font-weight:800;
  margin-bottom:10px;
}
.feature__title{
  margin:0 0 6px;
  font-family:"Montserrat", sans-serif;
  font-weight:700;
}

.reviews{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.review{
  margin:0;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  padding:16px;
}
.review blockquote{
  margin:0 0 10px;
  color:var(--ink);
}
.review figcaption{
  color:var(--muted);
  font-size:14px;
}

.faq{
  display:grid;
  gap:10px;
}
.faq__item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.faq__q{
  width:100%;
  text-align:left;
  padding:14px 16px;
  background:transparent;
  border:0;
  cursor:pointer;
  font-family:"Montserrat", sans-serif;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.faq__q::after{
  content:"+";
  font-weight:900;
  color:var(--accent);
}
.faq__item.is-open .faq__q::after{ content:"—"; }
.faq__a{
  max-height:0;
  overflow:hidden;
  transition:max-height .28s ease;
  border-top:1px solid var(--line);
}
.faq__a p{
  padding:12px 16px 14px;
}

.contacts{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}

.info{
  display:grid;
  gap:10px;
  margin:10px 0 14px;
}
.info__row{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:12px;
  padding:10px 0;
  border-bottom:1px dashed var(--line);
}
.info__row:last-child{ border-bottom:0; padding-bottom:0; }
.info__label{ color:var(--muted); font-weight:700; font-size:14px; }
.info__value a{ font-weight:700; }

.contact-form{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
}

.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.map-card{ padding:18px; }
.map{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  height: 515px;
  box-shadow:var(--shadow-soft);
}
.map iframe{
  width:100%;
  height:100%;
  border:0;
}
.map-card__note{
  margin-top:10px;
  font-size:14px;
}

.footer{
  background:var(--paper);
  border-top:1px solid var(--line);
  padding:18px 0;
}
.footer__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer__name{
  font-family:"Montserrat", sans-serif;
  font-weight:700;
}
.footer__copy{
  color:var(--muted);
  font-size:14px;
}

@media (max-width: 980px){
  .grid2{ grid-template-columns:1fr; }
  .card--photo img{ min-height:260px; }
  .features{ grid-template-columns:repeat(2, 1fr); }
  .reviews{ grid-template-columns:1fr; }
}

@media (max-width: 860px){
  .topbar__row{ align-items:flex-start; }
  .room, .room--reverse{ flex-direction:column; }
  .room__media img{ min-height:220px; }
  .contacts{ grid-template-columns:1fr; }
  .map{ height:320px; }
}

@media (max-width: 520px){
  .topbar__contacts{ justify-content:flex-start; }
  .info__row{ grid-template-columns:1fr; }
}

/* ===== микро-анимации появления блоков ===== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* небольшая вариативность */
.reveal--soft {
  transform: translateY(10px);
  transition-duration: .55s;
}

.reveal--scale {
  transform: translateY(10px) scale(.985);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

iframe{
  border-radius: 10px;
  overflow: hidden;
  height: 566px;
}
textarea, input{
  width: 100%;
  padding: 8px !important;
  margin: 3px 0 !important;
  border-radius: 4px;
  border: 1px solid #e5e5e5 !important;
  background: #ffffff05;
}
textarea{
  height:100px;
}
#contact-form .button{
  border-radius: 4px !important;
  border: 1px solid #bbb !important;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
  background: #fff !important;
}