/* =========================================
   PLUMS — Landing Page
   Restaurace & Penzion, Litomyšl
   ========================================= */

/* -----------------------------------------
   Custom properties
   ----------------------------------------- */
:root {
  --cream:        #F7F2EA;
  --warm-white:   #FDFAF6;
  --beige:        #EDE5D8;
  --light-beige:  #F0EAE0;

  --plum-dark:    #21131B;
  --plum:         #3B1D2A;
  --chocolate:    #2E1A10;
  --chocolate-mid:#4A2A18;
  --caramel:      #9B7055;
  --caramel-light:#C49A72;
  --amber:        #D4956A;

  --text:         #1C1514;
  --text-mid:     #3D2E28;
  --text-light:   #7A6558;
  --border:       #D4C5B4;
  --border-light: #E8E0D4;

  --font-display: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w: 1120px;
  --py:    clamp(48px, 6vw, 88px);
  --r:     12px;
  --ease:  0.3s ease;
}

/* -----------------------------------------
   Reset & base
   ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--cream);
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* -----------------------------------------
   Layout
   ----------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.section       { padding: var(--py) 0; }
.section--beige     { background-color: var(--beige); }
.section--light     { background-color: var(--light-beige); }
.section--chocolate { background-color: var(--chocolate); }
.center { text-align: center; }

/* -----------------------------------------
   Section label (eyebrow)
   ----------------------------------------- */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 14px;
}
.section-label.light { color: var(--caramel-light); opacity: 0.8; }

/* -----------------------------------------
   Typography
   ----------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
}
h1 { font-size: clamp(42px, 7vw, 88px); letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 4.8vw, 56px); letter-spacing: -0.025em; margin-bottom: 20px; }
h3 { font-size: clamp(17px, 2.2vw, 22px); font-weight: 400; margin-bottom: 10px; }
h4 { font-size: 14px; font-weight: 500; font-family: var(--font-body); }

em { font-style: italic; color: var(--caramel); }

p { font-size: 15px; color: var(--text-light); line-height: 1.75; }

.light { color: var(--warm-white); }
.light em { color: var(--caramel-light); }

/* -----------------------------------------
   Buttons
   ----------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1.5px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn--primary {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
}
.btn--primary:hover {
  background: var(--plum-dark);
  border-color: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(33, 19, 27, 0.3);
}

.btn--light {
  background: #fff;
  color: var(--plum-dark);
  border-color: #fff;
}
.btn--light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
}

.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-2px);
}

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

.btn--outline {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--border);
  font-size: 13px;
  padding: 10px 20px;
}
.btn--outline:hover {
  background: var(--text);
  color: var(--cream);
  border-color: var(--text);
}

/* -----------------------------------------
   NAV
   ----------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}
/* Transparent state (on hero) */
.nav:not(.scrolled) .nav__links a:not(.nav__cta) {
  color: rgba(255,255,255,0.75);
}
.nav:not(.scrolled) .nav__links a:not(.nav__cta):hover {
  color: #fff;
}
.nav:not(.scrolled) .nav__logo img {
  filter: invert(1) brightness(1.1);
  opacity: 0.9;
}
.nav:not(.scrolled) .nav__cta {
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
}
.nav:not(.scrolled) .nav__cta:hover {
  background: rgba(255,255,255,0.25) !important;
}
/* Scrolled state */
.nav.scrolled {
  background: rgba(253, 250, 246, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-light);
  padding: 12px 0;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
  transition: filter var(--ease), opacity var(--ease);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-light);
  transition: color var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__active { color: var(--caramel) !important; }
.nav__cta {
  background: var(--plum) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  letter-spacing: 0.03em !important;
  border: 1.5px solid var(--plum) !important;
}
.nav__cta:hover {
  background: var(--plum-dark) !important;
  border-color: var(--plum-dark) !important;
  color: #fff !important;
}

/* -----------------------------------------
   HERO — full screen video background
   ----------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--warm-white);
}

/* Background video */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(33, 19, 27, 0.55) 0%,
    rgba(33, 19, 27, 0.40) 35%,
    rgba(33, 19, 27, 0.72) 100%
  );
}

