
:root {
  --bg: #03110D;
  --bg-soft: #081A15;
  --surface: #10241E;
  --surface-2: #16302B;

  --green-950: #03110D;
  --green-900: #0B211B;
  --green-850: #102820;
  --green-800: #16302B;
  --green-700: #21483D;

  --wood-900: #5A3424;
  --wood-800: #6B412D;
  --wood-700: #7A4D36;

  --cream-100: #E0E0E0;
  --cream-200: #D3D0CA;
  --cream-300: #B8B4AD;

  --gold-500: #A38560;
  --gold-400: #B79A75;
  --gold-300: #C8B08E;

  --ink: #03110D;
  --muted: #A7A39B;
  --line: rgba(163,133,96,.34);
  --line-soft: rgba(224,224,224,.09);
  --shadow: 0 28px 75px rgba(0,0,0,.40);
  --radius: 0px;
  --container: 1180px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream-100);
  background: var(--bg);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--gold-500); color: var(--green-950); }

img { max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: .98;
}
h1 { font-size: clamp(4.1rem, 8vw, 8.4rem); letter-spacing: -.045em; }
h2 { font-size: clamp(3rem, 5vw, 5.7rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.7rem, 2.3vw, 2.4rem); }
p { color: var(--muted); }

.container {
  width: min(calc(100% - 44px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -70px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--gold-500);
  color: #08100c;
}
.skip-link:focus { top: 14px; }

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-400);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow-gold { color: var(--gold-500); }

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: linear-gradient(180deg, rgba(5,8,6,.95), rgba(5,8,6,.72) 70%, transparent);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(7,15,11,.96);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
}
.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}
.brand-copy {
  display: grid;
  line-height: 1;
}
.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.08rem;
  letter-spacing: .055em;
  color: var(--cream-100);
}
.brand-copy small {
  margin-top: 6px;
  color: var(--gold-500);
  font-size: .55rem;
  letter-spacing: .2em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.main-nav a {
  position: relative;
  font-size: .77rem;
  color: rgba(244,236,217,.78);
  letter-spacing: .04em;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover { color: var(--cream-100); }
.main-nav a:hover::after { transform: scaleX(1); }

.nav-phone {
  display: flex;
  gap: 9px;
  align-items: center;
  padding-left: 22px;
  border-left: 1px solid var(--line-soft);
}
.nav-phone-icon { color: var(--gold-500); font-size: .5rem; }
.nav-phone span:last-child { display: grid; }
.nav-phone small { color: var(--muted); font-size: .58rem; line-height: 1.25; }
.nav-phone strong { font-size: .68rem; line-height: 1.3; font-weight: 500; }

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--cream-100);
}

/* BUTTONS */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: var(--cream-100);
  font-size: .74rem;
  letter-spacing: .04em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary,
.btn-gold {
  background: var(--gold-500);
  color: #11150f;
}
.btn-primary:hover,
.btn-gold:hover { background: var(--gold-400); }
.btn-outline-light:hover {
  background: rgba(255,255,255,.06);
}
.nav-cta { min-height: 42px; padding-inline: 20px; }

/* HERO */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("obrazky/bar-hero-v2.webp") center 48% / cover no-repeat;
  transform: scale(1.01);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 30%, rgba(215,182,93,.09), transparent 25%),
    linear-gradient(90deg, rgba(6,9,7,.91) 0%, rgba(6,9,7,.78) 36%, rgba(6,9,7,.36) 64%, rgba(6,9,7,.34) 100%),
    linear-gradient(180deg, rgba(6,9,7,.22), rgba(6,9,7,.24) 55%, rgba(6,9,7,.96) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 72px;
}
.hero-content > .eyebrow,
.hero-content > h1,
.hero-content > .hero-tagline,
.hero-content > .hero-copy,
.hero-actions {
  max-width: 760px;
}
.hero h1 {
  margin-bottom: 12px;
  color: var(--gold-400);
  text-shadow: 0 10px 42px rgba(0,0,0,.38);
}
.hero-tagline {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  color: var(--cream-100);
}
.hero-copy {
  max-width: 590px !important;
  margin-bottom: 30px;
  color: rgba(244,236,217,.74);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta {
  margin: 78px auto 0;
  width: min(830px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  justify-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}

.hero-meta div {
  position: relative;
  min-width: 0;
  padding: 22px 24px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  text-align: center;
}

.hero-meta div + div {
  border-left: 1px solid var(--line-soft);
}

.hero-meta span,
.hero-meta strong,
.hero-meta small {
  display: block;
  width: 100%;
  text-align: center;
}

.hero-meta span {
  color: var(--gold-500);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: .88rem;
}

.hero-meta strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: var(--cream-100);
}

.hero-meta small {
  color: var(--muted);
  font-size: .7rem;
}

/* QUICK INFO — editorial strip, no cards */
.quick-info {
  margin: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line-soft);
}
.quick-card {
  min-height: 150px;
  padding: 34px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-right: 1px solid var(--line-soft);
}
.quick-card .icon {
  color: var(--gold-500);
  font-size: 1.05rem;
  line-height: 1.3;
}
.quick-card h2 {
  margin-bottom: 7px;
  font-size: 1.45rem;
  color: var(--cream-100);
}
.quick-card p { margin: 0; font-size: .78rem; }

/* COMMON SECTIONS */
.section-dark,
.section-green,
.section-wood,
.section-paper,
.section-cream {
  color: var(--cream-100);
  background: var(--bg);
}
.section-heading {
  max-width: 780px;
  margin-bottom: 55px;
}
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p { max-width: 620px; margin-inline: auto; }
.section-heading h2 { color: var(--gold-400); }

/* QUALITY */
.quality {
  padding: 135px 0;
  background:
    linear-gradient(110deg, var(--green-950), var(--green-850));
  border-bottom: 1px solid var(--line-soft);
}
.quality-grid {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 110px;
  align-items: center;
}
.quality-photo {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.quality-photo::before {
  content: "";
  position: absolute;
  width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(215,182,93,.22);
  border-radius: 50%;
  left: -110px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.quality-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}
.quality-copy h2 { color: var(--gold-400); }
.quality-copy p { max-width: 650px; color: rgba(244,236,217,.68); }
.quality-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 11px;
}
.quality-list li {
  color: var(--cream-200);
  font-size: .88rem;
}
.quality-list li::before {
  content: "—";
  margin-right: 12px;
  color: var(--gold-500);
}

