/* ============================================================
   KL HOSTEL — премиальная тёмно-золотая тема
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  --bg:        #0a0a0c;
  --bg-2:      #101015;
  --panel:     #15140f;
  --panel-2:   #1c1a13;
  --line:      rgba(212, 175, 55, 0.18);
  --line-soft: rgba(212, 175, 55, 0.10);

  --gold:      #d4af37;
  --gold-lt:   #f3dd8c;
  --gold-deep: #b8860b;
  --gold-glow: rgba(212, 175, 55, 0.45);

  --text:      #ece7da;
  --muted:     #9c968a;
  --muted-2:   #6f6a60;

  --serif: 'Playfair Display', Georgia, serif;
  --serif-2: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', system-ui, sans-serif;

  --radius: 18px;
  --maxw: 1200px;
  --ease: cubic-bezier(.16,.84,.44,1);

  --gold-grad: linear-gradient(135deg,#9a7a1e 0%,#f3dd8c 30%,#d4af37 50%,#fff4cf 62%,#b8860b 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ambient gold haze in the background */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(212,175,55,0.10), transparent 60%),
    radial-gradient(700px 500px at -10% 100%, rgba(184,134,11,0.08), transparent 60%),
    linear-gradient(180deg,#0a0a0c 0%, #0c0b0e 100%);
  z-index: -2;
  pointer-events: none;
}

