/* ============================================================
   BISTRO OD VEDLE — Design System v3
   ============================================================ */

/* ---- FONTS ---- */
@font-face {
  font-family: 'Soliden';
  src: url('../Assets/Fonts/Soliden Expanded/Soliden-ExtraBoldExpanded.ttf') format('truetype');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Soliden';
  src: url('../Assets/Fonts/Soliden Expanded/Soliden-BoldExpanded.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Soliden';
  src: url('../Assets/Fonts/Soliden Expanded/Soliden-ExtBdExpObliq.ttf') format('truetype');
  font-weight: 800; font-style: italic; font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* ---- VARIABLES ---- */
:root {
  --navy:        #1e2d47;
  --navy-mid:    #263554;
  --red:         #b22e20;
  --red-dark:    #922618;
  --beige:       #f0e0ca;
  --beige-dark:  #e2cdb2;
  --beige-mid:   #e8d0b4;
  --white:       #ffffff;
  --off-white:   #faf6f1;
  --text:        #1a1a1a;
  --text-muted:  #49505d;

  --font-display: 'Soliden', sans-serif;
  --font-body:    'Poppins', sans-serif;

  --radius:    10px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl:40px;
  --transition: 0.28s ease;
  --spring:     0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow:     0 4px 24px rgba(30, 45, 71, 0.10);
  --shadow-md:  0 8px 40px rgba(30, 45, 71, 0.13);
  --shadow-lg:  0 20px 60px rgba(30, 45, 71, 0.16);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--beige);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
strong { color: var(--navy); font-weight: 600; }
.hero strong,
.page-hero strong,
.section--red strong,
.section--navy strong { color: var(--white); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1190px; margin: 0 auto; padding: 0 2.5rem; }
.section    { padding: 6rem 0; margin: 0 15px 15px; border-radius: var(--radius-2xl); }
.section-sm { padding: 4rem 0; margin: 0 15px 15px; border-radius: var(--radius-2xl); }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.label--light { color: rgba(255,255,255,0.5); }
.label--beige { color: var(--beige-dark); }

/* ============================================================
   NAVIGATION — floating pill / capsule (K/Lane style)
   ============================================================ */
.nav {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - 3rem);
  max-width: 1260px;
  background: rgba(240, 224, 202, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 100px;
  padding: 0.65rem 0.75rem 0.65rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 20px rgba(30,45,71,0.09), 0 0 0 1px rgba(30,45,71,0.05);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 6px 36px rgba(30,45,71,0.14), 0 0 0 1px rgba(30,45,71,0.07);
}

/* Logo — pill nav is always light bg, show navy logo only */
.nav-logo { display: flex; align-items: center; }
.nav-logo img { width: 150px; height: auto; transition: opacity var(--transition); }
.nav-logo .logo-light { display: none; }
.nav-logo .logo-navy  { display: block; }

.nav-links {
  display: flex;
  gap: 0.15rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--navy);
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  transition: all var(--transition);
}
.nav-links a:hover { background: rgba(30,45,71,0.07); }
.nav-links a.active { color: var(--red); font-weight: 600; }
.nav-links .nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  margin-left: 0.5rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--spring);
}
.nav-links .nav-cta:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.nav-links .nav-cta.active { background: var(--red); color: var(--white); }

/* Hamburger — always dark (nav is always on light bg) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px; padding: 4px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 800;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition), transform var(--transition);
}
.mobile-menu a:hover { color: var(--white); transform: translateX(8px); }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: rgba(255,255,255,0.08);
  border: none; color: var(--white);
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.15); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--primary   { background: var(--red);   color: var(--white); border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--navy      { background: var(--navy);  color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline   { background: transparent; color: var(--navy);  border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline-w { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn--outline-w:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); transform: translateY(-3px); }
.btn--beige     { background: var(--beige); color: var(--navy);  border-color: var(--beige); }
.btn--beige:hover { background: var(--beige-dark); border-color: var(--beige-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--white     { background: var(--white); color: var(--navy);  border-color: var(--white); }
.btn--white:hover { background: var(--beige); border-color: var(--beige); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 1.1rem 2.75rem; font-size: 0.95rem; }

/* ============================================================
   HERO — HOME (Klane-style split layout)
   ============================================================ */