/* ABOUT */
.about {
  padding: 150px 0;
  background:
    linear-gradient(135deg, rgba(90,52,36,.16), transparent 42%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line-soft);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 120px;
  align-items: center;
}
.about-copy h2 { color: var(--gold-400); }
.about-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(244,236,217,.67);
}
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  color: var(--gold-400);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
}
.portrait-card { position: relative; }
.portrait-frame {
  position: relative;
  width: min(100%, 470px);
  margin-left: auto;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -34px 40px 34px -34px;
  border: 1px solid var(--line);
}
.rudolf-portrait {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  filter: saturate(.78) contrast(1.06);
}
.seal {
  position: absolute;
  right: -18px;
  bottom: -22px;
  z-index: 2;
  width: 82px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-400);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

/* FEATURES */
.features {
  padding: 125px 0 135px;
  background: var(--green-950);
  border-bottom: 1px solid var(--line-soft);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line-soft);
}
.feature-card {
  min-height: 220px;
  padding: 34px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  transition: background .2s ease;
}
.feature-card:hover { background: rgba(215,182,93,.035); }
.feature-card > span {
  display: block;
  margin-bottom: 46px;
  color: var(--gold-500);
  filter: grayscale(1) sepia(.2);
  font-size: 1.15rem;
}
.feature-card h3 {
  margin-bottom: 10px;
  color: var(--cream-100);
}
.feature-card p {
  margin: 0;
  max-width: 310px;
  font-size: .82rem;
}

/* SALON */
.salon {
  padding: 150px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.salon-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 110px;
  align-items: center;
}
.salon-photo {
  position: relative;
  margin: 0;
  order: 2;
}
.salon-photo::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  left: -12%;
  top: 50%;
  transform: translateY(-50%);
}
.salon-photo img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.salon-copy { order: 1; }
.salon-copy h2 { color: var(--gold-400); }
.salon-copy p { color: rgba(244,236,217,.68); }
.check-list {
  list-style: none;
  margin: 28px 0 34px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  color: var(--cream-200);
  font-size: .88rem;
}
.check-list li::before {
  content: "—";
  margin-right: 12px;
  color: var(--gold-500);
}

/* BOOKING */
.booking-preview {
  padding: 125px 0 135px;
  background:
    radial-gradient(circle at 50% 0%, rgba(30,74,57,.32), transparent 40%),
    var(--green-950);
  border-bottom: 1px solid var(--line-soft);
}
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.booking-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 46px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.012);
}
.booking-card::after {
  content: "";
  position: absolute;
  width: 210px;
  aspect-ratio: 1;
  right: -70px;
  bottom: -70px;
  border: 1px solid rgba(215,182,93,.16);
  border-radius: 50%;
}
.booking-card-symbol {
  height: auto;
  margin-bottom: 54px;
  background: none;
  border: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}
.booking-symbol-crown,
.booking-symbol-main {
  color: var(--gold-500);
  font-size: 1.1rem;
}
.booking-card-kicker {
  color: var(--gold-500);
  letter-spacing: .18em;
  font-size: .65rem;
  font-weight: 700;
}
.booking-card h3 { color: var(--cream-100); }
.booking-card p { max-width: 430px; font-size: .84rem; }

/* GALLERY */
.gallery {
  padding: 140px 0;
  background: var(--bg-soft);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr .65fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0a0d0b;
}
.gallery-interior-main { grid-column: 1; grid-row: 1 / 3; }
.gallery-salon-top { grid-column: 2; grid-row: 1; }
.gallery-beer { grid-column: 3; grid-row: 1; }
.gallery-salon-wide { grid-column: 2 / 4; grid-row: 2; }

.gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
  filter: saturate(.82) brightness(.88);
}
.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4,7,5,.82));
  pointer-events: none;
}
.gallery-photo figcaption {
  position: absolute;
  left: 20px;
  bottom: 15px;
  z-index: 2;
  color: var(--cream-100);
  font-size: .66rem;
  letter-spacing: .17em;
}
.gallery-photo:hover img {
  transform: scale(1.025);
  filter: saturate(.9) brightness(.98);
}

/* REVIEWS */
.reviews {
  padding: 120px 0 135px;
  background: var(--green-950);
  border-top: 1px solid var(--line-soft);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line-soft);
}
.reviews blockquote {
  margin: 0;
  min-height: 235px;
  padding: 34px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stars {
  margin-bottom: 34px;
  color: var(--gold-500);
  letter-spacing: .1em;
}
.reviews blockquote p {
  color: rgba(244,236,217,.74);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.35;
}
.reviews blockquote footer {
  color: var(--muted);
  font-size: .72rem;
}

/* FINAL CTA */
.final-cta {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.final-cta-media {
  position: absolute;
  inset: 0;
  background: url("obrazky/interier-hlavni.webp") center / cover no-repeat;
  filter: saturate(.72);
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,17,13,.94), rgba(22,48,43,.62), rgba(3,17,13,.88)),
    linear-gradient(180deg, rgba(90,52,36,.12), rgba(3,17,13,.94));
}
.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.final-cta h2 {
  max-width: 850px;
  margin: 0 auto 28px;
  color: var(--gold-400);
}
.final-cta-info {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  gap: 34px;
  color: var(--cream-200);
  font-size: .82rem;
}

