*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:#102033;
  background:#f5f7fb;
  line-height:1.6;
}

body.menu-open{
  overflow:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  font-weight:700;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:linear-gradient(135deg,#22b7ee,#0f96cf);
  color:#fff;
  box-shadow:0 14px 28px rgba(17,152,207,.26);
}

.btn-secondary{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
  backdrop-filter:blur(8px);
}

/* HEADER */

.site-header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:90;
  padding:16px 0 0;
}

.header-shell{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  padding:12px 16px;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.45);
  border-radius:22px;
  box-shadow:0 18px 40px rgba(15,23,42,.10);
}

.brand{
  display:inline-flex;
  align-items:center;
}

.brand img{
  width:68px;
  height:auto;
}

.main-nav{
  display:flex;
  align-items:center;
}

.desktop-nav{
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
}

.main-nav a{
  padding:10px 13px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  color:#102033;
  transition:background .2s ease,color .2s ease;
}

.main-nav a:hover,
.main-nav a.is-active{
  background:rgba(16,32,51,.06);
  color:#0f96cf;
}

.header-right{
  display:flex;
  align-items:center;
  gap:12px;
}

.booking-btn{
  background:#102033;
  color:#fff;
  box-shadow:0 10px 22px rgba(16,32,51,.18);
}

.booking-btn-mobile{
  min-height:42px;
  padding:0 18px;
  font-size:14px;
}

.desktop-only{
  display:flex;
}

.mobile-only{
  display:none;
}

/* LANGUAGE SWITCHER */

.lang-switcher{
  position:relative;
}

.lang-switcher-toggle{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:0 12px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.96);
  box-shadow:inset 0 0 0 1px rgba(16,32,51,.08),0 8px 18px rgba(15,23,42,.06);
  color:#102033;
  font:inherit;
  font-weight:800;
  cursor:pointer;
}

.lang-switcher-toggle img{
  width:18px;
  height:14px;
  border-radius:3px;
  object-fit:cover;
}

.lang-caret{
  font-size:12px;
  opacity:.72;
}

.lang-switcher.is-open .lang-switcher-toggle{
  box-shadow:inset 0 0 0 1px rgba(16,32,51,.12),0 12px 26px rgba(15,23,42,.10);
}

.lang-switcher-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:190px;
  padding:8px;
  border-radius:18px;
  background:rgba(255,255,255,.98);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 18px 40px rgba(15,23,42,.14);
  border:1px solid rgba(255,255,255,.55);
}

.lang-option{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:12px;
  font-size:14px;
  font-weight:700;
  color:#102033;
}

.lang-option img{
  width:20px;
  height:15px;
  border-radius:3px;
  object-fit:cover;
}

.lang-option:hover{
  background:rgba(16,32,51,.05);
}

.lang-option.is-active{
  background:#102033;
  color:#fff;
}

/* MOBILE ACTIONS */

.mobile-lang-switcher .lang-switcher-toggle{
  min-height:40px;
  padding:0 12px;
}

.menu-toggle{
  position:relative;
  width:44px;
  height:44px;
  border:none;
  border-radius:14px;
  background:#fff;
  box-shadow:inset 0 0 0 1px rgba(16,32,51,.08),0 8px 18px rgba(15,23,42,.08);
  cursor:pointer;
  padding:0;
  transition:transform .2s ease,box-shadow .2s ease;
}

.menu-toggle:hover{
  transform:translateY(-1px);
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  margin:4px auto;
  background:#102033;
  border-radius:2px;
  transition:transform .22s ease,opacity .22s ease;
}

.menu-toggle.is-open span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2){
  opacity:0;
}

.menu-toggle.is-open span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

/* MOBILE PANEL */

.mobile-panel{
  position:fixed;
  inset:0;
  z-index:120;
  display:none;
}

.mobile-panel.is-open{
  display:block;
}

.mobile-panel[hidden]{
  display:none !important;
}

.mobile-panel-backdrop{
  position:absolute;
  inset:0;
  background:rgba(7,14,28,.72);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.mobile-panel-wrap{
  position:relative;
  z-index:1;
  padding-top:128px;
}

.mobile-panel-inner{
  padding:14px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.45);
  border-radius:24px;
  box-shadow:0 22px 44px rgba(15,23,42,.16);
}

