/* ═══════════════════════════════════════════════════════════════
   SOFIA — Premium Restaurant Website  2026
   Design: editorial, high-end, amber-forward
   ═══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'SofiaDisplay';
  src: url('font/font.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'SofiaBody';
  src: url('font/font.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ── TOKENS ── */
:root {
  --amber:       #F5A623;
  --amber-dark:  #D98B18;
  --amber-deep:  #B87010;
  --amber-light: #FBBE54;
  --amber-pale:  #FFF3D0;
  --amber-glow:  rgba(245,166,35,0.14);

  --bg:          #FDFCFA;
  --bg-warm:     #FFF8EF;
  --dark:        #1A1208;
  --dark-2:      #2E200E;
  --text:        #1A1208;
  --text-2:      #4A3520;
  --muted:       #9A8070;
  --white:       #FFFFFF;

  --line:        rgba(245,166,35,0.22);
  --line-dark:   rgba(26,18,8,0.09);
  --shadow:      0 2px 24px rgba(26,18,8,0.07);
  --shadow-md:   0 8px 40px rgba(26,18,8,0.12);
  --shadow-lg:   0 20px 72px rgba(26,18,8,0.18);

  --r:    18px;
  --r-sm: 10px;

  --nav-h:     52px;
  --topbar-h:  0px;
  --container: min(1240px, calc(100% - 48px));
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);

  --font-d: 'SofiaDisplay', Georgia, serif;
  --font-b: 'SofiaBody', system-ui, -apple-system, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent;
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--font-b); background: var(--white); color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; font-family: inherit; cursor: pointer; color: inherit; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }

/* ── CURSOR ── */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 9px; height: 9px; background: var(--amber);
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
}
#follower {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 30px; height: 30px;
  border: 1.5px solid var(--amber);
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .28s var(--ease);
  opacity: .45;
}

/* ── REVEAL ── */
.rv {
  opacity: 0;
  transform: translateY(44px) scale(0.96);
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv.on { opacity: 1; transform: none; }
.rv1 { transition-delay: .18s; }
.rv2 { transition-delay: .34s; }
.rv3 { transition-delay: .50s; }
.rv4 { transition-delay: .66s; }

/* ── COMMON ATOMS ── */
.label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 16px;
}
.label::before {
  content: '';
  width: 36px; height: 2px;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0;
}
.label-light { color: rgba(255,255,255,.65); }
.label-light::before { background: rgba(255,255,255,.55); }

.title {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--text);
}
.title em { font-style: normal; color: var(--amber); }
.title-light { color: var(--white); }
.title-light em { color: var(--amber-light); }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .88rem; font-weight: 700; letter-spacing: .04em;
  padding: 14px 28px; border-radius: 50px;
  transition: transform .2s var(--ease), box-shadow .25s, background .2s;
  white-space: nowrap;
}
.btn-amber {
  background: var(--amber); color: var(--dark);
  box-shadow: 0 4px 20px rgba(245,166,35,.38);
}
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,166,35,.48); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.55);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }
.btn-dark {
  background: var(--dark); color: var(--white);
  box-shadow: 0 4px 20px rgba(26,18,8,.22);
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--amber); background: var(--amber-glow); transform: translateY(-2px); }


