/* ============================================
   JACK GARDEN — Styles
   Visual DNA from jackpub.sk + 3 theme variants
   ============================================ */

/* ---------- CSS Variables / Themes ---------- */

:root {
  --font-heading: 'Roboto Slab', serif;
  --font-body: 'Roboto', sans-serif;
  --max-width: 1200px;
  --nav-height: 70px;
  --transition: 0.3s ease;
}

/* Theme A: Dark & Gold (default — matches jackpub.sk) */
[data-theme="dark-gold"] {
  --bg-dark: #1a1a1a;
  --bg-dark-alt: #232323;
  --bg-light: #f7f7f7;
  --bg-light-alt: #ffffff;
  --accent: #7b5a14;
  --accent-hover: #9a7325;
  --accent-rgb: 123, 90, 20;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: #afafaf;
  --text-on-light: #333333;
  --text-on-light-muted: #7f7f7f;
  --overlay: rgba(0,0,0,0.45);
  --card-bg-dark: #2a2a2a;
  --card-bg-light: #ffffff;
  --border-subtle: rgba(255,255,255,0.08);
  --border-subtle-light: rgba(0,0,0,0.08);
  --nav-solid: rgba(26,26,26,0.97);
  --footer-bg: #111111;
}

/* Theme B: Light & Warm */
[data-theme="light-warm"] {
  --bg-dark: #3d2d0a;
  --bg-dark-alt: #4a3610;
  --bg-light: #faf6f0;
  --bg-light-alt: #f5f0e8;
  --accent: #7b5a14;
  --accent-hover: #9a7325;
  --accent-rgb: 123, 90, 20;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: #d4c4a8;
  --text-on-light: #3d2d0a;
  --text-on-light-muted: #5c4d36;
  --overlay: rgba(61,45,10,0.5);
  --card-bg-dark: #4a3610;
  --card-bg-light: #ffffff;
  --border-subtle: rgba(255,255,255,0.12);
  --border-subtle-light: rgba(61,45,10,0.1);
  --nav-solid: rgba(61,45,10,0.97);
  --footer-bg: #2c1f06;
}

/* Theme C: Dark & Green */
[data-theme="dark-green"] {
  --bg-dark: #0d1a0d;
  --bg-dark-alt: #142014;
  --bg-light: #f0f5f0;
  --bg-light-alt: #e8f0e8;
  --accent: #2d5a2d;
  --accent-hover: #3d7a3d;
  --accent-rgb: 45, 90, 45;
  --text-on-dark: #e8f0e8;
  --text-on-dark-muted: #8fbc8f;
  --text-on-light: #1a2e1a;
  --text-on-light-muted: #4a6b4a;
  --overlay: rgba(13,26,13,0.5);
  --card-bg-dark: #1a2e1a;
  --card-bg-light: #ffffff;
  --border-subtle: rgba(143,188,143,0.15);
  --border-subtle-light: rgba(26,46,26,0.1);
  --nav-solid: rgba(13,26,13,0.97);
  --footer-bg: #060d06;
}

/* ---------- Reset & Base ---------- */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-on-light);
  background: var(--bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent-hover);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.accent-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}
.accent-line.center {
  margin-left: auto;
  margin-right: auto;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.4);
}

.btn-block { width: 100%; }

/* ---------- Navbar ---------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--nav-solid);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.navbar-logo {
  flex-shrink: 0;
}

/* Logo Image */
.logo-img {
  height: 45px;
  width: auto;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 0.3rem;
}

.navbar-links a {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 0.8rem;
  transition: color var(--transition);
  white-space: nowrap;
}
.navbar-links a:hover {
  color: var(--accent);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme Switcher */
.theme-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
}

.theme-btn {
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color var(--transition), transform var(--transition);
}
.theme-btn:hover {
  transform: scale(1.15);
}
.theme-btn.active {
  border-color: #ffffff;
}
.theme-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 4px 6px;
  transition: color var(--transition);
}
.lang-btn.active {
  color: #ffffff;
}
.lang-btn:hover {
  color: var(--accent);
}
.lang-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