/* thin gold frame around every page */
body::after {
  content: "";
  position: fixed; inset: 12px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.06);
  z-index: 300;
  pointer-events: none;
}
@media (max-width: 768px) { body::after { inset: 7px; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- typography helpers ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 700; line-height: 1.12; letter-spacing: .3px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content:""; width: 34px; height: 1px; background: linear-gradient(90deg,transparent,var(--gold)); }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.section { padding: 110px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); margin: 18px 0 14px; }
.section-head p { color: var(--muted); font-size: 17px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: all .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(10,10,12,0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand .mark {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 11px;
  font-family: var(--serif); font-weight: 800; font-size: 18px;
  color: var(--gold);
  background: linear-gradient(160deg, rgba(212,175,55,.16), rgba(212,175,55,0));
  box-shadow: 0 0 22px rgba(212,175,55,.12), inset 0 0 14px rgba(212,175,55,.07);
}
.brand .name { font-family: var(--serif); font-weight: 700; font-size: 20px; letter-spacing: 1px; }
.brand .name small { display:block; font-family: var(--sans); font-weight: 400; font-size: 10px; letter-spacing: 4px; color: var(--muted); text-transform: uppercase; }

.menu { display: flex; align-items: center; gap: 6px; }
.menu a:not(.nav-cta) {
  position: relative;
  font-size: 14px; font-weight: 500; letter-spacing: .4px;
  color: var(--gold);
  padding: 10px 16px; border-radius: 10px;
  transition: color .3s, background .3s;
}
.menu a:not(.nav-cta):hover { color: var(--gold-lt); }
.menu a.active { color: var(--gold); }
.menu a.active::after { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.menu a.active::after {
  content:""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .5px;
  color: #1a1407;
  background: var(--gold-grad);
  background-size: 200% 100%;
  box-shadow: 0 6px 24px rgba(212,175,55,.28);
  transition: transform .3s var(--ease), box-shadow .3s, background-position .6s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,175,55,.4); background-position: 100% 0; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--gold); transition: .3s; }

/* language switcher */
.lang-switch { display: flex; gap: 2px; margin-left: 14px; border: 1px solid var(--line-soft); border-radius: 999px; padding: 3px; background: rgba(212,175,55,.04); }
.lang-switch button { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .5px; color: var(--muted); background: none; border: 0; cursor: pointer; padding: 6px 10px; border-radius: 999px; transition: color .25s, background .25s; }
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active { color: #1a1407; background: var(--gold-grad); }
@media (max-width: 768px) { .lang-switch { margin-left: auto; margin-right: 6px; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: .6px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s, background-position .6s, border-color .3s, color .3s;
}
.btn-gold {
  color: #1a1407;
  background: var(--gold-grad); background-size: 200% 100%;
  box-shadow: 0 10px 30px rgba(212,175,55,.28);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(212,175,55,.42); background-position: 100% 0; }
.btn-ghost { color: var(--gold); border-color: var(--line); background: rgba(212,175,55,.04); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--gold); background: rgba(212,175,55,.1); }

/* ============================================================
   HERO + 3D LOGO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; filter: grayscale(.3) contrast(1.05); }
.hero-bg::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,.7) 0%, rgba(10,10,12,.55) 40%, rgba(10,10,12,.95) 100%);
}

.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 { font-size: clamp(40px, 6.4vw, 78px); line-height: 1.04; margin-bottom: 22px; }
.hero-copy h1 .line { display: block; }
.hero-copy p.lead { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.hero-stats .stat .num { font-family: var(--serif); font-size: 34px; color: var(--gold); line-height: 1; }
.hero-stats .stat .lbl { font-size: 12.5px; color: var(--muted); letter-spacing: .5px; margin-top: 6px; }

/* ---- 3D logo stage ---- */
.logo-stage {
  perspective: 1100px;
  display: grid; place-items: center;
  min-height: 420px;
}
.logo-3d {
  transform-style: preserve-3d;
  text-align: center;
  animation: floaty 7s ease-in-out infinite;
}
.logo-coin {
  width: 210px; height: 210px; margin: 0 auto 26px;
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: spinY 9s linear infinite;
  position: relative;
}
.logo-coin .face {
  position: absolute; inset: 0; border-radius: 50%;
  display: grid; place-items: center;
  backface-visibility: hidden;
  background:
    radial-gradient(circle at 32% 28%, #fff6d8 0%, #e7c75a 18%, #c69b2a 45%, #8a6a18 78%, #5e480f 100%);
  box-shadow:
    inset 0 0 0 6px rgba(255,246,200,.5),
    inset 0 0 40px rgba(92,70,15,.7),
    0 24px 60px rgba(0,0,0,.6),
    0 0 60px rgba(212,175,55,.35);
  border: 3px solid #f3dd8c;
}
.logo-coin .face.back { transform: rotateY(180deg); }
.logo-coin .monogram {
  font-family: var(--serif); font-weight: 800; font-size: 78px;
  color: #4a380c;
  text-shadow: 0 1px 0 #fff3c4, 0 -1px 1px rgba(0,0,0,.4);
  letter-spacing: -4px;
}
.logo-coin .face.back .monogram { font-size: 30px; letter-spacing: 3px; }
/* coin thin edge segments for 3D depth */
.logo-coin .edge {
  position: absolute; top: 0; left: 50%; width: 12px; height: 100%;
  margin-left: -6px;
  background: linear-gradient(90deg,#6e5413,#caa53a,#6e5413);
  transform: rotateY(90deg) translateZ(0);
  transform-style: preserve-3d;
}

.logo-word {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(40px, 6vw, 64px); letter-spacing: 4px;
  line-height: 1;
  position: relative; display: inline-block;
  background: linear-gradient(100deg,#8a6a18 0%, #f3dd8c 38%, #fff7da 50%, #d4af37 60%, #8a6a18 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shine 4.5s linear infinite;
}
.logo-sub {
  margin-top: 12px;
  font-family: var(--sans); font-weight: 400;
  letter-spacing: 9px; font-size: 13px; text-transform: uppercase;
  color: var(--muted);
}
.logo-glow {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.25), transparent 65%);
  filter: blur(20px); z-index: -1;
  animation: pulse 5s ease-in-out infinite;
}

@keyframes spinY { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0) rotateX(6deg); } 50% { transform: translateY(-16px) rotateX(-4deg); } }
@keyframes shine { 0% { background-position: 200% 0; } 100% { background-position: -50% 0; } }
@keyframes pulse { 0%,100% { opacity: .55; transform: scale(.95);} 50% { opacity: 1; transform: scale(1.08);} }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 3px; color: var(--muted); text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .dot { width: 22px; height: 36px; border: 1px solid var(--line); border-radius: 12px; position: relative; }
.scroll-cue .dot::after { content:""; position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; margin-left:-1.5px; background: var(--gold); border-radius: 2px; animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0%{opacity:0; transform: translateY(0);} 30%{opacity:1;} 100%{opacity:0; transform: translateY(12px);} }

/* ============================================================
   FEATURE / AMENITIES GRID
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature {
  background: linear-gradient(160deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.feature:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 18px 50px rgba(0,0,0,.4); }
.feature .ico {
  width: 50px; height: 50px; border-radius: 12px; margin-bottom: 18px;
  display: grid; place-items: center; font-size: 22px;
  background: rgba(212,175,55,.1); border: 1px solid var(--line);
  color: var(--gold);
}
.feature h4 { font-size: 18px; margin-bottom: 8px; font-family: var(--serif-2); font-size: 22px; }
.feature p { font-size: 14px; color: var(--muted); }

/* amenities chips */
.amenities { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 999px;
  background: rgba(212,175,55,.05); border: 1px solid var(--line-soft);
  font-size: 13.5px; color: var(--text);
  transition: border-color .3s, transform .3s;
}
.chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.chip .d { color: var(--gold); }

/* ============================================================
   SPLIT / ABOUT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .media { order: 2; }
.media-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .9s var(--ease); }
.media-frame:hover img { transform: scale(1.05); }
.media-frame::after { content:""; position: absolute; inset:0; box-shadow: inset 0 0 0 1px rgba(212,175,55,.12); border-radius: var(--radius); pointer-events:none; }
.media-badge {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(10,10,12,.78); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 18px; font-size: 13px;
}
.media-badge b { color: var(--gold); font-family: var(--serif); }

.about-list { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: var(--muted); }
.about-list li b { color: var(--text); font-weight: 600; }
.about-list .tick { color: var(--gold); flex: none; margin-top: 2px; }

/* ============================================================
   ROOMS / PRICES
   ============================================================ */
.rooms { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.room-card {
  background: linear-gradient(165deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}
.room-card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: 0 26px 60px rgba(0,0,0,.5); }
.room-card .ph { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.room-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.room-card:hover .ph img { transform: scale(1.07); }
.room-card .ph .tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(10,10,12,.8); border: 1px solid var(--line);
  color: var(--gold); font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.room-card .body { padding: 24px; }
.room-card h3 { font-size: 22px; margin-bottom: 6px; }
.room-card .desc { font-size: 14px; color: var(--muted); margin-bottom: 18px; min-height: 42px; }
.price-rows { display: grid; gap: 8px; border-top: 1px solid var(--line-soft); padding-top: 16px; }
.price-rows .pr { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; }
.price-rows .pr span { color: var(--muted); }
.price-rows .pr b { font-family: var(--serif); color: var(--gold); font-size: 17px; font-weight: 700; }
.price-rows .pr b small { font-family: var(--sans); font-size: 11px; color: var(--muted-2); font-weight: 400; }

/* price table */
.price-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; font-size: 14.5px; }
.price-table thead th { background: rgba(212,175,55,.07); color: var(--gold); font-family: var(--sans); font-weight: 600; letter-spacing: .5px; font-size: 12px; text-transform: uppercase; }
.price-table tbody tr { border-top: 1px solid var(--line-soft); transition: background .3s; }
.price-table tbody tr:hover { background: rgba(212,175,55,.04); }
.price-table td.room { font-weight: 500; color: var(--text); }
.price-table td .sub { display:block; font-size: 12px; color: var(--muted); }
.price-table .num { font-family: var(--serif); color: var(--gold); font-weight: 700; font-size: 16px; }
.price-table .num small { color: var(--muted-2); font-family: var(--sans); font-weight: 400; font-size: 11px; }

/* ============================================================
   TEAM
   ============================================================ */
.team { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.member {
  text-align: center;
  background: linear-gradient(170deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 34px 26px;
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}
.member:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: 0 26px 60px rgba(0,0,0,.5); }
.member .avatar {
  width: 160px; height: 160px; margin: 0 auto 22px; border-radius: 50%;
  overflow: hidden; position: relative;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(212,175,55,.08), 0 14px 36px rgba(0,0,0,.5);
}
.member .avatar img { width: 100%; height: 100%; object-fit: cover; }
.member h3 { font-size: 23px; margin-bottom: 4px; }
.member .role { color: var(--gold); font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.member p { font-size: 14px; color: var(--muted); }
.member .stars { color: var(--gold); margin-top: 14px; letter-spacing: 3px; font-size: 14px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review {
  background: linear-gradient(165deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 26px; position: relative;
  transition: transform .4s var(--ease), border-color .4s;
}
.review:hover { transform: translateY(-6px); border-color: var(--line); }
.review .quote { font-family: var(--serif); font-size: 56px; line-height: .6; color: var(--gold); opacity: .4; }
.review .stars { color: var(--gold); letter-spacing: 2px; margin: 8px 0 14px; }
.review p { font-size: 15px; color: var(--text); margin-bottom: 22px; font-style: italic; font-family: var(--serif-2); font-size: 18px; line-height: 1.5; }
.review .author { display: flex; align-items: center; gap: 14px; }
.review .author .ava { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; color: #1a1407; font-family: var(--serif); font-weight: 700; font-size: 18px; flex: none; }
.review .author .meta b { display: block; font-size: 14.5px; font-weight: 600; }
.review .author .meta span { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   CASES
   ============================================================ */
.cases { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.case {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 34px 28px; background: linear-gradient(170deg, var(--panel-2), var(--bg-2));
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s;
}
.case:hover { transform: translateY(-6px); border-color: var(--line); }
.case .knum { font-family: var(--serif); font-size: 46px; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.case h3 { font-size: 21px; margin-bottom: 12px; }
.case p { font-size: 14.5px; color: var(--muted); }
.case .res { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); font-size: 13.5px; }
.case .res b { color: var(--gold); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-box {
  text-align: center; padding: 36px 18px;
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: linear-gradient(170deg, var(--panel), var(--bg-2));
}
.stat-box .big { font-family: var(--serif); font-size: 48px; color: transparent; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; line-height: 1; }
.stat-box .lbl { color: var(--muted); font-size: 13px; letter-spacing: 1px; margin-top: 10px; }

/* ============================================================
   CONTACTS
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: stretch; }
.contact-card {
  background: linear-gradient(170deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 40px; display: flex; flex-direction: column; gap: 26px;
}
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item .ico { width: 48px; height: 48px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(212,175,55,.1); border: 1px solid var(--line); color: var(--gold); font-size: 20px; }
.contact-item .ct .k { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-item .ct .v { font-size: 17px; color: var(--text); font-weight: 500; }
.contact-item .ct .v a:hover { color: var(--gold); }

.map-wrap { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 420px; box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: none; background: #fff; }
.map-2gis-btn {
  position: absolute; left: 18px; bottom: 18px; z-index: 5;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px;
  background: rgba(10,10,12,.9); backdrop-filter: blur(8px);
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 13px; font-weight: 600; letter-spacing: .5px;
  transition: background .3s, transform .3s;
}
.map-2gis-btn:hover { background: var(--gold); color: #1a1407; transform: translateY(-2px); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 26px;
  padding: 70px 50px; text-align: center;
  background: linear-gradient(135deg, #1a1611, #0d0c0a);
}
.cta-banner::before {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% -20%, rgba(212,175,55,.18), transparent 70%);
}
.cta-banner h2 { font-size: clamp(28px,4vw,46px); margin-bottom: 16px; position: relative; }
.cta-banner p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; position: relative; }
.cta-banner .hero-actions { justify-content: center; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line-soft); padding: 64px 0 30px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer-grid h5 { font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-grid p { color: var(--muted); font-size: 14px; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid ul a { color: var(--muted); font-size: 14px; transition: color .3s; }
.footer-grid ul a:hover { color: var(--gold); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line-soft); color: var(--muted-2); font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding: 170px 0 70px; text-align: center; position: relative; }
.page-hero h1 { font-size: clamp(36px,5.5vw,64px); margin: 18px 0 16px; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 17px; }
.crumbs { font-size: 13px; color: var(--muted-2); margin-top: 22px; }
.crumbs a:hover { color: var(--gold); }

/* ============================================================
   GALLERY + LIGHTBOX
   ============================================================ */
.gallery { columns: 3; column-gap: 22px; }
.gallery .gi {
  break-inside: avoid; margin-bottom: 22px;
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-soft); cursor: zoom-in;
  transition: border-color .4s, transform .4s var(--ease);
}
.gallery .gi img { width: 100%; display: block; transition: transform .8s var(--ease); }
.gallery .gi:hover { border-color: var(--gold); transform: translateY(-4px); }
.gallery .gi:hover img { transform: scale(1.06); }
.gallery .gi .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 18px 14px; font-size: 13.5px; color: #fff;
  background: linear-gradient(transparent, rgba(10,10,12,.85));
  opacity: 0; transform: translateY(8px); transition: .4s var(--ease);
}
.gallery .gi:hover .cap { opacity: 1; transform: none; }
.gallery .gi .zoom {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(10,10,12,.7); border: 1px solid var(--line); color: var(--gold);
  opacity: 0; transition: .3s;
}
.gallery .gi:hover .zoom { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6,6,8,.94); backdrop-filter: blur(10px);
  display: none; place-items: center; padding: 30px;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 12px; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,.7); }
.lightbox .lb-cap { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; color: var(--muted); font-size: 14px; }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(212,175,55,.08); border: 1px solid var(--line);
  color: var(--gold); width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  font-size: 22px; display: grid; place-items: center; transition: .3s;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--gold); color: #1a1407; }
.lightbox .lb-close { top: 26px; right: 26px; }
.lightbox .lb-nav.prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-nav.next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-wrap {
  background: linear-gradient(170deg, var(--panel-2), var(--bg-2));
  border: 1px solid var(--line); border-radius: 24px;
  padding: 48px; position: relative; overflow: hidden;
}
.booking-wrap::before { content:""; position:absolute; inset:0; background: radial-gradient(500px 260px at 100% 0%, rgba(212,175,55,.12), transparent 70%); pointer-events:none; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; position: relative; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--text);
  background: rgba(255,255,255,.03); border: 1px solid var(--line-soft);
  border-radius: 12px; padding: 14px 16px; outline: none;
  transition: border-color .3s, background .3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: rgba(212,175,55,.05); }
.field select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field select option { background: #15140f; color: var(--text); }
.field textarea { resize: vertical; min-height: 90px; }
.booking-note { font-size: 13px; color: var(--muted); margin-top: 16px; position: relative; }
.booking-ok { display: none; align-items: center; gap: 12px; margin-top: 18px; padding: 16px 20px; border-radius: 12px; background: rgba(212,175,55,.1); border: 1px solid var(--line); color: var(--gold); font-size: 14px; position: relative; }
.booking-ok.show { display: flex; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2,1fr); }
  .rooms, .team, .reviews, .cases { grid-template-columns: repeat(2,1fr); }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .gallery { columns: 2; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .logo-stage { min-height: 340px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .menu { position: fixed; inset: 0 0 0 auto; width: min(80%,320px); flex-direction: column; align-items: stretch; justify-content: center; gap: 8px; background: rgba(12,11,14,.98); backdrop-filter: blur(20px); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .4s var(--ease); padding: 40px 28px; }
  .menu.open { transform: none; }
  .menu a { padding: 14px 18px; font-size: 16px; }
  .nav-cta.desktop { display: none; }
  .burger { display: flex; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .media { order: 0; }
  .features, .rooms, .team, .reviews, .cases, .stats-strip { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-wrap { padding: 28px; }
  .lightbox .lb-nav.prev { left: 12px; }
  .lightbox .lb-nav.next { right: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr { padding: 14px 4px; }
  .price-table td { padding: 6px 12px; }
  .contact-card { padding: 28px; }
}
