/* =============================================
   Hospoda U Vlčků: Main Stylesheet
   ============================================= */

/* ----- Reset & Base ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brown: #2C1810;
  --amber: #B8621B;
  --gold: #D4952A;
  --cream: #FDF6ED;
  --warm-light: #F5EDE3;
  --card-white: #FFFFFF;
  --text: #2A1F14;
  --muted: #6B5544;
  --radius-sm: 6px;
  --radius-md: 12px;
  --shadow-sm: 0 2px 8px rgba(44,24,16,0.08);
  --shadow-md: 0 4px 20px rgba(44,24,16,0.12);
  --shadow-lg: 0 8px 40px rgba(44,24,16,0.16);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: 'Bitter', Georgia, serif;
  line-height: 1.2;
  color: var(--brown);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Section spacing ----- */
.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--brown);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--cream);
}

.section--warm {
  background: var(--warm-light);
}

.section-tag {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: 48px;
}

.section-header--center {
  text-align: center;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}

.btn--primary:hover {
  background: #A0541A;
  border-color: #A0541A;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn--outline-dark {
  background: transparent;
  color: var(--amber);
  border-color: var(--amber);
}

.btn--outline-dark:hover {
  background: var(--amber);
  color: #fff;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--brown);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.logo-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

.nav-menu a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-menu .nav-cta {
  background: var(--amber);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
}

.nav-menu .nav-cta:hover {
  background: #A0541A;
}

/* Hamburger */
.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: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255,255,255,0.1);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.visible {
  opacity: 1;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.kudyznudy.cz/files/5e/5e343e84-2c03-4aa0-b49f-0b8d532067c3.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,24,16,0.82) 0%,
    rgba(44,24,16,0.60) 50%,
    rgba(44,24,16,0.40) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid rgba(212,149,42,0.4);
  border-radius: var(--radius-sm);
  background: rgba(212,149,42,0.1);
}

.hero h1 {
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   SOCIAL PROOF BAR
   ============================================= */
.social-proof-bar {
  background: var(--brown);
  padding: 20px 0;
  border-bottom: 3px solid var(--amber);
}

.proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 32px;
  text-align: center;
}

.proof-item + .proof-item {
  border-left: 1px solid rgba(255,255,255,0.15);
}

