/* Baltic / seaside holiday vibe + big gallery */
:root{
  --sand: #f4e7d3;
  --dune: #ead8bd;
  --sea: #2f6f7e;
  --sea-deep: #1f4f59;
  --foam: #f8fbfc;
  --sky: #a7d8f2;
  --sun: #f6b73c;
  --amber: #d38b2e;
  --ink: #13252d;
  --muted:#53616b;
  --card:#ffffff;

  --line: rgba(19,37,45,.12);
  --shadow: 0 14px 40px rgba(16,24,40,.10);
  --r: 18px;
  --r2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background:
    radial-gradient(1100px 520px at 15% 0%, rgba(167,216,242,.50), transparent 62%),
    radial-gradient(1100px 620px at 85% 10%, rgba(47,111,126,.25), transparent 60%),
    linear-gradient(to bottom, var(--foam), var(--sand));
}

a{color:inherit; text-decoration-color: rgba(47,111,126,.45)}
a:hover{ text-decoration-color: rgba(47,111,126,1) }

.skip{position:absolute; left:-999px; top:auto}
.skip:focus{left:16px; top:16px; background:#fff; padding:10px 12px; border-radius:12px; z-index:9999; box-shadow: var(--shadow)}

.wrap{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(248,251,252,.78);
  border-bottom:1px solid var(--line);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px}

.rope{
  height: 10px;
  background:
    repeating-linear-gradient(135deg, rgba(47,111,126,.35) 0 10px, rgba(255,255,255,.0) 10px 20px),
    repeating-linear-gradient(-135deg, rgba(47,111,126,.25) 0 10px, rgba(255,255,255,.0) 10px 20px);
  opacity: .7;
}

.brand{display:flex; gap:12px; align-items:center; text-decoration:none}
.brand__mark{
  width:44px; height:44px; border-radius:16px;
  display:grid; place-items:center;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(47,111,126,.18));
  border:1px solid rgba(47,111,126,.25);
  box-shadow: var(--shadow);
  font-size:20px;
}
.brand__text small{display:block; color:var(--muted); margin-top:2px}

.nav{display:flex; align-items:center; gap:10px}
.nav__toggle{
  display:none;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  cursor:pointer;
  font-weight:800;
}
.nav__menu{display:flex; align-items:center; gap:16px}
.nav__menu a{color:var(--muted); text-decoration:none; font-weight:900}
.nav__menu a:hover{color:var(--ink)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(211,139,46,.55);
  background: linear-gradient(135deg, rgba(246,183,60,.95), rgba(211,139,46,.85));
  box-shadow: 0 10px 24px rgba(211,139,46,.22);
  text-decoration:none;
  font-weight:1000;
}
.btn:hover{filter:brightness(1.02)}
.btn--ghost{
  background: rgba(255,255,255,.75);
  border:1px solid var(--line);
  box-shadow:none;
  font-weight:900;
}
.btn--small{padding:10px 12px; border-radius:14px}

/* HERO */
.hero{position:relative; padding:34px 0 0}
.hero__grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:22px; align-items:center}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(47,111,126,.18);
  box-shadow: 0 10px 30px rgba(47,111,126,.10);
  font-weight:1000;
}
.hero h1{font-size: clamp(32px, 4vw, 52px); line-height:1.05; margin:14px 0 12px; text-shadow: 0 10px 30px rgba(47,111,126,.15)}
.accent{
  background: linear-gradient(90deg, var(--sea), var(--sky), var(--sun));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.lead{margin:0; color:var(--muted); font-size: clamp(16px, 1.3vw, 18px); max-width: 62ch}

.quick{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0}
.quick__item{
  display:flex; gap:10px; align-items:center;
  padding:12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.quick__item span{font-size:18px}
.quick__item small{display:block; color:var(--muted); margin-top:2px}

.cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 8px}

.hero__media{display:flex; flex-direction:column; gap:12px}
.heroCard{
  position:relative;
  border-radius: var(--r2);
  overflow:hidden;
  border:1px solid rgba(47,111,126,.22);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}
.heroCard img{width:100%; height: 360px; object-fit:cover; display:block; filter: saturate(1.03) contrast(1.02)}
.heroCard__tag{
  position:absolute; left:12px; bottom:12px;
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border:1px solid var(--line);
  font-weight:1000;
}

.thumbs{display:grid; grid-template-columns: repeat(4, 1fr); gap:10px}
.thumb{
  border:1px solid var(--line);
  background: rgba(255,255,255,.80);
  border-radius: 16px;
  padding:6px;
  cursor:pointer;
  box-shadow: 0 10px 24px rgba(16,24,40,.07);
}
.thumb img{width:100%; height:74px; object-fit:cover; border-radius: 12px; display:block}
.thumb.is-active{outline: 3px solid rgba(47,111,126,.25)}

.fine{margin:0; color: rgba(19,37,45,.65); font-size: 12px}
.fine--right{text-align:right}

.wave-divider svg{display:block; width:100%; height:80px}

/* SECTIONS */
.section{padding:46px 0}
.section__head{display:flex; flex-direction:column; gap:8px; margin-bottom:14px}
.section__head h2{margin:0; font-size: clamp(24px, 2.4vw, 34px); letter-spacing:.6px}
.section__head h2::after{
  content:"";
  display:block;
  width:86px; height:4px;
  margin-top:10px;
  background: linear-gradient(to right, var(--sea), var(--sun));
  border-radius:4px;
}
.section__head p{margin:0; color:var(--muted); max-width: 75ch}

.section--sand{
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(234,216,189,.65), transparent 62%),
    linear-gradient(180deg, rgba(244,231,211,.85), rgba(244,231,211,0));
}

