/* ==========================================================================
   V Podzámčí — hernička & kavárna
   Modern editorial redesign, 2026
   ========================================================================== */

/* ————— Tokens ————— */
:root {
  /* surface */
  --cream:      #FBF7F2;
  --cream-2:    #F4EDE2;
  --white:      #FFFFFF;
  --ink:        #1F1B18;
  --ink-soft:   #2C2622;
  --muted:      #6B635C;
  --muted-2:    #9A9187;
  --rule:       #E8E1D8;
  --rule-soft:  #EFE9DF;

  /* accents — derived from the castle logo, used sparingly */
  --pink:       #F5B6CE;
  --mint:       #A8DCD1;
  --peach:      #FFCF99;
  --sky:        #A8D0EA;

  --pink-700:   #B45A7E;
  --mint-700:   #3E8A7C;
  --peach-700:  #B87A3C;
  --sky-700:    #3F6E94;

  --pink-tint:  rgba(245,182,206,0.20);
  --mint-tint:  rgba(168,220,209,0.20);
  --peach-tint: rgba(255,207,153,0.22);
  --sky-tint:   rgba(168,208,234,0.22);

  /* typography */
  --serif: "Fraunces", "Georgia", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* spacing */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  /* radii */
  --r-1: 4px; --r-2: 8px; --r-3: 12px; --r-4: 16px; --r-5: 24px;

  /* shadow */
  --sh-1: 0 1px 2px rgba(31,27,24,.04), 0 2px 8px -2px rgba(31,27,24,.06);
  --sh-2: 0 1px 2px rgba(31,27,24,.04), 0 12px 32px -12px rgba(31,27,24,.10);
  --sh-3: 0 2px 4px rgba(31,27,24,.05), 0 24px 60px -20px rgba(31,27,24,.14);

  /* motion */
  --ease-out: cubic-bezier(.2,.7,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  /* nav height */
  --nav-h: 68px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
p { margin: 0; }

::selection { background: var(--peach); color: var(--ink); }

/* Skip link */
.skip {
  position: absolute;
  top: -40px; left: 8px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-1);
  z-index: 200;
  font-size: 14px;
}
.skip:focus { top: 8px; }

/* ————— Primitives ————— */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-head { max-width: 720px; margin: 0 0 var(--sp-7); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__lede {
  margin-top: var(--sp-4);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 62ch;
}
.section-head--center .section-head__lede { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: var(--sp-4);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  display: inline-block;
}
.eyebrow--mint  .dot { background: var(--mint); }
.eyebrow--pink  .dot { background: var(--pink); }
.eyebrow--peach .dot { background: var(--peach); }
.eyebrow--sky   .dot { background: var(--sky); }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}
.h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 96;
}

/* ————— Buttons ————— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background-color .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out);
  border: 1px solid transparent;
  white-space: nowrap;
  will-change: transform;
}
.btn:focus-visible { outline: 3px solid var(--peach); outline-offset: 3px; }

.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 1px 2px rgba(31,27,24,.1), 0 10px 24px -10px rgba(31,27,24,.3);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(31,27,24,.12), 0 18px 36px -14px rgba(31,27,24,.38); }
.btn--primary:active { transform: translateY(0); }
.btn--primary .btn__arrow { transition: transform .3s var(--ease-out); }
.btn--primary:hover .btn__arrow { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

/* ————— Chips ————— */
.chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: var(--sp-5);
}
.chip {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.chip--pink  { background: var(--pink-tint);  color: var(--pink-700); }
.chip--mint  { background: var(--mint-tint);  color: var(--mint-700); }
.chip--peach { background: var(--peach-tint); color: var(--peach-700); }
.chip--sky   { background: var(--sky-tint);   color: var(--sky-700); }

/* numeric styling */
.num { font-family: var(--mono); font-weight: 500; font-feature-settings: "tnum"; letter-spacing: -0.01em; }

/* ————— NAV ————— */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color .3s var(--ease-out), backdrop-filter .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav[data-state="top"] { background: transparent; }
.nav[data-state="scrolled"] {
  background: rgba(251,247,242,0.88);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-color: var(--rule);
  box-shadow: 0 1px 0 rgba(31,27,24,.02), 0 10px 30px -20px rgba(31,27,24,.12);
}
.nav__inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex; align-items: center; gap: 12px;
  transition: opacity .2s var(--ease-out);
}
.nav__logo img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--white);
  object-fit: contain;
}
.nav__word {
  display: flex; flex-direction: column; line-height: 1.05;
}
.nav__word-top {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
}
.nav__word-bot {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 500;
}
.nav__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 2px;
  transition: color .2s var(--ease-out);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: 2px;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a:focus-visible { outline: 2px solid var(--peach); outline-offset: 4px; border-radius: 2px; }