.proof-score {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.proof-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.proof-platform {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-count {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: block;
}

.proof-badge {
  padding: 10px 32px;
  border-left: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

.proof-badge-number {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.proof-badge-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  display: block;
}

/* =============================================
   INTRO / O NÁS
   ============================================= */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.intro-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--amber);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: 'Bitter', Georgia, serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.intro-text h2 {
  margin-bottom: 20px;
}

.intro-text p {
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.intro-feature svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
}

/* =============================================
   SIGNATURE DISH: PAVLIŠOVSKÝ ŘÍZEK
   ============================================= */
.dish-section {
  padding: 80px 0;
  background: var(--brown);
  position: relative;
  overflow: hidden;
}

.dish-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(212,149,42,0.06);
  pointer-events: none;
}

.dish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.dish-text {
  color: var(--cream);
}

.dish-text .section-tag {
  color: var(--gold);
}

.dish-text h2 {
  color: #fff;
  margin-bottom: 20px;
}

.dish-quote {
  position: relative;
  padding: 18px 20px 18px 28px;
  border-left: 3px solid var(--gold);
  margin: 24px 0;
  background: rgba(212,149,42,0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.dish-quote p {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  margin: 0 0 6px;
}

.dish-quote cite {
  font-size: 0.82rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.dish-text p {
  color: rgba(253,246,237,0.8);
  font-size: 1.02rem;
}

.dish-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: var(--amber);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.dish-image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.dish-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* =============================================
   MENU / JÍDELNÍČEK
   ============================================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.menu-item {
  background: var(--card-white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.menu-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.menu-item-name {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.menu-item-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 3px;
}

.menu-item-price {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-note {
  text-align: center;
  padding: 16px 24px;
  background: rgba(184,98,27,0.1);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--amber);
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}

/* =============================================
   BEER STRIP
   ============================================= */
.beer-strip {
  background: linear-gradient(135deg, #1E0F09, var(--brown));
  padding: 40px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.beer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.beer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px 0 0;
  margin-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.beer-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.beer-brand-text {
  display: flex;
  flex-direction: column;
}

.beer-brand-name {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.beer-brand-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.beer-items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.beer-variant {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.beer-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.beer-price {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.beer-tagline-strip {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  font-style: italic;
  display: none;
}

/* =============================================
   PENSION / UBYTOVÁNÍ
   ============================================= */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.room-card {
  background: var(--card-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.room-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.room-placeholder {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--warm-light), #EDD9C0);
}

.room-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--amber);
  opacity: 0.8;
}

.room-placeholder-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-body {
  padding: 18px 20px;
}

.room-title {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.room-capacity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.room-capacity svg {
  width: 15px;
  height: 15px;
  color: var(--amber);
}

.rooms-note {
  text-align: center;
  padding: 14px 20px;
  background: var(--warm-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--muted);
}

.rooms-note a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =============================================
   FOTBALGOLF STRIP
   ============================================= */
.fotbal-section {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fotbal-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.kudyznudy.cz/files/d7/d72097e8-b08e-4656-aa71-6331e494fe6e.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.fotbal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44,24,16,0.88) 0%, rgba(44,24,16,0.5) 60%, transparent 100%);
  z-index: 1;
}

.fotbal-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.fotbal-content .section-tag {
  color: var(--gold);
}

.fotbal-content h3 {
  color: #fff;
  margin-bottom: 14px;
}

.fotbal-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  margin-bottom: 6px;
}

.fotbal-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.fotbal-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.fotbal-phone svg {
  width: 16px;
  height: 16px;
}

.fotbal-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fotbal-link:hover {
  color: #fff;
}

/* =============================================
   AMENITIES
   ============================================= */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  background: var(--card-white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.amenity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--amber);
}

.amenity-title {
  font-family: 'Bitter', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.amenity-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--card-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  flex-grow: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--warm-light);
  padding-top: 12px;
}

.review-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
}

.review-source {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* =============================================
   SURROUNDINGS / OKOLÍ
   ============================================= */
.surroundings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.surroundings-card {
  background: var(--card-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 200px 1fr;
  transition: box-shadow var(--transition), transform var(--transition);
}

.surroundings-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.surroundings-img {
  width: 200px;
  height: 160px;
  object-fit: cover;
  display: block;
}

.surroundings-body {
  padding: 20px;
}

.surroundings-distance {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.surroundings-name {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.surroundings-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.surroundings-more {
  background: var(--warm-light);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
}

.surroundings-more span {
  font-weight: 600;
  color: var(--text);
}

.surroundings-more-label {
  font-weight: 700;
  color: var(--amber);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 8px;
}

/* =============================================
   OPENING HOURS
   ============================================= */
.hours-section {
  background: var(--brown);
  padding: 56px 0;
}

.hours-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  justify-content: center;
  flex-wrap: wrap;
}

.hours-title-block h2 {
  color: #fff;
  font-size: 1.8rem;
}

.hours-title-block p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}

.hours-table {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 32px;
  align-items: center;
}

.hours-day {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

.hours-time {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.hours-time.closed {
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  font-weight: 400;
  font-family: 'Source Sans 3', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hours-phone-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-phone-block a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.hours-phone-block a svg {
  width: 18px;
  height: 18px;
}

.hours-phone-block a:hover {
  color: #fff;
}

.hours-phone-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* =============================================
   CONTACT / CTA SECTION
   ============================================= */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.kudyznudy.cz/files/9c/9c0012aa-abfe-45e2-925b-6c37cb4ac20d.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,24,16,0.75);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.cta-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.cta-contact-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}

.cta-contact-value {
  font-weight: 700;
  font-size: 1rem;
}

.cta-address {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cta-address svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.cta-map-link {
  margin-top: 28px;
}

.cta-map-link a {
  color: var(--gold);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-map-link a:hover {
  color: #fff;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #1A0D08;
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
}

.footer-logo-name {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Bitter', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-credits {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-fade { opacity: 0; }
.reveal-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.reveal-fade.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* =============================================
   RESPONSIVE: TABLET (1024px)
   ============================================= */
@media (max-width: 1024px) {
  .intro-grid {
    gap: 40px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* =============================================
   RESPONSIVE: TABLET PORTRAIT (768px)
   ============================================= */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  /* Header */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--brown);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 24px 40px;
    gap: 4px;
    z-index: 99;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    width: 100%;
    font-size: 1rem;
    padding: 10px 14px;
  }

  .nav-overlay {
    display: block;
    pointer-events: none;
  }

  .nav-overlay.visible {
    pointer-events: auto;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-tagline {
    font-size: 0.95rem;
  }

  /* Social proof bar */
  .proof-items {
    gap: 0;
  }

  .proof-item,
  .proof-badge {
    padding: 10px 18px;
  }

  /* Intro */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-image-wrap img {
    height: 320px;
  }

  /* Dish */
  .dish-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dish-image-wrap img {
    height: 280px;
  }

  /* Menu */
  .menu-grid {
    grid-template-columns: 1fr;
  }

  /* Rooms */
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Amenities */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Surroundings */
  .surroundings-grid {
    grid-template-columns: 1fr;
  }

  .surroundings-card {
    grid-template-columns: 160px 1fr;
  }

  /* Opening hours */
  .hours-inner {
    gap: 32px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================================
   RESPONSIVE: MOBILE (480px)
   ============================================= */
@media (max-width: 480px) {
  h2 { font-size: 1.5rem; }

  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .proof-item,
  .proof-badge {
    padding: 8px 14px;
  }

  .proof-score,
  .proof-badge-number {
    font-size: 1.4rem;
  }

  .beer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .beer-brand {
    padding: 0;
    margin: 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 16px;
    width: 100%;
    justify-content: center;
  }

  .beer-items {
    justify-content: center;
  }

  .beer-tagline-strip {
    display: block;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .surroundings-card {
    grid-template-columns: 1fr;
  }

  .surroundings-img {
    width: 100%;
    height: 200px;
  }

  .cta-contacts {
    flex-direction: column;
    gap: 20px;
  }

  .hours-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .intro-features {
    grid-template-columns: 1fr;
  }

  .fotbal-section {
    min-height: 420px;
  }

  .fotbal-overlay {
    background: rgba(44,24,16,0.82);
  }
}

/* =============================================
   PRINT / REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  .reveal-fade,
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll {
    animation: none;
  }
}