/* ── NAV — glass pill floating inside hero card ── */
#nav {
  position: fixed;
  top: calc(var(--topbar-h) + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 860px;
  z-index: 900;
  height: 52px;
  border-radius: 50px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 8px 0 20px;
  /* frosted glass over hero photo */
  background: rgba(26,18,8,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.14);
  transition:
    background .4s var(--ease),
    border-color .4s,
    box-shadow .4s,
    top .4s var(--ease),
    width .4s var(--ease),
    max-width .4s var(--ease),
    border-radius .4s var(--ease);
}
/* Scrolled: cream solid pill */
#nav.scrolled {
  background: var(--bg);
  border-color: var(--line-dark);
  box-shadow: 0 4px 32px rgba(26,18,8,.10);
  top: calc(var(--topbar-h) + 12px);
  width: calc(100% - 40px);
  max-width: 820px;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center;
  font-family: var(--font-d);
  font-size: 1.4rem; letter-spacing: .06em;
  color: var(--white);
  transition: color .35s, opacity .2s;
}
.nav-logo:hover { opacity: .80; }
.nav-logo img {
  width: auto; height: 36px; object-fit: contain;
  filter: brightness(0) invert(1);       /* white logo on glass */
  transition: filter .35s;
}
#nav.scrolled .nav-logo { color: var(--dark); }
#nav.scrolled .nav-logo img { filter: brightness(0); } /* dark logo on cream */

/* Desktop links */
.nav-links {
  list-style: none;
  display: flex; align-items: center; gap: 1px;
}
.nav-links a {
  font-size: .80rem; font-weight: 600; letter-spacing: .02em;
  color: rgba(255,255,255,.82);
  padding: 6px 12px; border-radius: 50px;
  transition: color .18s, background .18s;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.14);
}
#nav.scrolled .nav-links a { color: var(--text-2); }
#nav.scrolled .nav-links a:hover { color: var(--dark); background: var(--amber-pale); }

/* CTA pill */
.nav-cta {
  background: var(--amber) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 14px rgba(245,166,35,.4);
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.nav-cta:hover {
  background: var(--amber-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 22px rgba(245,166,35,.5) !important;
}
#nav.scrolled .nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  box-shadow: 0 2px 12px rgba(26,18,8,.18) !important;
}
#nav.scrolled .nav-cta:hover { background: var(--amber) !important; color: var(--dark) !important; }

/* Burger — white bars on glass, dark on cream */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; border-radius: 50px;
  transition: background .2s;
}
.nav-burger:hover { background: rgba(255,255,255,.15); }
#nav.scrolled .nav-burger:hover { background: var(--amber-pale); }
.nav-burger span {
  width: 22px; height: 2px; border-radius: 2px;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .3s, width .3s, background .35s;
}
#nav.scrolled .nav-burger span { background: var(--dark); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer — mobile full-screen menu */
.nav-drawer {
  position: fixed; inset: 0; z-index: 850;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + var(--topbar-h) + 28px) 28px 48px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}
.nav-drawer.open { transform: none; }
.nav-drawer ul { list-style: none; flex: 1; }
.nav-drawer ul li { border-bottom: 1px solid var(--line-dark); }
.nav-drawer ul li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-d); font-size: 2rem;
  letter-spacing: -.01em; color: var(--text);
  transition: color .2s, letter-spacing .25s;
}
.nav-drawer ul li a::after {
  content: '→';
  font-family: var(--font-b);
  font-size: 1rem; opacity: 0;
  transform: translateX(-8px);
  transition: opacity .2s, transform .25s var(--ease);
}
.nav-drawer ul li a:hover { color: var(--amber-dark); letter-spacing: .01em; }
.nav-drawer ul li a:hover::after { opacity: 1; transform: none; }
/* CTA row at bottom of drawer */
.drawer-bottom {
  padding-top: 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.drawer-bottom-info { color: var(--muted); font-size: .88rem; line-height: 1.7; }
.drawer-bottom-info a { color: var(--amber-dark); font-weight: 700; transition: color .2s; }
.drawer-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--dark); color: var(--white);
  font-size: .9rem; font-weight: 700; letter-spacing: .04em;
  padding: 16px 28px; border-radius: 50px;
  transition: background .2s, transform .2s;
}
.drawer-cta:hover { background: var(--amber); color: var(--dark); transform: translateY(-2px); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100dvh; min-height: 620px;
  overflow: visible;
  background-color: #ffffff;
  padding: 10px 16px 16px;
}
/* Floating card with rounded corners — bez box-shadow (na bielej pôsobí ako šedý „rám“) */
.hero-card {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: none;
  background-color: #ffffff;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero-slides {
  position: absolute; inset: 0;
  background-color: #ffffff;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-slide.on { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(26,18,8,.52) 0%, rgba(26,18,8,.18) 60%, transparent 100%);
  pointer-events: none;
}