/* Phone — pulse ring effect */
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  position: relative;
}
.navbar-phone svg {
  position: relative;
  z-index: 1;
}
.navbar-phone::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: phonePulse 2s ease-in-out infinite;
}
.navbar-phone:hover {
  color: var(--accent);
}
.navbar-phone:hover::before {
  animation: none;
  opacity: 0;
}

@keyframes phonePulse {
  0% { opacity: 0; transform: translateY(-50%) scale(0.8); }
  30% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-50%) scale(2.2); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 2rem;
}

/* Hero Logo */
.hero-logo {
  width: min(350px, 70vw);
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 200;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.hero .btn {
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

/* Glow pulse on hero CTA */
.btn-glow {
  position: relative;
  overflow: visible;
}
.btn-glow::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0;
  z-index: -1;
  animation: btnGlow 2.5s ease-in-out 2s infinite;
}
.btn-glow:hover::after {
  animation: none;
  opacity: 0;
}

@keyframes btnGlow {
  0%, 100% { opacity: 0; filter: blur(8px); transform: scale(1); }
  50% { opacity: 0.6; filter: blur(14px); transform: scale(1.05); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ---------- Sections ---------- */

.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section-dark .section-text,
.section-dark .section-subtitle {
  color: var(--text-on-dark-muted);
}
.section-dark .section-text a { color: var(--accent-hover); }

.section-light {
  background: var(--bg-light);
  color: var(--text-on-light);
}
.section-light .section-text,
.section-light .section-subtitle {
  color: var(--text-on-light-muted);
}

/* ---------- Parallax Dividers ---------- */

.parallax-divider {
  height: 350px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}
.parallax-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

/* iOS fix — no background-attachment: fixed */
@supports (-webkit-touch-callout: none) {
  .parallax-divider {
    background-attachment: scroll;
  }
}

/* ---------- About Section ---------- */

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img {
  transform: scale(1.03);
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

/* ---------- Spaces (Immersive) ---------- */

.spaces-hero {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.spaces-header {
  margin-bottom: 5rem;
}

.spaces-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  position: relative;
}
.spaces-label::before,
.spaces-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.spaces-label::before { right: calc(100% + 12px); }
.spaces-label::after { left: calc(100% + 12px); }

.spaces-main-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.spaces-main-sub {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  font-weight: 300;
}

/* Showcase Block */
.space-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}
.space-showcase.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.space-showcase.reverse .space-showcase-img {
  order: 2;
}
.space-showcase.reverse .space-showcase-content {
  order: 1;
  padding-left: 2rem;
  padding-right: 4rem;
}

/* Image */
.space-showcase-img {
  position: relative;
  padding: 1.5rem;
}

.space-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.space-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.space-showcase:hover .space-img-wrapper img {
  transform: scale(1.05);
}

.space-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
}

.space-number {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.6s ease;
}
.space-showcase:hover .space-number {
  opacity: 0.25;
}

/* Content */
.space-showcase-content {
  padding: 2rem 2rem 2rem 4rem;
}

.space-showcase-content h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
  position: relative;
}
.space-showcase-content h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-top: 0.8rem;
}

.space-showcase-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-on-dark-muted);
  margin-bottom: 1.5rem;
}

.space-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.space-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 100px;
  transition: all var(--transition);
}
.space-showcase:hover .space-tag {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

/* ---------- Menu ---------- */

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0 3rem;
}

.menu-tab {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-on-dark-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: all var(--transition);
}
.menu-tab:hover,
.menu-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.menu-category {
  display: none;
}
.menu-category.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.menu-item {
  padding: 1.2rem 1.5rem;
  background: var(--card-bg-dark);
  border-radius: 4px;
  border-left: 3px solid var(--accent);
  transition: transform var(--transition);
}
.menu-item:hover {
  transform: translateX(4px);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}