/* Leaf corner decorations */
.hero__leaf {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  color: #fff;
}
.hero__leaf--tr {
  top: 6%;
  right: 3%;
  width: 130px;
  opacity: 0.32;
  transform: rotate(15deg);
}
.hero__leaf--bl {
  bottom: 8%;
  left: 2%;
  width: 110px;
  opacity: 0.26;
  transform: rotate(-20deg) scaleX(-1);
}

/* Hero brand mark — logo medallion on cream circle */
.hero__brand-mark {
  width: 100px;
  height: 100px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  padding: 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18), 0 20px 60px rgba(0,0,0,0.35);
}
.hero__brand-mark img {
  width: 60px;
  height: auto;
  object-fit: contain;
}

/* Hero content */
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 48px) clamp(60px, 8vw, 100px);
  max-width: 820px;
  width: 100%;
}
.hero__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel-light);
  opacity: 0.85;
  margin-bottom: 24px;
}
.hero__headline {
  color: #fff;
  margin-bottom: 24px;
}
.hero__headline em { color: var(--caramel-light); }
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(253, 250, 246, 0.75);
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* -----------------------------------------
   ABOUT — Pavel's voice
   ----------------------------------------- */
.about {
  position: relative;
  overflow: hidden;
}
/* Side leaf decoration */
.section-leaf {
  position: absolute;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  color: var(--caramel);
}
.section-leaf--right {
  right: -20px;
  width: 120px;
  opacity: 0.28;
  transform: translateY(-50%) rotate(10deg);
}

.about__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.about__headline { margin-bottom: 36px; }
.about__intro {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--chocolate-mid);
  line-height: 1.45;
  margin-bottom: 36px;
  padding: 0 clamp(0px, 3vw, 40px);
  border-left: 3px solid var(--caramel);
  text-align: left;
}
.about__text {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}
.about__text:last-of-type { margin-bottom: 0; }
.about__text--closing {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  color: var(--chocolate-mid);
  line-height: 1.55;
  margin-top: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

/* -----------------------------------------
   FOUNDERS
   ----------------------------------------- */
.founders__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.founders__text h2 { margin-bottom: 32px; }
.founders__text p { margin-bottom: 16px; }
.founders__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.founders__plum-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founders__plum-deco svg {
  width: 100%;
  max-width: 280px;
  height: auto;
  color: var(--chocolate-mid);
}
.founders__quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--chocolate-mid);
  text-align: center;
  position: relative;
  z-index: 1;
  quotes: none;
}
.founders__quote em {
  font-style: italic;
  color: var(--caramel);
}

/* -----------------------------------------
   PHILOSOPHY QUOTE — dark, impactful
   ----------------------------------------- */
.philosophy {
  background-color: var(--chocolate);
  padding: clamp(48px, 6vw, 88px) 0;
  position: relative;
  overflow: hidden;
}
.philosophy__leaf {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #fff;
}
.philosophy__leaf--left {
  left: -10px;
  width: 140px;
  opacity: 0.18;
  transform: translateY(-50%) rotate(-5deg);
}
.philosophy__leaf--right {
  right: -10px;
  width: 140px;
  opacity: 0.18;
  transform: translateY(-50%) rotate(12deg) scaleX(-1);
}
.philosophy__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
/* Opening info inside dark philosophy section */
.philosophy__inner h2 { margin-bottom: 16px; }

.philosophy__announce {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(247, 242, 234, 0.55);
  text-align: center;
  margin-bottom: 36px;
}
.philosophy__ig {
  color: var(--caramel-light);
  transition: opacity var(--ease);
}
.philosophy__ig:hover { opacity: 0.7; }

.philosophy__hours {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 32px;
}
.philosophy__hour {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  min-width: 180px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--ease), background var(--ease);
}
@media (max-width: 600px) {
  .philosophy__hours {
    gap: 8px;
  }
  .philosophy__hour {
    padding: 16px 12px;
    min-width: 0;
    flex: 1;
  }
  .philosophy__hour-time {
    font-size: 18px;
  }
}
.philosophy__hour:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}
.philosophy__hour-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel-light);
  opacity: 0.65;
}
.philosophy__hour-time {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: var(--cream);
  line-height: 1;
}
.philosophy__closed {
  font-size: 13px;
  color: rgba(247, 242, 234, 0.28);
  text-align: center;
}