.nav__right {
  display: flex; align-items: center; gap: 14px;
}
.nav__status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: var(--mint-tint);
  color: var(--mint-700);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav__status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint-700);
  box-shadow: 0 0 0 3px rgba(62,138,124,.15);
  animation: pulse 2.4s infinite;
}
.nav__status[data-closed="true"] {
  background: rgba(181,90,126,.12);
  color: var(--pink-700);
}
.nav__status[data-closed="true"] .dot {
  background: var(--pink-700);
  box-shadow: 0 0 0 3px rgba(181,90,126,.15);
  animation: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(62,138,124,.15); }
  50% { box-shadow: 0 0 0 6px rgba(62,138,124,.05); }
}
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.nav__phone:hover { transform: translateY(-1px); box-shadow: var(--sh-2); }
.nav__phone:focus-visible { outline: 3px solid var(--peach); outline-offset: 3px; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
  border-radius: var(--r-1);
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.8px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform .3s var(--ease-out), opacity .2s var(--ease-out);
  border-radius: 2px;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__burger:focus-visible { outline: 2px solid var(--peach); outline-offset: 2px; }

/* Drawer */
.drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  z-index: 95;
  padding: 24px 32px 40px;
  transform: translateY(-110%);
  transition: transform .4s var(--ease-out);
  visibility: hidden;
}
.drawer[aria-hidden="false"] {
  transform: translateY(0);
  visibility: visible;
  box-shadow: 0 24px 48px -24px rgba(31,27,24,.2);
}
.drawer__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.drawer__link {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink);
  font-variation-settings: "opsz" 48;
}
.drawer__link:last-of-type { border-bottom: 0; }
.drawer__phone {
  display: inline-flex; align-self: flex-start;
  margin-top: 24px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
}

/* ————— HERO ————— */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + var(--sp-8)) 0 var(--sp-9);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: hero-kenburns 18s ease-in-out infinite alternate;
  filter: saturate(.95) contrast(1.02);
}
@keyframes hero-kenburns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, -1%); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(251,247,242,.45) 0%, rgba(251,247,242,.72) 55%, rgba(251,247,242,.96) 100%),
    linear-gradient(120deg, rgba(168,220,209,.10), rgba(245,182,206,.08) 60%, rgba(255,207,153,.08) 100%);
}
.hero__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.hero__content {
  max-width: 740px;
}
.hero__h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 7.2vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: var(--sp-3);
  font-variation-settings: "opsz" 144;
}
.hero__h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 0 .08em;
  font-variation-settings: "opsz" 144;
}
.hero__h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.12em;
  background: var(--peach);
  z-index: -1;
  border-radius: 4px;
}
.hero__lede {
  margin-top: var(--sp-5);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 58ch;
}
.hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: var(--sp-7);
}
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-top: var(--sp-8);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(31,27,24,.1);
  max-width: 560px;
}
.hero__meta-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero__meta-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint-700);
  box-shadow: 0 0 0 3px rgba(62,138,124,.18);
  animation: pulse 2.4s infinite;
}
.hero__meta-sep { color: var(--muted-2); }