/* KONTAKT */
.contact-section { padding: 105px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.contact-card {
  padding: 31px;
  border: 1px solid rgba(163,133,96,.22);
  background: var(--green-900);
  color: var(--cream-100);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.contact-card-main { background: var(--green-900); color: var(--cream-100); }
.contact-kicker {
  margin: 0 0 11px;
  color: var(--gold-400);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
}
.contact-card h3 { margin: 0 0 21px; color: var(--cream-100); font-size: 1.55rem; }
.contact-card p,
.contact-card address {
  margin: 0 0 17px;
  color: rgba(244,236,217,.72);
  font-size: .78rem;
  font-style: normal;
  line-height: 1.7;
}
.contact-card a { color: inherit; text-decoration-color: rgba(181,127,52,.55); text-underline-offset: 3px; }
.contact-card a:hover { color: var(--gold-400); }
.contact-hours { margin: 0; }
.contact-hours div { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid rgba(244,236,217,.1); }
.contact-hours dt { color: rgba(244,236,217,.68); font-size: .76rem; }
.contact-hours dd { margin: 0; color: var(--cream-100); font-size: .78rem; font-weight: 700; }
.contact-card .contact-small { margin: 17px 0 0; font-size: .68rem; }
.contact-actions { margin-top: 24px; }
.contact-actions .btn { min-width: 150px; justify-content: center; }

/* FOOTER */
.site-footer {
  padding: 74px 0 28px;
  background: linear-gradient(180deg, #070b08 0%, #040605 100%);
  color: var(--cream-100);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.footer-brand-center {
  display: grid;
  justify-items: center;
}
.footer-brand-center .brand {
  justify-content: center;
  text-align: left;
}
.footer-brand-center > p {
  margin: 15px 0 0;
  color: rgba(244,236,217,.54);
  font-size: .76rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.footer-grid-centered {
  max-width: 1050px;
  margin-top: 46px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.footer-column {
  min-width: 0;
  padding: 0 38px;
}
.footer-column + .footer-column {
  border-left: 1px solid var(--line-soft);
}
.brand-footer .brand-mark img { opacity: .92; }
.site-footer h2 {
  margin-bottom: 18px;
  color: var(--gold-400);
  font-size: 1.4rem;
}
.site-footer p,
.site-footer a {
  color: rgba(244,236,217,.58);
  font-size: .77rem;
}
.footer-column p { margin-bottom: 0; line-height: 1.85; }
.footer-column p + p { margin-top: 4px; }
.site-footer a:hover { color: var(--gold-400); }
.footer-operator {
  margin-top: 30px;
  padding-top: 0;
}
.footer-operator .footer-operator-label {
  margin-bottom: 10px;
  color: var(--gold-500);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
}
.footer-operator p { max-width: 980px; margin-right: auto; margin-left: auto; line-height: 1.75; }
.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  border-top: 1px solid var(--line-soft);
  color: rgba(244,236,217,.38);
  font-size: .67rem;
}

.footer-credit {
  color: rgba(244,236,217,.34);
}
.footer-credit a {
  color: rgba(181,127,52,.72);
  font-size: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(181,127,52,.28);
  transition: color .2s ease, border-color .2s ease;
}
.footer-credit a:hover {
  color: var(--gold-400);
  border-bottom-color: var(--gold-400);
}

/* MODAL */
.booking-modal {
  width: min(760px, calc(100% - 28px));
  max-height: calc(100vh - 30px);
  padding: 0;
  border: 1px solid var(--line);
  background: var(--green-950);
  color: var(--cream-100);
  box-shadow: 0 35px 100px rgba(0,0,0,.65);
}
.booking-modal::backdrop {
  background: rgba(0,0,0,.76);
  backdrop-filter: blur(5px);
}
.modal-shell {
  position: relative;
  padding: 42px;
  overflow: auto;
  max-height: calc(100vh - 30px);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream-100);
  cursor: pointer;
  font-size: 1.4rem;
}
.modal-note { font-size: .8rem; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--cream-200);
  font-size: .72rem;
}
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(244,236,217,.15);
  background: #0a120e;
  color: var(--cream-100);
  outline: 0;
}
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus { border-color: var(--gold-500); }
.form-grid select option:disabled { color: #777; }
.form-grid .full { grid-column: 1 / -1; }
.field-note { min-height: 1.2em; color: var(--gold-400); font-size: .69rem; line-height: 1.4; }
.form-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  line-height: 1.45;
}
.form-consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 1px;
  padding: 0;
  accent-color: var(--gold-500);
}
.form-consent a,
.privacy-summary a {
  color: var(--gold-400);
  text-underline-offset: 3px;
}
.privacy-summary {
  padding: 15px 16px;
  border-left: 2px solid var(--gold-500);
  background: rgba(255,255,255,.035);
  color: rgba(244,236,217,.67);
  font-size: .69rem;
  line-height: 1.6;
}
.privacy-summary strong { display: block; margin-bottom: 4px; color: var(--cream-100); font-size: .72rem; }
.privacy-summary p { margin: 0; }
.booking-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* STRÁNKA OCHRANY OSOBNÍCH ÚDAJŮ */
.legal-page { background: var(--cream-100); color: var(--green-950); }
.legal-header { min-height: auto; background: var(--green-950); }
.legal-header .nav-wrap { min-height: 82px; }
.legal-back { color: var(--cream-100); font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.legal-back:hover { color: var(--gold-400); }
.legal-main { padding: 145px 0 95px; }
.legal-document { max-width: 850px; }
.legal-document > .eyebrow { margin-bottom: 14px; }
.legal-document h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(2.65rem, 7vw, 5rem); }
.legal-lead { max-width: 720px; margin-bottom: 55px; color: rgba(23,34,29,.65); font-size: 1rem; line-height: 1.75; }
.legal-block { padding: 27px 0; border-top: 1px solid rgba(23,53,43,.16); }
.legal-block h2 { margin: 0 0 13px; color: var(--green-900); font-size: 1.55rem; }
.legal-block p,
.legal-block li { color: rgba(23,34,29,.72); font-size: .82rem; line-height: 1.75; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { margin: 0; padding-left: 20px; }
.legal-block a { color: #76501f; text-decoration: underline; text-underline-offset: 3px; }
.legal-updated { margin-top: 38px; color: rgba(23,34,29,.48); font-size: .7rem; }
.form-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.form-status { min-height: 1.3em; margin-top: 12px; color: var(--gold-400); font-size: .78rem; line-height: 1.5; }
.form-status.is-success { color: #b8dfbf; }
.form-status.is-error { color: #ffb4a9; }
.form-actions .btn[disabled] { cursor: wait; opacity: .62; transform: none; }
.slot-status {
  padding: 11px 13px;
  border: 1px solid rgba(244,236,217,.12);
  background: rgba(255,255,255,.025);
  color: rgba(244,236,217,.68);
  font-size: .73rem;
  line-height: 1.45;
}
.slot-status.is-free { border-color: rgba(115,190,137,.44); color: #b8dfbf; background: rgba(70,145,91,.1); }
.slot-status.is-busy { border-color: rgba(205,102,89,.52); color: #ffb4a9; background: rgba(160,56,45,.1); }
.slot-status.is-loading { color: var(--gold-400); }

/* KROK 35 — kalendář dostupnosti */
.availability-calendar {
  margin-top: 25px;
  padding: 20px;
  border: 1px solid rgba(244,236,217,.14);
  background: rgba(4,10,7,.34);
}
.calendar-toolbar { display: flex; justify-content: space-between; gap: 20px; align-items: flex-end; }
.calendar-kicker { margin: 0 0 5px; color: var(--gold-400); font-size: .62rem; font-weight: 700; letter-spacing: .14em; }
.calendar-toolbar h3 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.7rem; font-weight: 600; }
.calendar-nav { display: grid; grid-template-columns: 34px minmax(112px,auto) 34px; align-items: center; gap: 7px; text-align: center; }
.calendar-nav button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244,236,217,.16);
  background: transparent;
  color: var(--cream-100);
  cursor: pointer;
}
.calendar-nav button:hover { border-color: var(--gold-500); color: var(--gold-400); }
.calendar-nav strong { font-size: .72rem; text-transform: capitalize; }
.calendar-weekdays,
.calendar-grid { display: grid; grid-template-columns: repeat(7,minmax(0,1fr)); gap: 5px; }
.calendar-weekdays { margin: 18px 0 7px; color: rgba(244,236,217,.45); font-size: .61rem; text-align: center; }
.calendar-day {
  position: relative;
  min-height: 43px;
  border: 1px solid rgba(244,236,217,.1);
  background: rgba(76,139,92,.12);
  color: var(--cream-100);
  cursor: pointer;
  font: inherit;
  font-size: .74rem;
}
.calendar-day::after { content: ""; position: absolute; left: 50%; bottom: 5px; width: 5px; height: 5px; border-radius: 50%; background: #74b985; transform: translateX(-50%); }
.calendar-day.is-busy { background: rgba(181,127,52,.15); border-color: rgba(218,174,102,.28); }
.calendar-day.is-busy::after { background: #d5a24d; }
.calendar-day.is-limited { background: repeating-linear-gradient(135deg,rgba(181,127,52,.17) 0 5px,rgba(181,127,52,.07) 5px 10px); }
.calendar-day.is-limited::after { background: #d5a24d; }
.calendar-day.is-selected { outline: 2px solid var(--cream-100); outline-offset: 1px; }
.calendar-day.is-today { border-color: var(--gold-500); }
.calendar-day.is-other-month { opacity: .28; }
.calendar-day:disabled { cursor: not-allowed; opacity: .22; background: transparent; }
.calendar-day:disabled::after { display: none; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 14px; color: rgba(244,236,217,.62); font-size: .62rem; }
.calendar-legend span { display: inline-flex; align-items: center; gap: 6px; }
.calendar-legend i { width: 9px; height: 9px; border-radius: 50%; background: #74b985; }
.calendar-legend .legend-busy { background: #d5a24d; }
.calendar-legend .legend-limited { border: 1px solid #d5a24d; background: transparent; }
.calendar-detail { margin-top: 15px; padding: 11px 12px; background: rgba(255,255,255,.035); color: rgba(244,236,217,.7); font-size: .72rem; line-height: 1.5; }
.calendar-detail strong { color: var(--cream-100); }
.calendar-detail .occupied-slot { display: inline-block; margin: 5px 5px 0 0; padding: 4px 7px; border: 1px solid rgba(218,174,102,.28); color: #e4bf7c; }
.hidden { display: none !important; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-phone { display: none; }
  .main-nav { gap: 18px; }
  .quality-grid,
  .split-grid,
  .salon-grid { gap: 65px; }
}

@media (max-width: 900px) {
  .site-header { background: rgba(7,15,11,.94); }
  .nav-wrap { min-height: 76px; }
  .brand { min-width: auto; }
  .brand-copy small { display: none; }

  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 76px 18px auto;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    background: rgba(7,15,11,.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line-soft);
  }
  .main-nav a::after { display: none; }
  .nav-cta { display: none; }

  .hero-content { padding-top: 125px; }
  .hero-meta {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
    text-align: center;
  }
  .hero-meta div,
  .hero-meta div + div {
    padding: 16px 20px;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    text-align: center;
  }
  .hero-meta div:first-child { border-top: 0; }

  .quick-info-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-grid,
  .split-grid,
  .salon-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .portrait-frame { margin: 0; }
  .salon-photo,
  .salon-copy { order: initial; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 310px 220px 220px;
  }
  .gallery-interior-main { grid-column: 1 / 3; grid-row: 1; }
  .gallery-salon-top { grid-column: 1; grid-row: 2; }
  .gallery-beer { grid-column: 2; grid-row: 2; }
  .gallery-salon-wide { grid-column: 1 / 3; grid-row: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .footer-grid.footer-grid-centered { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-column { padding-right: 24px; padding-left: 24px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: clamp(3.5rem, 16vw, 5.7rem); }
  h2 { font-size: clamp(2.8rem, 12vw, 4.2rem); }

  .brand-mark { width: 48px; height: 48px; flex-basis: 48px; }
  .brand-copy strong { font-size: .92rem; }
  .hero {
    min-height: 920px;
    align-items: end;
  }
  .hero-media { background-position: 62% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5,8,6,.38), rgba(5,8,6,.74) 45%, rgba(5,8,6,.97) 100%);
  }
  .hero-content {
    padding-top: 140px;
    padding-bottom: 46px;
  }
  .hero-meta { margin-top: 50px; }

  .quick-info-grid { grid-template-columns: 1fr; border-left: 0; }
  .quick-card { min-height: auto; border-left: 1px solid var(--line-soft); }

  .quality,
  .about,
  .features,
  .salon,
  .booking-preview,
  .gallery,
  .reviews { padding: 92px 0; }

  .quality-photo::before { width: 280px; left: -60px; }
  .portrait-frame::before { inset: -20px 22px 20px -20px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 190px; }
  .booking-card { padding: 30px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 250px);
  }
  .gallery-interior-main,
  .gallery-salon-top,
  .gallery-beer,
  .gallery-salon-wide {
    grid-column: 1;
    grid-row: auto;
  }

  .final-cta { min-height: 540px; }
  .final-cta-info {
    flex-direction: column;
    gap: 7px;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .modal-shell { padding: 34px 22px 26px; }
}


/* =========================================================
   KROK 24 — SCROLL TRANSITIONS
========================================================= */
.scroll-progress{position:fixed;z-index:5000;inset:0 0 auto;height:2px;pointer-events:none}
.scroll-progress span{display:block;width:0;height:100%;background:linear-gradient(90deg,var(--gold-500),var(--cream-100));box-shadow:0 0 14px rgba(163,133,96,.34);transform-origin:left center}
.site-header{transition:background .38s var(--ease),border-color .38s var(--ease),backdrop-filter .38s var(--ease),transform .38s var(--ease)}

.js .hero-content>.eyebrow,.js .hero-content>h1,.js .hero-content>.hero-tagline,.js .hero-content>.hero-copy,.js .hero-content>.hero-actions,.js .hero-content>.hero-meta{opacity:0;transform:translateY(24px);animation:hero-enter .82s var(--ease) forwards}
.js .hero-content>h1{animation-delay:.08s}.js .hero-content>.hero-tagline{animation-delay:.16s}.js .hero-content>.hero-copy{animation-delay:.22s}.js .hero-content>.hero-actions{animation-delay:.29s}.js .hero-content>.hero-meta{animation-delay:.38s}
@keyframes hero-enter{to{opacity:1;transform:none}}

.js .reveal{opacity:0;transform:translateY(32px);filter:blur(3px);transition:opacity .82s var(--ease),transform .82s var(--ease),filter .82s var(--ease);transition-delay:var(--reveal-delay,0ms);will-change:opacity,transform}
.js .reveal.reveal-left{transform:translateX(-34px)}
.js .reveal.reveal-right{transform:translateX(34px)}
.js .reveal.reveal-scale{transform:translateY(18px) scale(.975)}
.js .reveal.is-visible{opacity:1;transform:none;filter:none}

.js .gallery-item.reveal,.js .quality-photo.reveal,.js .portrait-card.reveal,.js .salon-photo.reveal{overflow:hidden}
.js .gallery-item.reveal img,.js .quality-photo.reveal img,.js .portrait-card.reveal img,.js .salon-photo.reveal img{transition:transform 1.15s var(--ease),filter .55s ease}
.js .gallery-item.reveal:not(.is-visible) img,.js .quality-photo.reveal:not(.is-visible) img,.js .portrait-card.reveal:not(.is-visible) img,.js .salon-photo.reveal:not(.is-visible) img{transform:scale(1.035)}

.hero-media{--hero-shift:0px;transform:scale(1.025) translate3d(0,var(--hero-shift),0);will-change:transform}

.js .section-heading.reveal::after{content:"";display:block;width:68px;height:1px;margin:24px auto 0;background:var(--gold-500);transform:scaleX(0);transform-origin:center;transition:transform .75s .18s var(--ease)}
.js .section-heading.reveal.is-visible::after{transform:scaleX(1)}

@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}.js .reveal,.js .reveal.reveal-left,.js .reveal.reveal-right,.js .reveal.reveal-scale,.js .hero-content>.eyebrow,.js .hero-content>h1,.js .hero-content>.hero-tagline,.js .hero-content>.hero-copy,.js .hero-content>.hero-actions,.js .hero-content>.hero-meta{opacity:1!important;transform:none!important;filter:none!important}.hero-media{transform:none!important}}


/* KROK 28 — otevírací doba pod hero */
.opening-hours-mini {
  display: grid;
  grid-template-columns: 58px max-content;
  column-gap: 14px;
  row-gap: 3px;
  align-items: baseline;
  margin-top: 4px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.45;
  font-variant-numeric: tabular-nums;
}

.opening-hours-mini span {
  color: var(--muted);
  white-space: nowrap;
}

.opening-hours-mini strong {
  color: var(--cream-200);
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}


/* KROK 29 — jednotné ikonky pod hero */
.quick-card .icon-svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  color: var(--gold-500);
}

.quick-card .icon-svg svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-card .icon-svg svg circle {
  fill: none;
}


/* KROK 30 — zlaté SVG ikonky ve feature cards */
.feature-card > .feature-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 46px;
  color: var(--gold-500);
  filter: none;
  font-size: 0;
}

.feature-card > .feature-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   KROK 31 — MENU / NÁPOJOVÝ LÍSTEK
========================================================= */
.feature-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:18px;
  color:var(--gold-400);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.05rem;
  line-height:1;
}
.feature-link span{transition:transform .2s ease}
.feature-link:hover span{transform:translateX(4px)}

.pub-menu{
  padding:135px 0 145px;
  background:
    radial-gradient(circle at 15% 15%, rgba(163,133,96,.08), transparent 28%),
    linear-gradient(180deg, #061611 0%, #03110D 100%);
  border-bottom:1px solid var(--line-soft);
}
.pub-menu .section-heading{margin-bottom:38px}

.menu-filters{
  position:sticky;
  top:92px;
  z-index:18;
  width:max-content;
  max-width:100%;
  margin:0 auto 50px;
  padding:7px;
  display:flex;
  gap:6px;
  overflow-x:auto;
  overscroll-behavior-inline:contain;
  scrollbar-width:none;
  background:rgba(7,15,11,.88);
  border:1px solid var(--line);
  backdrop-filter:blur(14px);
  box-shadow:0 14px 40px rgba(0,0,0,.2);
}
.menu-filters::-webkit-scrollbar{display:none}
.menu-filter{
  flex:0 0 auto;
  min-height:38px;
  padding:0 14px;
  border:1px solid transparent;
  background:transparent;
  color:rgba(224,224,224,.7);
  cursor:pointer;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.menu-filter:hover{color:var(--cream-100);border-color:var(--line)}
.menu-filter.is-active{
  background:var(--gold-500);
  color:var(--green-950);
  border-color:var(--gold-500);
}

.menu-categories{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  align-items:start;
}
.menu-category{
  min-width:0;
  padding:34px 34px 28px;
  border:1px solid var(--line-soft);
  border-top-color:var(--line);
  background:linear-gradient(180deg,rgba(22,48,43,.5),rgba(8,26,21,.28));
  box-shadow:0 24px 55px rgba(0,0,0,.14);
}
.menu-category[data-menu-category="whisky-rum"],
.menu-category[data-menu-category="destilaty"]{
  grid-column:span 2;
}
.menu-category.is-filtered-out{display:none!important}
.menu-category-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  padding-bottom:20px;
  margin-bottom:3px;
  border-bottom:1px solid var(--line);
}
.menu-category-head .eyebrow{margin:0}
.menu-category-head h3{
  margin:0;
  color:var(--cream-100);
  font-size:clamp(2rem,3vw,3rem);
  text-align:right;
}
.menu-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  column-gap:38px;
}
.menu-row{
  min-width:0;
  min-height:54px;
  padding:14px 0 12px;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:18px;
  border-bottom:1px solid rgba(224,224,224,.08);
}
.menu-row span{
  min-width:0;
  color:var(--cream-200);
  font-size:.84rem;
  line-height:1.4;
}
.menu-row span small{
  margin-left:5px;
  color:var(--muted);
  font-size:.72rem;
  white-space:nowrap;
}
.menu-row-food span {
  display: grid;
  gap: 4px;
}
.menu-row-food span small {
  margin-left: 0;
  white-space: normal;
  line-height: 1.45;
}
.menu-row strong{
  flex:0 0 auto;
  color:var(--gold-400);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:1.08rem;
  font-weight:600;
  white-space:nowrap;
  font-variant-numeric:tabular-nums;
}
.menu-row-pending strong{
  color:var(--muted);
  font-family:Inter, system-ui, sans-serif;
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.menu-note{
  max-width:900px;
  margin:28px auto 0;
  color:rgba(224,224,224,.46);
  font-size:.72rem;
  text-align:center;
}
.allergen-notice {
  max-width: 960px;
  margin: 34px auto 0;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  border: 1px solid rgba(218,174,102,.3);
  background: rgba(218,174,102,.07);
}
.allergen-symbol {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-400);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.allergen-notice h3 { margin: 1px 0 7px; color: var(--gold-400); font-size: 1.05rem; }
.allergen-notice p { margin: 0; color: rgba(244,236,217,.68); font-size: .76rem; line-height: 1.65; }

@media (max-width: 900px){
  .menu-filters{top:80px;justify-content:flex-start}
  .menu-categories{grid-template-columns:1fr}
  .menu-category[data-menu-category="whisky-rum"],
  .menu-category[data-menu-category="destilaty"]{grid-column:auto}
}

@media (max-width: 620px){
  .pub-menu{padding:92px 0}
  .menu-filters{
    width:calc(100vw - 28px);
    margin-left:calc(50% - 50vw + 14px);
    margin-right:0;
    padding:6px;
  }
  .menu-category{padding:24px 20px 20px}
  .menu-category-head{
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }
  .menu-category-head h3{text-align:left}
  .menu-list{grid-template-columns:1fr}
  .menu-row{min-height:50px}
  .menu-row span{font-size:.82rem}
}


/* =========================================================
   KROK 33 — MOBILE FIRST POLISH
========================================================= */
.mobile-nav-actions,
.mobile-action-bar,
.menu-item-count{display:none}

section[id]{scroll-margin-top:96px}

@media (max-width:900px){
  body.menu-open,
  body.modal-open{overflow:hidden}

  .site-header{
    padding-top:env(safe-area-inset-top);
    background:rgba(3,17,13,.94);
    backdrop-filter:blur(18px);
  }
  .nav-wrap{min-height:68px;gap:12px}
  .brand{gap:9px}
  .brand-mark{width:44px;height:44px;flex-basis:44px}
  .brand-copy strong{font-size:.86rem;letter-spacing:.045em}
  .menu-toggle{
    position:relative;
    z-index:102;
    width:46px;
    height:46px;
    padding:0;
    border-color:rgba(163,133,96,.5);
  }
  .menu-toggle span{
    position:absolute;
    left:12px;
    width:20px;
    margin:0;
    transition:transform .25s var(--ease),opacity .2s ease,top .25s var(--ease);
  }
  .menu-toggle span:nth-child(1){top:15px}
  .menu-toggle span:nth-child(2){top:22px}
  .menu-toggle span:nth-child(3){top:29px}
  .menu-toggle.is-open span:nth-child(1){top:22px;transform:rotate(45deg)}
  .menu-toggle.is-open span:nth-child(2){opacity:0}
  .menu-toggle.is-open span:nth-child(3){top:22px;transform:rotate(-45deg)}

  .main-nav{
    inset:calc(68px + env(safe-area-inset-top)) 0 0;
    height:calc(100dvh - 68px - env(safe-area-inset-top));
    padding:24px 22px calc(24px + env(safe-area-inset-bottom));
    overflow-y:auto;
    gap:0;
    border:0;
    border-top:1px solid var(--line-soft);
    background:
      radial-gradient(circle at 80% 12%,rgba(163,133,96,.11),transparent 30%),
      rgba(3,17,13,.985);
    box-shadow:none;
  }
  .main-nav a:not(.btn){
    padding:13px 2px;
    color:var(--cream-100);
    border-bottom:1px solid var(--line-soft);
    font-family:"Cormorant Garamond", Georgia, serif;
    font-size:clamp(1.55rem,7vw,2.15rem);
    line-height:1.05;
  }
  .mobile-nav-actions{
    display:grid;
    grid-template-columns:1fr 1.35fr;
    gap:10px;
    margin-top:auto;
    padding-top:28px;
  }
  .mobile-nav-actions .btn{width:100%;min-height:50px;font-family:Inter, system-ui, sans-serif;font-size:.74rem}
  .hero-content{padding-top:calc(112px + env(safe-area-inset-top))}
  .quick-info{position:relative;z-index:1}
  .menu-filters{top:calc(76px + env(safe-area-inset-top))}
}

@media (max-width:620px){
  html{scroll-padding-top:78px}
  body{overflow-x:hidden;padding-bottom:calc(68px + env(safe-area-inset-bottom))}
  .container{width:min(calc(100% - 32px),var(--container))}
  h1{font-size:clamp(3.15rem,15vw,4.5rem);line-height:.9;letter-spacing:-.045em}
  h2{font-size:clamp(2.45rem,11.5vw,3.5rem);line-height:.96}
  h3{line-height:1.05}
  p{font-size:.94rem}
  .eyebrow{margin-bottom:12px;font-size:.68rem;letter-spacing:.2em}
  .btn{min-height:50px;padding-inline:20px}

  .hero{min-height:max(720px,100svh);align-items:end}
  .hero-media{
    background-position:64% center;
    transform:scale(1.02) translate3d(0,var(--hero-shift),0);
  }
  .hero-overlay{
    background:linear-gradient(180deg,rgba(3,8,6,.18) 0%,rgba(3,8,6,.44) 32%,rgba(3,8,6,.9) 68%,#03110d 100%);
  }
  .hero-content{padding-top:calc(108px + env(safe-area-inset-top));padding-bottom:30px}
  .hero h1{margin-bottom:10px;text-shadow:0 8px 34px rgba(0,0,0,.55)}
  .hero-tagline{font-size:1.28rem}
  .hero-copy{margin-bottom:24px;font-size:.88rem;line-height:1.55}
  .hero-actions{display:grid;grid-template-columns:1fr;gap:9px}
  .hero-actions .btn{width:100%}
  .hero-meta{
    width:calc(100vw - 16px);
    max-width:none;
    margin:28px 0 0 calc(50% - 50vw + 8px);
    padding:0 8px 5px;
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:minmax(230px,82vw);
    grid-template-columns:none;
    gap:8px;
    overflow-x:auto;
    overscroll-behavior-inline:contain;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    border:0;
  }
  .hero-meta::-webkit-scrollbar{display:none}
  .hero-meta div,
  .hero-meta div+div{
    min-height:82px;
    padding:13px 16px;
    border:1px solid var(--line-soft);
    background:rgba(3,17,13,.74);
    scroll-snap-align:center;
  }
  .hero-meta span{font-size:.72rem}
  .hero-meta strong{font-size:1.05rem}
  .hero-meta small{font-size:.67rem}

  .quick-info-grid{gap:0}
  .quick-card{padding:24px 18px;gap:14px}
  .quick-card h2{font-size:1.38rem}
  .opening-hours-mini{grid-template-columns:52px max-content;font-size:.72rem}

  .quality,.about,.features,.salon,.booking-preview,.gallery,.reviews,.pub-menu{padding:74px 0}
  .section-heading{margin-bottom:36px}
  .section-heading h2 br{display:none}
  .quality-grid,.split-grid,.salon-grid{gap:45px}
  .quality-photo{padding:8px}
  .quality-photo::before{display:none}
  .portrait-frame::before{inset:-12px 14px 14px -12px}
  .seal{right:-6px;bottom:-14px;width:68px}
  .salon-photo::before{display:none}
  .salon-photo img{aspect-ratio:4/3}

  .features-grid{border-left:0}
  .feature-card{min-height:0;padding:26px 20px;border-left:1px solid var(--line-soft)}
  .feature-card>.feature-icon{margin-bottom:22px}
  .feature-card h3{font-size:1.9rem}
  .feature-card p{font-size:.8rem}

  .menu-filters{
    top:calc(72px + env(safe-area-inset-top));
    width:100vw;
    max-width:none;
    margin:0 0 28px calc(50% - 50vw);
    padding:7px 16px;
    gap:7px;
    border-inline:0;
    background:rgba(3,17,13,.95);
  }
  .menu-filter{min-height:44px;padding-inline:16px;scroll-snap-align:start}
  .menu-categories{gap:12px}
  .menu-category{padding:0;background:rgba(16,40,32,.52);scroll-margin-top:145px}
  .menu-category-head{
    position:relative;
    min-height:88px;
    padding:18px 52px 17px 18px;
    margin:0;
    display:grid;
    grid-template-columns:1fr;
    gap:2px;
    cursor:pointer;
    border-bottom:0;
  }
  .menu-category-head:focus-visible{outline:2px solid var(--gold-400);outline-offset:-2px}
  .menu-category-head::after{
    content:"";
    position:absolute;
    right:22px;
    top:50%;
    width:10px;
    height:10px;
    border-right:1px solid var(--gold-400);
    border-bottom:1px solid var(--gold-400);
    transform:translateY(-65%) rotate(45deg);
    transition:transform .22s ease;
  }
  .menu-category:not(.is-collapsed) .menu-category-head::after{transform:translateY(-30%) rotate(225deg)}
  .menu-category-head .eyebrow{font-size:.6rem}
  .menu-category-head h3{font-size:2rem}
  .menu-item-count{display:block;color:var(--muted);font-size:.68rem}
  .menu-category.is-collapsed .menu-list{display:none}
  .menu-list{padding:0 18px 10px;border-top:1px solid var(--line)}
  .menu-row{min-height:54px;padding:12px 0;gap:12px}
  .menu-row span{padding-right:4px;line-height:1.35}
  .menu-row span small{display:inline;margin-left:4px;font-size:.68rem}
  .menu-row strong{font-size:1.04rem}

  .booking-grid{gap:12px}
  .booking-card{min-height:0;padding:26px 22px}
  .booking-card-symbol{margin-bottom:26px}
  .booking-card .btn{width:100%}

  .gallery-grid{
    width:100vw;
    margin-left:calc(50% - 50vw);
    padding:0 16px 8px;
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:84vw;
    grid-template-columns:none;
    grid-template-rows:360px;
    gap:10px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
  }
  .gallery-grid::-webkit-scrollbar{display:none}
  .gallery-interior-main,.gallery-salon-top,.gallery-beer,.gallery-salon-wide{grid-column:auto;grid-row:1;scroll-snap-align:center}

  .reviews-grid{
    width:100vw;
    margin-left:calc(50% - 50vw);
    padding:0 16px 8px;
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:84vw;
    grid-template-columns:none;
    gap:10px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    border:0;
  }
  .reviews-grid::-webkit-scrollbar{display:none}
  .reviews blockquote{min-height:220px;border:1px solid var(--line-soft);scroll-snap-align:center}

  .final-cta{min-height:500px;padding:72px 0}
  .final-cta h2{font-size:clamp(2.7rem,12vw,3.5rem)}
  .final-cta .btn{width:100%}
  .site-footer{padding:64px 0 30px}
  .footer-grid{gap:34px}
  .footer-bottom{margin-top:38px;padding-bottom:12px}

  .booking-modal{
    width:100%;
    max-width:none;
    max-height:92dvh;
    margin:auto 0 0;
    border:0;
    border-top:1px solid var(--line);
    border-radius:20px 20px 0 0;
  }
  .modal-shell{max-height:92dvh;padding:34px 18px calc(24px + env(safe-area-inset-bottom))}
  .modal-shell h2{padding-right:42px;font-size:2.6rem}
  .modal-close{top:14px;right:14px;width:44px;border-radius:50%}
  .form-grid{gap:13px}
  .form-grid input,.form-grid textarea,.form-grid select{min-height:48px;font-size:16px;border-radius:0}
  .availability-calendar{margin-top:20px;padding:15px 12px}
  .calendar-toolbar{align-items:flex-start;flex-direction:column;gap:12px}
  .calendar-nav{width:100%;grid-template-columns:44px 1fr 44px}
  .calendar-nav button{width:44px;height:40px}
  .calendar-weekdays,.calendar-grid{gap:3px}
  .calendar-day{min-height:42px;padding:4px;font-size:.72rem}
  .form-actions .btn{width:100%}

  .mobile-action-bar{
    position:fixed;
    z-index:95;
    left:10px;
    right:10px;
    bottom:calc(8px + env(safe-area-inset-bottom));
    min-height:58px;
    padding:6px;
    display:grid;
    grid-template-columns:92px 1fr;
    gap:6px;
    background:rgba(7,15,11,.94);
    border:1px solid var(--line);
    box-shadow:0 16px 50px rgba(0,0,0,.48);
    backdrop-filter:blur(16px);
  }
  .mobile-action-call,
  .mobile-action-book{
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    border:0;
    color:var(--cream-100);
    background:transparent;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.035em;
  }
  .mobile-action-call svg{width:17px;height:17px;fill:none;stroke:var(--gold-400);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
  .mobile-action-book{background:var(--gold-500);color:#10140f;cursor:pointer}
  body.menu-open .mobile-action-bar,
  body.modal-open .mobile-action-bar{display:none}
}

@media (max-width:370px){
  .brand-copy strong{font-size:.78rem}
  h1{font-size:3rem}
  .hero-meta{grid-auto-columns:86vw}
  .mobile-nav-actions{grid-template-columns:1fr}
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 27px; }
  .footer-grid.footer-grid-centered {
    max-width: 620px;
    grid-template-columns: 1fr;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .footer-column { padding: 22px 16px; }
  .footer-column + .footer-column {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .allergen-notice { padding: 18px; grid-template-columns: 28px 1fr; gap: 12px; text-align: left; }
  .allergen-symbol { width: 28px; height: 28px; }
  .contact-section { padding: 82px 0; }
  .contact-card { padding: 24px 21px; }
  .footer-operator { margin-top: 34px; }
  .site-footer { padding-top: 58px; }
  .footer-grid-centered { margin-top: 35px; }
  .footer-operator p { max-width: 330px; }
  .footer-bottom {
    margin-top: 26px;
    align-items: center;
    text-align: center;
    gap: 9px;
  }
  .legal-header .nav-wrap { min-height: 70px; }
  .legal-header .brand-copy small { display: none; }
  .legal-back { font-size: .66rem; }
  .legal-main { padding: 112px 0 75px; }
  .legal-lead { margin-bottom: 38px; font-size: .9rem; }
  .legal-block { padding: 23px 0; }
}


/* KROK 43 — LIVE GOOGLE REVIEWS (FIX) */
.reviews-heading{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(290px,420px);
  align-items:end;
  gap:52px;
  margin-bottom:42px;
}
.reviews-heading .section-heading{margin:0;text-align:left;max-width:720px}
.google-rating-card{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px 18px;
  align-items:center;
  padding:24px;
  border:1px solid var(--line-soft);
  background:rgba(255,255,255,.035);
}
.google-brand{
  width:46px;height:46px;border-radius:50%;display:grid;place-items:center;
  background:#fff;color:#1f1f1f;font:700 1.35rem/1 Inter,Arial,sans-serif;
}
.google-rating-copy{display:flex;flex-wrap:wrap;align-items:baseline;gap:8px 12px}
.google-rating-copy strong{font:700 2.25rem/1 "Cormorant Garamond", Georgia, serif;color:var(--cream-100)}
.google-rating-copy strong small{font:500 .85rem/1 Inter,sans-serif;color:var(--muted);margin-left:3px}
.google-rating-copy .stars{width:100%;margin:2px 0 0;font-size:.86rem}
.google-rating-copy>span{font-size:.76rem;color:var(--muted)}
.google-reviews-link{grid-column:1/-1;justify-content:center;margin-top:6px}
.google-reviews-grid{border-top:0;border-left:0;gap:14px}
.google-review-card{
  position:relative;
  min-height:250px;
  display:flex;
  flex-direction:column;
  padding:30px;
  border:1px solid var(--line-soft);
  background:rgba(255,255,255,.025);
}
.google-review-top{display:flex;align-items:center;gap:12px;margin-bottom:20px}
.google-review-avatar{width:42px;height:42px;border-radius:50%;object-fit:cover;background:rgba(255,255,255,.08);flex:0 0 auto}
.google-review-avatar-fallback{display:grid;place-items:center;color:var(--gold-500);font-weight:700;border:1px solid var(--line-soft)}
.google-review-author{display:flex;flex-direction:column;min-width:0}
.google-review-author a,.google-review-author strong{color:var(--cream-100);font-size:.82rem;font-weight:600;text-decoration:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.google-review-author a:hover{text-decoration:underline}
.google-review-author span{color:var(--muted);font-size:.7rem;margin-top:3px}
.google-review-card .stars{margin:0 0 15px;font-size:.78rem}
.google-review-text{margin:0;color:rgba(244,236,217,.76);font-family:"Cormorant Garamond", Georgia, serif;font-size:1.18rem;line-height:1.42}
.google-review-footer{margin-top:auto;padding-top:22px;display:flex;justify-content:space-between;align-items:center;gap:12px;color:var(--muted);font-size:.68rem}
.google-review-footer a{color:var(--gold-400);text-decoration:none}
.google-review-footer a:hover{text-decoration:underline}
.reviews-source-note{margin:20px 0 0;color:var(--muted);font-size:.72rem;text-align:center}
.google-review-card.is-loading{overflow:hidden}
.review-skeleton{height:13px;border-radius:999px;background:rgba(255,255,255,.08);margin:11px 0;animation:reviewPulse 1.25s ease-in-out infinite alternate}
.review-skeleton-short{width:46%;height:17px;margin-bottom:28px}
@keyframes reviewPulse{to{opacity:.35}}
.google-review-card.is-fallback{grid-column:1/-1;justify-content:center;text-align:center;min-height:190px;padding:34px 28px}
.google-review-card.is-fallback p{max-width:720px;margin:.55rem auto 1rem;color:rgba(244,236,217,.72);line-height:1.65}
.google-review-card.is-fallback a{display:inline-flex;align-self:center;color:var(--gold-400);text-underline-offset:4px}
.google-review-card.is-fallback strong{color:var(--cream-100);font-size:1rem}
.google-review-card.is-local-preview{border-style:dashed;background:rgba(255,255,255,.018)}
@media(max-width:900px){
  .reviews-heading{grid-template-columns:1fr;gap:28px;align-items:start}
  .google-rating-card{max-width:520px}
}
@media(max-width:620px){
  .reviews{padding:84px 0 94px}
  .reviews-heading{margin-bottom:28px}
  .google-rating-card{padding:20px}
  .google-review-card{min-width:86vw;min-height:230px;padding:24px}
}


/* KROK 46 — launch polish */
.booking-fallback-note{margin:-4px 0 20px;padding:12px 14px;border:1px solid rgba(163,133,96,.35);background:rgba(163,133,96,.08);color:var(--cream-300);font-size:.86rem;line-height:1.45}
.booking-fallback-note[hidden]{display:none}


