/* ===== CSS VARIABLES / DESIGN TOKENS ===== */
:root {
  --volga-blue: #1B3A5C;
  --volga-blue-light: #2A5580;
  --forest-green: #2D5A3D;
  --forest-green-light: #3E7A54;
  --sand: #E8DCC8;
  --sand-light: #F5F0E8;
  --warm-beige: #FAF7F2;
  --white: #FFFFFF;
  --gold: #C6993E;
  --gold-light: #D4AD5A;
  --gold-dark: #A67D2E;
  --terracotta: #C4654A;
  --graphite: #2D2D2D;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --border: #E5E1D8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 4px 24px rgba(27,58,92,0.08);
  --shadow-card-hover: 0 12px 40px rgba(27,58,92,0.14);
  --shadow-soft: 0 2px 12px rgba(0,0,0,0.06);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITY ===== */
.container { max-width:1340px; margin:0 auto; padding:0 24px; }
.section-padding { padding:100px 0; }
@media(max-width:768px) { .section-padding { padding:60px 0; } }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity:0; transform:translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity:1; transform:translateY(0);
}
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }
.reveal-delay-4 { transition-delay:0.4s; }

/* ===== HEADER ===== */
.header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  transition: var(--transition);
  padding:16px 0;
}
.header.scrolled {
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:0 1px 12px rgba(0,0,0,0.06);
  padding:10px 0;
}
.header__inner {
  display:flex; align-items:center; justify-content:space-between; gap:32px;
}
.header__logo {
  display:flex; align-items:center; gap:12px; flex-shrink:0;
}
.header__logo-icon {
  width:44px; height:44px; border-radius:50%; overflow:hidden;
  border:2px solid var(--gold);
}
.header__logo-icon img { width:100%; height:100%; object-fit:cover; }
.header__logo-text {
  font-family:var(--font-heading); font-size:22px; font-weight:600;
  color:var(--white); line-height:1.1;
  transition: var(--transition);
}
.header__logo-sub {
  font-family:var(--font-body); font-size:10px; font-weight:400;
  color:rgba(255,255,255,0.7); letter-spacing:2px; text-transform:uppercase;
  transition: var(--transition);
}
.header.scrolled .header__logo-text { color:var(--volga-blue); }
.header.scrolled .header__logo-sub { color:var(--gray); }

.header__nav {
  display:flex; align-items:center; gap:8px;
}
.header__nav a {
  font-size:14px; font-weight:500; padding:8px 16px;
  border-radius:var(--radius-sm);
  color:rgba(255,255,255,0.85);
  transition:var(--transition);
  position:relative;
}
.header__nav a:hover {
  color:var(--white);
  background:rgba(255,255,255,0.1);
}
.header.scrolled .header__nav a {
  color:var(--graphite);
}
.header.scrolled .header__nav a:hover {
  color:var(--volga-blue);
  background:rgba(27,58,92,0.06);
}
.header__nav .has-dropdown { position:relative; }
.header__nav .has-dropdown::after {
  content:''; display:inline-block; width:6px; height:6px;
  border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor;
  transform:rotate(45deg); margin-left:6px; margin-bottom:2px;
  transition:var(--transition);
}

.header__right {
  display:flex; align-items:center; gap:20px;
}
.header__phone {
  display:flex; align-items:center; gap:8px;
  font-size:15px; font-weight:600;
  color:var(--white);
  transition:var(--transition);
}
.header__phone svg { width:18px; height:18px; }
.header.scrolled .header__phone { color:var(--volga-blue); }

.btn-book {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--gold); color:var(--white);
  font-size:14px; font-weight:600;
  padding:12px 28px; border-radius:var(--radius-sm);
  transition:var(--transition);
  cursor:pointer; border:none;
  white-space:nowrap;
}
.btn-book:hover {
  background:var(--gold-dark);
  transform:translateY(-1px);
  box-shadow:0 4px 16px rgba(198,153,62,0.35);
}
.btn-book svg { width:16px; height:16px; }

/* Mobile menu */
.burger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; padding:8px; background:none;
}
.burger span {
  width:24px; height:2px; background:var(--white);
  border-radius:2px; transition:var(--transition);
}
.header.scrolled .burger span { background:var(--graphite); }