/* ————— STATS ————— */
.stats {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--sp-7) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.stat {
  display: flex; flex-direction: column; gap: 6px;
  padding: 4px 0;
  position: relative;
}
.stat + .stat {
  border-left: 1px solid var(--rule);
  padding-left: var(--sp-6);
}
.stat__big {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
}
.stat__unit { color: var(--muted); font-weight: 400; }
.stat__label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.sm-br { display: none; }

/* ————— STORY ————— */
.story {
  padding: var(--sp-10) 0;
  background: var(--cream);
}
.story__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--sp-9);
  align-items: center;
}
.story__text p { color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.story__text p + p { margin-top: var(--sp-4); }
.story__sign {
  margin-top: var(--sp-5);
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
}
.story__photo {
  margin: 0;
  position: relative;
}
.story__photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--r-5);
  box-shadow: var(--sh-2);
  position: relative;
  z-index: 1;
}
.story__accent {
  position: absolute;
  inset: -20px -20px 20px 20px;
  background: var(--peach);
  border-radius: var(--r-5);
  z-index: 0;
  opacity: .85;
}

/* ————— HERNIČKA ————— */
.hernicka {
  padding: var(--sp-10) 0;
  background: var(--white);
}
.hernicka__split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--sp-9);
  align-items: center;
  margin-bottom: var(--sp-8);
}
.hernicka__photo { margin: 0; }
.hernicka__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-5);
  box-shadow: var(--sh-2);
}
.hernicka__features {
  display: flex; flex-direction: column;
  gap: var(--sp-5);
}
.hernicka__features li {
  display: flex; gap: 16px;
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--rule);
}
.hernicka__features li:last-child { border-bottom: 0; padding-bottom: 0; }
.feat__dot {
  flex: 0 0 auto;
  width: 14px; height: 14px;
  border-radius: 50%;
  margin-top: 6px;
}
.feat__dot--mint  { background: var(--mint); }
.feat__dot--pink  { background: var(--pink); }
.feat__dot--peach { background: var(--peach); }
.feat__dot--sky   { background: var(--sky); }
.hernicka__features h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
}
.hernicka__features p {
  margin-top: 6px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.thumb-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.thumb { margin: 0; overflow: hidden; border-radius: var(--r-3); }
.thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .6s var(--ease-out), filter .4s var(--ease-out);
}
.thumb:hover img { transform: scale(1.04); filter: saturate(1.05); }

/* ————— VSTUPNÉ ————— */
.vstupne {
  padding: var(--sp-10) 0;
  background: var(--cream);
  position: relative;
}
.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  max-width: 1080px;
  margin: 0 auto;
}
.price {
  position: relative;
  background: var(--white);
  border-radius: var(--r-3);
  padding: 28px 24px 24px;
  border: 1px solid var(--rule);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 140px;
}
.price::before {
  content: "";
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: var(--mint);
}
.price--pink::before  { background: var(--pink); }
.price--mint::before  { background: var(--mint); }
.price--peach::before { background: var(--peach); }
.price--sky::before   { background: var(--sky); }
.price:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: var(--rule-soft);
}
.price__label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
}
.price__val {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-top: auto;
  font-variation-settings: "opsz" 72;
}
.price__val--free {
  color: var(--mint-700);
  font-style: italic;
  font-size: 26px;
}

.prices__note {
  margin: var(--sp-6) auto 0;
  text-align: center;
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
}

