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

/* ─── DEMO BAR ─── */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 36px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.demo-bar--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.demo-badge {
  background: #E60C80;
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 7px 1px;
  border-radius: 3px;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .demo-bar { font-size: 10px; gap: 7px; }
  .demo-bar .demo-text { display: none; }
  .demo-bar::after { content: 'Demo-Website · Alle Angaben sind fiktiv.'; color: rgba(255,255,255,0.65); font-size: 10px; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--pink);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
  transition: top 0.1s;
}
.skip-link:focus { top: 0; }

:root {
  --pink: #E60C80;
  --black: #111111;
  --white: #ffffff;
  --bg-light: #FFF8F9;
  --bg-soft: #FEEFF0;
  --brown: #92611C;
  --gray: #666666;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  background: #FFF8F9;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  height: 88px;
  transition: height 0.3s ease, box-shadow 0.3s ease;
}
header.scrolled {
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-left a {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: font-size 0.3s ease;
}
header.scrolled .nav-left a { font-size: 18px; }
.nav-left a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--pink);
  transition: width 0.3s ease;
}
.nav-left a:hover::after { width: 100%; }

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* ─── LOGO (centered, two-line) ─── */
.logo {
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.logo-main {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 41px;
  color: var(--pink);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: font-size 0.3s ease;
}
.logo-sub {
  font-family: 'Amatic SC', cursive;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 3px;
  color: var(--black);
  margin-top: 1px;
  transition: font-size 0.3s ease;
}
header.scrolled .logo-main { font-size: 34px; }
header.scrolled .logo-sub { font-size: 16px; }

/* ─── PILL BUTTON (Book a Table) ─── */
.btn-book {
  background: var(--pink);
  color: var(--white);
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 9px 22px 7px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease, font-size 0.3s ease;
  white-space: nowrap;
}
header.scrolled .btn-book { font-size: 18px; }
.btn-book:hover { background: #c40a6d; }
.btn-book svg {
  width: 14px; height: 14px;
  fill: var(--white);
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 28px;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: #FFF8F9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 146px 48px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-headline {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  max-width: 560px;
  color: var(--black);
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* ─── PRIMARY PILL BUTTON ─── */
.btn-primary {
  background: var(--pink);
  color: var(--white);
  padding: 11px 28px 9px;
  border-radius: 50px;
  font-family: 'Amatic SC', cursive;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}
.btn-primary:hover { background: #c40a6d; }
.btn-primary svg {
  width: 14px; height: 14px;
  fill: var(--white);
  flex-shrink: 0;
}

.btn-outline {
  border: 1px solid var(--black);
  color: var(--black);
  padding: 11px 28px 9px;
  border-radius: 50px;
  font-family: 'Amatic SC', cursive;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ─── IMAGE GALLERY ─── */
.gallery {
  width: 100%;
  max-width: 1200px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, #c8a882, #9c6f44);
}
.gallery-item:first-child { grid-row: 1 / 3; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Placeholder image tiles */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Amatic SC', cursive;
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  transition: transform 0.5s ease;
}
.gallery-item:hover .img-placeholder { transform: scale(1.06); }

.ph-1 { background: linear-gradient(135deg, #c8a882, #9c6f44); }
.ph-2 { background: linear-gradient(135deg, #e8c9a0, #c9956c); }
.ph-3 { background: linear-gradient(135deg, #f2dcc8, #d4a97a); }
.ph-4 { background: linear-gradient(135deg, #7a5c3a, #5c3d1e); }
.ph-5 { background: linear-gradient(135deg, #b8926a, #8a6040); }
.ph-6 { background: linear-gradient(135deg, #e0c4a0, #b8906a); }

/* ─── SECTION BASE ─── */
section { padding: 100px 48px; }

.section-label {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.15;
  color: var(--black);
  max-width: 680px;
}

.pink-line {
  width: 48px;
  height: 2px;
  background: var(--pink);
  margin: 24px 0;
}

/* ─── ABOUT ─── */
#about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}

.about-image-stack {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 85%;
  overflow: hidden;
  background: linear-gradient(135deg, #c8a882, #9c6f44);
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  border: 8px solid var(--white);
  overflow: hidden;
  background: linear-gradient(135deg, #e8c9a0, #c9956c);
}
.about-img-secondary img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  z-index: 2;
  border: 4px solid var(--white);
}
.about-badge strong {
  font-family: 'Amatic SC', cursive;
  font-size: 28px;
  line-height: 1;
}
.about-badge span {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: 'Amatic SC', cursive;
  font-size: 48px;
  color: var(--pink);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}

/* ─── MENU SECTION ─── */
#menu {
  background: linear-gradient(160deg, #FFF8F9 0%, #FEEFF0 100%);
  padding: 100px 48px;
  position: relative;
}
#menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--white), transparent);
  pointer-events: none;
}
#menu::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}
.menu-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
  text-align: center;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  margin-top: 36px;
  justify-content: center;
}
.menu-tab {
  padding: 8px 22px 6px;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #ddd;
  background: transparent;
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  transition: all 0.3s;
  border-radius: 32px;
}
.menu-tab.active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.menu-tab:hover:not(.active) {
  border-color: var(--pink);
  color: var(--pink);
}

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

.menu-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  border-radius: 16px;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--pink);
  transition: height 0.3s ease;
  border-radius: 16px 0 0 16px;
}
.menu-card:hover::before { height: 100%; }

.menu-card-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.menu-card-name {
  font-family: 'Amatic SC', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.menu-card-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.menu-card-price {
  font-family: 'Amatic SC', cursive;
  font-size: 30px;
  color: var(--pink);
}
.menu-card-badges {
  position: absolute;
  top: 36px; right: 32px;
  display: flex;
  gap: 6px;
}
.badge {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid;
}
.badge-vegan { border-color: #5a9e6f; color: #5a9e6f; }
.badge-gf { border-color: var(--brown); color: var(--brown); }

.menu-cta {
  text-align: center;
  margin-top: 60px;
}

/* ─── FEATURES STRIP ─── */
#features {
  background: var(--white);
  padding: 0 48px;
  position: relative;
}
#features::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bg-light), var(--white));
  pointer-events: none;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 60px 0;
}
.feature-item {
  text-align: center;
  padding: 44px 28px;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
  cursor: default;
}
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(230,12,128,0.12);
  transform: translateY(-4px);
  border-color: var(--pink);
}
.feature-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--pink);
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; fill: var(--pink); }
.feature-title {
  font-family: 'Amatic SC', cursive;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.75;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--white);
  padding: 100px 48px;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-header .section-title { margin: 0 auto; text-align: center; }
.testimonials-header .pink-line { margin: 24px auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(230,12,128,0.12);
  transform: translateY(-4px);
  border-color: var(--pink);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.star { color: #f5a623; font-size: 16px; }
.testimonial-quote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Amatic SC', cursive;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}
.av1 { background: #E60C80; }
.av2 { background: #8a6040; }
.av3 { background: #5a9e6f; }
.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}
.author-via {
  font-size: 11px;
  color: #aaa;
  margin-top: 2px;
}
.quote-mark {
  position: absolute;
  top: 28px; right: 32px;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: var(--pink);
  opacity: 0.12;
}

/* ─── HOURS & LOCATION ─── */
#location {
  background: linear-gradient(160deg, #FFF8F9 0%, #FEEFF0 100%);
  padding: 100px 48px;
  position: relative;
}
#location::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--white), transparent);
  pointer-events: none;
}
#location::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}
.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.hours-table {
  margin-top: 36px;
  width: 100%;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.hours-day { color: var(--black); font-weight: 500; }
.hours-time { color: var(--pink); font-size: 15px; font-weight: 500; }
.hours-closed { color: #bbb; font-style: italic; font-size: 13px; }

.contact-info {
  margin-top: 40px;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 14px; height: 14px; stroke: var(--pink); fill: none; stroke-width: 2; }
.contact-text { font-size: 14px; color: var(--gray); line-height: 1.6; }
.contact-text strong { color: var(--black); font-weight: 500; display: block; margin-bottom: 2px; }

/* ─── FOOTER ─── */
footer {
  background: var(--white);
  color: var(--black);
  padding: 80px 48px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 60px;
}

.footer-address h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--black);
  margin-bottom: 16px;
}
.footer-address p {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
}

.footer-heart-wrap {
  display: flex;
  justify-content: center;
}
.footer-heart {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-heart svg.heart-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.footer-heart-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  margin-top: -20px;
}
.footer-heart-text .heart-name {
  font-family: 'Amatic SC', cursive;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 3px;
  display: block;
  line-height: 1;
}
.footer-heart-text .heart-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 2px;
  display: block;
  margin-top: 5px;
  opacity: 0.9;
}

.footer-hours {
  text-align: right;
}
.footer-hours h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--black);
  margin-bottom: 16px;
}
.footer-hours p {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
}

.footer-bottom {
  border-top: 1px solid #f0e0e4;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.footer-copy {
  font-size: 13px;
  color: #6b6b6b;
}
.footer-follow {
  text-align: center;
}
.footer-follow p {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 10px;
  font-family: 'Amatic SC', cursive;
  font-size: 16px;
}
.footer-follow a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-follow svg {
  width: 26px; height: 26px;
  fill: var(--pink);
  transition: opacity 0.3s;
}
.footer-follow a:hover svg { opacity: 0.7; }
.footer-legal {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
}
.footer-legal a {
  font-size: 13px;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--pink); }

/* ─── RESERVATION FORM ─── */
.reservation-card {
  background: var(--white);
  padding: 40px;
  border-top: 3px solid var(--pink);
  border-radius: 16px;
}
.reservation-title {
  font-family: 'Amatic SC', cursive;
  font-size: 32px;
  margin-bottom: 8px;
}
.reservation-subtitle {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}
.form-input {
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  width: 100%;
  background: white;
}
.form-textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  resize: none;
  margin-bottom: 16px;
}
.form-submit {
  width: 100%;
  justify-content: center;
}
.reservation-success {
  display: none;
  position: relative;
  background: #f0faf4;
  border: 1px solid #5a9e6f;
  padding: 20px 48px 20px 20px;
  margin-top: 16px;
  text-align: center;
}
.reservation-success p {
  color: #3d7a54;
  font-size: 14px;
}
.reservation-success-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 18px;
  line-height: 1;
  color: #3d7a54;
  cursor: pointer;
  padding: 0;
}

/* ─── MOBILE MENU ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Amatic SC', cursive;
  font-size: 40px;
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--pink); }
.mobile-nav .btn-book {
  font-size: 18px;
  padding: 8px 20px 6px;
}
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--black);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  header {
    padding: 0 20px;
    grid-template-columns: 1fr auto 1fr;
  }
  .nav-left { display: none; }
  .header-right .btn-book { display: none; }
  .hamburger { display: flex; }
  .header-right { justify-content: flex-end; }

  .hero-headline { font-size: 46px; }
  #hero { padding: 136px 24px 60px; }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-row: auto; }

  #about {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 48px;
  }
  .about-image-stack { height: 360px; }

  .menu-grid { grid-template-columns: 1fr 1fr; }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; gap: 48px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  section { padding: 60px 24px; }
  #about, #menu, #location, #features, #testimonials { padding: 60px 24px; }
  .hero-headline { font-size: 36px; }
  .section-title { font-size: 38px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .features-inner { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 6px;
    margin-top: 24px;
  }
  .gallery-item { height: 160px; }
  .gallery-item:first-child { grid-row: auto; grid-column: 1 / 3; height: 200px; }

  #features { padding: 0 24px; }
  #features::before { height: 40px; top: -40px; }

  footer { padding: 60px 24px 24px; }
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-hours { text-align: center; }
  .footer-heart { width: 160px; height: 160px; }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .footer-follow { order: -1; }
  .footer-legal { justify-content: center; }

  .menu-tabs { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .menu-tab { flex: 1 1 calc(33% - 8px); text-align: center; max-width: 130px; }
  .menu-tab:nth-child(3) { order: 4; flex: 0 0 auto; }
  .menu-tab:nth-child(4) { order: 3; }

  .form-row-2,
  .form-row-3 { grid-template-columns: 1fr !important; }
}