.mobile-menu {
  display:none; position:fixed; top:0; left:0; right:0; bottom:0;
  background:var(--white); z-index:999;
  flex-direction:column; padding:80px 32px 32px;
  transform:translateX(100%); transition:var(--transition-slow);
}
.mobile-menu.active {
  display:flex; transform:translateX(0);
}
.mobile-menu__close {
  position:absolute; top:20px; right:20px;
  width:40px; height:40px; background:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.mobile-menu a {
  font-family:var(--font-heading); font-size:24px;
  color:var(--volga-blue); padding:16px 0;
  border-bottom:1px solid var(--border);
}
.mobile-menu .btn-book {
  margin-top:32px; text-align:center; justify-content:center;
  font-size:16px; padding:16px;
}

@media(max-width:1024px) {
  .header__nav { display:none; }
  .burger { display:flex; }
}
@media(max-width:640px) {
  .header__phone { display:none; }
}

/* ===== HERO ===== */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  overflow:hidden;
}
.hero__bg {
  position:absolute; inset:0; z-index:0;
}
.hero__bg img {
  width:100%; height:100%; object-fit:cover;
}
.hero__overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    135deg,
    rgba(27,58,92,0.7) 0%,
    rgba(27,58,92,0.4) 40%,
    rgba(45,90,61,0.3) 100%
  );
}
.hero__content {
  position:relative; z-index:1;
  padding-top:120px; padding-bottom:80px;
  width:100%;
}
.hero__badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.2);
  padding:8px 20px; border-radius:50px;
  color:var(--white); font-size:13px; font-weight:500;
  margin-bottom:24px;
  letter-spacing:0.5px;
}
.hero__badge svg { width:16px; height:16px; }
.hero__title {
  font-family:var(--font-heading);
  font-size:clamp(36px, 5vw, 64px);
  font-weight:700; color:var(--white);
  line-height:1.1; margin-bottom:20px;
  max-width:700px;
}
.hero__title em {
  font-style:italic; color:var(--gold-light);
}
.hero__subtitle {
  font-size:clamp(16px, 2vw, 20px);
  color:rgba(255,255,255,0.8);
  line-height:1.6; max-width:560px;
  margin-bottom:48px; font-weight:300;
}

/* Booking Widget */
.booking-widget {
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(20px);
  border-radius:var(--radius-lg);
  padding:28px 32px;
  max-width:820px;
  box-shadow:0 20px 60px rgba(0,0,0,0.2);
}
.booking-widget__row {
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1.4fr;
  gap:16px; align-items:end;
}
.booking-widget__group label {
  display:block; font-size:12px; font-weight:600;
  color:var(--gray); text-transform:uppercase;
  letter-spacing:1px; margin-bottom:8px;
}
.booking-widget__group input,
.booking-widget__group select {
  width:100%; padding:12px 16px;
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  font-size:15px; color:var(--graphite);
  background:var(--white);
  transition:var(--transition);
  min-height:48px;
}
.booking-widget__group input:focus,
.booking-widget__group select:focus {
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(198,153,62,0.12);
}
.booking-widget .btn-book {
  width:100%; justify-content:center;
  padding:14px 24px; font-size:15px;
}

.hero__trust {
  display:flex; gap:32px; margin-top:32px;
}
.hero__trust-item {
  display:flex; align-items:center; gap:10px;
  color:rgba(255,255,255,0.8); font-size:14px; font-weight:400;
}
.hero__trust-item svg { width:20px; height:20px; color:var(--gold-light); flex-shrink:0; }

@media(max-width:768px) {
  .booking-widget__row {
    grid-template-columns:1fr 1fr;
  }
  .booking-widget .btn-book {
    grid-column:1 / -1;
  }
  .hero__trust { flex-wrap:wrap; gap:16px; }
}
@media(max-width:480px) {
  .booking-widget__row { grid-template-columns:1fr; }
  .booking-widget { padding:20px; }
}