/* ————— KAVÁRNA ————— */
.kavarna {
  padding: 0 0 var(--sp-10);
  background: var(--white);
}
.kavarna__band {
  height: 52vh;
  max-height: 520px;
  min-height: 340px;
  width: 100%;
  margin-bottom: var(--sp-9);
  overflow: hidden;
  position: relative;
}
.kavarna__band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251,247,242,0) 0%, rgba(251,247,242,0) 60%, rgba(255,255,255,.5) 100%);
  pointer-events: none;
}
.kavarna__band img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-7);
  margin-top: var(--sp-7);
}
.menu__col header {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--rule);
  margin-bottom: var(--sp-4);
}
.menu__kicker {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.05em;
}
.menu__col h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 48;
}
.menu__col ul { display: flex; flex-direction: column; }
.menu__col li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 15px;
  color: var(--ink-soft);
  align-items: baseline;
}
.menu__col li:last-child { border-bottom: 0; }
.menu__col li small {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mint-700);
  background: var(--mint-tint);
  padding: 2px 6px;
  border-radius: var(--r-1);
  font-weight: 600;
}
.menu__col .num { color: var(--ink); font-size: 14px; white-space: nowrap; }
.menu__note {
  margin-top: var(--sp-6);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ————— OSLAVY ————— */
.oslavy {
  padding: var(--sp-10) 0;
  background: var(--cream);
}
.oslavy__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-9);
  align-items: center;
}
.oslavy__photo { margin: 0; position: relative; }
.oslavy__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-5);
  box-shadow: var(--sh-3);
}
.oslavy__lede {
  margin-top: var(--sp-4);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 54ch;
}
.oslavy__list {
  margin-top: var(--sp-6);
  display: flex; flex-direction: column; gap: 8px;
}
.oslavy__list li {
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.oslavy__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.oslavy__prices {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.opack {
  border-radius: var(--r-3);
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--rule);
  position: relative;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.opack::before {
  content: "";
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 2px;
  background: var(--mint);
  border-radius: 0 0 2px 2px;
}
.opack--pink::before { background: var(--pink); }
.opack:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.opack__top {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); font-weight: 600;
}
.opack__price {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  margin-top: 6px;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 72;
}
.opack__note { display: block; margin-top: 6px; font-size: 13px; color: var(--muted); }

.oslavy__extras {
  display: flex; flex-direction: column;
  margin-top: var(--sp-6);
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.oslavy__extras li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.oslavy__extras li:last-child { color: var(--pink-700); font-weight: 600; }
.oslavy__ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: var(--sp-6);
}

/* ————— AKCE ————— */
.akce {
  padding: var(--sp-10) 0;
  background: var(--white);
}
.akce__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  max-width: 100%;
  margin-bottom: var(--sp-7);
  align-items: end;
}
.akce__head .section-head__lede { margin-top: 0; }

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: var(--sp-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--sp-4);
  scrollbar-width: thin;
  scrollbar-color: var(--rule) transparent;
  cursor: grab;
}
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 3px; }
.event {
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-3);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.event:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.event__photo {
  margin: 0; position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.event__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.event:hover .event__photo img { transform: scale(1.05); }
.event__chip {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  background: var(--white);
  color: var(--peach-700);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: var(--sh-1);
}
.event__body {
  padding: var(--sp-5) var(--sp-5) var(--sp-5);
  display: flex; flex-direction: column; flex: 1;
}
.event__body h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
}
.event__meta {
  display: flex; flex-wrap: wrap; gap: 6px 12px;
  margin-top: 8px;
}
.event__meta li {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted);
  position: relative;
}
.event__meta li + li::before {
  content: "·";
  color: var(--muted-2);
  margin-right: 8px;
}
.event__desc {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
}
.event__signup {
  display: inline-block;
  margin-top: var(--sp-4);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--peach);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.event__signup:hover { color: var(--peach-700); border-color: var(--peach-700); }

.akce__invite {
  margin-top: var(--sp-7);
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}
.akce__invite a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1.5px solid var(--sky);
  padding-bottom: 2px;
}

/* ————— GALERIE ————— */
.galerie {
  padding: var(--sp-10) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.galerie__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.galerie__blob--a {
  top: -120px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(closest-side, var(--mint-tint), transparent);
}
.galerie__blob--b {
  bottom: -140px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(closest-side, var(--peach-tint), transparent);
}
.galerie .container { position: relative; z-index: 1; }

.galerie__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: var(--sp-7);
  align-items: end;
  max-width: none;
  margin-bottom: var(--sp-7);
}
.galerie__lede {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 8px;
}
.galerie__hint {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-700);
  font-weight: 600;
}