.hero {
  min-height: calc(100vh - 7rem);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  margin: 15px 15px 15px;
  border-radius: var(--radius-2xl);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  width: 100%; max-width: 1190px;
  margin: 0 auto;
  padding: 8.5rem 2.5rem 5.5rem;
  align-items: center;
  gap: 3rem;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 0.35rem 1.1rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1.75rem;
  display: block; width: fit-content;
}
.hero-text {}
.hero h1 {
  font-size: clamp(3.25rem, 6.5vw, 6.5rem);
  color: var(--white);
  line-height: 0.97;
  margin-bottom: 2rem;
}
.hero h1 em { font-style: italic; color: var(--beige); }
.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px; line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual — right side */
.hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  padding-top: 3rem;
}
.hero-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  animation: heroFloat 7s ease-in-out infinite;
  will-change: transform;
}
.hero-illustration {
  width: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  transform-origin: bottom center;
  will-change: transform;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  z-index: 3;
  opacity: 0; animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ============================================================
   PAGE HERO (sub-pages) — Navy, centred, no image
   ============================================================ */
.page-hero {
  min-height: 440px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9.5rem 2.5rem 5.5rem;
  text-align: center;
  margin: 15px 15px 15px;
  border-radius: var(--radius-2xl);
}
.page-hero-bg { display: none; }
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 980px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.page-hero h1 {
  font-size: 4rem;
  color: var(--white); margin-bottom: 1.25rem;
}
.page-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.62);
  max-width: 540px; line-height: 1.75;
}

/* ============================================================
   BENTO GRID SYSTEM
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  width: 100%;
}

/* Column span utilities */
.bento-box { border-radius: var(--radius-xl); overflow: hidden; grid-column: span var(--span, 6); }
.bento-3  { --span: 3; }
.bento-4  { --span: 4; }
.bento-5  { --span: 5; }
.bento-6  { --span: 6; }
.bento-7  { --span: 7; }
.bento-8  { --span: 8; }
.bento-9  { --span: 9; }
.bento-12 { --span: 12; }

/* Card-style bento box */
.bento-card {
  position: relative;
  height: 400px;
  cursor: pointer;
  transition: transform var(--spring), box-shadow var(--transition);
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Background image variant */
.bento-card--img .bento-bg {
  position: absolute; inset: 0; z-index: 0;
}
.bento-card--img .bento-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s ease;
}
.bento-card--img:hover .bento-bg img { transform: scale(1.06); }
.bento-card--img::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(30,45,71,0.92) 0%, rgba(30,45,71,0.25) 55%, rgba(30,45,71,0.05) 100%);
  transition: opacity var(--transition);
}
.bento-card--img:hover::after { opacity: 0.85; }

/* Solid color variants */
.bento-card--navy  { background: var(--navy); }
.bento-card--red   { background: var(--red);  }
.bento-card--beige { background: var(--beige-dark); }

/* Bento card content — anchored to bottom left */
.bento-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.75rem 2.5rem 2.5rem;
  padding-right: calc(44px + 3rem);
  display: flex; flex-direction: column;
}

/* For image cards: white text */
.bento-card--img .bento-label { color: rgba(255,255,255,0.55); }
.bento-card--img .bento-title { color: var(--white); }
.bento-card--img .bento-sub   { color: rgba(255,255,255,0.6); }

/* For navy/red cards: light text */
.bento-card--navy .bento-label { color: rgba(255,255,255,0.45); }
.bento-card--navy .bento-title { color: var(--white); }
.bento-card--navy .bento-sub   { color: rgba(255,255,255,0.6); }
.bento-card--red  .bento-label { color: rgba(255,255,255,0.55); }
.bento-card--red  .bento-title { color: var(--white); }
.bento-card--red  .bento-sub   { color: rgba(255,255,255,0.7); }
.bento-card--beige .bento-label { color: var(--text-muted); }
.bento-card--beige .bento-title { color: var(--navy); }
.bento-card--beige .bento-sub   { color: var(--text-muted); }
.bento-card--white { background: var(--white); border: 1px solid var(--beige-dark); }
.bento-card--white .bento-label { color: var(--text-muted); }
.bento-card--white .bento-title { color: var(--navy); }
.bento-card--white .bento-sub   { color: var(--text-muted); }
.bento-card--white .bento-arrow { background: rgba(30,45,71,0.08); color: var(--navy); }

