:root {
  --background: 40 20% 98%;
  --foreground: 30 10% 15%;
  --primary: 30 35% 45%;
  --primary-foreground: 40 30% 97%;
  --accent: 38 50% 55%;
  --muted-foreground: 30 15% 45%;
  --border: 35 20% 88%;
  --cream: 40 30% 96%;
  --taupe: 30 25% 60%;
  --espresso: 25 30% 20%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  line-height: 1.6;
  overflow-x: hidden;
}

/* Intro overlay */

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: hsl(var(--espresso));
  display: grid;
  place-items: center;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.intro-overlay img {
  width: 220px;
  height: 220px;
  animation: intro-pop 1.2s ease forwards;
}

.intro-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes intro-pop {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Base */

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-display {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.text-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}

.text-subheading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.text-body {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  margin: 1.25rem 0;
}

.text-small {
  font-size: 0.85rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-light {
  color: rgba(255, 255, 255, 0.85);
}

.divider {
  width: 96px;
  height: 3px;
  background: hsl(var(--primary));
  margin: 1.5rem auto 2rem;
  border-radius: 2px;
}

.divider-left {
  margin-left: 0;
  margin-right: auto;
}

.divider-light {
  background: rgba(255, 255, 255, 0.4);
}

/* Section spacing — larger like Café du Port */

.section-padding {
  padding: 5rem 6vw;
}

.section-lg {
  padding: 6rem 6vw;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1100px;
  margin: 0 auto;
}

.bg-cream {
  background: hsl(var(--cream));
}

.text-taupe {
  color: hsl(var(--taupe));
}

/* Section header centered */

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

/* Split sections — side-by-side like Café du Port */

.split-section {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.split-img {
  position: relative;
  border-radius: 4px;
  overflow: visible;
}

.split-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
}

.split-text {
  display: flex;
  flex-direction: column;
}

.split-text .text-subheading,
.split-text .text-heading {
  text-align: left;
}

/* Decorative accents on images */

.img-accent {
  position: absolute;
  width: 96px;
  height: 96px;
  background: hsla(var(--primary), 0.1);
  border-radius: 2px;
  z-index: -1;
}

.img-accent-br {
  bottom: -16px;
  right: -16px;
}

.img-accent-tl {
  top: -16px;
  left: -16px;
}

/* Editorial pattern */

.container-narrow > .text-subheading,
.container-narrow > .text-heading {
  text-align: center;
}

.feature-card {
  text-align: center;
}

.reviews-cta {
  text-align: center;
}

/* Buttons */

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-icon {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  flex-shrink: 0;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background: hsl(var(--espresso));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
}

.btn-outline:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

/* Header — dynamic transparent → scrolled */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 hsla(var(--border), 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 6vw;
  gap: 1rem;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-white {
  display: block;
}

.logo-brown {
  display: none;
}

.site-header.scrolled .logo-white,
.site-header.menu-open .logo-white {
  display: none;
}

.site-header.scrolled .logo-brown,
.site-header.menu-open .logo-brown {
  display: block;
}

.nav-desktop {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header:not(.scrolled):not(.menu-open) .nav-desktop a {
  color: rgba(255, 255, 255, 0.85);
}

.site-header.scrolled .nav-desktop a,
.site-header.menu-open .nav-desktop a {
  color: rgba(0, 0, 0, 0.7);
}

.nav-desktop a:hover {
  color: hsl(var(--primary));
}

.header-right {
  display: none;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.7rem;
}

.site-header:not(.scrolled):not(.menu-open) .header-cta {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
}

.site-header:not(.scrolled):not(.menu-open) .header-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  color: hsl(var(--espresso));
}

/* Language selector */

.lang-selector {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  padding: 0.3rem 0.5rem;
  font-size: 0.7rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.site-header:not(.scrolled):not(.menu-open) .lang-btn {
  color: rgba(255, 255, 255, 0.7);
}

.site-header.scrolled .lang-btn,
.site-header.menu-open .lang-btn {
  color: hsl(var(--muted-foreground));
}

.lang-btn.active {
  border-color: hsl(var(--primary));
  font-weight: 700;
}

.site-header:not(.scrolled):not(.menu-open) .lang-btn.active {
  color: white;
  border-color: rgba(255, 255, 255, 0.8);
}

.site-header.scrolled .lang-btn.active,
.site-header.menu-open .lang-btn.active {
  color: hsl(var(--primary));
}

.lang-btn:hover {
  color: hsl(var(--primary));
}

/* Hamburger menu (mobile) */

.menu-toggle {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: hsl(var(--foreground));
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header:not(.scrolled):not(.menu-open) .menu-toggle span {
  background: white;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */

.nav-mobile {
  display: none;
  background: white;
  border-top: 1px solid hsla(var(--border), 0.7);
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 6vw 2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}

.nav-mobile.open {
  display: block;
}

.lang-selector-mobile {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid hsla(var(--border), 0.5);
}

.lang-selector-mobile .lang-btn {
  color: hsl(var(--muted-foreground));
}

.lang-selector-mobile .lang-btn.active {
  color: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

/* Hero section */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 6vw 6rem;
  color: white;
}

@media (max-width: 899px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 5rem 6vw 4rem;
  }

  .hero-media img {
    object-position: 35% center;
  }

  .hero-logo-badge {
    width: 100px;
    height: 100px;
    margin-bottom: 0.25rem;
  }

  .hero-content {
    gap: 0.5rem;
  }

  .hero-content .text-display {
    font-size: 2.5rem;
  }

  .hero-content .text-body {
    font-size: 0.9rem;
    margin: 0.5rem 0;
  }

  .hero-actions {
    margin-top: 0.5rem;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(1.5px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
  gap: 1rem;
}

.hero-logo-badge {
  width: 140px;
  height: 140px;
  margin-bottom: 0.5rem;
}

.hero-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.hero-btn {
  text-align: center;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator svg {
  display: block;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.7);
  animation: arrow-bounce 1.8s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* Section image (legacy — kept for compatibility) */

.terrasse-block {
  margin: 4rem 0 3rem;
  padding-top: 3rem;
  border-top: 1px solid hsla(var(--border), 0.6);
}

.section-img {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto;
  border-radius: 4px;
  overflow: hidden;
}

.section-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Features grid (with images) */

.features-grid {
  display: grid;
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid hsla(var(--border), 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 1.5rem;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.feature-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: hsla(var(--espresso), 0.82);
  color: hsl(var(--primary-foreground));
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.32rem 0.55rem;
  border-radius: 2px;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-img img {
  transform: scale(1.05);
}

.features-grid h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  margin: 1.25rem 0 0.5rem;
  padding: 0 1.25rem;
}

.features-grid p {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  padding: 0 1.25rem;
}

/* Menu teaser */

.menu-teaser-desc {
  font-style: italic;
  margin-bottom: 2rem;
}

/* Slideshow */

.slideshow {
  position: relative;
  overflow: hidden;
}

.slideshow-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  opacity: 0;
  transition: opacity 1s ease;
  border-radius: 4px;
}

.slideshow-img.active {
  position: relative;
  opacity: 1;
}

.slideshow-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.slideshow-dot.active {
  background: white;
}

/* Reviews */

.reviews-section {
  background: hsl(var(--background));
}

.reviews-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.review-card {
  background: white;
  border: 1px solid hsla(var(--border), 0.6);
  border-radius: 4px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.review-stars {
  color: #d4a03c;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.review-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
}

.review-name {
  font-weight: 600;
}

.review-date,
.review-sep {
  color: hsl(var(--muted-foreground));
}

.review-source {
  color: hsl(var(--taupe));
  font-size: 0.75rem;
  font-style: italic;
}

.reviews-cta {
  margin-top: 2.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: hsl(var(--muted-foreground));
}

.features-nav,
.reviews-nav {
  display: none;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.features-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid hsla(var(--border), 0.9);
  border-radius: 999px;
  background: white;
  color: hsl(var(--foreground));
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.features-arrow:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.reviews-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid hsla(var(--border), 0.9);
  border-radius: 999px;
  background: white;
  color: hsl(var(--foreground));
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.reviews-arrow:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

/* Contact — Café du Port style: heading + map left / info right */

.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-map {
  border-radius: 4px;
  overflow: hidden;
  min-height: 380px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 4px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: hsl(var(--taupe));
  margin-top: 2px;
}

.contact-info-icon svg {
  width: 100%;
  height: 100%;
}

.contact-info-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin: 0;
}

.contact-info-item .highlight {
  color: hsl(var(--primary));
  font-weight: 600;
}

.contact-info-item .muted {
  color: hsl(var(--muted-foreground));
}

.phone-link {
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.95rem;
}

.phone-link:hover {
  color: hsl(var(--accent));
}

/* Footer */

.site-footer {
  background: hsl(var(--espresso));
  color: hsl(var(--primary-foreground));
  padding: 3rem 6vw 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 70px;
  height: 70px;
}

.footer-brand h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-address {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.15rem;
}

.footer-address a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-address a:hover {
  color: white;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  align-self: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-links a {
  color: rgba(255, 255, 255, 0.75);
}

.social-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.footer-legal-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.3);
}

.photo-credit {
  font-size: 0.7rem;
  font-style: italic;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  margin-top: 0.75rem;
}

.photo-credit-overlay {
  position: absolute;
  bottom: 0.5rem;
  right: 0.75rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-credit {
  color: rgba(255, 255, 255, 0.75);
}

.footer-credit-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.footer-credit-link:hover {
  color: white;
}

/* Menu / Restaurant page */

.menu-page-hero {
  background: hsl(var(--espresso));
  color: white;
  text-align: center;
  padding: 10rem 6vw 4rem;
}

/* Menu page items */

.menu-categories {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 6vw 4rem;
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.menu-subcategory {
  margin: 1.5rem 0;
}

.menu-subcategory-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--taupe));
  margin-bottom: 0.75rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid hsla(var(--border), 0.5);
  gap: 1rem;
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-weight: 500;
  font-size: 0.95rem;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.15rem;
}

.menu-item-price {
  font-weight: 600;
  color: hsl(var(--primary));
  white-space: nowrap;
  font-size: 0.9rem;
}

.menu-note {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.6;
}

.menu-suggestion {
  background: hsla(var(--primary), 0.08);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Private events page */

.private-services {
  display: grid;
  gap: 2rem;
  margin-top: 1rem;
}

@media (min-width: 900px) {
  .private-services {
    grid-template-columns: repeat(3, 1fr);
  }
}

.private-service-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.private-service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: hsl(var(--primary));
}

.private-service-icon svg {
  width: 100%;
  height: 100%;
}

.private-service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.private-service-card p {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* Takeaway button */

.btn-takeaway {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin-top: 0.75rem;
  padding: 0.7rem 1.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-takeaway:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-takeaway svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* Legal page */

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 6vw 4rem;
}

.legal-page h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
}

.legal-page p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}

/* ====== Responsive ====== */

@media (min-width: 900px) {
  .logo {
    width: 80px;
    height: 80px;
  }

  .menu-toggle {
    display: none;
  }

  .header-right {
    display: flex;
  }

  .split-section {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .split-reverse {
    direction: rtl;
  }

  .split-reverse > * {
    direction: ltr;
  }

  .split-img img {
    height: 420px;
  }

  .section-divider {
    height: 350px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .lang-selector-mobile {
    display: none !important;
  }
}

@media (max-width: 899px) {
  .nav-desktop {
    display: none;
  }

  .section-lg {
    padding: 3.5rem 5vw;
  }

  .split-section {
    gap: 2rem;
  }

  .split-text {
    order: 1;
  }

  .split-img {
    order: 2;
  }

  .split-img img {
    height: 240px;
  }

  .text-heading {
    font-size: 1.6rem;
    margin: 0.3rem 0 0.75rem;
  }

  .text-body {
    font-size: 0.95rem;
    margin: 0.75rem 0;
  }

  .divider {
    margin: 1rem auto 1.25rem;
  }

  .divider-left {
    margin-left: 0;
  }

  .section-header-center {
    margin-bottom: 2rem;
  }

  .img-accent {
    display: none;
  }

  .features-grid .feature-card {
    display: none;
  }

  .features-grid .feature-card.active {
    display: block;
  }

  .features-grid .feature-card.slide-left {
    animation: featureSlideInLeft 0.4s ease both;
  }

  .features-grid .feature-card.slide-right {
    animation: featureSlideInRight 0.4s ease both;
  }

  @keyframes featureSlideInLeft {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  @keyframes featureSlideInRight {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .features-nav {
    display: flex;
  }

  .reviews-grid {
    margin-top: 1rem;
  }

  .reviews-grid {
    position: relative;
    overflow: hidden;
    min-height: 220px;
  }

  .reviews-grid .review-card {
    display: none;
    animation: reviewSlideIn 0.4s ease both;
  }

  .reviews-grid .review-card.active {
    display: block;
  }

  .reviews-grid .review-card.slide-left {
    animation: reviewSlideInLeft 0.4s ease both;
  }

  .reviews-grid .review-card.slide-right {
    animation: reviewSlideInRight 0.4s ease both;
  }

  @keyframes reviewSlideInLeft {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  @keyframes reviewSlideInRight {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .reviews-nav {
    display: flex;
  }

  .hero-actions-stacked {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    min-width: 220px;
  }

  .footer-inner {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 65px;
    height: 65px;
  }

  .footer-brand h3 {
    font-size: 1.1rem;
  }

  .footer-brand p {
    font-size: 0.7rem;
  }

  .footer-address {
    font-size: 0.65rem;
    margin-top: 0.3rem;
  }

  .footer-right {
    align-items: flex-end;
    justify-content: center;
    min-height: 100%;
  }

  .social-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    font-size: 0.7rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }

  .footer-legal-row {
    gap: 0.4rem;
  }
}