/* Scroll indicator */
.hero__scroll {
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:rgba(255,255,255,0.5); font-size:12px; z-index:1;
  animation:float 3s ease-in-out infinite;
}
.hero__scroll-line {
  width:1px; height:40px; background:linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes float {
  0%, 100% { transform:translateX(-50%) translateY(0); }
  50% { transform:translateX(-50%) translateY(-8px); }
}

/* ===== SECTION HEADINGS ===== */
.section-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; color:var(--gold);
  text-transform:uppercase; letter-spacing:2px;
  margin-bottom:16px;
}
.section-label::before {
  content:''; display:block; width:32px; height:2px;
  background:var(--gold);
}
.section-title {
  font-family:var(--font-heading);
  font-size:clamp(28px, 4vw, 44px);
  font-weight:600; color:var(--volga-blue);
  line-height:1.15; margin-bottom:16px;
}
.section-desc {
  font-size:17px; color:var(--gray); line-height:1.6;
  max-width:600px;
}

/* ===== ABOUT SECTION ===== */
.about {
  background:var(--white);
}
.about__grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
}
.about__images {
  position:relative;
}
.about__img-main {
  border-radius:var(--radius-lg);
  overflow:hidden; aspect-ratio:4/3;
}
.about__img-main img {
  width:100%; height:100%; object-fit:cover;
}
.about__img-float {
  position:absolute; bottom:-24px; right:-24px;
  width:200px; border-radius:var(--radius-md);
  overflow:hidden; box-shadow:var(--shadow-card);
  border:4px solid var(--white);
}
.about__img-float img { width:100%; height:auto; }
.about__stats {
  display:flex; gap:40px; margin-top:40px;
}
.about__stat-num {
  font-family:var(--font-heading);
  font-size:36px; font-weight:700;
  color:var(--volga-blue);
}
.about__stat-label {
  font-size:14px; color:var(--gray); margin-top:4px;
  line-height:1.4;
}

@media(max-width:900px) {
  .about__grid { grid-template-columns:1fr; gap:40px; }
  .about__img-float { right:16px; bottom:-16px; width:160px; }
  .about__stats { gap:24px; }
}

/* ===== ROOMS SECTION ===== */
.rooms {
  background:var(--warm-beige);
}
.rooms__header {
  display:flex; justify-content:space-between; align-items:end;
  margin-bottom:48px; flex-wrap:wrap; gap:24px;
}
.rooms__tabs {
  display:flex; gap:8px;
}
.rooms__tab {
  padding:10px 24px; border-radius:50px;
  font-size:14px; font-weight:500;
  background:transparent; color:var(--gray);
  border:1.5px solid var(--border);
  cursor:pointer; transition:var(--transition);
}
.rooms__tab.active, .rooms__tab:hover {
  background:var(--volga-blue); color:var(--white);
  border-color:var(--volga-blue);
}
.rooms__grid {
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.room-card {
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  transition:var(--transition);
  cursor:pointer;
}
.room-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-card-hover);
}
.room-card__img {
  position:relative; aspect-ratio:16/10; overflow:hidden;
}
.room-card__img img {
  width:100%; height:100%; object-fit:cover;
  transition:var(--transition-slow);
}
.room-card:hover .room-card__img img {
  transform:scale(1.05);
}
.room-card__badge {
  position:absolute; top:16px; left:16px;
  background:var(--terracotta); color:var(--white);
  padding:4px 12px; border-radius:50px;
  font-size:12px; font-weight:600;
}
.room-card__body {
  padding:24px;
}
.room-card__name {
  font-family:var(--font-heading);
  font-size:20px; font-weight:600;
  color:var(--volga-blue); margin-bottom:12px;
}
.room-card__amenities {
  display:flex; gap:16px; margin-bottom:16px;
  flex-wrap:wrap;
}
.room-card__amenity {
  display:flex; align-items:center; gap:6px;
  font-size:13px; color:var(--gray);
}
.room-card__amenity svg { width:16px; height:16px; color:var(--forest-green-light); }
.room-card__footer {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:16px; border-top:1px solid var(--border);
}
.room-card__price {
  font-size:14px; color:var(--gray);
}
.room-card__price strong {
  font-size:24px; font-weight:700; color:var(--volga-blue);
}
.room-card__book {
  padding:10px 20px; border-radius:var(--radius-sm);
  background:var(--gold); color:var(--white);
  font-size:13px; font-weight:600; cursor:pointer;
  transition:var(--transition); border:none;
}
.room-card__book:hover {
  background:var(--gold-dark);
}

