:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e5e7eb;
  --brand:#0ea5a4;
  --brand2:#0284c7;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --radius: 18px;

  --container: 1200px;
  --pad: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
  z-index:50;
}

.header-inner{
  width:100%;
  max-width:none;
  margin:0;
  padding:8px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  height:96px;
}

.brand-logo{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  text-decoration:none;
  flex:0 0 auto;
  min-width:220px;
  height:100%;
  overflow:hidden;
}

.brand-logo img{
  display:block;
  height:120px;
  width:auto;
  max-width:none;
  object-fit:contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.10));
  transition:transform .25s ease;
}

.brand-logo:hover img{
  transform:scale(1.02);
}

.brand-title{
  font-weight:800;
  letter-spacing:.2px;
  font-size:18px;
}

.brand-subtitle{
  margin-top:2px;
  font-size:12px;
  color:var(--muted);
}

.site-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  margin-left:auto;
  font-weight:750;
  font-size:14px;
  color:#111827;
}

.site-nav a{
  padding:10px 10px;
  border-radius:12px;
}

.site-nav a:hover{
  background:#f1f5f9;
}

.site-nav a[aria-current="page"]{
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  padding:10px 14px;
  border-radius:12px;
  box-shadow:var(--shadow);
}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-size:18px;
}

.mobile-nav{
  display:none;
  border-top:1px solid var(--line);
  background:#fff;
  padding:8px 40px 14px;
}

.mobile-nav.open{
  display:block;
}

.mobile-nav a{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  font-weight:800;
}

.mobile-nav a:hover{
  background:#f1f5f9;
}

/* HERO */
.hero{
  position:relative;
  min-height:62vh;
  border-bottom:1px solid var(--line);
  overflow:hidden;
  background:#f8fafc;
}

.hero-slider{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity .55s ease;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

.slide.active{
  opacity:1;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 20% 15%, rgba(255,255,255,.95), rgba(255,255,255,.55) 55%, rgba(255,255,255,.15) 100%),
    linear-gradient(to bottom, rgba(255,255,255,.35), rgba(255,255,255,.15));
  pointer-events:none;
}

.hero-content{
  position:relative;
  max-width:1400px;
  margin:0 auto;
  padding:44px 40px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  align-items:center;
  min-height:62vh;
}

.hero-text h1{
  margin:0 0 10px;
  font-size: clamp(30px, 3.2vw, 56px);
  line-height:1.06;
  letter-spacing:-.8px;
  color:#0b1220;
  text-shadow: 0 6px 20px rgba(255,255,255,.35);
}

.hero-text p{
  margin:0 0 18px;
  color:#334155;
  font-size:16px;
  line-height:1.65;
  max-width:62ch;
}

.hero-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  font-weight:900;
  font-size:14px;
  border:1px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
}

.btn.primary{
  border:none;
  color:#fff;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: var(--shadow);
}

/* Slider kontroller */
.slider-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  border:none;
  width:44px;
  height:44px;
  border-radius:14px;
  background: rgba(255,255,255,.88);
  cursor:pointer;
  font-size:22px;
  box-shadow: var(--shadow);
  z-index:5;
}

.slider-btn.prev{ left:16px; }
.slider-btn.next{ right:16px; }

.dots{
  position:absolute;
  left:12px;
  right:12px;
  bottom:14px;
  display:flex;
  gap:8px;
  justify-content:center;
  z-index:5;
}

.dot{
  width:9px;
  height:9px;
  border-radius:999px;
  background: rgba(15,23,42,.28);
  cursor:pointer;
}

.dot.active{
  background: rgba(15,23,42,.75);
}

/* HOME SECTIONS */
.home-sections{
  max-width:1400px;
  margin:0 auto;
  padding:34px 40px 56px;
}

.section-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:center;
  padding:22px 0;
  border-bottom:1px solid var(--line);
}

.section-row.reverse .media{order:2}
.section-row.reverse .content{order:1}

.media{
  height:260px;
  border-radius:18px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid var(--line);
  background:#f8fafc;
}

.media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.content h2{
  margin:0 0 8px;
  font-size:26px;
  letter-spacing:-.3px;
}

.content p{
  margin:0 0 10px;
  color:var(--muted);
  line-height:1.7;
}