/* -----------------------------------------
   OFFERS
   ----------------------------------------- */
.offers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.offer-card {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 32px 24px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(33, 19, 27, 0.08);
  border-color: var(--border);
}
.offer-card__icon {
  width: 52px;
  height: 52px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--caramel);
}
.offer-card h3 { margin-bottom: 10px; }
.offer-card p { font-size: 14px; line-height: 1.65; }

/* -----------------------------------------
   REVIEWS
   ----------------------------------------- */
.reviews {
  position: relative;
  overflow: hidden;
}
.reviews__leaf {
  position: absolute;
  top: 50%;
  pointer-events: none;
  color: var(--caramel);
  z-index: 0;
}
.reviews__leaf--left {
  left: -20px;
  width: 120px;
  opacity: 0.22;
  transform: translateY(-50%) rotate(-8deg) scaleX(-1);
}
.reviews .container { position: relative; z-index: 1; }

.reviews__badge {
  display: flex;
  justify-content: center;
  margin: 0 auto 36px;
}
.reviews__google {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 12px 24px;
  box-shadow: 0 2px 16px rgba(33, 19, 27, 0.04);
}
.reviews__stars-big {
  font-size: 17px;
  color: #FBBC05;
  letter-spacing: 2px;
  line-height: 1;
}
.reviews__score {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}
.reviews__count {
  font-size: 13px;
  color: var(--text-light);
  transition: color var(--ease);
  border-left: 1px solid var(--border-light);
  padding-left: 12px;
}
.reviews__count:hover { color: var(--caramel); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(33, 19, 27, 0.08);
  border-color: var(--border);
}
.review-card__stars {
  font-size: 15px;
  color: #FBBC05;
  letter-spacing: 2px;
}
.review-card__text {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 18px);
  font-style: italic;
  line-height: 1.65;
  color: var(--text-mid);
  flex-grow: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--caramel);
  font-family: var(--font-display);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.review-card__date {
  display: block;
  font-size: 12px;
  color: var(--text-light);
}
.reviews__cta { margin-top: 48px; }

/* -----------------------------------------
   ABOUT SPLIT
   ----------------------------------------- */
.about__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__photo {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about__photo:hover img { transform: scale(1.03); }

@media (max-width: 768px) {
  .about__split { grid-template-columns: 1fr; gap: 36px; }
  .about__photo { aspect-ratio: 16/9; }
}

/* -----------------------------------------
   FOUNDERS CHEF PHOTO
   ----------------------------------------- */
.founders__chef-photo {
  width: 100%;
  max-height: 480px;
  border-radius: var(--r);
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
  display: block;
}

/* -----------------------------------------
   FOOD SLIDER
   ----------------------------------------- */
.food-slider-section { background: var(--warm-white); }
.food-slider-section h2 { margin-bottom: 48px; }

.food-slider {
  position: relative;
  overflow: hidden;
  height: min(56vw, 560px);
}
.food-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.food-slider__slide {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.food-slider__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.food-slider__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  transition: background var(--ease), opacity var(--ease);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
}
.food-slider__btn:hover { background: #fff; }
.food-slider__btn--prev { left: 20px; }
.food-slider__btn--next { right: 20px; }
.food-slider__dots {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.food-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none; cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.food-slider__dot.is-active { background: #fff; transform: scale(1.3); }

@media (max-width: 768px) {
  .food-slider { max-height: 260px; }
  .food-slider__btn { width: 36px; height: 36px; font-size: 16px; }
}

/* -----------------------------------------
   SPACE SECTION (interiér + exteriér)
   ----------------------------------------- */
.space-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
  height: 540px;
}
.space-grid__item {
  border-radius: var(--r);
  overflow: hidden;
}
.space-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.space-grid__item:hover img { transform: scale(1.03); }
.space-grid__item--large { grid-row: 1 / 3; }

@media (max-width: 768px) {
  .space-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .space-grid__item--large { grid-row: auto; aspect-ratio: 4/3; }
  .space-grid__item { aspect-ratio: 4/3; }
}

/* -----------------------------------------
   ATMOSPHERE
   ----------------------------------------- */
.atmosphere__lead {
  font-size: clamp(15px, 1.6vw, 17px);
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.75;
}
.atmosphere__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.atmosphere__item {
  border-radius: var(--r);
  overflow: hidden;
  background-color: var(--beige);
}
.atmosphere__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.atmosphere__item:hover img { transform: scale(1.04); }
.atmosphere__item--large {
  grid-row: 1 / 3;
  aspect-ratio: 3 / 4;
}
.atmosphere__item:not(.atmosphere__item--large) { aspect-ratio: 4 / 3; }

/* -----------------------------------------
   INSTAGRAM
   ----------------------------------------- */
.instagram { position: relative; overflow: hidden; }
.instagram__leaf {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%) rotate(8deg);
  width: 150px;
  pointer-events: none;
  color: #fff;
  opacity: 0.12;
  z-index: 0;
}
.instagram .container { position: relative; z-index: 1; }

.instagram__sub {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(247, 242, 234, 0.55);
  margin: 0 auto 48px;
  max-width: 440px;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}
.instagram__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--chocolate-mid);
  display: block;
}
.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.instagram__item:hover img { transform: scale(1.06); }
.instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 19, 27, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--ease);
}
.instagram__item:hover .instagram__overlay {
  background: rgba(33, 19, 27, 0.45);
}
.instagram__overlay svg {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--ease), transform var(--ease);
}
.instagram__item:hover .instagram__overlay svg {
  opacity: 1;
  transform: scale(1);
}