/* Bento grid */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 112px;
  gap: 14px;
}

.gal-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-4);
  background: var(--cream-2);
  cursor: zoom-in;
  box-shadow:
    0 1px 2px rgba(31,27,24,.05),
    0 14px 34px -18px rgba(31,27,24,.16);
  transform: translateZ(0);
  transition: transform .55s var(--ease-out), box-shadow .5s var(--ease-out);
  isolation: isolate;
}
.gal-tile:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 4px rgba(31,27,24,.06),
    0 28px 60px -20px rgba(31,27,24,.25);
}

.gal-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s var(--ease-out), filter .5s var(--ease-out);
  filter: saturate(.98) contrast(1.01);
}
.gal-tile:hover img { transform: scale(1.06); filter: saturate(1.08); }

.gal-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,27,24,0) 30%, rgba(31,27,24,.62) 100%);
  opacity: 0;
  transition: opacity .45s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.gal-tile:hover::before { opacity: 1; }

.gal-tile figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .55s var(--ease-out), opacity .4s var(--ease-out);
  pointer-events: none;
}
.gal-tile:hover figcaption { transform: translateY(0); opacity: 1; }

.gal-tile__cat {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
}
.gal-tile__cat--mint  { background: rgba(168,220,209,.28); border-color: rgba(168,220,209,.55); }
.gal-tile__cat--pink  { background: rgba(245,182,206,.28); border-color: rgba(245,182,206,.55); }
.gal-tile__cat--peach { background: rgba(255,207,153,.30); border-color: rgba(255,207,153,.55); }
.gal-tile__cat--sky   { background: rgba(168,208,234,.30); border-color: rgba(168,208,234,.55); }

.gal-tile__name {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
  max-width: 20ch;
}

.gal-tile__num {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.78);
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(31,27,24,.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .35s var(--ease-out), transform .4s var(--ease-out);
}
.gal-tile:hover .gal-tile__num { opacity: 1; transform: translateY(0); }

/* Tile sizes (desktop bento) */
.gal-tile--hero { grid-column: span 6; grid-row: span 4; }
.gal-tile--wide { grid-column: span 6; grid-row: span 2; }
.gal-tile--tall { grid-column: span 3; grid-row: span 4; }
.gal-tile--sm   { grid-column: span 3; grid-row: span 2; }

.gal-tile--hero .gal-tile__name { font-size: 28px; }
.gal-tile--tall .gal-tile__name { font-size: 22px; }
.gal-tile--wide .gal-tile__name { font-size: 22px; }

/* Gallery footer link */
.galerie__foot {
  margin-top: var(--sp-7);
  display: flex;
  justify-content: center;
}
.galerie__more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: var(--sh-1);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.galerie__more:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
  border-color: var(--mint);
}
.galerie__more svg { transition: transform .3s var(--ease-out); }
.galerie__more:hover svg { transform: translateX(3px); }

/* ————— REVIEWS ————— */
.reviews {
  padding: var(--sp-10) 0;
  background: var(--white);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}
.review {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-3);
  padding: 28px;
  display: flex; flex-direction: column;
}
.review__stars {
  color: var(--peach-700);
  letter-spacing: 2px;
  font-size: 16px;
}
.review p {
  margin-top: var(--sp-4);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
  font-variation-settings: "opsz" 48;
  font-weight: 400;
  flex: 1;
}
.review footer {
  margin-top: var(--sp-5);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ————— KONTAKT ————— */
.kontakt {
  padding: var(--sp-10) 0;
  background: var(--cream);
}
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: var(--sp-5);
  align-items: stretch;
}
.infocard {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-3);
  padding: 32px;
  display: flex; flex-direction: column;
}
.infocard h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
}
.hours {
  display: flex; flex-direction: column;
}
.hours li {
  display: flex; justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--r-1);
  font-size: 15px;
  color: var(--ink-soft);
  border-left: 3px solid transparent;
  margin-left: -14px;
  transition: background-color .25s var(--ease-out);
}
.hours li + li { border-top: 1px dashed var(--rule); }
.hours li.today {
  background: var(--mint-tint);
  border-left-color: var(--mint-700);
  font-weight: 600;
  color: var(--ink);
}
.hours li.today span:last-child { color: var(--mint-700); }
.hours__closed { color: var(--muted-2); }

