/* ==========================================================
   Croatiopia – Modern Entertainment Bistro
   Main Stylesheet
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --graphite:    #2A2A2A;
  --graphite-mid:#3E3E3E;
  --burgundy:    #7B2033;
  --burgundy-lt: #9A2840;
  --white:       #FFFFFF;
  --off-white:   #F7F5F3;
  --light-gray:  #EFEFEF;
  --mid-gray:    #888888;
  --text-dark:   #1A1A1A;
  --text-body:   #4A4A4A;
  --border:      #E0DCDA;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.18);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.3s ease;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--burgundy); }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--gray { background: var(--off-white); }
.section--dark { background: var(--graphite); color: var(--white); }

/* --- TYPOGRAPHY ------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--text-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

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

.lead {
  font-size: 1.125rem;
  color: var(--mid-gray);
  line-height: 1.8;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--mid-gray); max-width: 560px; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* --- BUTTONS -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-lt);
  border-color: var(--burgundy-lt);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-light {
  background: var(--white);
  color: var(--graphite);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--off-white);
  color: var(--graphite);
  border-color: var(--off-white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

/* --- HEADER / NAV --------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--graphite);
  flex-shrink: 0;
}
.logo span { color: var(--burgundy); }
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--burgundy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--graphite);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--burgundy);
  transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--burgundy); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--graphite);
  transition: var(--transition);
  border-radius: 2px;
}

/* --- HERO ----------------------------------------------- */
.hero {
  margin-top: 72px;
  position: relative;
  height: 88vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,26,26,0.72) 0%,
    rgba(26,26,26,0.35) 60%,
    rgba(26,26,26,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123,32,51,0.9);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* --- CARDS ---------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body { padding: 24px; }
.card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.card-text { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.65; }
.card-price {
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--burgundy);
}

/* --- GRID LAYOUTS --------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- FEATURES ------------------------------------------- */
.feature-icon {
  width: 56px; height: 56px;
  background: var(--off-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.feature-icon svg { color: var(--burgundy); }
.feature-item:hover .feature-icon { background: var(--burgundy); }
.feature-item:hover .feature-icon svg { color: var(--white); }

/* --- SPLIT SECTION --------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.split-content { padding: 16px 0; }
.split-content h2 { margin-bottom: 20px; }
.split-content p { margin-bottom: 16px; color: var(--text-body); }
.split-content .btn { margin-top: 12px; }

/* --- EVENTS --------------------------------------------- */
.event-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.event-date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 12px 8px;
}
.event-date .day { font-size: 1.75rem; font-weight: 700; line-height: 1; }
.event-date .month { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.event-info h4 { margin-bottom: 6px; font-family: var(--font-head); }
.event-info p { font-size: 0.88rem; color: var(--mid-gray); }
.event-info .event-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: rgba(123,32,51,0.08);
  padding: 3px 10px;
  border-radius: 20px;
}

/* --- MENU PAGE ------------------------------------------ */
.menu-category { margin-bottom: 60px; }
.menu-category-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--burgundy);
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info h4 { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.menu-item-info p { font-size: 0.875rem; color: var(--mid-gray); }
.menu-item-price {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--burgundy);
  white-space: nowrap;
}
.menu-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}

/* --- RESERVATION FORM ----------------------------------- */
.reservation-section { background: var(--graphite); }
.reservation-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 16px;
  align-items: end;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--burgundy); }
.form-group select option { background: var(--graphite); color: var(--white); }

/* Contact form on white bg */
.form-light .form-group label { color: var(--text-body); }
.form-light .form-group input,
.form-light .form-group select,
.form-light .form-group textarea {
  background: var(--white);
  border-color: var(--border);
  color: var(--text-dark);
}
.form-light .form-group input:focus,
.form-light .form-group select:focus,
.form-light .form-group textarea:focus { border-color: var(--burgundy); }

/* --- TESTIMONIALS --------------------------------------- */
.testimonial {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--burgundy);
}
.testimonial-text {
  font-style: italic;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.author-info { font-size: 0.78rem; color: var(--mid-gray); }
.stars { color: #D4A017; font-size: 0.85rem; margin-bottom: 4px; }

/* --- GALLERY ------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall img { height: 492px; }

/* --- STATS --------------------------------------------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* --- INFO BOXES ---------------------------------------- */
.info-box {
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.info-box h4 { margin-bottom: 12px; font-size: 1rem; }
.info-box p,
.info-box li { font-size: 0.9rem; color: var(--text-body); }
.info-box li { padding: 4px 0; padding-left: 16px; position: relative; }
.info-box li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 5px; height: 5px;
  background: var(--burgundy);
  border-radius: 50%;
}

/* --- PAGE HERO (inner pages) --------------------------- */
.page-hero {
  margin-top: 72px;
  background: var(--graphite);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(123,32,51,0.15));
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* --- FOOTER -------------------------------------------- */
.site-footer {
  background: var(--graphite);
  color: rgba(255,255,255,0.75);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--burgundy); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

.age-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123,32,51,0.2);
  border: 1px solid rgba(123,32,51,0.4);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 4px;
  margin-top: 16px;
}