.instagram__cta { text-align: center; }

/* -----------------------------------------
   RESERVATION
   ----------------------------------------- */
.reservation {
  background-color: var(--plum);
  padding: var(--py) 0;
  position: relative;
  overflow: hidden;
}
.reservation__deco {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 420px;
  pointer-events: none;
  color: #fff;
}
.reservation__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.reservation__inner h2 { color: var(--cream); margin-bottom: 20px; }
.reservation__sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(253, 250, 246, 0.6);
  margin-bottom: 44px;
  line-height: 1.7;
}
.reservation__phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(36px, 6.5vw, 68px);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 8px;
  transition: opacity var(--ease);
}
.reservation__phone:hover { opacity: 0.75; }
.reservation__note { font-size: 12px; color: rgba(253, 250, 246, 0.32); }

/* -----------------------------------------
   CONTACT
   ----------------------------------------- */
.contact {
  position: relative;
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.25) saturate(0.7);
}
.contact .container { position: relative; z-index: 1; }
.contact .section-label { color: var(--caramel-light); opacity: 0.8; }
.contact h2, .contact__block h3 { color: var(--cream); }
.contact__block p { color: rgba(247,242,234,0.7); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  margin-top: 36px;
}
.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 40px;
}
.contact__block h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel-light);
  margin-bottom: 10px;
}
.contact__block p { font-size: 15px; line-height: 1.65; margin-bottom: 14px; }
.contact__phone {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  color: var(--cream);
  display: block;
  white-space: nowrap;
  transition: color var(--ease);
}
.contact__phone:hover { color: var(--caramel-light); }
.contact__instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
  transition: color var(--ease);
}
.contact__instagram { color: rgba(247,242,234,0.7); }
.contact__instagram:hover { color: var(--cream); }

.contact__map-placeholder { display: flex; align-items: stretch; }
.map-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  width: 100%;
}
.map-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  filter: invert(1) brightness(0.9);
  opacity: 0.7;
}
.map-location {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
}

/* -----------------------------------------
   FOOTER
   ----------------------------------------- */