.menu-item-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-dark);
}
.menu-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #c9a44e;
  white-space: nowrap;
  margin-left: 1rem;
}
.menu-item p {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}

.menu-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  font-style: italic;
}

/* ---------- Rental ---------- */

.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.rental-card {
  background: var(--card-bg-light);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 4px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.rental-icon {
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.rental-card h3 {
  font-size: 1.2rem;
  color: var(--text-on-light);
  margin-bottom: 0.8rem;
}
.rental-card p {
  font-size: 0.9rem;
  color: var(--text-on-light-muted);
  margin-bottom: 1.2rem;
}
.rental-price {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  padding: 4px 16px;
  border: 1px solid var(--accent);
  border-radius: 2px;
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}
.gallery-item::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 200;
  color: #ffffff;
  background: rgba(var(--accent-rgb), 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 1rem;
  transition: color var(--transition);
  z-index: 2001;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--accent);
}
.lightbox-close { top: 1rem; right: 1.5rem; font-size: 3rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---------- Reservations (Modern) ---------- */

.reservations-modern {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.reservations-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.reservations-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
}

.reservations-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.reservations-left .section-title {
  color: #ffffff;
}
.reservations-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.reservations-cta-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  transition: background var(--transition);
}
.reservations-cta-phone:hover {
  background: rgba(255,255,255,0.12);
}

.cta-phone-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  color: #ffffff;
  flex-shrink: 0;
}

.cta-phone-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}

.cta-phone-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  transition: color var(--transition);
}
.cta-phone-number:hover {
  color: var(--accent);
}

.reservations-info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.info-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
}
.info-chip svg {
  opacity: 0.6;
  flex-shrink: 0;
}

/* Form Card */
.reservation-form-card {
  background: rgba(255,255,255,0.97);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.reservation-form-card h3 {
  font-size: 1.2rem;
  color: var(--text-on-light);
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 14px 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #333;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
}

.form-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: #999;
  pointer-events: none;
  transition: all 0.2s ease;
}
.form-group textarea ~ label {
  top: 16px;
  transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  transform: none;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.reservation-form-card .btn {
  border-radius: 8px;
  margin-top: 0.5rem;
}

.form-status {
  margin-top: 0.8rem;
  padding: 0;
  font-size: 0.85rem;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.form-status.success {
  padding: 0.8rem;
  background: rgba(45,90,45,0.15);
  color: #2d7a2d;
  border: 1px solid rgba(45,90,45,0.3);
}
.form-status.error {
  padding: 0.8rem;
  background: rgba(180,40,40,0.15);
  color: #c0392b;
  border: 1px solid rgba(180,40,40,0.3);
}

/* iOS fix */
@supports (-webkit-touch-callout: none) {
  .reservations-bg { background-attachment: scroll; }
}

/* ---------- Contact Modern ---------- */

.contact-modern {
  position: relative;
}

.contact-map-wrap {
  position: relative;
  min-height: 550px;
}

.contact-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.6) brightness(0.9);
}

.contact-cards-overlay {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 12px;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.contact-card h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.8rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.3rem;
}

.contact-card a {
  color: #333;
  font-weight: 500;
  transition: color var(--transition);
}
.contact-card a:hover {
  color: var(--accent);
}

.contact-card-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent) !important;
}

.contact-hours {
  list-style: none;
}
.contact-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.contact-socials a {
  color: #666;
  transition: color var(--transition), transform var(--transition);
}
.contact-socials a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Footer Minimal ---------- */

.footer-minimal {
  background: var(--footer-bg);
  padding: 1.5rem 0;
}