/* Hero bottom wave */
.hero-bottom-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 160px; pointer-events: none; z-index: 4;
}
.hero-bottom-wave svg { width: 100%; height: 100%; }

/* Hero dots */
.hero-dots {
  position: absolute; right: 36px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 8px; z-index: 5;
}
.h-dot {
  width: 3px; height: 28px; border-radius: 2px;
  background: rgba(255,255,255,.30); cursor: pointer;
  transition: background .3s, height .3s;
}
.h-dot.on { background: var(--amber); height: 44px; }

/* Hero content */
.hero-content {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + var(--topbar-h) + 32px) min(8vw, 96px) 160px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.80);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow span {
  width: 32px; height: 1px;
  background: var(--amber);
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(3.4rem, 8.5vw, 7.8rem);
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-title em { font-style: normal; color: var(--amber-light); }
.hero-sub {
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,.72); z-index: 5;
}
.hero-scroll-hint {
  display: flex; align-items: center; gap: 14px;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
}
.hero-scroll-hint::before,
.hero-scroll-hint::after {
  content: '';
  width: 36px; height: 1px;
  background: rgba(255,255,255,.5);
  border-radius: 1px;
}
.hero-scroll-chevron {
  display: block;
  opacity: .55;
  color: inherit;
}

/* Desktop: nižšia „fotka“ — viac bielej navrchu a spodu, boky nechať */
@media (min-width: 769px) {
  .hero {
    padding: 40px 16px 52px;
  }
}

/* ── BRAND STRIP ── (odstraněno, merged do intro) ── */

/* ── INTRO — biela sekcia s vlnkami (čistá biela = hero okraje) ── */
#intro {
  position: relative;
  background-color: #ffffff;
  padding: 100px 0 80px;
  overflow: hidden;
  z-index: 2;
}
.intro-waves-bg {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .12;
}
.intro-waves-bg svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.intro-inner {
  width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}
.intro-left { }
.intro-eyebrow {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 20px;
}
.intro-quote {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
  line-height: 1.02; letter-spacing: -.03em;
  color: var(--dark);
  margin-bottom: 24px;
}
.intro-quote em { font-style: italic; color: var(--amber); }
.intro-text {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 36px;
}
.intro-text strong { color: var(--amber-dark); font-weight: 700; }
/* Stats — pravá strana */
.intro-stats {
  display: grid; grid-template-columns: 1fr;
  gap: 32px;
}
.intro-stat {
  padding: 28px 32px;
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line-dark);
}
.intro-stat-num {
  font-family: var(--font-b);
  font-size: 3.2rem; line-height: 1;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 6px;
}
.intro-stat-num .intro-stat-star {
  display: inline-block;
  vertical-align: -0.08em;
  width: 0.62em; height: 0.62em;
  margin-left: 4px; color: var(--amber);
}
.intro-stat-num .intro-stat-star path { fill: var(--amber); stroke: var(--amber); }
.intro-stat-label {
  font-size: .72rem; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase;
}

/* ── FOOD (amber section) ── */
.food {
  background: var(--amber);
  padding: 130px 0 100px;
  overflow: hidden;
}
.food-head {
  width: var(--container); margin: 0 auto 72px;
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  position: relative;
}
/* em na jantárovom pozadí — predtým rovnaká farba ako bg */
.food-head .title em { color: var(--white); }
/* Editorial section number */
.food-head::before {
  content: '01';
  position: absolute; top: -0.18em; right: -0.04em;
  font-family: var(--font-b); font-size: clamp(7rem, 14vw, 13rem); font-weight: 800;
  color: rgba(26,18,8,.06); line-height: 1;
  letter-spacing: -.05em; pointer-events: none;
  user-select: none;
}
.food-scroll-hint {
  font-size: .8rem; color: rgba(26,18,8,.5);
  letter-spacing: .1em;
  display: flex; align-items: center; gap: 8px;
}
.food-scroll-hint::after {
  content: '';
  width: 36px; height: 1px;
  background: rgba(26,18,8,.25);
  animation: hintSlide 2s ease-in-out infinite;
}
@keyframes hintSlide { 0%,100%{width:36px} 50%{width:56px} }