.link{
  display:inline-flex;
  gap:8px;
  font-weight:900;
  color:#0f766e;
}

.link:hover{
  text-decoration:underline;
}

/* PAGE HERO - GENEL */
.page-hero{
  border-bottom:1px solid var(--line);
  background:#dfecef;
}

.page-hero-inner{
  max-width:1400px;
  margin:0 auto;
  padding:54px 40px 46px;
}

.page-kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#ecfeff;
  color:#0f766e;
  border:1px solid #bae6fd;
  font-weight:800;
  font-size:13px;
  margin-bottom:12px;
}

.page-hero h1{
  margin:0 0 10px;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height:1.05;
  letter-spacing:-.7px;
  color:#0b1220;
}

.page-hero p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
  max-width:70ch;
}

/* MENU PAGE */
.menu-page{
  max-width:1400px;
  margin:0 auto;
  padding:28px 40px 56px;
}

.menu-toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  margin-bottom:24px;
}

.menu-switch{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.menu-tab,
.menu-type{
  border:1px solid var(--line);
  background:#fff;
  color:#0f172a;
  border-radius:14px;
  padding:12px 16px;
  font-weight:900;
  font-size:14px;
  cursor:pointer;
  box-shadow: var(--shadow);
  transition:.2s ease;
}

.menu-tab:hover,
.menu-type:hover{
  transform: translateY(-1px);
}

.menu-tab.active,
.menu-type.active{
  color:#fff;
  border-color:transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

.menu-panel{display:none}
.menu-panel.active{display:block}

.menu-cover{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow: var(--shadow);
  margin-bottom:18px;
}

.menu-badge{
  display:inline-flex;
  margin-bottom:10px;
  padding:7px 12px;
  border-radius:999px;
  background:#f1f5f9;
  color:#0f172a;
  font-size:13px;
  font-weight:800;
}

.menu-cover h2{
  margin:0 0 8px;
  font-size:32px;
  letter-spacing:-.4px;
}

.menu-cover p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.menu-cover-photo{
  border-radius:20px;
  overflow:hidden;
  min-height:240px;
  border:1px solid var(--line);
  background:#f8fafc;
}

.menu-cover-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.menu-category-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 20px;
}

.menu-category-nav a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  box-shadow: var(--shadow);
}

.menu-category-nav a:hover{
  background:#f8fafc;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.menu-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}

.menu-card h3{
  margin:0;
  padding:18px 18px 14px;
  font-size:20px;
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg, #ffffff, #f8fafc);
}

.menu-table{
  width:100%;
  border-collapse:collapse;
}

.menu-table tr:not(:last-child){
  border-bottom:1px solid #eef2f7;
}

.menu-table td{
  padding:14px 18px;
  vertical-align:top;
  font-size:15px;
}

.menu-table .price{
  width:110px;
  text-align:right;
  color:#64748b;
  white-space:nowrap;
}

.menu-table .price:empty::after{
  content:"";
}

.menu-toolbar-single{
  justify-content:flex-start;
}

.menu-grid-single{
  grid-template-columns:1fr;
}

.cocktail-list{
  padding:6px 0;
}

.cocktail-item{
  padding:16px 18px;
  border-bottom:1px solid #eef2f7;
}

.cocktail-item:last-child{
  border-bottom:none;
}

.cocktail-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  font-weight:900;
  margin-bottom:6px;
}

.cocktail-item p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}

.beach-hero,
.hotel-hero,
.sustainability-hero,
.price-hero{
  background:#dfecef;
  width:100%;
  border-bottom:1px solid #e2e8f0;
}

.sustainability-hero-inner{
  max-width:1400px;
  margin:auto;
  padding:56px 40px 44px;
}

.sustainability-hero h1{
  margin:0 0 10px;
  font-size:48px;
}

.sustainability-hero p{
  color:#475569;
  max-width:720px;
  line-height:1.8;
}

/* HOTEL PAGE */
.rooms-page{
  max-width:1400px;
  margin:0 auto;
  padding:30px 40px 56px;
}

.room-card{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:24px;
  align-items:start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow: var(--shadow);
}

.room-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  min-height:42px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  font-weight:900;
  font-size:14px;
  line-height:1;
  margin:0 0 18px;
  box-shadow:0 8px 18px rgba(2,132,199,.18);
}