.bento-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: auto;
}
.bento-label {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0;
}
.bento-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -0.02em;
  margin-top: 0; margin-bottom: 0.4rem;
}
.bento-sub {
  font-size: 1rem; line-height: 1.5; margin-bottom: 0;
}
.bento-sub-link {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: inherit;
  transition: opacity var(--transition);
}
.bento-sub-link:hover { opacity: 0.7; }
.bento-arrow {
  position: absolute; bottom: 1.75rem; right: 2rem; z-index: 3;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition), transform var(--spring);
}
.bento-card--red .bento-arrow { background: rgba(255,255,255,0.2); }
.bento-card--beige .bento-arrow { background: rgba(30,45,71,0.12); color: var(--navy); }
.bento-card:hover .bento-arrow {
  background: var(--red); color: var(--white); transform: scale(1.1);
}
.bento-card--red:hover .bento-arrow,
.bento-card--img:hover .bento-arrow {
  background: var(--white); color: var(--navy);
}

/* K/Lane: contained image area within bento block */
.bento-klane-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  overflow: hidden;
  min-height: 160px;
}
.bento-klane-img--photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.bento-klane-img--icon img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

/* Bento card with full-bleed illustration background */
.bento-card--illus {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bento-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0 2.5rem 2.5rem;
  margin-top: auto;
}
.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  text-decoration: none;
  transition: all var(--transition);
}
.bento-cta:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

/* ============================================================
   SECTION INTRO
   ============================================================ */
.intro { max-width: 980px; margin-bottom: 2.5rem; }
.intro h2 { font-size: clamp(2.25rem, 4.5vw, 4rem); color: var(--navy); margin-bottom: 1.1rem; }
.intro h2.light { color: var(--white); }
.intro p { font-size: 1.02rem; color: var(--text-muted); line-height: 1.75; }
.intro p.light { color: rgba(255,255,255,0.65); }

/* ============================================================
   ABOUT — HOME
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.about-text h2 { font-size: clamp(2.25rem, 4vw, 3.75rem); color: var(--navy); margin-bottom: 1.5rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.1rem; font-size: 1rem; line-height: 1.75; }
.about-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid var(--beige-dark);
}
.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800;
  color: var(--red); line-height: 1; white-space: nowrap;
}
.about-stat span {
  font-size: 0.68rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap;
}
.about-visual { position: relative; }
.about-img { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; }
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img:hover img { transform: scale(1.04); }

/* Google badge */
.google-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--white); color: var(--text);
  border-radius: var(--radius-lg); padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 0.3rem;
  transition: transform var(--spring), box-shadow var(--transition);
}
.google-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.google-badge .stars { color: #fbbc04; font-size: 1.1rem; letter-spacing: 0.05em; }
.google-badge strong { display: block; font-family: var(--font-display); font-size: 0.85rem; font-weight: 800; color: var(--navy); line-height: 1; }
.google-badge span { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* ============================================================
   DODAVATELE (PARTNERS)
   ============================================================ */
.dodavatele { background: var(--navy); padding: 4rem 2.5rem; margin: 0 15px 15px; border-radius: var(--radius-2xl); }
.dodavatele-inner { max-width: 1110px; margin: 0 auto; }
.dodavatele-label {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem; display: inline-block;
}
.dodavatele-grid { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }
.dodavatel-logo {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1rem 1.75rem; height: 70px; min-width: 140px;
  transition: background var(--transition), border-color var(--transition), transform var(--spring);
}
.dodavatel-logo:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); transform: translateY(-3px); }
.dodavatel-logo img { max-height: 36px; max-width: 120px; filter: brightness(0) invert(1); opacity: 0.7; }
.dodavatel-logo img:hover { opacity: 1; }
.dodavatel-text {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  color: rgba(255,255,255,0.6); letter-spacing: 0.02em; white-space: nowrap;
}
.dodavatele-placeholder {
  border: 2px dashed rgba(255,255,255,0.12) !important;
  background: transparent !important;
}
.dodavatele-placeholder .dodavatel-text { font-size: 0.8rem; color: rgba(255,255,255,0.25); font-family: var(--font-body); font-weight: 500; }

/* ============================================================
   HOURS STRIP
   ============================================================ */