.food-track-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding-left: max(24px, calc((100% - 1240px) / 2));
  box-sizing: border-box;
}
.food-track {
  display: flex; gap: 18px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding-right: 24px; padding-bottom: 8px;
  scrollbar-width: none; scroll-snap-type: x mandatory;
}
.food-track::-webkit-scrollbar { display: none; }
.food-card {
  flex-shrink: 0; width: 300px;
  border-radius: var(--r); overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  transition: transform .4s var(--ease);
}
.food-card:hover { transform: translateY(-6px); }
.food-card-img {
  aspect-ratio: 3/4;
  position: relative; overflow: hidden;
}
.food-card-img img { transition: transform .7s var(--ease); }
.food-card:hover .food-card-img img { transform: scale(1.07); }
.food-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,.85) 0%, transparent 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.food-tag {
  display: inline-block;
  background: var(--amber); color: var(--dark);
  font-size: .62rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px;
  margin-bottom: 8px; width: fit-content;
}
.food-card-name {
  font-family: var(--font-d); font-size: 1.1rem;
  color: var(--white); letter-spacing: .02em; margin-bottom: 3px;
}
.food-card-sub { font-size: .8rem; color: rgba(255,255,255,.62); }

.food-fade-r {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 80px; pointer-events: none;
  background: linear-gradient(to right, transparent, var(--amber));
}

.food-menu-row {
  width: var(--container); margin: 52px auto 0;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.menu-pill {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(26,18,8,.08);
  border: 1px solid rgba(26,18,8,.15);
  color: var(--dark);
  padding: 14px 22px; border-radius: var(--r-sm);
  font-size: .88rem; font-weight: 600;
  transition: background .25s, border-color .25s, transform .2s;
}
.menu-pill:hover { background: rgba(26,18,8,.14); border-color: rgba(26,18,8,.3); transform: translateY(-2px); }
.menu-pill svg { width: 20px; height: 20px; stroke: var(--dark); flex-shrink: 0; }
.menu-pill-sub { font-size: .68rem; color: rgba(26,18,8,.5); letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 1px; }

/* ── RESERVATION STRIP ── */
.rez-strip {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}
.rez-strip-inner {
  width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.rez-strip-copy h3 {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--text); letter-spacing: -.01em; margin-bottom: 6px;
}
.rez-strip-copy p { font-size: .92rem; color: var(--muted); }
.rez-strip-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.rez-phone {
  font-size: 1.1rem; font-weight: 700; color: var(--amber-dark);
  display: inline-flex; align-items: center; gap: 10px;
}
.rez-phone-ic { width: 18px; height: 18px; flex-shrink: 0; stroke-width: 2; color: var(--amber-dark); }

/* ── EVENTS ── */
.events {
  background: var(--bg);
  padding: 130px 0;
  overflow-x: hidden;
}
.events-inner { width: var(--container); margin: 0 auto; position: relative; }
.events-head {
  max-width: 600px; margin-bottom: 72px;
  position: relative;
}
/* Editorial section number */
.events-inner::before {
  content: '02';
  position: absolute; top: -0.18em; right: -0.04em;
  font-family: var(--font-b); font-size: clamp(7rem, 14vw, 13rem); font-weight: 800;
  color: rgba(26,18,8,.035); line-height: 1;
  letter-spacing: -.05em; pointer-events: none;
  user-select: none;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ev-card {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.ev-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.ev-card-img {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
}
.ev-card-img img { transition: transform .8s var(--ease); }
.ev-card:hover .ev-card-img img { transform: scale(1.07); }
.ev-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,.88) 0%, rgba(26,18,8,.1) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 24px;
}
.ev-icon {
  margin-bottom: 12px; line-height: 1;
  display: flex; align-items: center;
}
.ev-icon svg {
  width: 2rem; height: 2rem;
  stroke-width: 1.5;
  color: var(--amber-light);
}
.ev-card-title {
  font-family: var(--font-d); font-size: 1.5rem;
  color: var(--white); margin-bottom: 8px; letter-spacing: .02em;
}
.ev-card-text { font-size: .86rem; color: rgba(255,255,255,.70); line-height: 1.65; }
.ev-card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  color: var(--amber-light); font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  transition: gap .25s;
}
.ev-card:hover .ev-card-arrow { gap: 12px; }