/* --- MOBILE NAV ---------------------------------------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 990;
  background: var(--white);
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.25rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--graphite);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--burgundy); }
.mobile-close {
  position: fixed;
  top: 20px; right: 20px;
  z-index: 991;
  width: 44px; height: 44px;
  background: var(--off-white);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
}
.mobile-close.open { display: flex; }

/* --- POLICY PAGES --------------------------------------- */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
.policy-content h1 { margin-bottom: 8px; }
.policy-content .policy-meta {
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.policy-content h2 {
  font-size: 1.35rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--text-dark);
}
.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.policy-content p { margin-bottom: 16px; color: var(--text-body); font-size: 0.95rem; }
.policy-content ul,
.policy-content ol {
  margin: 14px 0 20px 20px;
  color: var(--text-body);
  font-size: 0.95rem;
}
.policy-content li { margin-bottom: 8px; }
.policy-content ul li { list-style: disc; }
.policy-content ol li { list-style: decimal; }
.policy-content a { color: var(--burgundy); text-decoration: underline; }
.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}
.policy-content th,
.policy-content td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}
.policy-content th {
  background: var(--off-white);
  font-weight: 600;
  color: var(--text-dark);
}

/* --- CASINO SECTION ------------------------------------ */
.casino-game-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.casino-game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.casino-game-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.casino-game-body { padding: 20px; }
.casino-game-body h4 { font-family: var(--font-head); margin-bottom: 6px; }
.casino-game-body p { font-size: 0.85rem; color: var(--mid-gray); }
.casino-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(123,32,51,0.1);
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 20px;
  margin-top: 12px;
  letter-spacing: 0.06em;
}

/* --- CONTACT PAGE -------------------------------------- */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-grid-2 > * { min-width: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-grid > * { min-width: 0; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(123,32,51,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* --- THANK YOU ----------------------------------------- */
.thankyou-wrap {
  min-height: calc(100vh - 72px);
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  padding: 64px 24px;
}
.thankyou-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 64px 56px;
  max-width: 640px;
  width: 100%;
  text-align: center;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(123,32,51,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--burgundy);
}
.thankyou-card h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.thankyou-card p {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 14px;
}
.thankyou-divider {
  width: 48px;
  height: 3px;
  background: var(--burgundy);
  margin: 28px auto;
  border-radius: 2px;
}
.thankyou-details {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  margin: 28px 0;
}
.thankyou-details h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.thankyou-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.thankyou-detail-row:last-child { border-bottom: none; }
.thankyou-detail-row svg { color: var(--burgundy); flex-shrink: 0; }
.thankyou-note {
  font-size: 0.88rem;
  color: var(--mid-gray);
}
.thankyou-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.thankyou-countdown {
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--mid-gray);
}

/* --- COOKIE BANNER ------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: var(--graphite);
  border-top: 2px solid var(--burgundy);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-size: 0.875rem; color: rgba(255,255,255,0.8); max-width: 680px; line-height: 1.6; }
.cookie-text a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  padding: 10px 24px;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--burgundy-lt); }
.cookie-decline {
  padding: 10px 20px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 0.875rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* --- AGE POPUP ----------------------------------------- */
.age-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.age-popup-header {
  background: var(--graphite);
  padding: 32px 32px 28px;
}
.age-popup-number {
  width: 80px; height: 80px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.age-popup-header h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.age-popup-header p { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.age-popup-body { padding: 32px; }
.age-popup-body p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.7;
}
.age-buttons { display: flex; flex-direction: column; gap: 12px; }
.age-btn-yes {
  width: 100%;
  padding: 14px;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition);
}
.age-btn-yes:hover { background: var(--burgundy-lt); }
.age-btn-no {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--mid-gray);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.age-btn-no:hover { background: var(--off-white); }
.age-disclaimer {
  font-size: 0.72rem;
  color: var(--mid-gray);
  margin-top: 16px;
}

/* --- SCROLL TOP ---------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 500;
  width: 44px; height: 44px;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
  font-size: 1.1rem;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }

/* --- DIVIDER ------------------------------------------- */
.divider { height: 1px; background: var(--border); margin: 0; }

/* --- HELPERS ------------------------------------------- */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ==================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img { height: 340px; }
  .reservation-form { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall img { height: 240px; }
}

@media (max-width: 768px) {
  .main-nav,
  .header-cta .btn { display: none; }
  .burger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { height: 70vh; }
  .reservation-form { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px; }
  .cookie-actions { width: 100%; }
  .cookie-accept,
  .cookie-decline { flex: 1; text-align: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .menu-filters { gap: 8px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .thankyou-card { padding: 40px 28px; }
}