.hours-strip {
  background: var(--white);
  padding: 3.5rem 2.5rem;
  margin: 0 15px 15px;
  border-radius: var(--radius-2xl);
}
.hours-inner {
  max-width: 1110px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.hours-label {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
  display: inline-block;
}
.hours-list { display: flex; gap: 3rem; flex-wrap: wrap; }
.hour-item .day { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.hour-item .time { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.hour-item .time.note { font-size: 0.95rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 500; font-style: italic; }
.hours-ig { display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem; }
.hours-ig span { font-size: 0.8rem; color: var(--text-muted); }
.hours-ig a {
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  color: var(--navy); border-bottom: 2px solid var(--red);
  padding-bottom: 1px; transition: color var(--transition);
}
.hours-ig a:hover { color: var(--red); }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.menu-filter {
  padding: 0.5rem 1.25rem; border-radius: 100px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.8rem;
  border: 2px solid var(--beige-dark);
  background: var(--white); color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.menu-filter:hover { border-color: var(--navy); color: var(--navy); }
.menu-filter.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.menu-category { margin-bottom: 4rem; }
.menu-category-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--beige-dark);
}
.menu-category-header h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); flex: 1; }
.menu-category-note { font-size: 0.78rem; color: var(--text-muted); }
.menu-items { display: flex; flex-direction: column; gap: 10px; }
.menu-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.menu-item:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-2px); }
.menu-item-name { font-family: var(--font-display); font-size: 0.92rem; font-weight: 800; color: var(--navy); }
.menu-item-desc { font-size: 0.77rem; color: var(--text-muted); margin-top: 0.15rem; line-height: 1.4; }
.menu-item-price { font-family: var(--font-display); font-weight: 800; color: var(--red); font-size: 0.9rem; white-space: nowrap; flex-shrink: 0; }
.menu-note {
  background: var(--white); border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; line-height: 1.6;
}
.menu-note a { color: var(--red); font-weight: 600; }
.menu-pdf-open {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-top: 3rem;
}
.menu-pdf-open h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 0.35rem; }
.menu-pdf-open p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.menu-pdf-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ============================================================
   DETSKY KOUTEK
   ============================================================ */
.koutek-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.koutek-icon-box {
  background: var(--navy);
  border-radius: var(--radius-xl); padding: 3.5rem;
  display: flex; align-items: center; justify-content: center; aspect-ratio: 1;
}
.koutek-icon-box img { max-width: 200px; filter: brightness(0) invert(1); opacity: 0.85; }

.koutek-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.koutek-card {
  background: var(--white); border: 1px solid var(--beige-dark);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--spring);
}
.koutek-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.koutek-card-icon { width: 52px; height: 52px; margin-bottom: 1.25rem; }
.koutek-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.koutek-card h3 { font-family: var(--font-display); font-size: 0.95rem; color: var(--navy); margin-bottom: 0.5rem; }
.koutek-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.photo-placeholder {
  background: var(--white);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.75rem;
  aspect-ratio: 4/3;
  border: 2px dashed var(--beige-dark);
  transition: border-color var(--transition);
}
.photo-placeholder:hover { border-color: var(--beige-mid); }
.photo-placeholder span { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

.koutek-photo { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 3/2; }
.koutek-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.koutek-photo:hover img { transform: scale(1.04); }

.koutek-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.koutek-rules-block {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: 3rem; color: var(--white); margin-top: 3rem;
}
.koutek-rules-block h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 2rem; }
.rules-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 3rem; }
.rule-item {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.55;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rule-num {
  flex-shrink: 0; width: 26px; height: 26px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 800; color: var(--white);
}
.koutek-credit {
  margin-top: 1.75rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  text-align: center;
}
.koutek-credit a { color: rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.2); }

/* Elis Design rules (icon style) */
.elis-rules {
  display: flex; flex-direction: column;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-top: 3rem;
}
.elis-rule {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.elis-rule:last-child { border-bottom: none; }
.elis-rule-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.elis-rule-icon svg { width: 26px; height: 26px; }
.elis-rule span { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.4; }
.elis-rules-footer {
  margin-top: 2rem; padding-top: 1.75rem;
  border-top: 1px solid var(--beige-dark);
  text-align: center;
}
.elis-rules-footer p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.35rem; }
.elis-rules-footer strong { color: var(--navy); }

/* ============================================================
   PRONAJEM
   ============================================================ */