.mobile-nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.mobile-nav a{
  display:flex;
  align-items:center;
  min-height:50px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(16,32,51,.04);
  font-size:15px;
}

.mobile-nav a.is-active{
  background:#102033;
  color:#fff;
}

/* HERO */

.hero{
  position:relative;
  min-height:92vh;
  overflow:hidden;
  background:#08111f;
}

.hero-media,
.hero-overlay{
  position:absolute;
  inset:0;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  background:linear-gradient(180deg,rgba(7,14,28,.30),rgba(7,14,28,.58) 45%,rgba(7,14,28,.80));
}

.hero-content{
  position:relative;
  z-index:2;
  padding:156px 0 86px;
  color:#fff;
}

.hero-panel{
  max-width:760px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.hero h1{
  margin:0 0 18px;
  font-size:clamp(42px,6vw,76px);
  line-height:.96;
  letter-spacing:-.03em;
  text-shadow:0 8px 24px rgba(0,0,0,.2);
}

.hero p{
  max-width:680px;
  margin:0 0 30px;
  font-size:clamp(18px,2vw,23px);
  color:rgba(255,255,255,.92);
  text-shadow:0 4px 16px rgba(0,0,0,.18);
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* CONTENT */

.section{
  padding:86px 0;
}

.section.compact{
  padding-top:0;
}

.section-head{
  max-width:780px;
  margin:0 auto 40px;
  text-align:center;
}

.section-head .eyebrow-dark{
  display:inline-block;
  margin-bottom:12px;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
  color:#0f96cf;
}

.section-head h2{
  margin:0 0 12px;
  font-size:clamp(30px,4vw,46px);
  line-height:1.05;
}

.section-head p{
  margin:0;
  color:#5b6778;
  font-size:18px;
}

.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
}

.panel{
  background:#fff;
  border-radius:26px;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.panel.padded{
  padding:30px;
}

.panel h3{
  margin:0 0 10px;
  font-size:28px;
}

.panel p:last-child{
  margin-bottom:0;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  background:#fff;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  transition:.25s transform,.25s box-shadow;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 54px rgba(15,23,42,.12);
}

.card-media{
  aspect-ratio:4/3;
  overflow:hidden;
  position:relative;
}

.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s;
}

.card:hover .card-media img{
  transform:scale(1.04);
}

.badge{
  position:absolute;
  top:14px;
  left:14px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(16,32,51,.84);
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.card-body{
  padding:20px;
}

.card-body .zone{
  display:inline-block;
  margin-bottom:8px;
  color:#0f96cf;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.card-body h3{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.06;
}

.card-body p{
  margin:0 0 16px;
  color:#5b6778;
}

.inline-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0;
  padding:0;
  list-style:none;
}

.inline-list li{
  padding:7px 10px;
  border-radius:999px;
  background:#eef3f8;
  font-size:13px;
  font-weight:700;
  color:#334155;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.feature{
  padding:28px;
  background:#fff;
  border-radius:24px;
  box-shadow:0 14px 34px rgba(15,23,42,.06);
}

.feature h3{
  margin:0 0 10px;
  font-size:22px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.gallery-grid img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 14px 34px rgba(15,23,42,.08);
}

.offer-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.offer{
  padding:24px;
  border-radius:24px;
  background:#fff;
  box-shadow:0 14px 34px rgba(15,23,42,.06);
}

.offer strong{
  display:block;
  margin-bottom:8px;
  font-size:20px;
}

.cta-band{
  padding:0 0 86px;
}

.cta-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:34px;
  border-radius:28px;
  background:linear-gradient(135deg,#0f172a,#16354d);
  color:#fff;
  box-shadow:0 24px 60px rgba(15,23,42,.16);
}

.cta-box h2{
  margin:0 0 8px;
  font-size:clamp(28px,3.4vw,42px);
  line-height:1.06;
}

.cta-box p{
  margin:0;
  color:rgba(255,255,255,.82);
}

.site-footer{
  padding:54px 0 20px;
  background:#0d1728;
  color:#d8e0ea;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr;
  gap:26px;
}

.footer-logo{
  width:64px;
  margin-bottom:14px;
}

.footer-copy{
  max-width:360px;
  color:#aab6c4;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}

.footer-links a{
  color:#d8e0ea;
}

.compact-flags a{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.compact-flags img{
  width:18px;
  height:14px;
  border-radius:3px;
}

.footer-bottom{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#aab6c4;
}

.notice{
  padding:170px 0 90px;
}

.notice .panel{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}

.page-hero{
  padding:162px 0 54px;
  background:linear-gradient(180deg,#0e1728,#15263b);
  color:#fff;
}

.page-hero p{
  max-width:760px;
  color:rgba(255,255,255,.82);
}

/* RESPONSIVE */

@media (max-width:1120px){
  .desktop-nav,
  .desktop-only{
    display:none;
  }

  .mobile-only{
    display:flex;
  }

  .cards,
  .offer-list{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .gallery-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .feature-grid,
  .footer-grid,
  .split{
    grid-template-columns:1fr;
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:767px){
  .container{
    width:min(100%,calc(100% - 24px));
  }

  .site-header{
    padding-top:12px;
  }

  .header-shell{
    padding:10px 12px;
    gap:10px;
    grid-template-columns:auto 1fr auto;
    border-radius:20px;
  }

  .brand img{
    width:76px;
  }

  .header-right.mobile-only{
    gap:8px;
    justify-content:flex-end;
  }

  .mobile-lang-switcher .lang-switcher-toggle{
    min-height:40px;
    padding:0 10px;
  }

  .mobile-lang-switcher .lang-switcher-menu{
    right:auto;
    left:0;
    min-width:170px;
  }

  .booking-btn-mobile{
    min-height:40px;
    padding:0 16px;
    font-size:13px;
  }

  .mobile-panel-wrap{
    padding-top:124px;
  }

  .hero-content{
    padding:154px 0 64px;
  }

  .hero h1{
    font-size:clamp(40px,11vw,56px);
    line-height:.98;
  }

  .hero p{
    font-size:clamp(16px,4.9vw,21px);
    margin-bottom:24px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

  .booking-btn-mobile{
    width:auto;
  }

  .section{
    padding:66px 0;
  }

  .cards,
  .offer-list,
  .feature-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .cta-band{
    padding-bottom:66px;
  }

  .cta-box{
    padding:24px;
  }

  .notice{
    padding:140px 0 70px;
  }
}

.site-footer{
  padding:56px 0 20px;
  background:
    radial-gradient(circle at top center, rgba(34,183,238,.10), transparent 38%),
    linear-gradient(180deg, #071225 0%, #0b1830 100%);
  color:#d8e0ea;
}

.footer-premium{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:24px;
}

.footer-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}

.footer-brand-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:20px;
  background:rgba(255,255,255,.96);
  box-shadow:
    0 14px 34px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.72);
}

.footer-logo{
  width:86px;
  height:auto;
}

.footer-copy{
  max-width:440px;
  margin:0;
  font-size:16px;
  line-height:1.6;
  color:#b7c4d4;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.footer-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:#eef4fb;
  font-weight:700;
  font-size:14px;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer-links a:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.16);
}

.footer-bottom{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
}

.footer-bottom p{
  margin:0;
  font-size:13px;
  line-height:1.5;
  color:#8ea2b8;
}

@media (max-width:767px){
  .site-footer{
    padding:44px 0 18px;
  }

  .footer-premium{
    gap:20px;
  }

  .footer-brand-badge{
    padding:12px 16px;
    border-radius:18px;
  }

  .footer-logo{
    width:78px;
  }

  .footer-copy{
    max-width:320px;
    font-size:15px;
  }

  .footer-links{
    gap:8px;
  }

  .footer-links a{
    min-height:40px;
    padding:0 14px;
    font-size:13px;
  }

  .footer-bottom{
    margin-top:22px;
    padding-top:16px;
  }

  .footer-bottom p{
    font-size:12px;
  }
}

/* PACK 03 — luxury / premium */
.page-hero-compact{padding-bottom:40px;}
.section-light{background:#f7f8fb;}
.narrow-stack{max-width:860px;}
.legal-stack{display:block;}
.legal-panel h2{margin:0 0 8px;font-size:26px;}
.legal-panel h2 + p, .legal-panel h2 + ul{margin-top:0;}
.legal-list{margin:0;padding-left:18px;color:#415065;}
.legal-list li + li{margin-top:8px;}

.site-header-floating{padding-top:18px;}
.header-shell-premium{
  background:rgba(255,255,255,.74);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 24px 56px rgba(15,23,42,.12);
}
.brand-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(244,247,251,.92));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8),0 10px 24px rgba(15,23,42,.08);
}
.brand-badge img{width:66px;height:auto;}
.desktop-nav a{font-size:14px;letter-spacing:.01em;}
.desktop-nav a:hover,
.desktop-nav a.is-active{
  background:#101b2d;
  color:#fff;
}
.booking-btn-dark{
  background:linear-gradient(135deg,#0e1728,#1c2d44);
  color:#fff;
  box-shadow:0 16px 34px rgba(10,19,33,.28);
}
.menu-toggle{
  border-radius:16px;
  background:linear-gradient(180deg,#ffffff,#f4f7fb);
}
.mobile-panel-wrap{padding-top:116px;}
.premium-mobile-panel{
  border-radius:28px;
  padding:18px;
}
.mobile-panel-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}
.mobile-panel-title{
  font-weight:800;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#0f96cf;
}
.mobile-booking-link{background:#101b2d !important;color:#fff !important;}

.premium-hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(61,92,138,.22), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(34,183,238,.12), transparent 22%),
    linear-gradient(180deg,#0a1220 0%,#13243b 62%,#1a2d46 100%);
}

.premium-hero::after{
  display:none;
}

.booking-hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
  align-items:end;
  max-width:780px;
}

.booking-hero-copy h1{max-width:780px;}

.luxury-note-card{
  align-self:center;
  padding:24px 24px 22px;
  border-radius:28px;
  background:rgba(255,255,255,.92);
  color:#102033;
  box-shadow:0 22px 58px rgba(8,17,31,.16);
}

.luxury-note-kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#0f96cf;
}

.luxury-note-card strong{display:block;margin-bottom:10px;font-size:22px;line-height:1.1;}
.luxury-note-card p{margin:0;color:#5b6778;}

.booking-section{position:relative;padding-top:18px;}
.filters-shell{
  margin-top:-10px;
  margin-bottom:22px;
  padding:22px 24px 20px;
  border-radius:30px;
  background:rgba(255,255,255,.92);
  box-shadow:0 20px 48px rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.05);
}
.filters-topline{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.filters-label{
  display:inline-block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#0f96cf;
}
.filters-topline h2{margin:0;font-size:28px;line-height:1.08;}
.filters-summary{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:18px;
  background:#f3f6fa;
  color:#415065;
  font-weight:700;
  white-space:nowrap;
}
.filters-summary span:first-child{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:34px;
  height:34px;
  padding:0 10px;
  border-radius:999px;
  background:#101b2d;
  color:#fff;
}
.filters-groups{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 18px;}
.filter-group{display:grid;gap:8px;}
.filter-group-title{
  font-size:13px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#5b6778;
}
.filter-chips{display:flex;flex-wrap:wrap;gap:8px;}
.filter-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border:none;
  border-radius:999px;
  background:#eef2f6;
  color:#102033;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  transition:background .2s ease,color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.filter-chip:hover{transform:translateY(-1px);box-shadow:0 8px 18px rgba(15,23,42,.08);}
.filter-chip.is-active{
  background:linear-gradient(135deg,#101b2d,#21324c);
  color:#fff;
  box-shadow:0 14px 30px rgba(16,27,45,.24);
}
.filters-actions{display:flex;justify-content:flex-end;margin-top:14px;margin-bottom:10px;}
.filters-reset{
  min-height:44px;
  padding:0 16px;
  border:none;
  border-radius:999px;
  background:transparent;
  color:#334155;
  font:inherit;
  font-weight:800;
  cursor:pointer;
  opacity:.55;
  transition:opacity .2s ease,transform .2s ease;
}
.filters-reset.is-visible{opacity:1;}
.filters-reset:hover{transform:translateY(-1px);}

.booking-cards{grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.luxury-card{
  position:relative;
  border:1px solid rgba(15,23,42,.04);
  background:linear-gradient(180deg,#ffffff,#fbfcfe);
}
.luxury-card-link{display:flex;flex-direction:column;height:100%;}
.luxury-card-media{aspect-ratio:4/3;border-radius:24px 24px 0 0;}
.card-media-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(6,12,22,.06),rgba(6,12,22,.20) 100%);
  pointer-events:none;
}
.luxury-kicker{
  top:16px;
  left:16px;
  background:rgba(9,17,31,.78);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.luxury-card-body{padding:22px 22px 20px;}
.card-meta-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.card-arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:999px;
  background:#eef3f8;
  color:#101b2d;
  font-size:18px;
  flex:0 0 auto;
}
.luxury-card:hover .card-arrow{
  background:#101b2d;
  color:#fff;
}
.luxury-card-body h3{font-size:31px;letter-spacing:-.03em;margin-bottom:10px;}
.luxury-card-body p{min-height:88px;}
.luxury-inline-list{margin-bottom:18px;}
.luxury-inline-list li{background:#f2f5f8;color:#223247;font-weight:800;}
.luxury-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  color:#0f96cf;
}
.luxury-cta::after{content:'→';font-size:15px;}

@media (max-width:1120px){
  .booking-hero-grid,
  .filters-groups,
  .booking-cards{grid-template-columns:1fr 1fr;}
  .booking-hero-grid{grid-template-columns:1fr;}
  .luxury-note-card{max-width:420px;}
}

@media (max-width:767px){
  .site-header-floating{padding-top:12px;}
  .header-shell-premium{padding:10px 12px;border-radius:20px;}
  .brand-badge{padding:8px 10px;border-radius:16px;}
  .brand-badge img{width:58px;}
  .premium-mobile-panel{padding:16px;border-radius:24px;}
  .booking-hero-grid,
  .filters-groups,
  .booking-cards{grid-template-columns:1fr;}
  .booking-hero{padding-bottom:34px;}
  .filters-shell{margin-top:0;padding:16px 16px 12px;border-radius:24px;}
  .filters-topline{flex-direction:column;align-items:flex-start;gap:10px;margin-bottom:12px;}
  .filters-topline h2{font-size:24px;}
  .filters-summary{padding:8px 12px;}
  .filter-chip{min-height:40px;padding:0 13px;font-size:14px;}
  .filters-actions{justify-content:flex-start;margin-top:12px;margin-bottom:18px;}
  .luxury-card-body{padding:18px 18px 20px;}
  .luxury-card-body h3{font-size:27px;}
  .luxury-card-body p{min-height:0;}
}

.booking-section .booking-cards{margin-top:8px;}
@media (max-width:767px){
  .booking-section .booking-cards{margin-top:2px;}
  .filters-reset{margin-bottom:6px;}
}

/* GALLERY PAGE */
.gallery-section{
  padding-top:72px;
}

.gallery-intro-panels{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  margin-bottom:22px;
}

.gallery-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:28px;
}

.gallery-tag{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 12px 28px rgba(15,23,42,.05);
  color:#334155;
  font-size:14px;
  font-weight:700;
}

.gallery-photo-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:18px;
}

.gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  box-shadow:0 14px 34px rgba(15,23,42,.08);
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .28s ease;
}

.gallery-card:hover img{
  transform:scale(1.03);
}

.gallery-card figcaption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px 18px 16px;
  background:linear-gradient(180deg, rgba(7,18,37,0) 0%, rgba(7,18,37,.82) 68%, rgba(7,18,37,.92) 100%);
  color:#fff;
}