.footer-minimal-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-minimal .footer-logo {
  height: 35px;
  width: auto;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-minimal p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.footer-minimal a {
  color: var(--accent);
}

/* ---------- News / Blog ---------- */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.news-card {
  background: var(--card-bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.news-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-card-img img {
  transform: scale(1.06);
}

.news-date {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
}

.news-card-body {
  padding: 1.5rem;
}

.news-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.news-card-body h3 {
  font-size: 1.1rem;
  color: var(--text-on-light);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.news-card-body p {
  font-size: 0.88rem;
  color: var(--text-on-light-muted);
  line-height: 1.6;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 1.3rem 0;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question span {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-on-dark);
  transition: color var(--transition);
}
.faq-question:hover span {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.3rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
  line-height: 1.8;
}

/* ---------- Social CTA Strip ---------- */

.social-cta {
  background: var(--accent);
  padding: 3rem 0;
}

.social-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-cta-text h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
}
.social-cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.social-cta-buttons {
  display: flex;
  gap: 1rem;
}

.social-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: #ffffff;
  transition: all var(--transition);
}
.social-cta-btn.facebook {
  background: #1877F2;
}
.social-cta-btn.facebook:hover {
  background: #0d65d9;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24,119,242,0.4);
}
.social-cta-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-cta-btn.instagram:hover {
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(220,39,67,0.4);
}

/* ---------- Floating Social Bar ---------- */

.floating-social {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.float-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  transition: all var(--transition);
  border-radius: 0 6px 6px 0;
}
.float-social-btn:hover {
  color: #ffffff;
  width: 52px;
}

.float-social-btn.fb { background: #1877F2; }
.float-social-btn.fb:hover { background: #0d65d9; }
.float-social-btn.ig { background: #E4405F; }
.float-social-btn.ig:hover { background: #d32e4d; }
.float-social-btn.phone {
  background: var(--accent);
  position: relative;
  overflow: visible;
}
.float-social-btn.phone::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0 6px 6px 0;
  background: var(--accent);
  opacity: 0;
  z-index: -1;
  animation: floatPhonePulse 3s ease-in-out infinite;
}
.float-social-btn.phone:hover { background: var(--accent-hover); }
.float-social-btn.phone:hover::after { animation: none; opacity: 0; }

@keyframes floatPhonePulse {
  0%, 100% { opacity: 0; filter: blur(4px); transform: scaleX(1); }
  50% { opacity: 0.5; filter: blur(8px); transform: scaleX(1.6); }
}

/* ---------- Footer Credit ---------- */

.footer-credit {
  text-align: center;
  padding: 0.8rem 0;
  border-top: 1px solid var(--border-subtle);
}
.footer-credit p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}
.footer-credit a {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-credit a:hover {
  color: var(--accent);
}

/* ---------- Preloader ---------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: 'Roboto Slab', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 1.5rem;
}
.preloader-logo em {
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  color: var(--accent);
  margin-bottom: 2px;
}

.preloader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-bar-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  animation: preloaderFill 1.2s ease forwards;
}
@keyframes preloaderFill {
  to { width: 100%; }
}

/* ---------- Event Banner ---------- */

.event-banner {
  background: var(--accent);
  color: #ffffff;
  padding: 0.6rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  text-align: center;
  transition: transform 0.3s ease;
}
.event-banner.hidden {
  transform: translateY(-100%);
  pointer-events: none;
}
/* Push navbar down when banner is visible */
body.banner-active .navbar {
  top: 36px;
}

.event-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.event-banner-inner a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 700;
}
.event-banner-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 0.5rem;
  transition: color var(--transition);
}
.event-banner-close:hover { color: #ffffff; }

/* ---------- Counters ---------- */

.counters-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
}

.counter-item {
  text-align: center;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.counter-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--accent);
}

.counter-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

/* ---------- Daily Menu ---------- */

.daily-menu-card {
  max-width: 700px;
  margin: 1rem auto 0;
  background: var(--card-bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.daily-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: var(--accent);
  color: #ffffff;
}
.daily-menu-day {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.daily-menu-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}
.daily-menu-price small {
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.8;
}

.daily-menu-body {
  padding: 0.5rem 1.5rem;
}
.daily-menu-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-subtle-light);
}
.daily-menu-item:last-child { border-bottom: none; }

.daily-menu-cat {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  width: 60px;
}

.daily-menu-note {
  padding: 0.8rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text-on-light-muted);
  font-style: italic;
  border-top: 1px solid var(--border-subtle-light);
}