.address { font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.address b { color: var(--ink); font-weight: 600; }
.phone {
  margin-top: var(--sp-4);
  font-family: var(--serif);
  font-size: 24px;
  font-variation-settings: "opsz" 48;
}
.phone a { transition: color .2s var(--ease-out); }
.phone a:hover { color: var(--peach-700); }
.socials {
  display: flex; gap: 10px;
  margin-top: var(--sp-5);
}
.social {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: border-color .2s var(--ease-out), color .2s var(--ease-out), background-color .2s var(--ease-out);
}
.social:hover { border-color: var(--ink); color: var(--ink); background: var(--cream); }
.kontakt__note {
  margin-top: var(--sp-6);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.infocard--map { padding: 0; overflow: hidden; }
.infocard--map h3 {
  padding: 28px 28px 0;
  margin-bottom: var(--sp-4);
}
.mapwrap {
  position: relative;
  flex: 1;
  min-height: 320px;
}
.mapwrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.mapwrap__link {
  display: block;
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border-top: 1px solid var(--rule);
  transition: background-color .2s var(--ease-out);
}
.mapwrap__link:hover { background: var(--cream); }

/* ————— FOOTER ————— */
.foot {
  background: var(--ink);
  color: rgba(251,247,242,.72);
  padding: var(--sp-9) 0 var(--sp-5);
}
.foot__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(251,247,242,.08);
}
.foot__brand {
  display: flex; gap: 14px; align-items: center;
}
.foot__brand img {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  padding: 4px;
  object-fit: contain;
}
.foot__brand div { display: flex; flex-direction: column; }
.foot__word {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
}
.foot__tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(251,247,242,.5);
  margin-top: 4px;
}
.foot__col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: var(--sp-4);
}
.foot__col ul { display: flex; flex-direction: column; gap: 8px; }
.foot__col a, .foot__col p {
  font-size: 14px;
  color: rgba(251,247,242,.72);
  line-height: 1.6;
  transition: color .2s var(--ease-out);
}
.foot__col a:hover { color: var(--cream); }
.foot__socials { display: flex; flex-direction: column; gap: 8px; }
.foot__bottom {
  padding-top: var(--sp-5);
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 12px;
  color: rgba(251,247,242,.5);
  letter-spacing: 0.02em;
}
.foot__bottom a { color: rgba(251,247,242,.72); transition: color .2s var(--ease-out); }
.foot__bottom a:hover { color: var(--cream); }
.foot__sep { color: rgba(251,247,242,.3); }

/* ————— Reveal animations ————— */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ————— Lightbox ————— */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(31,27,24,.92);
  backdrop-filter: blur(12px);
  z-index: 150;
  display: none;
  align-items: center; justify-content: center;
  padding: var(--sp-6);
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox__figure {
  margin: 0;
  max-width: 96vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-3);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(251,247,242,.1);
  color: var(--cream);
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 22px;
  line-height: 46px;
  text-align: center;
  transition: background-color .2s var(--ease-out), transform .2s var(--ease-out);
  font-family: var(--serif);
}
.lightbox__close { top: 20px; right: 20px; font-size: 18px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
  background: rgba(251,247,242,.22);
}
.lightbox__prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.08); }

/* ————— Reduced motion ————— */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__bg img { animation: none; transform: none; }
}
