/* Su Butik Hotel — премиальный бутик: тёплый белый + глубокая бирюза моря + глина.
   Элеганс без люксового пафоса. Cormorant + Manrope. */
:root {
  --cream: #f8f5ef;
  --cream2: #efe9de;
  --deep: #173a45;
  --deep2: #20505e;
  --clay: #c07856;
  --ink: #23333a;
  --ink-m: #5f7076;
  --line: rgba(35, 51, 58, .12);
  --r: 12px;
  --ff-d: "Cormorant Garamond", Georgia, serif;
  --ff-t: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-t); font-size: 16px; line-height: 1.6; background: var(--cream); color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1140px, 92vw); margin: 0 auto; }
::selection { background: var(--deep); color: #fff; }

.h2 { font-family: var(--ff-d); font-weight: 500; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; color: var(--ink); }
.lead { color: var(--ink-m); font-size: 16px; max-width: 520px; }

.topbar { background: var(--deep); color: #e3ecee; font-size: 12px; }
.topbar__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 0; flex-wrap: wrap; }
.topbar__addr { color: #a4bcc2; }
.topbar__tel { font-weight: 700; white-space: nowrap; }
.lang { display: flex; gap: 2px; }
.lang__btn { padding: 4px 9px; font-size: 11px; font-weight: 800; color: #a4bcc2; background: none; border: none; cursor: pointer; border-radius: 5px; }
.lang__btn.is-active { color: #fff; background: rgba(255,255,255,.14); }

.nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px max(24px, 4vw); background: rgba(248,245,239,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav__brand { font-family: var(--ff-d); font-size: 25px; font-weight: 600; white-space: nowrap; }
.nav__brand span { color: var(--clay); }
.nav__links { display: flex; gap: 24px; font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.nav__links a { color: var(--ink-m); }
.nav__links a:hover { color: var(--deep); }
.nav__right { display: flex; align-items: center; gap: 14px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; font-family: var(--ff-t); font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; border-radius: 999px; background: var(--clay); color: #fff; border: none; cursor: pointer; transition: background .25s; white-space: nowrap; }
.btn:hover { background: #ac6a4b; }
.btn--ghost { background: none; border: 1px solid rgba(255,255,255,.4); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: none; }
.btn--small { padding: 9px 18px; font-size: 11.5px; }
.btn--full { width: 100%; }

.nav__burger { display: none; width: 42px; height: 42px; background: none; border: 1px solid var(--line); border-radius: 9px; cursor: pointer; position: relative; }
.nav__burger span { position: absolute; left: 11px; right: 11px; height: 1.6px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s, top .3s; }
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 25px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.nav__mobile { position: fixed; inset: 0; z-index: 99; background: var(--cream); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.nav__mobile.is-open { opacity: 1; pointer-events: auto; }
.nav__mobile a { font-family: var(--ff-d); font-size: 27px; color: var(--ink); }

/* hero */
.hero { position: relative; min-height: 86svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,58,69,.55) 0%, rgba(23,58,69,.2) 45%, rgba(23,58,69,0) 70%), linear-gradient(180deg, rgba(23,58,69,.2) 0%, transparent 35%, rgba(23,58,69,.5) 100%); }
.hero__inner { padding: 120px 0 64px; }
.hero__kicker { font-size: 12px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; color: #f0d3c1; margin-bottom: 14px; }
.hero__title { font-family: var(--ff-d); font-weight: 500; font-size: clamp(46px, 6.5vw, 78px); line-height: .98; color: #fff; margin-bottom: 16px; }
.hero__title span { color: #f0d3c1; }
.hero__lead { color: rgba(255,255,255,.9); font-size: 17px; max-width: 470px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* intro: текст слева, фото справа */
.intro { padding: 84px 0; }
.intro__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.intro__txt .lead { margin-top: 16px; }
.intro__ph { border-radius: var(--r); overflow: hidden; }
.intro__ph img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* rooms: вертикальные фото в ряд */
.rooms { padding: 0 0 84px; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.sec-head .lead { margin-top: 12px; }
.rooms__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.room { overflow: hidden; }
.room img { width: 100%; aspect-ratio: 9/13; object-fit: cover; border-radius: 10px; }
.room figcaption { margin-top: 8px; font-size: 13px; color: var(--ink-m); }

/* services: лента 2 ряда */
.services { padding: 72px 0; background: var(--cream2); border-block: 1px solid var(--line); }
.serv__list { display: flex; flex-wrap: wrap; gap: 22px 0; }
.serv { display: flex; flex-direction: column; gap: 5px; padding: 0 26px; border-left: 1px solid var(--line); flex: 1 1 30%; }
.serv:nth-child(3n+1) { border-left: none; padding-left: 0; }
.serv b { font-family: var(--ff-d); font-size: 21px; font-weight: 600; color: var(--deep); }
.serv span { font-size: 13px; color: var(--ink-m); }

/* todo: та же лента */
.todo { padding: 84px 0; }
.todo__list { display: flex; flex-wrap: wrap; gap: 22px 0; }
.td { display: flex; flex-direction: column; gap: 5px; padding: 0 26px; border-left: 1px solid var(--line); flex: 1 1 30%; }
.td:nth-child(3n+1) { border-left: none; padding-left: 0; }
.td b { font-family: var(--ff-d); font-size: 21px; font-weight: 600; color: var(--clay); }
.td span { font-size: 13px; color: var(--ink-m); }

/* guest quote */
.guest { padding: 0 0 84px; }
.guest__q { border-left: 2px solid var(--clay); padding: 8px 0 8px 26px; max-width: 720px; }
.guest__q p { font-family: var(--ff-d); font-size: clamp(20px, 2.6vw, 27px); line-height: 1.4; color: var(--ink); }
.guest__q cite { display: block; margin-top: 12px; font-style: normal; font-size: 13px; color: var(--ink-m); letter-spacing: .06em; }

/* booking */
.booking { padding: 84px 0; background: var(--deep); color: #e3ecee; }
.booking .h2 { color: #fff; }
.booking .lead { color: #a4bcc2; }
.booking__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 70px); align-items: start; }
.booking__contacts { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.booking__contacts a { font-family: var(--ff-d); font-size: clamp(22px, 3vw, 30px); color: #f0d3c1; }
.booking__contacts a:hover { color: #fff; }
.form { display: flex; flex-direction: column; gap: 12px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: var(--r); padding: clamp(22px, 3vw, 32px); }
.form__row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.7fr); gap: 12px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #a4bcc2; }
.form input { font-family: var(--ff-t); font-size: 15px; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 8px; padding: 12px 14px; outline: none; transition: border-color .2s; }
.form input:focus { border-color: var(--clay); }
.form__hint { font-size: 12px; color: #7e979c; }
.form__done { padding: 11px 14px; border-radius: 8px; border: 1px solid rgba(192,120,86,.5); background: rgba(192,120,86,.15); color: #f0d3c1; font-size: 13px; }

/* contact */
.contact { padding: 0 0 60px; }
.contact__row { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--line); padding: 30px 0; }
.contact__item { flex: 1 1 220px; padding: 0 28px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 3px; }
.contact__item:first-child { border-left: none; padding-left: 0; }
.contact__item b { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--clay); }
.contact__item span { font-size: 15px; }
.contact__item a:hover { color: var(--deep); }
.vmap { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.vmap iframe { width: 100%; height: 300px; border: 0; filter: saturate(.85); }

/* footer */
.footer { border-top: 1px solid var(--line); padding: 22px 0; }
.footer__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--ink-m); }
.footer__brand { font-family: var(--ff-d); font-size: 20px; font-weight: 600; color: var(--ink); }
.footer__brand span { color: var(--clay); }
.footer__tel { font-weight: 700; color: var(--ink); }

@media (max-width: 1000px) {
  .nav__links, .nav__right .btn { display: none; }
  .nav__burger { display: block; }
  .hero { min-height: 72svh; }
  .intro__grid { grid-template-columns: 1fr; }
  .rooms__row { grid-template-columns: 1fr 1fr; }
  .booking__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .topbar__addr { display: none; }
  .hero { min-height: 0; padding-top: 30px; }
  .hero__inner { padding: 80px 0 44px; }
  .hero__title { font-size: clamp(38px, 11vw, 52px); }
  .rooms__row { grid-template-columns: 1fr; }
  .room img { aspect-ratio: 4/3; }
  .serv, .td { flex: 1 1 100%; border-left: none; padding: 0; }
  .booking__contacts a { font-size: 20px; }
  .contact__row { flex-direction: column; gap: 16px; }
  .contact__item { border-left: none; padding: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