/* ── HOTEL ── */
.hotel {
  background: var(--bg-warm);
  padding: 130px 0;
  overflow-x: hidden;
}
.hotel-inner { width: var(--container); margin: 0 auto; position: relative; }
/* Editorial section number */
.hotel-inner::before {
  content: '03';
  position: absolute; top: -0.18em; right: -0.04em;
  font-family: var(--font-b); font-size: clamp(7rem, 14vw, 13rem); font-weight: 800;
  color: rgba(26,18,8,.035); line-height: 1;
  letter-spacing: -.05em; pointer-events: none;
  user-select: none;
}
.hotel-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 72px;
}
.hotel-head-text { max-width: 520px; }
.hotel-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-top: 14px; }
.hotel-rooms {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.room-card {
  border-radius: var(--r); overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room-img { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.room-img img { transition: transform .8s var(--ease); }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--amber); color: var(--dark);
  font-size: .65rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.room-body { padding: 22px; }
.room-name { font-family: var(--font-d); font-size: 1.2rem; color: var(--text); margin-bottom: 12px; }
.room-feats { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 18px; }
.room-feat {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--amber-pale); color: var(--amber-dark);
  padding: 4px 10px; border-radius: 50px;
}
.room-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.room-price { font-size: 1.25rem; font-weight: 800; color: var(--text); }
.room-price span { font-size: .8rem; font-weight: 400; color: var(--muted); }
.room-book {
  display: inline-flex;
  background: var(--amber); color: var(--dark);
  font-size: .78rem; font-weight: 800;
  letter-spacing: .04em;
  padding: 9px 18px; border-radius: 50px;
  transition: background .2s, transform .2s;
}
.room-book:hover { background: var(--amber-dark); transform: translateY(-1px); }
.hotel-info-bar {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.hotel-info-bar p { font-size: .9rem; color: var(--muted); }
.hotel-info-bar strong { color: var(--text); font-weight: 700; }

/* ── BIKES ── */
.bikes {
  background: var(--amber);
  padding: 110px 0;
  position: relative; overflow: hidden;
}
.bikes-wave-bg {
  position: absolute; inset: 0;
  opacity: .18; pointer-events: none;
}
.bikes-wave-bg svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.bikes-layout {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.bikes-label { color: rgba(26,18,8,.65); }
.bikes-label::before { background: var(--dark); }
.bikes-title { color: var(--dark); }
.bikes-title em { color: var(--white); font-style: italic; }
.bikes-body { font-size: 1rem; color: rgba(26,18,8,.70); line-height: 1.8; margin-top: 18px; }
.bikes-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.bike-item {
  display: flex; align-items: center; gap: 14px;
  color: var(--dark); font-size: .95rem; font-weight: 600;
}
.bike-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.28);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bike-icon svg {
  width: 22px; height: 22px;
  stroke-width: 2;
  color: var(--dark);
}

/* ── YACHT ── */
.yacht {
  background: var(--bg);
  padding: 130px 0;
  overflow-x: hidden;
}
.yacht-inner {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: center;
  position: relative;
}
/* Editorial section number */
.yacht-inner::before {
  content: '04';
  position: absolute; top: -0.18em; right: -0.04em;
  font-family: var(--font-b); font-size: clamp(7rem, 14vw, 13rem); font-weight: 800;
  color: rgba(26,18,8,.035); line-height: 1;
  letter-spacing: -.05em; pointer-events: none;
  user-select: none;
}
.yacht-text { }
.yacht-body { font-size: 1rem; color: var(--text-2); line-height: 1.8; margin: 18px 0 32px; }
.yacht-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 28px 0;
}
.yacht-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 50px;
  font-size: .84rem; font-weight: 600; color: var(--text-2);
}
.yacht-pill-ic {
  width: 16px; height: 16px; flex-shrink: 0;
  stroke-width: 2;
  color: var(--amber-dark);
}
.yacht-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.yacht-photo {
  border-radius: var(--r); overflow: hidden;
  transition: transform .5s var(--ease);
}
.yacht-photo:hover { transform: scale(1.02); }
.yacht-photo img { aspect-ratio: 4/3; }
.yacht-photo:first-child {
  grid-column: 1 / -1;
}
.yacht-photo:first-child img { aspect-ratio: 16/7; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
  position: relative; overflow: hidden;
}
.footer-wave-bg {
  position: absolute; inset: 0;
  opacity: .05; pointer-events: none;
}
.footer-wave-bg svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.footer-inner { width: var(--container); margin: 0 auto; position: relative; z-index: 1; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-brand-name {
  font-family: var(--font-d); font-size: 1.7rem;
  letter-spacing: .06em; color: var(--white);
  margin-bottom: 10px;
}
.footer-brand-name img { width: auto; height: 48px; object-fit: contain; margin-bottom: 10px; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.42); line-height: 1.65; margin-bottom: 24px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  transition: background .2s, transform .2s, color .2s;
}
.footer-social a svg {
  width: 18px; height: 18px;
  stroke-width: 2;
}
.footer-social a:hover { background: var(--amber); color: var(--dark); transform: translateY(-2px); }
.footer-col h4 {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--amber); }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: .88rem; color: rgba(255,255,255,.55);
}
.footer-contact-ic {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  stroke-width: 2;
  color: rgba(255,255,255,.38);
}
.footer-contact-row a { color: inherit; transition: color .2s; }
.footer-contact-row a:hover { color: var(--amber); }
.footer-map {
  border-radius: var(--r-sm); overflow: hidden;
  aspect-ratio: 16/9;
  margin-top: 4px;
}
.footer-map iframe { width: 100%; height: 100%; border: none; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  font-size: .76rem; color: rgba(255,255,255,.28);
  flex-wrap: wrap; gap: 8px;
}

