*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% -10%, rgba(212,170,92,.12), transparent 34%), linear-gradient(180deg,#050b12 0%,#09121d 48%,#050b12 100%);
  color: #f6f1e8;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }
:focus-visible { outline: 2px solid #efd28d; outline-offset: 4px; }
:root {
  --container-max: 1440px;
  --pad: 40px;
  --gold: #d4aa5c;
  --gold-light: #efd28d;
  --text: #f6f1e8;
  --muted: #b8bec7;
  --soft: #8993a1;
  --border: rgba(212,170,92,.38);
  --border-soft: rgba(255,255,255,.1);
  --surface: #0d1824;
  --shadow-lg: 0 30px 80px rgba(0,0,0,.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
}
.container { width: min(calc(100% - (var(--pad) * 2)), var(--container-max)); margin-inline: auto; }
.section { padding-block: 96px; }
.section-heading { display: grid; gap: 12px; margin-bottom: 40px; text-align: center; }
.eyebrow { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
h1,h2,h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; }
h2 { font-size: clamp(38px,4vw,64px); letter-spacing: -.02em; line-height: 1; text-transform: uppercase; }
h3 { font-size: clamp(22px,2vw,30px); line-height: 1.05; }
p { color: var(--muted); }
.glass {
  background: linear-gradient(135deg,rgba(255,255,255,.09),rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 60px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
}
.button {
  align-items: center;
  border-radius: var(--radius-sm);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  letter-spacing: .04em;
  min-height: 48px;
  padding-inline: 24px;
  text-transform: uppercase;
  transition: transform .3s ease, box-shadow .3s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,170,92,.16); }
.button-primary { background: linear-gradient(135deg,#efd28d,#c79845); border: 1px solid rgba(255,255,255,.16); color: #09111a; }
.button-secondary { background: rgba(5,11,18,.44); border: 1px solid var(--border); color: var(--text); }
.button-small { min-height: 44px; padding-inline: 20px; }
.icon-button {
  align-items: center;
  background: rgba(9,18,29,.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}
.site-header {
  background: rgba(5,11,18,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
  inset: 0 0 auto;
  position: fixed;
  width: 100%;
  z-index: 20;
}
.header-inner { align-items: center; display: grid; gap: 24px; grid-template-columns: auto 1fr auto auto; min-height: 96px; }
.brand { display: inline-grid; line-height: 1; text-transform: uppercase; }
.brand-mark,.brand-subtitle { color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-align: center; }
.brand-name { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 42px; letter-spacing: .08em; }
.brand-subtitle { color: var(--muted); font-size: 10px; letter-spacing: .14em; }
.desktop-nav { align-items: center; display: flex; gap: 32px; justify-content: center; }
.desktop-nav a { color: var(--text); font-size: 12px; font-weight: 800; letter-spacing: .06em; position: relative; text-transform: uppercase; }
.desktop-nav a.active,.desktop-nav a:hover { color: var(--gold-light); }
.desktop-nav a.active::after { background: var(--gold); content: ""; height: 1px; left: 50%; position: absolute; top: calc(100% + 8px); transform: translateX(-50%); width: 32px; }
.menu-button { display: none; }
.menu-button span { background: currentColor; border-radius: var(--radius-pill); display: block; height: 2px; width: 24px; }
.menu-button { flex-direction: column; gap: 6px; }
.mobile-drawer { display: none; }
.hero { align-items: center; display: flex; min-height: 100svh; overflow: hidden; padding-block: 168px 96px; position: relative; }
.hero-image,.hero-overlay { height: 100%; inset: 0; position: absolute; width: 100%; }
.hero-image { object-fit: cover; object-position: center right; }
.hero-overlay { background: linear-gradient(90deg,rgba(5,11,18,.96),rgba(5,11,18,.72) 36%,rgba(5,11,18,.18) 72%), linear-gradient(180deg,rgba(5,11,18,.2),rgba(5,11,18,.36) 52%,rgba(5,11,18,.94)); }
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { color: var(--text); font-size: clamp(52px,6vw,110px); letter-spacing: -.03em; line-height: .86; max-width: 650px; text-transform: uppercase; }
.hero-content h1 span { color: var(--gold-light); display: block; font-size: clamp(64px,7vw,132px); }
.hero-copy { font-size: clamp(17px,1.2vw,20px); margin-block: 24px 32px; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.services-grid { display: grid; gap: 24px; grid-template-columns: repeat(4,minmax(0,1fr)); }
.service-card { aspect-ratio: .78; border: 1px solid var(--border-soft); border-radius: var(--radius-lg); box-shadow: 0 18px 45px rgba(0,0,0,.28); isolation: isolate; overflow: hidden; position: relative; transition: transform .35s ease, border-color .35s ease; }
.service-card:hover { border-color: var(--border); transform: translateY(-6px); }
.service-card img { height: 100%; object-fit: cover; transition: transform .38s ease; width: 100%; }
.service-card:hover img { transform: scale(1.04); }
.service-card::after { background: linear-gradient(180deg,transparent 12%,rgba(5,11,18,.28) 38%,rgba(5,11,18,.95)); content: ""; inset: 0; position: absolute; z-index: 1; }
.service-card-content { align-items: center; bottom: 0; display: grid; gap: 12px; justify-items: center; padding: 24px; position: absolute; text-align: center; width: 100%; z-index: 2; }
.service-icon { align-items: center; background: rgba(5,11,18,.88); border: 1px solid var(--border); border-radius: var(--radius-pill); color: var(--gold-light); display: inline-flex; font-size: 28px; height: 64px; justify-content: center; width: 64px; }
.service-card h3 { text-transform: uppercase; }
.service-card p { font-size: 14px; line-height: 1.55; }
.stats-panel { border-radius: var(--radius-xl); display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; }
.stat-item { align-items: center; display: grid; gap: 8px; justify-items: center; padding: 32px; position: relative; text-align: center; }
.stat-item + .stat-item::before { background: var(--border-soft); content: ""; height: 56%; left: 0; position: absolute; top: 22%; width: 1px; }
.stat-item span { color: var(--gold-light); font-size: 28px; }
.stat-item strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(48px,4vw,64px); font-weight: 500; line-height: .9; }
.stat-item em { color: var(--muted); font-size: 14px; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.feature-stack .container { display: grid; gap: 24px; }
.feature-card { background: linear-gradient(135deg,rgba(18,33,49,.98),rgba(9,18,29,.94)); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: .92fr 1.08fr; min-height: 460px; overflow: hidden; }
.feature-card.is-reversed { grid-template-columns: 1.08fr .92fr; }
.feature-card.is-reversed .feature-copy { order: 2; }
.feature-card.is-reversed .feature-image { order: 1; }
.feature-copy { align-content: center; display: grid; gap: 20px; padding: 64px; }
.feature-copy p:not(.eyebrow) { max-width: 620px; }
.feature-copy ul { display: grid; gap: 12px; list-style: none; padding: 0; }
.feature-copy li { color: var(--muted); }
.feature-copy li::before { color: var(--gold-light); content: "✣"; margin-right: 12px; }
.feature-copy .button { justify-self: start; }
.feature-image { min-height: 420px; overflow: hidden; }
.feature-image img { height: 100%; object-fit: cover; width: 100%; }
.gallery-grid { display: grid; gap: 20px; grid-template-columns: repeat(4,1fr); }
.gallery-item { aspect-ratio: 1.24; background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-md); overflow: hidden; padding: 0; }
.gallery-item:first-child,.gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .32s ease; width: 100%; }
.gallery-item:hover img { transform: scale(1.04); }
.center-action { display: flex; justify-content: center; margin-top: 32px; }
.reviews-grid { display: grid; gap: 24px; grid-template-columns: repeat(3,1fr); }
.review-card { border-radius: var(--radius-lg); display: grid; gap: 16px; min-height: 260px; padding: 32px; position: relative; }
.stars { color: var(--gold-light); letter-spacing: 2px; }
.review-card strong { color: var(--text); }
.review-card span { color: var(--soft); font-size: 14px; }
.final-cta { padding-top: 0; }
.cta-panel { align-items: center; background: linear-gradient(90deg,rgba(5,11,18,.92),rgba(5,11,18,.62)), url("assets/Images/Hostel-Vegas-Jagodina-Bazen.webp") center/cover; border-radius: var(--radius-xl); display: flex; gap: 40px; justify-content: space-between; padding: 64px; }
.cta-panel .button { flex: 0 0 auto; min-width: 240px; white-space: nowrap; }
.cta-panel p:not(.eyebrow) { font-size: clamp(17px,1.2vw,20px); margin-top: 16px; }
.contact-grid { display: grid; gap: 24px; grid-template-columns: 1fr .8fr 1.2fr; }
.contact-block { display: grid; gap: 20px; }
.contact-list { display: grid; gap: 16px; list-style: none; padding: 0; }
.hours-block { align-content: start; border-radius: var(--radius-lg); padding: 32px; }
.hours-block .button { justify-self: start; }
.map-placeholder { align-items: center; background: linear-gradient(rgba(5,11,18,.72),rgba(5,11,18,.82)), url("assets/Images/Hostel-Vegas-Jagodina-Bazen.webp") center/cover; border: 1px solid var(--border); border-radius: var(--radius-xl); display: flex; min-height: 340px; padding: 32px; text-align: center; }
.map-placeholder div { margin: auto; max-width: 360px; }
.site-footer { background: #050b12; border-top: 1px solid var(--border-soft); padding-block: 64px 20px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.4fr 1fr 1fr; }
.footer-grid p { margin-top: 16px; max-width: 360px; }
.footer-grid h3 { color: var(--gold-light); font-family: "Montserrat", Arial, sans-serif; font-size: 14px; font-weight: 800; letter-spacing: .12em; margin-bottom: 16px; text-transform: uppercase; }
.footer-grid a:not(.brand) { color: var(--muted); display: block; font-size: 14px; margin-bottom: 8px; }
.social-links { display: flex; gap: 12px; }
.footer-grid .social-links a { align-items: center; border: 1px solid var(--border); border-radius: var(--radius-pill); color: var(--text); display: inline-flex; font-size: 15px; font-weight: 800; height: 44px; justify-content: center; margin-bottom: 0; width: 44px; }
.footer-bottom { border-top: 1px solid var(--border-soft); color: var(--soft); display: flex; font-size: 14px; justify-content: space-between; margin-top: 40px; padding-top: 20px; }
.lightbox { align-items: center; background: rgba(5,11,18,.94); display: flex; inset: 0; justify-content: center; padding: 32px; position: fixed; z-index: 60; }
.lightbox[hidden] { display: none; }
.lightbox .icon-button { font-size: 34px; position: absolute; right: 32px; top: 32px; }
.lightbox img { border: 1px solid var(--border); border-radius: var(--radius-xl); max-height: 86vh; object-fit: contain; width: min(1100px,100%); }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .62s ease, transform .62s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1199px) {
  .desktop-nav { gap: 20px; }
  .header-cta { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 991px) {
  :root { --pad: 32px; }
  .desktop-nav { display: none; }
  .header-inner { position: relative; }
  .menu-button { display: inline-flex; justify-self: end; }
  .mobile-drawer {
    align-content: start;
    background: radial-gradient(circle at 88% 10%, rgba(212,170,92,.12), transparent 30%), linear-gradient(180deg,rgba(9,18,29,.98),rgba(5,11,18,.98));
    backdrop-filter: blur(18px);
    display: grid;
    gap: 16px;
    height: 100dvh;
    inset: 0;
    opacity: 0;
    overflow-y: auto;
    padding: 120px 32px 40px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-12px);
    transition: opacity .26s ease, transform .26s ease;
    width: 100vw;
    z-index: 50;
  }
  .mobile-drawer.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-nav-link { align-items: center; border-bottom: 1px solid rgba(212,170,92,.16); display: flex; min-height: 58px; }
  .mobile-nav-link strong { color: var(--text); font-family: "Montserrat", Arial, sans-serif; font-size: clamp(22px,6vw,34px); font-weight: 700; letter-spacing: .01em; line-height: 1.05; }
  .mobile-drawer .button { margin-top: 16px; width: min(100%,520px); }
  .drawer-close { font-size: 34px; position: absolute; right: 24px; top: 24px; }
  .feature-card,.feature-card.is-reversed { grid-template-columns: 1fr; }
  .feature-card.is-reversed .feature-copy,.feature-card.is-reversed .feature-image { order: unset; }
  .feature-image { min-height: 360px; order: 2; }
  .feature-copy { order: 1; padding: 40px; }
  .contact-grid,.footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  :root { --pad: 20px; }
  .section { padding-block: 64px; }
  .header-inner { min-height: 80px; padding-inline: 20px; width: 100%; }
  .menu-button { height: 58px; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 58px; }
  .brand-name { font-size: 34px; }
  .hero { align-items: start; display: grid; min-height: auto; padding-block: 144px 64px; }
  .hero-content h1 { font-size: clamp(52px,15vw,82px); }
  .hero-content h1 span { font-size: clamp(68px,18vw,112px); }
  .hero-actions,.hero-actions .button { width: 100%; }
  .services-grid,.stats-panel { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: .86; border-color: var(--border); border-radius: var(--radius-xl); }
  .service-card-content { align-content: end; align-items: end; height: 100%; justify-items: start; text-align: left; }
  .service-card h3 { font-size: clamp(36px,11vw,56px); line-height: .95; max-width: 300px; }
  .service-card p { font-size: 16px; max-width: 300px; }
  .stat-item + .stat-item::before { height: 1px; left: 15%; top: 0; width: 70%; }
  .gallery-grid { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .gallery-item,.gallery-item:first-child,.gallery-item:nth-child(4) { aspect-ratio: 1.12; flex: 0 0 82%; scroll-snap-align: start; }
  .reviews-grid { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .review-card { flex: 0 0 88%; scroll-snap-align: center; }
  .cta-panel,.footer-bottom { align-items: flex-start; flex-direction: column; }
  .cta-panel { padding: 32px; }
  .cta-panel .button { min-width: 0; width: 100%; }
}
@media (max-width: 479px) {
  .feature-copy { padding: 24px; }
  .feature-image { min-height: 280px; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto; transition-duration: 1ms; }
  .reveal { opacity: 1; transform: none; }
}