@media(max-width:1024px) {
  .rooms__grid { grid-template-columns:repeat(2, 1fr); }
}
@media(max-width:640px) {
  .rooms__grid { grid-template-columns:1fr; }
  .rooms__tabs { flex-wrap:wrap; }
}

/* ===== SERVICES BENTO GRID ===== */
.services {
  background:var(--white);
}
.services__grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-template-rows:auto auto;
  gap:20px;
}
.service-card {
  position:relative; border-radius:var(--radius-lg);
  overflow:hidden; cursor:pointer;
  min-height:280px;
  display:flex; flex-direction:column;
  justify-content:flex-end;
}
.service-card__bg {
  position:absolute; inset:0;
}
.service-card__bg img {
  width:100%; height:100%; object-fit:cover;
  transition:var(--transition-slow);
}
.service-card:hover .service-card__bg img {
  transform:scale(1.08);
}
.service-card__overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(27,58,92,0.85) 0%, rgba(27,58,92,0.2) 60%, transparent 100%);
  transition:var(--transition);
}
.service-card:hover .service-card__overlay {
  background:linear-gradient(to top, rgba(27,58,92,0.9) 0%, rgba(27,58,92,0.3) 60%, transparent 100%);
}
.service-card__content {
  position:relative; z-index:1; padding:28px;
}
.service-card__icon {
  width:48px; height:48px;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(8px);
  border-radius:var(--radius-sm);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.service-card__icon svg { width:24px; height:24px; color:var(--gold-light); }
.service-card__name {
  font-family:var(--font-heading);
  font-size:22px; font-weight:600;
  color:var(--white); margin-bottom:6px;
}
.service-card__desc {
  font-size:14px; color:rgba(255,255,255,0.7);
  line-height:1.5;
}
.service-card__link {
  display:inline-flex; align-items:center; gap:6px;
  color:var(--gold-light); font-size:14px; font-weight:500;
  margin-top:12px;
  transition:var(--transition);
}
.service-card__link svg { width:14px; height:14px; transition:var(--transition); }
.service-card:hover .service-card__link svg { transform:translateX(4px); }

/* Bento layout */
.service-card--wide {
  grid-column:span 2;
}
.service-card--tall {
  grid-row:span 2;
  min-height:580px;
}

@media(max-width:900px) {
  .services__grid {
    grid-template-columns:1fr 1fr;
  }
  .service-card--wide { grid-column:span 2; }
  .service-card--tall { grid-row:span 1; min-height:320px; }
}
@media(max-width:560px) {
  .services__grid { grid-template-columns:1fr; }
  .service-card--wide { grid-column:span 1; }
}

/* ===== WHY US SECTION ===== */
.why-us {
  background:var(--volga-blue);
  position:relative; overflow:hidden;
}
.why-us__deco {
  position:absolute; right:-100px; top:-100px;
  width:400px; height:400px; border-radius:50%;
  background:rgba(198,153,62,0.08);
}
.why-us .section-label { color:var(--gold-light); }
.why-us .section-title { color:var(--white); }
.why-us .section-desc { color:rgba(255,255,255,0.6); }
.why-us__grid {
  display:grid; grid-template-columns:repeat(4, 1fr);
  gap:28px; margin-top:56px;
}
.why-us__card {
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius-lg);
  padding:32px 28px;
  transition:var(--transition);
}
.why-us__card:hover {
  background:rgba(255,255,255,0.1);
  transform:translateY(-4px);
}
.why-us__card-icon {
  width:56px; height:56px;
  background:linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius:var(--radius-md);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.why-us__card-icon svg { width:28px; height:28px; color:var(--white); }
.why-us__card-title {
  font-family:var(--font-heading);
  font-size:18px; font-weight:600;
  color:var(--white); margin-bottom:10px;
}
.why-us__card-text {
  font-size:14px; color:rgba(255,255,255,0.6);
  line-height:1.6;
}

@media(max-width:900px) {
  .why-us__grid { grid-template-columns:repeat(2, 1fr); }
}
@media(max-width:560px) {
  .why-us__grid { grid-template-columns:1fr; }
}

/* ===== SPECIAL OFFERS ===== */
.offers {
  background:var(--warm-beige);
}
.offers__grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:28px; margin-top:48px;
}
.offer-card {
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  display:grid; grid-template-columns:1fr 1fr;
  box-shadow:var(--shadow-card);
  transition:var(--transition);
}
.offer-card:hover {
  box-shadow:var(--shadow-card-hover);
  transform:translateY(-4px);
}
.offer-card__img {
  overflow:hidden; min-height:280px;
}
.offer-card__img img {
  width:100%; height:100%; object-fit:cover;
}
.offer-card__body {
  padding:32px; display:flex; flex-direction:column; justify-content:center;
}
.offer-card__tag {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(196,101,74,0.1); color:var(--terracotta);
  padding:4px 12px; border-radius:50px;
  font-size:12px; font-weight:600;
  margin-bottom:16px; width:fit-content;
}
.offer-card__name {
  font-family:var(--font-heading);
  font-size:22px; font-weight:600;
  color:var(--volga-blue); margin-bottom:12px;
  line-height:1.3;
}
.offer-card__desc {
  font-size:14px; color:var(--gray); line-height:1.6;
  margin-bottom:20px;
}
.offer-card__price {
  font-size:14px; color:var(--gray);
}
.offer-card__price strong {
  font-size:28px; font-weight:700; color:var(--terracotta);
}
.offer-card__price old {
  text-decoration:line-through; color:var(--gray);
  font-size:16px; margin-left:8px;
}

