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

:root {
  --bg-dark: #242830;
  --bg-dark-rgb: 36, 40, 48;
  --bg-darker: #1a1d23;
  --bg-cream: #edd3c9;
  --bg-cream-light: #f5e8e3;
  --bg-cream-rgb: 237, 211, 201;
  --accent-coral: #e75b3b;
  --accent-coral-hover: #cf482a;
  --text-light: #f5f6f8;
  --text-muted: #a0a5b0;
  --text-dark: #242830;
  --text-dark-muted: #5e626a;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-dark: rgba(36, 40, 48, 0.15);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

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

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

.section {
  padding: 100px 0;
  position: relative;
}

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

.section-darker {
  background-color: var(--bg-darker);
}

/* Background Watermark/Decor */
.watermark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 15vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  z-index: 1;
  user-select: none;
  white-space: nowrap;
}

.watermark-dark {
  color: rgba(36, 40, 48, 0.035);
}

.watermark-left {
  left: -5%;
  top: 10%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left center;
}

.watermark-right {
  right: -5%;
  top: 20%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(36, 40, 48, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent-coral);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--accent-coral);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--accent-coral);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--accent-coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 91, 59, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
  transform: translateY(-2px);
  border-color: var(--text-light);
}

.btn-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.btn-dark:hover {
  background-color: var(--bg-darker);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.btn-outline-dark:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 5;
}

.hero-content {
  max-width: 540px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-coral);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-content h1 span {
  font-style: italic;
  font-weight: 400;
}

.hero-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: var(--transition);
}

.hero-image-container:hover img {
  transform: scale(1.1);
}

.hero-accent-shape {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 250px;
  height: 250px;
  background-color: var(--accent-coral);
  border-radius: 50%;
  z-index: 2;
  opacity: 0.85;
}

.hero-decorative-text {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 180px;
  color: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  right: 10%;
  top: 20%;
  pointer-events: none;
  z-index: 1;
}

/* Features Ticker / Partners */
.partner-ticker {
  background-color: rgba(26, 29, 35, 0.8);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 30px 0;
  position: relative;
  z-index: 10;
}

.partner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-light);
  opacity: 0.8;
}

.partner-item i {
  color: var(--accent-coral);
  font-size: 20px;
}

/* About / Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.story-image-area {
  position: relative;
}

.story-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  max-width: 85%;
}

.story-img-secondary {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 50%;
  border-radius: var(--radius-md);
  border: 8px solid var(--bg-cream);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.story-content {
  padding-left: 20px;
}

.label-sub {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-coral);
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}

.story-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.story-content p {
  font-size: 16px;
  color: var(--text-dark-muted);
  margin-bottom: 20px;
}

.signature {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.signature-img {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: var(--accent-coral);
}

/* Stats Counter Section */
.stats-section {
  margin-top: -50px;
  position: relative;
  z-index: 12;
}