.gallery-card figcaption strong{
  display:block;
  font-size:16px;
  line-height:1.2;
}

.gallery-card figcaption span{
  display:block;
  margin-top:4px;
  color:rgba(255,255,255,.82);
  font-size:14px;
}

.gallery-card--square{
  grid-column:span 4;
  aspect-ratio:1/1;
}

.gallery-card--landscape{
  grid-column:span 8;
  aspect-ratio:16/10;
}

.gallery-card--portrait{
  grid-column:span 4;
  aspect-ratio:4/5;
}

@media (max-width:1120px){
  .gallery-intro-panels{
    grid-template-columns:1fr;
  }

  .gallery-card--square,
  .gallery-card--landscape,
  .gallery-card--portrait{
    grid-column:span 6;
  }
}

@media (max-width:767px){
  .gallery-section{
    padding-top:66px;
  }

  .gallery-tags{
    margin-bottom:22px;
  }

  .gallery-photo-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .gallery-card--square,
  .gallery-card--landscape,
  .gallery-card--portrait{
    grid-column:auto;
    aspect-ratio:4/3;
  }

  .gallery-card figcaption{
    padding:16px 16px 14px;
  }

  .gallery-card figcaption strong{
    font-size:15px;
  }

  .gallery-card figcaption span{
    font-size:13px;
  }
}