/* ---------- Testimonials ---------- */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--card-bg-dark);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  transition: transform var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testimonial-author strong {
  display: block;
  color: var(--text-on-dark);
  font-size: 0.9rem;
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
}

/* ---------- Back to Top ---------- */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ---------- Cookie Consent (Full Popup) ---------- */

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cookie-overlay.visible { opacity: 1; visibility: visible; }

.cookie-consent {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%) scale(0.95);
  z-index: 9998;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  width: min(520px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.cookie-consent.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 50%) scale(1);
}

.cookie-consent-inner {
  padding: 2rem;
}

.cookie-header h3 {
  font-size: 1.2rem;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
}
.cookie-header p {
  color: var(--text-on-dark-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Categories */
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.cookie-cat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1rem;
}

.cookie-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-cat-header strong {
  display: block;
  color: var(--text-on-dark);
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.cookie-cat-header span {
  display: block;
  color: var(--text-on-dark-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 24px;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}
.cookie-toggle input:checked + .cookie-slider {
  background: var(--accent);
}
.cookie-toggle input:checked + .cookie-slider::before {
  transform: translateX(20px);
}
.cookie-toggle.disabled .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Buttons */
.cookie-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  flex: 1;
  min-width: 120px;
  text-align: center;
}
.cookie-accept-all {
  background: var(--accent);
  color: #ffffff;
}
.cookie-accept-all:hover { background: var(--accent-hover); }
.cookie-save {
  background: rgba(255,255,255,0.1);
  color: var(--text-on-dark);
  border: 1px solid var(--border-subtle);
}
.cookie-save:hover { background: rgba(255,255,255,0.15); }
.cookie-decline {
  background: transparent;
  color: var(--text-on-dark-muted);
  border: 1px solid var(--border-subtle);
}
.cookie-decline:hover { color: var(--text-on-dark); border-color: var(--text-on-dark-muted); }

/* Links */
.cookie-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  justify-content: center;
}
.cookie-links a {
  color: var(--text-on-dark-muted);
  font-size: 0.75rem;
  text-decoration: underline;
  transition: color var(--transition);
}
.cookie-links a:hover { color: var(--accent); }

/* ---------- Reveal Animations ---------- */

.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up { transform: translateY(40px); }

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  opacity: 1;
  transform: translate(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .navbar-links { display: none; }
  .navbar-phone span { display: none; }
  .hamburger { display: flex; }

  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--nav-solid);
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 999;
  }
  .navbar-links.open a {
    font-size: 1.2rem;
    padding: 0.8rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .space-showcase,
  .space-showcase.reverse {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    margin-bottom: 3rem;
  }
  .space-showcase.reverse .space-showcase-img { order: 0; }
  .space-showcase.reverse .space-showcase-content {
    padding-left: 0;
    padding-right: 0;
  }
  .space-showcase-content {
    padding: 1.5rem 0;
  }
  .space-img-wrapper img {
    height: 300px;
  }

  .rental-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .reservations-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .news-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .social-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .floating-social {
    display: none;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.2rem; }

  .hero-logo { width: min(250px, 80vw); }

  .theme-switcher { gap: 4px; }
  .theme-btn { width: 20px; height: 20px; }
  .theme-dot { width: 10px; height: 10px; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reservation-form-card {
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
  }

  .parallax-divider {
    height: 200px;
    background-attachment: scroll;
  }

  .space-showcase {
    padding: 0 1rem;
  }
  .space-img-wrapper img {
    height: 240px;
  }
  .space-number {
    font-size: 5rem;
  }

  .reservations-info-chips {
    flex-direction: column;
  }

  .contact-map-wrap {
    min-height: auto;
  }
  .contact-map {
    position: relative;
    height: 250px;
  }
  .contact-cards-overlay {
    padding: 2rem 0;
    background: var(--bg-light);
  }
  .contact-cards {
    max-width: 100%;
  }
}