.room-info{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.room-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.feature-item{
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#f8fafc;
  color:#0f172a;
  line-height:1.5;
  font-size:14px;
}

.room-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.room-gallery img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid var(--line);
  background:#f8fafc;
  box-shadow: var(--shadow);
}

.room-divider{
  height:1px;
  margin:24px 0;
  background:
    linear-gradient(
      to right,
      transparent,
      rgba(2,132,199,.25),
      rgba(14,165,164,.45),
      rgba(2,132,199,.25),
      transparent
    );
}

/* SUSTAINABILITY PAGE */
.sustainability-page{
  max-width:1400px;
  margin:0 auto;
  padding:32px 40px 56px;
}

.policy-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  box-shadow: var(--shadow);
}

.policy-card h2{
  margin:0 0 18px;
  font-size:30px;
  letter-spacing:-.4px;
}

.policy-card p{
  margin:0 0 16px;
  color:#334155;
  line-height:1.8;
  font-size:15px;
}

.policy-intro{
  font-weight:800;
  color:#0f172a;
  margin-top:8px;
}

.policy-section{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid #eef2f7;
}

.policy-section h3{
  margin:0 0 12px;
  font-size:19px;
  color:#0f172a;
}

.policy-section ul{
  margin:0;
  padding-left:20px;
  color:#334155;
}

.policy-section li{
  margin-bottom:10px;
  line-height:1.7;
}

.certificates-section{
  margin-top:28px;
}

.section-title-row{
  margin-bottom:16px;
}

.section-title-row h2{
  margin:0 0 6px;
  font-size:28px;
  letter-spacing:-.3px;
}

.section-title-row p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.certificate-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.certificate-card{
  display:block;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow: var(--shadow);
  transition:.2s ease;
}

.certificate-card:hover{
  transform: translateY(-3px);
  border-color:#bae6fd;
}

.certificate-preview{
  position:relative;
  height:230px;
  border-bottom:1px solid var(--line);
  background:#f8fafc;
  overflow:hidden;
}

.certificate-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.certificate-stage{
  position:absolute;
  top:14px;
  right:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  color:#fff;
  font-weight:900;
  font-size:12px;
  box-shadow: var(--shadow);
}

.stage-1{
  background: linear-gradient(135deg, #0ea5a4, #0284c7);
}

.stage-2{
  background: linear-gradient(135deg, #16a34a, #0f766e);
}

.certificate-content{
  padding:20px;
}

.certificate-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  font-weight:900;
  font-size:12px;
  margin-bottom:14px;
}

.certificate-card h3{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.2px;
}

.certificate-date{
  margin:0 0 8px;
  color:#0f172a !important;
  font-size:14px !important;
}

.certificate-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.lang-alt-box{
  margin-top:24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  box-shadow: var(--shadow);
}

.lang-alt-box h3{
  margin:0 0 8px;
  font-size:22px;
}

.lang-alt-box p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.7;
}

/* PRICE PAGE */
.price-page{
  max-width:1400px;
  margin:0 auto;
  padding:32px 40px 56px;
}

.price-card,
.bank-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow: var(--shadow);
  margin-bottom:22px;
}

.price-table-wrap{
  overflow-x:auto;
}

.price-table{
  width:100%;
  border-collapse:collapse;
  min-width:620px;
}

.price-table thead th{
  text-align:left;
  padding:16px 18px;
  background:#f8fafc;
  border-bottom:1px solid var(--line);
  font-size:15px;
}

.price-table tbody td{
  padding:16px 18px;
  border-bottom:1px solid #eef2f7;
  font-size:15px;
}

.price-table tbody tr:last-child td{
  border-bottom:none;
}

.price-table tbody td:nth-child(2),
.price-table tbody td:nth-child(3){
  font-weight:800;
  color:#0f172a;
}

.bank-info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.bank-info-item{
  padding:16px 18px;
  background:#f8fafc;
  border:1px solid var(--line);
  border-radius:18px;
}

.bank-info-item-full{
  grid-column:1 / -1;
}

.bank-label{
  display:block;
  font-size:13px;
  color:#64748b;
  margin-bottom:6px;
  font-weight:800;
}

.accounts-section{
  margin-top:10px;
}

.account-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.account-card{
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow: var(--shadow);
}