@media(max-width:900px) {
  .offers__grid { grid-template-columns:1fr; }
}
@media(max-width:640px) {
  .offer-card { grid-template-columns:1fr; }
  .offer-card__img { min-height:200px; }
}

/* ===== GALLERY ===== */
.gallery {
  background:var(--white);
}
.gallery__strip {
  display:flex; gap:16px; margin-top:48px;
  overflow:hidden;
}
.gallery__item {
  flex:0 0 320px; aspect-ratio:3/4;
  border-radius:var(--radius-md);
  overflow:hidden; cursor:pointer;
  position:relative;
}
.gallery__item img {
  width:100%; height:100%; object-fit:cover;
  transition:var(--transition-slow);
}
.gallery__item:hover img {
  transform:scale(1.05);
}
.gallery__item::after {
  content:''; position:absolute; inset:0;
  background:rgba(27,58,92,0);
  transition:var(--transition);
}
.gallery__item:hover::after {
  background:rgba(27,58,92,0.2);
}

/* ===== REVIEWS ===== */
.reviews {
  background:var(--warm-beige);
}
.reviews__slider {
  display:flex; gap:24px; margin-top:48px;
  overflow-x:auto; padding-bottom:20px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.reviews__slider::-webkit-scrollbar { height:4px; }
.reviews__slider::-webkit-scrollbar-track { background:var(--border); border-radius:4px; }
.reviews__slider::-webkit-scrollbar-thumb { background:var(--gold); border-radius:4px; }
.review-card {
  flex:0 0 380px;
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-soft);
  scroll-snap-align:start;
}
.review-card__stars {
  display:flex; gap:4px; margin-bottom:16px;
}
.review-card__stars svg { width:18px; height:18px; color:var(--gold); }
.review-card__text {
  font-size:15px; color:var(--graphite);
  line-height:1.7; margin-bottom:20px;
  font-style:italic;
}
.review-card__author {
  display:flex; align-items:center; gap:12px;
}
.review-card__avatar {
  width:44px; height:44px; border-radius:50%;
  background:var(--sand); display:flex;
  align-items:center; justify-content:center;
  font-family:var(--font-heading);
  font-size:16px; font-weight:600; color:var(--volga-blue);
}
.review-card__name {
  font-size:14px; font-weight:600; color:var(--volga-blue);
}
.review-card__date {
  font-size:12px; color:var(--gray);
}