.pronajem-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 5rem; }
.pronajem-card {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: 3rem 2.5rem; color: var(--white);
  display: flex; flex-direction: column;
  transition: transform var(--spring), box-shadow var(--transition);
}
.pronajem-card-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 1.5rem; }
.pronajem-card h2, .pronajem-card h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.pronajem-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.pronajem-specs { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.pronajem-spec { display: flex; flex-direction: column; }
.pronajem-spec strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.pronajem-spec span { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }

.pronajem-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 3rem 0; }
.pronajem-feature {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
}
.pronajem-feature-icon {
  width: 48px; height: 48px; margin-bottom: 1rem;
  background: var(--beige); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.pronajem-feature-icon img { max-width: 28px; }
.pronajem-feature h4 { font-family: var(--font-display); font-size: 0.9rem; color: var(--navy); margin-bottom: 0.35rem; }
.pronajem-feature p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* Inquiry form */
.inquiry-form { background: var(--white); border-radius: var(--radius-xl); padding: 3.5rem; }
.inquiry-form h3 { font-family: var(--font-display); font-size: 1.75rem; color: var(--navy); margin-bottom: 0.5rem; }
.inquiry-form > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2.5rem; }
/* Red background section for inquiry forms */
.section--red { background: var(--red); }
.section--red .label { background: transparent; color: rgba(255,255,255,0.9); }
.section--red .intro h2 { color: var(--white); }
.section--red .intro p { color: rgba(255,255,255,0.75); }
.section--red .reveal-d1 { max-width: 1110px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.span-2 { grid-column: span 2; }
.form-group label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.875rem 1.1rem;
  border-radius: var(--radius); border: 1.5px solid var(--beige-dark);
  background: var(--off-white); font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,45,71,0.08);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6466' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-submit { margin-top: 2rem; }
.form-consent { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin-top: 1.25rem; }
.form-consent input[type="checkbox"] { width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.contact-block { margin-bottom: 2.25rem; }
.contact-block-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.contact-block-value { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--navy); line-height: 1.45; }
.contact-block-value a:hover { color: var(--red); }
.contact-social { display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }
.contact-social-link {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.1rem; background: var(--white); border-radius: 100px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; color: var(--red);
  transition: all var(--transition); box-shadow: var(--shadow);
}
.contact-social-link:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.wolt-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #009de0; color: var(--white);
  padding: 0.55rem 1.25rem; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; margin-top: 0.75rem;
  transition: all var(--transition);
}
.wolt-link:hover { opacity: 0.88; transform: translateY(-2px); }
.map-wrap { border-radius: var(--radius-xl); overflow: hidden; height: 440px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.parking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.parking-card { border-radius: var(--radius-xl); overflow: hidden; cursor: pointer; }
.parking-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }

/* Parking lightbox */
.parking-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.88);
  align-items: center; justify-content: center;
}
.parking-lightbox.is-open { display: flex; }
.parking-lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.parking-lightbox-close {
  position: absolute; top: 1.5rem; right: 1.75rem;
  background: rgba(255,255,255,0.12); border: none;
  color: #fff; font-size: 1.25rem; width: 42px; height: 42px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.parking-lightbox-close:hover { background: rgba(255,255,255,0.22); }
.parking-body { background: var(--white); padding: 1.25rem 1.5rem; }
.parking-body h4 { font-family: var(--font-display); font-size: 1rem; color: var(--navy); margin-bottom: 0.35rem; }
.parking-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy); border-radius: var(--radius-2xl);
  margin: 0 15px 15px;
}
.cta-banner-inner {
  max-width: 1190px; margin: 0 auto;
  padding: 4.5rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.cta-banner h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); max-width: 780px; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-top: 0.75rem; max-width: 780px; font-size: 0.95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  margin: 0 15px 15px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.footer-main {
  max-width: 1190px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 4rem;
  padding: 4rem 2.5rem 3rem;
  align-items: start;
}
.footer-left { grid-column: 1; grid-row: 1 / 3; min-width: 0; }
.footer-big-email {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.75rem;
  word-break: break-word;
  transition: color var(--transition);
}
.footer-big-email:hover { color: var(--beige); }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}
.footer-social-link:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}
.footer-cols { display: flex; gap: 3.5rem; flex-shrink: 0; grid-column: 2; grid-row: 1; }
.footer-col-title {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.32); margin-bottom: 1rem;
}
.footer-col-text { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.9; }
.footer-hours-row {
  display: flex; justify-content: space-between;
  gap: 2rem; font-size: 0.82rem; margin-bottom: 0.45rem;
}
.footer-hours-row .day { color: rgba(255,255,255,0.38); }
.footer-hours-row .time { color: rgba(255,255,255,0.7); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); }
.footer-bottom {
  max-width: 1190px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.75rem 2.5rem; flex-wrap: wrap;
}
.footer-legal { font-size: 0.73rem; color: rgba(255,255,255,0.28); line-height: 1.7; }
.footer-payments {
  display: flex; align-items: center; gap: 0.6rem;
  grid-column: 2; grid-row: 2;
}
.footer-payments-label {
  font-size: 0.67rem; color: rgba(255,255,255,0.3); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-right: 0.2rem;
}
.payment-icon { height: 26px; width: auto; opacity: 0.85; border-radius: 4px; }
.footer-social-link img { width: 40px; height: 40px; object-fit: contain; display: block; }
.footer-map-link {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1px;
  transition: color var(--transition);
}
.footer-map-link:hover { color: var(--beige); }
.footer-legal-links { display: flex; gap: 1.25rem; }
.footer-legal-links a {
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.footer-legal-links a:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.in-view, .reveal-right.in-view { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.93); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0) translateY(0); transform-origin: top; opacity: 1; }
  80%  { transform: scaleY(1) translateY(0); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1) translateY(0); transform-origin: top; opacity: 0; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .koutek-intro,
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .pronajem-features { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { gap: 2rem; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 9rem; padding-bottom: 3rem; }
  .hero-visual { height: 55vw; align-self: auto; padding-top: 0; }
  .hero-img-wrap { height: 100%; border-radius: var(--radius-xl); }
  .bento-8 { --span: 6; }
  .bento-4 { --span: 6; }
}
@media (max-width: 768px) {
  .nav {
    top: 10px;
    width: calc(100% - 1.5rem);
    border-radius: var(--radius-2xl);
    padding: 0.55rem 0.65rem 0.55rem 1.25rem;
  }
  .hero, .page-hero,
  .section, .section-sm,
  .dodavatele, .hours-strip, .footer, .cta-banner {
    margin-left: 8px;
    margin-right: 8px;
  }
  .hero { margin-top: 8px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 1.5rem; }
  .section { padding: 4rem 0; }
  .page-hero { padding: 8rem 1.5rem 4rem; min-height: 360px; }
  .hero-inner { padding: 8rem 1.5rem 3rem; gap: 2rem; }
  .hero-visual { display: none; }
  .bento-grid { gap: 0.875rem; }
  .bento-box { --span: 12 !important; }
  .bento-card { min-height: 280px; }
  .pronajem-options { grid-template-columns: 1fr; }
  /* .menu-items already single column */
  .koutek-features { grid-template-columns: 1fr 1fr; }
  .koutek-photos { grid-template-columns: 1fr 1fr; }
  .rules-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.span-2 { grid-column: span 1; }
  .pronajem-features { grid-template-columns: 1fr 1fr; }
  .footer-main { flex-direction: column; gap: 2rem; }
  .footer-cols { flex-wrap: wrap; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hours-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .cta-banner-inner { flex-direction: column; padding: 2.5rem 2rem; }
  .about-stats { gap: 1.5rem; }
  .google-badge { display: none; }
  .parking-grid { grid-template-columns: 1fr; }
  .inquiry-form { padding: 2rem; }
  .about-grid { gap: 2.5rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .koutek-features { grid-template-columns: 1fr; }
  .dodavatele-grid { gap: 0.75rem; }
  .hours-list { gap: 1.5rem; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 1.1rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -4px 32px rgba(30, 45, 71, 0.22);
}
#cookie-banner.cookie-banner--visible { transform: translateY(0); }
#cookie-banner.cookie-banner--hidden  { transform: translateY(110%); transition: transform 0.3s ease-in; }
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 220px; }
.cookie-banner__text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}
.cookie-banner__text p { font-size: 0.85rem; color: rgba(255,255,255,0.72); margin: 0; line-height: 1.5; }
.cookie-banner__text a { color: var(--beige); text-decoration: underline; }
.cookie-banner__text a:hover { opacity: 0.85; }
.cookie-banner__actions { display: flex; gap: 0.65rem; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.cookie-btn--primary  { background: var(--beige); color: var(--navy); }
.cookie-btn--primary:hover  { background: var(--beige-dark); }
.cookie-btn--secondary {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.22);
}
.cookie-btn--secondary:hover { background: rgba(255,255,255,0.08); color: var(--white); }
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* Revoke consent button on cookies.html */
.cookie-revoke-wrap { margin-top: 1.5rem; }
.cookie-revoke-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.cookie-revoke-btn:hover { background: var(--navy); color: var(--white); }