.account-preview{
  position:relative;
  height:260px;
  background:#f8fafc;
  border-bottom:1px solid var(--line);
  overflow:hidden;
}

.account-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.account-currency{
  position:absolute;
  top:14px;
  right:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  font-weight:900;
  font-size:12px;
  box-shadow: var(--shadow);
}

.account-content{
  padding:20px;
}

.account-content h3{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.2px;
}

.account-content p{
  margin:0 0 8px;
  color:#334155;
  line-height:1.7;
  font-size:14px;
}

.account-content p:last-child{
  margin-bottom:0;
}

/* CONTACT BUTTON */
.contact-btn{
  display:inline-block;
  margin-top:12px;
  padding:10px 14px;
  border-radius:12px;
  font-weight:700;
  font-size:14px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#fff;
  box-shadow:var(--shadow);
  transition:.2s;
}

.contact-btn:hover{
  transform:translateY(-2px);
}

/* FOOTER */
.site-footer{
  width:100%;
  border-top:1px solid var(--line);
  background:#fff;
  padding-bottom: env(safe-area-inset-bottom);
  margin-top: 24px;
}

.footer-inner{
  width:100%;
  max-width:none;
  margin:0;
  padding:18px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#0f172a;
}

.muted{
  color:#64748b;
}

@media (max-width: 980px){
  .footer-inner{
    padding:16px 20px;
  }
}

@media (max-width: 640px){
  .footer-inner{
    padding:14px 16px;
    flex-direction:column;
    gap:8px;
    align-items:flex-start;
  }
}

/* RESPONSIVE */
@media (max-width: 980px){
  .site-nav{
    display:none;
  }

  .nav-toggle{
    display:block;
  }

  .header-inner{
    padding:8px 20px;
    height:82px;
  }

  .brand-logo{
    min-width:180px;
  }

  .brand-logo img{
    height:64px;
  }

  .mobile-nav{
    padding:8px 20px 14px;
  }

  .hero-content{
    grid-template-columns:1fr;
    padding:34px 20px;
    min-height:70vh;
  }

  .hero{
    min-height:70vh;
  }

  .slider-btn.prev{left:10px}
  .slider-btn.next{right:10px}

  .home-sections{
    padding:24px 20px 44px;
  }

  .section-row{
    grid-template-columns:1fr;
  }

  .section-row.reverse .media{order:1}
  .section-row.reverse .content{order:2}

  .media{
    height:240px;
  }

  .page-hero-inner{
    padding:46px 20px 38px;
  }

  .menu-page{
    padding:24px 20px 44px;
  }

  .menu-toolbar{
    align-items:flex-start;
  }

  .menu-cover{
    grid-template-columns:1fr;
    padding:18px;
  }

  .menu-grid{
    grid-template-columns:1fr;
  }

  .menu-cover h2{
    font-size:28px;
  }

  .rooms-page{
    padding:26px 20px 46px;
  }

  .room-card{
    grid-template-columns:1fr;
  }

  .room-info h2{
    font-size:28px;
  }

  .room-gallery img{
    height:200px;
  }

  .sustainability-hero-inner{
    padding:48px 20px 38px;
  }

  .sustainability-page{
    padding:26px 20px 46px;
  }

  .certificate-grid{
    grid-template-columns:1fr;
  }

  .bank-info-grid{
    grid-template-columns:1fr;
  }

  .account-grid{
    grid-template-columns:1fr;
  }

  .price-page{
    padding:26px 20px 46px;
  }

  .footer-inner{
    padding:16px 20px;
  }
}