/* ── FLOATING CTA ── */
.float-bar {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  display: flex; gap: 6px;
  background: var(--dark);
  padding: 5px; border-radius: 50px;
  box-shadow: 0 8px 36px rgba(26,18,8,.30);
  z-index: 800; opacity: 0;
  transition: transform .4s var(--ease), opacity .4s;
}
.float-bar.on { transform: translateX(-50%) translateY(0); opacity: 1; }
.fb {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: 50px;
  font-size: .82rem; font-weight: 700;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.fb:hover { color: var(--white); }
.fb-rezv { background: var(--amber); color: var(--dark) !important; }
.fb-rezv:hover { background: var(--amber-dark); }

/* ── WAVE UTILS ── */
.wdiv { line-height: 0; overflow: hidden; }
.wdiv svg { display: block; width: 100%; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hotel-rooms { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .yacht-inner { grid-template-columns: 1fr; }
  .yacht-photos { grid-template-columns: 1fr 1fr; max-width: 560px; }
  .yacht-photo:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 46px; --topbar-h: 0px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  /* Hero: edge-to-edge pod Dynamic Island / safe area (viewport-fit=cover) */
  .hero {
    padding: 0 10px 12px;
    height: 88dvh;
    min-height: 540px;
  }
  .hero-card {
    border-radius: 22px;
    margin-top: calc(-1 * env(safe-area-inset-top, 0px));
    height: calc(100% + env(safe-area-inset-top, 0px));
    min-height: calc(100% + env(safe-area-inset-top, 0px));
  }
  /* Foto vycentrovaná na mobile */
  .hero-slide img { object-position: center center; }
  /* Nav pill on mobile — pod hornou bezpečnou zónou */
  #nav {
    width: calc(100% - 20px);
    max-width: 100%;
    height: 46px;
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    padding: 0 6px 0 16px;
  }
  #nav.scrolled {
    width: calc(100% - 24px);
    max-width: 100%;
    top: calc(env(safe-area-inset-top, 0px) + 12px);
  }
  .hero-content { padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 44px) 22px 80px; }
  .hero-title { font-size: clamp(2.6rem, 10vw, 3.8rem); }
  .hero-dots { display: none; }
  /* Hero CTA — menšie, vhodnejšie pre palec */
  .hero-btns { gap: 10px; }
  .hero-btns .btn {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 10px 18px;
    gap: 7px;
  }
  .hero-btns .btn svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
  }
  /* Intro na mobile — stack */
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .intro-stats { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .intro-stat { padding: 20px 16px; }
  .intro-stat-num { font-size: 2.4rem; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-photo { min-height: 340px; max-height: 420px; order: -1; }
  .intro-body-wrap { padding: 52px 24px 56px; }
  .intro-quote { font-size: clamp(2rem, 8vw, 2.8rem); }
  .intro-stats { grid-template-columns: repeat(3,1fr); }
  .intro-stats { grid-template-columns: repeat(3, 1fr); }
  .bikes-layout { grid-template-columns: 1fr; gap: 36px; }
  .hotel-head { flex-direction: column; align-items: flex-start; }
  .hotel-rooms { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .rez-strip-inner { flex-direction: column; align-items: flex-start; }
  .brand-quote { font-size: clamp(1.7rem, 7vw, 2.6rem); }
  .yacht-photos { grid-template-columns: 1fr; }
  .yacht-photo:first-child { grid-column: 1; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .food-menu-row { flex-direction: column; }
  .intro-stats { grid-template-columns: 1fr; gap: 20px; }
  .intro-stat { border-right: none; border-bottom: 1px solid var(--line-dark); padding-bottom: 16px; }
  .intro-stat:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM ANIMATIONS  — GPU only (transform / opacity / clip-path)
   ═══════════════════════════════════════════════════════════ */

/* ── Drawer overlay ── */
#overlay {
  position: fixed; inset: 0; z-index: 840;
  background: rgba(26,18,8,.52);
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
#overlay.on { opacity: 1; pointer-events: all; }

/* ── Photo clip-path reveal ── */
.rv-img {
  opacity: 0;
  clip-path: inset(14% 0 0 0);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv-img.on { opacity: 1; clip-path: inset(0% 0 0 0); }
.rv-img.rv1 { transition-delay: .20s; }
.rv-img.rv2 { transition-delay: .38s; }
.rv-img.rv3 { transition-delay: .56s; }

/* ── Image shimmer placeholder ── */
@keyframes imgShimmer {
  0%   { background-position: 200% 50%; }
  100% { background-position: -200% 50%; }
}
.food-card-img,
.ev-card-img,
.room-img {
  background: linear-gradient(
    105deg,
    var(--amber-pale) 0%,
    rgba(255,251,239,.95) 45%,
    var(--amber-pale) 100%
  );
  background-size: 300% 100%;
  animation: imgShimmer 1.8s ease-in-out infinite;
}

/* ── Event card: hover text reveal ── */
.ev-card-text,
.ev-card-arrow {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .32s ease, transform .38s cubic-bezier(0.22, 1, 0.36, 1);
}
.ev-card:hover .ev-card-text  { opacity: 1; transform: none; transition-delay: .04s; }
.ev-card:hover .ev-card-arrow { opacity: 1; transform: none; transition-delay: .13s; }
/* always show on touch devices (no hover) */
@media (hover: none) {
  .ev-card-text, .ev-card-arrow { opacity: 1; transform: none; }
}

/* ── Mobile drawer: stagger links ── */
.nav-drawer ul li {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .55s ease, transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-drawer.open ul li:nth-child(1) { opacity:1; transform:none; transition-delay:.22s; }
.nav-drawer.open ul li:nth-child(2) { opacity:1; transform:none; transition-delay:.32s; }
.nav-drawer.open ul li:nth-child(3) { opacity:1; transform:none; transition-delay:.42s; }
.nav-drawer.open ul li:nth-child(4) { opacity:1; transform:none; transition-delay:.52s; }
.nav-drawer.open ul li:nth-child(5) { opacity:1; transform:none; transition-delay:.62s; }
.nav-drawer.open ul li:nth-child(6) { opacity:1; transform:none; transition-delay:.72s; }

/* ── EVENT CARDS — smerová vstupná animácia ── */
/* Karta 1: príde zľava, Karta 2: zdola (väčší zdvih), Karta 3: zprava */
.ev-card.ev-anim {
  opacity: 0;
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ev-card.ev-anim:nth-child(1) { transform: translateX(-72px) scale(0.93); }
.ev-card.ev-anim:nth-child(2) { transform: translateY(80px) scale(0.91); transition-delay: .18s; }
.ev-card.ev-anim:nth-child(3) { transform: translateX(72px) scale(0.93);  transition-delay: .34s; }
.ev-card.ev-anim.on { opacity: 1; transform: none; }

/* Ken Burns — každá karta má iný smer pohybu */
@keyframes kb1 {
  0%   { transform: scale(1.0)  translate( 0%,  0%); }
  50%  { transform: scale(1.09) translate(-1.2%, -0.8%); }
  100% { transform: scale(1.0)  translate( 0%,  0%); }
}
@keyframes kb2 {
  0%   { transform: scale(1.0)  translate( 0%,  0%); }
  50%  { transform: scale(1.07) translate( 1.5%,  1.0%); }
  100% { transform: scale(1.0)  translate( 0%,  0%); }
}
@keyframes kb3 {
  0%   { transform: scale(1.0)  translate( 0%,  0%); }
  50%  { transform: scale(1.08) translate(-0.8%,  1.2%); }
  100% { transform: scale(1.0)  translate( 0%,  0%); }
}
/* Ken Burns sa spustí AŽ keď je karta viditeľná (trieda .on) */
.ev-card.ev-anim.on:nth-child(1) .ev-card-img img { animation: kb1 9s  ease-in-out infinite; }
.ev-card.ev-anim.on:nth-child(2) .ev-card-img img { animation: kb2 11s ease-in-out infinite; }
.ev-card.ev-anim.on:nth-child(3) .ev-card-img img { animation: kb3 10s ease-in-out infinite; }

/* Na hover: Ken Burns sa pozastaví, card lift zostáva */
.ev-card:hover .ev-card-img img { animation-play-state: paused; }

/* ── Accessibility: reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .rv  { transition: opacity .3s ease !important; transform: none !important; }
  .rv-img { transition: opacity .3s ease !important; clip-path: none !important; transform: none !important; }
  .ev-card.ev-anim { transition: opacity .3s ease !important; transform: none !important; }
  .ev-card-text, .ev-card-arrow { opacity: 1 !important; transform: none !important; }
  .nav-drawer ul li { opacity: 1 !important; transform: none !important; transition: none !important; }
  .food-card-img, .ev-card-img, .room-img { animation: none !important; }
  .ev-card.ev-anim.on .ev-card-img img { animation: none !important; }
}