.stats-card {
  background-color: var(--bg-darker);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-box:not(:last-child) {
  border-right: 1px solid var(--border-light);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--accent-coral);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Unique Dining / Highlights */
.highlights-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.highlights-header h2 {
  font-size: 42px;
  margin-top: 8px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.highlight-card {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-coral);
}

.highlight-img-container {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 4px solid var(--accent-coral);
  box-shadow: 0 10px 20px rgba(231, 91, 59, 0.2);
  transition: var(--transition);
}

.highlight-card:hover .highlight-img-container {
  transform: scale(1.05);
}

.highlight-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.highlight-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Experience Panel (Menu and Quote) */
.experience-panel {
  background-color: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--text-dark);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.exp-quote-box {
  background-color: #fcf6f4;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin:10px!important;
}

.quote-icon {
  font-size: 42px;
  color: var(--accent-coral);
  line-height: 1;
  margin-bottom: 20px;
}

.quote-text {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.quote-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
}

.author-info span {
  font-size: 12px;
  color: var(--text-dark-muted);
}

.stars {
  color: #ffb400;
  font-size: 14px;
}

.quote-img {
  margin-top: 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 130px;
}

.quote-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-menu-box {
  padding-left: 20px;
}

.exp-menu-box h3 {
  font-size: 32px;
  margin-bottom: 30px;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px dashed var(--border-dark);
  padding-bottom: 12px;
}

.menu-item-info {
  flex-grow: 1;
}

.menu-item-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.menu-item-price {
  color: var(--accent-coral);
  font-weight: 700;
}

.menu-item-desc {
  font-size: 13px;
  color: var(--text-dark-muted);
}

/* Chef / Advantages Section */
.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.chef-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.chef-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.chef-image-area {
  position: relative;
}

.chef-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  background: rgba(36, 40, 48, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.floating-badge:hover {
  transform: scale(1.05);
  background: rgba(36, 40, 48, 0.95);
}

.floating-badge i {
  color: var(--accent-coral);
  font-size: 18px;
}

.badge-1 {
  top: 10%;
  left: -30px;
}

.badge-2 {
  bottom: 25%;
  left: -20px;
}

.badge-3 {
  bottom: 10%;
  right: -10px;
}

/* Booking Section */
.booking-section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-cream-light);
  color: var(--text-dark);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.booking-form-wrapper {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(36, 40, 48, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
  background-color: #fbfbfb;
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-coral);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(231, 91, 59, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.booking-info h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.booking-info p {
  font-size: 16px;
  color: var(--text-dark-muted);
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-item i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(231, 91, 59, 0.1);
  color: var(--accent-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-detail-item p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 15px;
}

/* Gallery & Blog */
.gallery-section h2 {
  font-size: 42px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gallery-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-coral);
  background-color: rgba(255, 255, 255, 0.04);
}

.gallery-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-card:hover .gallery-card-img img {
  transform: scale(1.08);
}

.gallery-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--accent-coral);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.gallery-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-card-body h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.gallery-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.gallery-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.gallery-card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
}

.gallery-card-price .old {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-left: 6px;
}

.gallery-card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gallery-card-link:hover {
  gap: 10px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--bg-cream);
  color: var(--text-dark);
  z-index: 10000;
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(150%);
  opacity: 0;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 14px;
  max-width: 750px;
  font-weight: 400;
}

.cookie-inner p a {
  color: var(--accent-coral);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

/* Footer */
.footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 30px;
  position: relative;
  z-index: 5;
}

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

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-light);
}

.footer-social a:hover {
  background-color: var(--accent-coral);
  border-color: var(--accent-coral);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--text-light);
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-coral);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-col ul a:hover {
  color: var(--accent-coral);
  padding-left: 4px;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.footer-gallery-img {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.footer-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.footer-gallery-img:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--accent-coral);
}

/* Page Header (Subpages) */
.page-header {
  padding: 160px 0 80px;
  background-color: var(--bg-darker);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  list-style: none;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent-coral);
}

.breadcrumb-separator {
  color: var(--border-light);
}

/* Legal Content Layout */
.legal-content {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 28px;
  margin: 32px 0 16px;
}

.legal-content h3 {
  font-size: 20px;
  margin: 24px 0 12px;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 15px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* Thank You Card */
.thank-you-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: var(--bg-dark);
}

.thank-you-card {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.thank-you-card i {
  font-size: 64px;
  color: var(--accent-coral);
  margin-bottom: 24px;
  display: block;
}

.thank-you-card h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.thank-you-card p {
  font-size: 16px;
  color: var(--text-dark-muted);
  margin-bottom: 32px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .section {
    padding: 80px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    margin-top: 20px;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .story-image-area {
    display: flex;
    justify-content: center;
  }
  
  .story-img-secondary {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stat-box:nth-child(2n) {
    border-right: none;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .experience-panel {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  
  .exp-menu-box {
    padding-left: 0;
  }
  
  .chef-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .badge-1 {
    left: 10px;
  }
  
  .badge-2 {
    left: 20px;
  }
  
  .badge-3 {
    right: 10px;
  }
  
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-darker);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-content h1 {
    font-size: 38px;
  }
  
  .hero-image-container {
    width: 300px;
    height: 300px;
  }
  
  .hero-accent-shape {
    width: 180px;
    height: 180px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-box {
    border-right: none !important;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
  }
  
  .stat-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}