@media (max-width: 640px){
  .header-inner{
    padding:8px 16px;
    height:74px;
  }

  .brand-logo{
    min-width:140px;
  }

  .brand-logo img{
    height:50px;
  }

  .mobile-nav{
    padding:8px 16px 14px;
  }

  .page-hero-inner{
    padding:42px 16px 34px;
  }

  .hero-content{
    padding:28px 16px;
  }

  .home-sections{
    padding:22px 16px 42px;
  }

  .menu-page{
    padding:22px 16px 42px;
  }

  .menu-tab,
  .menu-type{
    width:100%;
    justify-content:center;
  }

  .menu-switch{
    width:100%;
  }

  .menu-category-nav a{
    width:100%;
    justify-content:center;
  }

  .menu-card h3{
    font-size:18px;
  }

  .menu-table td{
    padding:12px 14px;
    font-size:14px;
  }

  .menu-table .price{
    width:80px;
  }

  .rooms-page{
    padding:22px 16px 42px;
  }

  .room-card{
    padding:16px;
    border-radius:20px;
  }

  .room-features{
    grid-template-columns:1fr;
  }

  .room-gallery{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .room-gallery img{
    height:130px;
    border-radius:14px;
  }

  .feature-item{
    font-size:13px;
    padding:10px 12px;
  }

  .sustainability-hero-inner{
    padding:42px 16px 34px;
  }

  .sustainability-page{
    padding:22px 16px 42px;
  }

  .policy-card{
    padding:18px;
    border-radius:20px;
  }

  .policy-card h2{
    font-size:24px;
  }

  .policy-section h3{
    font-size:17px;
  }

  .certificate-preview{
    height:190px;
  }

  .certificate-content{
    padding:16px;
  }

  .certificate-card h3{
    font-size:19px;
  }

  .lang-alt-box{
    padding:18px;
  }

  .price-page{
    padding:22px 16px 42px;
  }

  .price-card,
  .bank-card{
    padding:18px;
    border-radius:20px;
  }

  .price-table thead th,
  .price-table tbody td{
    padding:14px 12px;
    font-size:14px;
  }

  .account-preview{
    height:220px;
  }

  .account-content{
    padding:16px;
  }

  .account-content h3{
    font-size:19px;
  }

  .footer-inner{
    padding:14px 16px;
    flex-direction:column;
    gap:8px;
    align-items:flex-start;
  }
}
.room-gallery img{
  cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease;
}

.room-gallery img:hover{
  transform: scale(1.02);
}

.room-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.room-lightbox.open{
  display: flex;
}

.room-lightbox img{
  max-width: min(1200px, 96vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
}

.room-lightbox-close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: #0f172a;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

@media (max-width: 640px){
  .room-lightbox{
    padding: 16px;
  }

  .room-lightbox img{
    max-width: 95vw;
    max-height: 84vh;
    border-radius: 14px;
  }

  .room-lightbox-close{
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
}
.menu-grid-single{
  grid-template-columns:1fr;
}

.cocktail-item .price{
  color:#64748b;
  white-space:nowrap;
  margin-left:16px;
}

.cocktail-item p:empty{
  display:none;
}
.menu-grid-single{
  grid-template-columns:1fr;
}

.cocktail-item .price{
  color:#64748b;
  white-space:nowrap;
  margin-left:16px;
}

.cocktail-item p:empty{
  display:none;
}
.room-gallery img{
  cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease;
}

.room-gallery img:hover{
  transform: scale(1.02);
}

.room-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.room-lightbox.open{
  display: flex;
}

.room-lightbox img{
  max-width: min(1200px, 96vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
}

.room-lightbox-close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: #0f172a;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.menu-grid-single{
  grid-template-columns:1fr;
}

.cocktail-item .price{
  color:#64748b;
  white-space:nowrap;
  margin-left:16px;
}

.cocktail-item .price:empty{
  display:none;
}

.cocktail-item p:empty{
  display:none;
}

a:focus-visible,
button:focus-visible{
  outline:3px solid rgba(14,165,164,.35);
  outline-offset:3px;
}

@media (max-width: 640px){
  .room-lightbox{
    padding:16px;
  }

  .room-lightbox img{
    max-width:95vw;
    max-height:84vh;
    border-radius:14px;
  }

  .room-lightbox-close{
    top:14px;
    right:14px;
    width:42px;
    height:42px;
    font-size:22px;
  }
}
html{
  scroll-behavior:smooth;
}

.scroll-buttons{
  position:fixed;
  right:18px;
  bottom:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:999;
}

.scroll-btn{
  width:48px;
  height:48px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  font-size:22px;
  font-weight:900;
  cursor:pointer;
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease, opacity .2s ease;
  opacity:.92;
}

.scroll-btn:hover{
  transform:translateY(-2px);
  opacity:1;
}

.scroll-btn.hidden{
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
}

@media (max-width: 640px){
  .scroll-buttons{
    right:14px;
    bottom:16px;
    gap:8px;
  }

  .scroll-btn{
    width:44px;
    height:44px;
    font-size:20px;
    border-radius:12px;
  }
}