.footer {
  background: var(--plum-dark);
  padding: 52px 0 32px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 36px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo img {
  height: 38px;
  filter: invert(1);
  opacity: 0.55;
}
.footer__info {
  font-size: 13px;
  color: rgba(253, 250, 246, 0.38);
  line-height: 1.75;
  text-align: center;
}
.footer__info strong { color: rgba(253, 250, 246, 0.72); font-weight: 500; }
.footer__info a { color: rgba(253, 250, 246, 0.45); transition: color var(--ease); }
.footer__info a:hover { color: rgba(253, 250, 246, 0.85); }
.footer__social a {
  color: rgba(253, 250, 246, 0.3);
  transition: color var(--ease);
  display: block;
}
.footer__social a:hover { color: rgba(253, 250, 246, 0.8); }
.footer__copy {
  font-size: 12px;
  color: rgba(253, 250, 246, 0.18);
  text-align: center;
}

/* -----------------------------------------
   Scroll animations
   ----------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.offers__grid .fade-up:nth-child(1) { transition-delay: 0.00s; }
.offers__grid .fade-up:nth-child(2) { transition-delay: 0.08s; }
.offers__grid .fade-up:nth-child(3) { transition-delay: 0.16s; }
.offers__grid .fade-up:nth-child(4) { transition-delay: 0.24s; }
.atmosphere__grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.atmosphere__grid .fade-up:nth-child(3) { transition-delay: 0.2s; }

/* -----------------------------------------
   Responsive — tablet
   ----------------------------------------- */
@media (max-width: 1024px) {
  .offers__grid { grid-template-columns: repeat(2, 1fr); }
}

/* -----------------------------------------
   Responsive — mobile
   ----------------------------------------- */
@media (max-width: 640px) {
  .nav__links a:not(.nav__cta) { display: none; }

  .hero__leaf--tr { width: 80px; opacity: 0.22; }
  .hero__leaf--bl { width: 66px; opacity: 0.18; }

  .about__intro { border-left: none; padding: 0; text-align: center; }
  .about__text { text-align: center; }
  .about__text--closing { text-align: center; }

  .founders__inner { grid-template-columns: 1fr; gap: 40px; }
  .founders__visual { min-height: 200px; }

  .philosophy__leaf { opacity: 0.10; }

  .philosophy__hours { flex-wrap: nowrap !important; gap: 8px; }
  .philosophy__hour { padding: 16px 10px; min-width: 0; flex: 1; }
  .philosophy__hour-time { font-size: 16px; white-space: nowrap; }
  .philosophy__hour-label { font-size: 9px; letter-spacing: 0.14em; }

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__map-placeholder { display: none; }

  .atmosphere__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .atmosphere__item--large {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .footer__inner { flex-direction: column; gap: 20px; text-align: center; }

  .section-leaf { display: none; }
}

@media (max-width: 768px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__google { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .reviews__leaf { display: none; }
}

@media (max-width: 540px) {
  .offers__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .contact__info { grid-template-columns: 1fr; }
  .instagram__grid { gap: 6px; }
  .hero__brand-mark { width: 80px; height: 80px; padding: 14px; }
  .hero__brand-mark img { width: 50px; }
}

/* =========================================
   MENU SECTION
   ========================================= */
.menu-section { background: var(--warm-white); }
.menu-section h2 { margin-bottom: 40px; }

.menu-featured {
  max-width: 700px;
  margin: 0 auto 48px;
}
.menu-featured img {
  width: 100%;
  border-radius: var(--r);
  box-shadow: 0 8px 40px rgba(33,19,27,0.1);
  display: block;
}

.menu-thumbs {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.menu-thumb {
  position: relative;
  width: 280px;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(33,19,27,0.12);
  transition: transform var(--ease), box-shadow var(--ease);
}
.menu-thumb:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(33,19,27,0.22); }
.menu-thumb img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  filter: brightness(0.42);
  transition: filter var(--ease), transform 0.6s ease;
}
.menu-thumb:hover img {
  filter: brightness(0.32);
  transform: scale(1.04);
}
.menu-thumb__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
}
.menu-thumb__label {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  text-align: center;
  letter-spacing: 0.01em;
  padding: 0 12px;
}
.menu-thumb__overlay svg {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--ease), transform var(--ease);
}
.menu-thumb:hover .menu-thumb__overlay svg { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,10,16,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}
.lightbox.is-open { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--ease);
}
.lightbox__close:hover { opacity: 1; }