/* ===== CTA SECTION ===== */
.cta {
  position:relative;
  padding:120px 0;
  overflow:hidden;
}
.cta__bg {
  position:absolute; inset:0;
}
.cta__bg img {
  width:100%; height:100%; object-fit:cover;
}
.cta__overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(27,58,92,0.85), rgba(45,90,61,0.7));
}
.cta__content {
  position:relative; z-index:1;
  text-align:center; max-width:640px; margin:0 auto;
}
.cta__title {
  font-family:var(--font-heading);
  font-size:clamp(28px, 4vw, 44px);
  font-weight:700; color:var(--white);
  line-height:1.2; margin-bottom:20px;
}
.cta__text {
  font-size:18px; color:rgba(255,255,255,0.8);
  line-height:1.6; margin-bottom:36px;
}
.cta .btn-book {
  font-size:16px; padding:16px 40px;
}
.cta .btn-secondary {
  display:inline-flex; align-items:center; gap:8px;
  margin-left:16px; color:var(--white);
  font-size:15px; font-weight:500;
  padding:16px 32px; border-radius:var(--radius-sm);
  border:1.5px solid rgba(255,255,255,0.4);
  background:transparent; cursor:pointer;
  transition:var(--transition);
}
.cta .btn-secondary:hover {
  background:rgba(255,255,255,0.1);
  border-color:rgba(255,255,255,0.7);
}

/* ===== FOOTER ===== */
.footer {
  background:var(--volga-blue);
  color:rgba(255,255,255,0.7);
  padding:80px 0 0;
}
.footer__grid {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:48px;
  padding-bottom:60px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer__brand-name {
  font-family:var(--font-heading);
  font-size:24px; font-weight:600;
  color:var(--white); margin-bottom:12px;
}
.footer__brand-desc {
  font-size:14px; line-height:1.7; margin-bottom:24px;
}
.footer__socials {
  display:flex; gap:12px;
}
.footer__social {
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  transition:var(--transition);
}
.footer__social:hover { background:var(--gold); }
.footer__social svg { width:18px; height:18px; color:var(--white); }
.footer__heading {
  font-size:14px; font-weight:600; color:var(--white);
  text-transform:uppercase; letter-spacing:1px;
  margin-bottom:20px;
}
.footer__links a {
  display:block; font-size:14px; padding:6px 0;
  transition:var(--transition);
}
.footer__links a:hover { color:var(--gold-light); }
.footer__contact-item {
  display:flex; align-items:flex-start; gap:12px;
  margin-bottom:16px; font-size:14px;
}
.footer__contact-item svg { width:18px; height:18px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.footer__bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding:24px 0; font-size:13px;
}
.footer__bottom a { transition:var(--transition); }
.footer__bottom a:hover { color:var(--gold-light); }

@media(max-width:900px) {
  .footer__grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:560px) {
  .footer__grid { grid-template-columns:1fr; }
  .footer__bottom { flex-direction:column; gap:12px; text-align:center; }
}

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bar {
  display:none;
  position:fixed; bottom:0; left:0; right:0;
  background:var(--white);
  box-shadow:0 -2px 16px rgba(0,0,0,0.08);
  z-index:999;
  padding:8px 16px;
  gap:8px;
}
.mobile-bar__item {
  flex:1; display:flex; flex-direction:column;
  align-items:center; gap:4px; padding:8px 4px;
  font-size:10px; color:var(--gray);
  background:none; cursor:pointer;
  transition:var(--transition);
  border:none;
}
.mobile-bar__item svg { width:22px; height:22px; }
.mobile-bar__item--book {
  background:var(--gold); color:var(--white);
  border-radius:var(--radius-sm);
  font-weight:600; font-size:12px;
}
@media(max-width:768px) {
  .mobile-bar { display:flex; }
  body { padding-bottom:72px; }
}

/* ===== PARALLAX HELPERS ===== */
.parallax-bg {
  will-change:transform;
}

/* ===== WEATHER WIDGET ===== */
.weather {
  position:absolute; top:90px; right:24px;
  z-index:2;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:var(--radius-md);
  padding:12px 18px;
  display:flex; align-items:center; gap:10px;
  color:var(--white);
}
.weather__temp {
  font-size:20px; font-weight:600;
}
.weather__desc {
  font-size:12px; opacity:0.8;
}
.weather__icon { font-size:24px; }

@media(max-width:768px) {
  .weather { display:none; }
}