/* ============================================================
   MORSKA BRYZA – Cinematic snap-scroll
   ============================================================ */
:root {
  --navy:   #0d1b2a;
  --gold:   #c9a96e;
  --gold-l: #e2c99a;
  --white:  #fff;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  --ease:   0.4s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-snap-type: y mandatory; overflow-y: scroll; font-size: 16px; }
body { font-family: var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* BACK LINK */
.back-link {
  position: fixed; top: 1rem; left: 1.5rem; z-index: 300;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3); backdrop-filter: blur(8px);
  padding: 0.4rem 0.9rem; border-radius: 3px;
  transition: color var(--ease);
}
.back-link:hover { color: var(--gold); }

/* TOP LOGO */
.top-logo {
  position: fixed; top: 1rem; right: 2rem; z-index: 300;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 300;
  color: #fff; letter-spacing: 0.1em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  pointer-events: none;
}

/* DOT NAV */
.dot-nav {
  position: fixed; right: 2rem; top: 50%; transform: translateY(-50%);
  z-index: 200; display: flex; flex-direction: column; gap: 1rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
  position: relative;
}
.dot::after {
  content: attr(data-label);
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  white-space: nowrap; opacity: 0;
  transition: opacity 0.2s ease;
}
.dot:hover::after, .dot.active::after { opacity: 1; }
.dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.4); }
.dot:hover { background: rgba(255,255,255,0.7); }

/* SNAP SECTIONS */
.snap-section {
  position: relative;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BACKGROUNDS */
.snap-bg { position: absolute; inset: 0; }
.snap-overlay { position: absolute; inset: 0; }
.snap-overlay--dark { background: linear-gradient(160deg, rgba(13,27,42,0.75) 0%, rgba(13,27,42,0.42) 55%, rgba(13,27,42,0.68) 100%); }
.snap-overlay--tinted { background: linear-gradient(to right, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.55) 50%, transparent 100%); }

.snap-section--dark { background: var(--navy); }

/* CONTENT POSITIONS */
.snap-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; padding-inline: 4rem; }
.snap-content--center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.snap-content--bottom-left { position: absolute; bottom: 4rem; left: 4rem; max-width: 600px; }
.snap-content--rooms { padding-block: 2rem; }

/* TYPOGRAPHY */
.s-eyebrow {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.9rem;
}
.eyebrow--gold { color: var(--gold-l); }
.s-hero-title {
  font-family: var(--serif); font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 300; line-height: 0.9; color: #fff; letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}
.s-hero-title em { font-style: italic; color: var(--gold-l); display: block; }
.s-hero-sub {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2.5rem;
}
.s-title {
  font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.1; color: #1a1a1a; margin-bottom: 1.5rem;
}
.s-title em { font-style: italic; color: var(--gold); }
.s-title--light { color: #fff; }
.s-title--xl { font-size: clamp(4rem, 9vw, 8rem); line-height: 0.9; margin-bottom: 2rem; }
.s-sub { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 2.5rem; letter-spacing: 0.06em; }

/* HERO BUTTON */
.btn-hero {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2.5rem; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  border-radius: 2px; transition: all var(--ease);
}
.btn-hero:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-hero--sm { padding: 0.65rem 1.5rem; font-size: 0.7rem; }
.btn-hero--fb { background: #1877f2; color: #fff; }
.btn-hero--fb:hover { background: #0d6de8; }
.btn-hero--bk { background: #003580; color: #fff; }
.btn-hero--bk:hover { background: #00276b; }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hs-line { display: block; width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--gold-l)); animation: lineGrow 2s ease-in-out infinite; }

/* SPLIT SECTION */
.snap-section--split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.snap-section--reverse { direction: rtl; }
.snap-section--reverse > * { direction: ltr; }
.split-img { height: 100%; overflow: hidden; }
.split-text {
  background: #fff; display: flex; flex-direction: column;
  justify-content: center; padding: 5rem 4rem;
}
.split-text p { font-size: 0.95rem; color: #667; line-height: 1.75; margin-bottom: 2rem; }
.split-stats { display: flex; gap: 2.5rem; border-top: 1px solid #e4ddd2; padding-top: 2rem; }
.ss-n { display: block; font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--gold); line-height: 1; }
.ss-l { display: block; font-size: 0.68rem; color: #999; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 3px; }

/* ROOMS STACK */
.snap-content--rooms { height: 100%; display: flex; flex-direction: column; justify-content: center; padding-inline: 5rem; }
.rooms-header { margin-bottom: 2.5rem; }
.rooms-stack { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.rs-card { position: relative; height: 320px; overflow: hidden; border-radius: 2px; cursor: pointer; }
.rs-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.rs-card:hover img { transform: scale(1.07); }
.rs-card__info {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, transparent 55%);
  color: #fff;
}
.rs-card__num { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: rgba(255,255,255,0.15); line-height: 1; margin-bottom: 0.25rem; }
.rs-card__info h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 0.3rem; }
.rs-card__info p { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.rs-card__cta { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.btn-s { display: inline-flex; align-items: center; padding: 0.38rem 0.8rem; font-size: 0.64rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; transition: all 0.25s ease; }
.btn-s--gold { background: var(--gold); color: var(--navy); }
.btn-s--gold:hover { background: var(--gold-l); }
.btn-s--fb { background: #1877f2; color: #fff; }
.btn-s--fb:hover { background: #0d6de8; }
.btn-s--bk { background: #003580; color: #fff; }
.btn-s--bk:hover { background: #00276b; }

/* WELLNESS PILLS */
.wellness-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.wellness-pills span {
  display: inline-block; padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25); color: #fff;
  font-size: 0.82rem; font-weight: 400; border-radius: 2px;
  letter-spacing: 0.06em;
}

/* DINING */
.dining-list { display: flex; flex-direction: column; gap: 0.75rem; }
.dining-list li { font-size: 0.92rem; font-weight: 500; color: #333; }

/* CONTACT BIG */
.contact-big { margin-block: 2.5rem; }
.contact-big__phone { display: block; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: #fff; letter-spacing: 0.04em; margin-bottom: 0.5rem; transition: color var(--ease); }
.contact-big__phone:hover { color: var(--gold); }
.contact-big__mail a { font-size: 1rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; transition: color var(--ease); }
.contact-big__mail a:hover { color: var(--gold); }
.contact-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.footer-note { font-size: 0.7rem; color: rgba(255,255,255,0.25); letter-spacing: 0.1em; }

/* ANIMATIONS */
@keyframes lineGrow { 0%,100% { opacity: 0; transform: scaleY(0); } 50% { opacity: 1; transform: scaleY(1); } }

/* RESPONSIVE */
@media (max-width: 900px) {
  html { scroll-snap-type: none; }
  .snap-section { height: auto; min-height: 100vh; scroll-snap-align: none; }
  .snap-section--split { grid-template-columns: 1fr; }
  .snap-section--reverse { direction: ltr; }
  .split-img { height: 50vh; }
  .split-text { padding: 3rem 2rem; }
  .rooms-stack { grid-template-columns: 1fr; gap: 1rem; }
  .rs-card { height: 240px; }
  .snap-content { padding-inline: 2rem; }
  .snap-content--bottom-left { position: relative; inset: auto; padding: 3rem 2rem; max-width: 100%; }
  .dot-nav { display: none; }
  .top-logo { right: 1rem; }
}