@media (max-width: 600px) {
  .menu-thumbs {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .menu-thumb {
    width: 100%;
  }
  .menu-thumb img {
    height: 110px;
  }
  .menu-thumb__label {
    font-size: 18px;
  }
}

/* =========================================
   VOUCHER STRIP
   ========================================= */
.voucher-strip {
  background: var(--beige);
  padding: 32px 0;
}
.voucher-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.voucher-strip__text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
}
.voucher-strip__text svg { flex-shrink: 0; color: var(--caramel); }
.voucher-strip__text strong { color: var(--text); }

/* =========================================
   GALLERY — photo strip
   ========================================= */
.gallery-section { background: var(--warm-white); }
.gallery-section h2 { margin-bottom: 16px; }

.gallery-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 40px;
}

.photo-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 clamp(20px, 5vw, 48px) 16px;
  scrollbar-width: none;
}
.photo-strip::-webkit-scrollbar { display: none; }

.photo-strip__item {
  flex: 0 0 260px;
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--beige);
}
.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.photo-strip__item:hover img { transform: scale(1.04); }

@media (max-width: 640px) {
  .photo-strip__item { flex: 0 0 200px; }
}

/* =========================================
   NAV — hamburger & mobile overlay
   ========================================= */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--ease);
}
.nav__hamburger:hover { background: rgba(0,0,0,0.05); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: background var(--ease);
}
.nav:not(.scrolled) .nav__hamburger span { background: rgba(255,255,255,0.85); }

.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--plum-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav__mobile.is-open {
  opacity: 1;
  pointer-events: all;
}
.nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--ease);
  padding: 4px 8px;
}
.nav__mobile-close:hover { color: #fff; }
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.nav__mobile-links a {
  font-size: clamp(24px, 7vw, 36px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.01em;
  transition: color var(--ease);
}
.nav__mobile-links a:hover { color: #fff; }
.nav__mobile-cta {
  margin-top: 16px;
  background: var(--plum) !important;
  color: #fff !important;
  padding: 14px 36px !important;
  border-radius: 50px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

@media (max-width: 640px) {
  .nav__hamburger { display: flex; }
}

@media (max-width: 600px) {
  .voucher-strip__inner { justify-content: center; text-align: center; }
  .voucher-strip__text { flex-direction: column; gap: 8px; }
}

/* =========================================
   VOUCHER SECTION (poukazy.html)
   ========================================= */
.voucher__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.voucher__inner h2 { margin-bottom: 14px; }
.voucher__inner h2 em { font-style: italic; color: var(--caramel); }
.voucher__sub {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 52px;
  line-height: 1.7;
}
.voucher__sub strong { color: var(--text); }
.voucher__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.voucher__option {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 40px 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.voucher__icon {
  width: 52px;
  height: 52px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--caramel);
  margin-bottom: 8px;
}
.voucher__option h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
}
.voucher__option p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 600px) {
  .voucher__options { grid-template-columns: 1fr; }
  .voucher__option { padding: 28px 24px; }
}

/* =========================================
   MENU PAGE
   ========================================= */
.menu-page {
  min-height: 100vh;
  background: var(--warm-white);
  padding-top: 100px;
}
.menu-page__header {
  text-align: center;
  padding: 60px 0 48px;
}
.menu-page__header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 8px;
}
.menu-page__header h1 em {
  font-style: italic;
  color: var(--caramel);
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0 20px 48px;
}
.menu-tab {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  cursor: pointer;
  transition: all var(--ease);
}
.menu-tab:hover {
  border-color: var(--caramel);
  color: var(--caramel);
}
.menu-tab.is-active {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--cream);
}
.menu-panel {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 80px;
}
.menu-panel.is-active {
  display: block;
}
.menu-panel__img {
  width: 100%;
  border-radius: var(--r);
  box-shadow: 0 8px 40px rgba(33,19,27,0.12);
  display: block;
}
.menu-panel__week {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.4vw, 16px);
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.menu-panel__note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 20px;
}
.menu-panel__note a {
  color: var(--caramel);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .menu-tabs { gap: 8px; }
  .menu-tab { font-size: 12px; padding: 9px 16px; }
}