.grid{display:grid; gap:16px}
.pricing{grid-template-columns: repeat(3, 1fr)}
.split{grid-template-columns: 1fr 1.2fr}
.contact{grid-template-columns: 1.1fr .9fr; align-items:start}

.panel, .price{
  background: rgba(255,255,255,.86);
  border:1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
}
.panel{padding:16px}
.panel iframe{width:100%; height: 340px; border:0; border-radius: 18px}

.price{padding:18px}
.price--sea{
  background: linear-gradient(135deg, rgba(47,111,126,.14), rgba(167,216,242,.28));
  border-color: rgba(47,111,126,.24);
}
.price h3{margin:0 0 10px}
.price__big{margin:0; font-size: 34px; font-weight: 1000}
.price__big span{font-size: 14px; font-weight: 900; color:var(--muted)}
.muted{color:var(--muted)}

.panel--card{padding:18px}
.rows{display:grid; gap:12px; margin:14px 0}
.row{display:grid; grid-template-columns: 26px 1fr; gap:10px; color:var(--muted)}
.row strong{color:var(--ink)}

.bullets{margin:0; padding-left:18px; color: rgba(19,37,45,.86)}
.bullets li{margin:6px 0}

/* Room nav */
.roomNav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}
.roomPill{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.82);
  border:1px solid rgba(47,111,126,.20);
  box-shadow: 0 10px 24px rgba(16,24,40,.06);
  color: var(--ink);
  text-decoration:none;
  font-weight: 950;
}
.roomPill:hover{filter: brightness(1.02)}

/* Room sections */
.roomSection{
  padding: 40px 0;
  border-top: 1px solid rgba(19,37,45,.08);
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(167,216,242,.18), transparent 62%),
    radial-gradient(900px 520px at 90% 20%, rgba(234,216,189,.22), transparent 62%);
}
.roomHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 14px;
}
.roomHead h2{
  margin:0;
  font-size: clamp(20px, 2.2vw, 28px);
}
.roomHead p{margin:6px 0 0; color: var(--muted)}
.backTop{
  color: var(--muted);
  text-decoration:none;
  font-weight: 900;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid rgba(19,37,45,.12);
  background: rgba(255,255,255,.75);
}
.backTop:hover{color:var(--ink)}

/* Gallery grid */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.shot{
  padding:0;
  border:1px solid rgba(19,37,45,.12);
  background: rgba(255,255,255,.85);
  border-radius: 18px;
  overflow:hidden;
  cursor: zoom-in;
  box-shadow: 0 12px 30px rgba(16,24,40,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.shot:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16,24,40,.12);
}
.shot img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
}

/* Footer */
.footer{
  border-top:1px solid rgba(19,37,45,.12);
  padding:18px 0;
  background: rgba(248,251,252,.68);
}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; color:var(--muted)}
.footer__links{display:flex; gap:14px}
.footer__links a{text-decoration:none; color:var(--muted); font-weight:900}
.footer__links a:hover{color:var(--ink)}

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  display:none;
  place-items:center;
  background: rgba(9,17,20,.68);
  z-index: 200;
  padding: 24px;
}
.lightbox.is-open{display:grid}
.lightbox__figure{
  margin:0;
  max-width: min(1200px, 100%);
}
.lightbox img{
  width:100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  background:#fff;
}
.lightbox figcaption{
  margin-top: 10px;
  color: rgba(255,255,255,.85);
  font-weight: 800;
  text-align:center;
}
.lightbox__close{
  position:absolute;
  top: 16px; right: 16px;
  width:44px; height:44px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.15);
  color:#fff;
  font-size: 28px;
  cursor:pointer;
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .heroCard img{height: 300px}
  .pricing, .split, .contact{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr 1fr}
  .shot img{height: 190px}
  .nav__toggle{display:inline-flex}
  .nav__menu{
    position:absolute;
    right: 20px; top: 64px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:12px;
    border-radius: 18px;
    background: rgba(248,251,252,.95);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    min-width: 220px;
  }
  .nav__menu.is-open{display:flex}
}
@media (max-width: 560px){
  .gallery{grid-template-columns: 1fr}
  .shot img{height: 220px}
}
