:root {
  --burgundy:      #7a1f3a;
  --burgundy-dark: #5a1429;
  --amber:         #e8830a;
  --amber-hover:   #c97008;
  --page-bg:       #c8d8db;
  --header-bg:     #f9f9f9; // #b8cdd0;
  --text-dark:     #1a1a1a;
  --text-muted:    #666;
  --logo-size:     240px;
  --logo-overlap:  80px;
}

* { box-sizing: border-box; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--page-bg);
  color: var(--text-dark);
  margin: 0; padding: 0;
}

/* ── POC BANNER ── */
.poc-banner {
  background: #1a1a1a;
  color: #f0c040;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  font-family: monospace;
}

/* ── HEADER ── */
header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 72px;
  overflow: visible;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  z-index: 10;
}

.logo-img {
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: calc(-1 * var(--logo-overlap));
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
  transition: transform 0.2s;
  flex-shrink: 0;
}

.logo-img:hover { transform: scale(1.04); }

.logo-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.6rem; color: var(--burgundy); font-weight: 700; display: block; }
.logo-sub  { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.05em; }

/* ── DESKTOP NAV ── */
nav.desktop-nav { display: flex; align-items: center; gap: 2px; }

nav.desktop-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

nav.desktop-nav a:hover,
nav.desktop-nav a.active { color: var(--burgundy); background: rgba(122,31,58,0.1); }

/* ── LANG TOGGLE ── */
.lang-toggle {
  display: flex;
  border: 1.5px solid var(--burgundy);
  border-radius: 20px;
  overflow: hidden;
  margin-left: 14px;
}

.lang-toggle button {
  background: none; border: none;
  padding: 4px 10px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  cursor: pointer; color: var(--burgundy);
  transition: background 0.2s, color 0.2s;
}

.lang-toggle button.active { background: var(--burgundy); color: white; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--burgundy); border-radius: 2px; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  background: var(--header-bg);
  border-top: 1px solid rgba(122,31,58,0.15);
  padding: 12px 24px 16px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; color: var(--text-dark); text-decoration: none;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 10px 0;
  border-bottom: 1px solid rgba(122,31,58,0.1);
}
.mobile-lang { display: flex; gap: 8px; margin-top: 12px; }
.mobile-lang button {
  background: none; border: 1.5px solid var(--burgundy);
  border-radius: 16px; padding: 4px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--burgundy); cursor: pointer;
}
.mobile-lang button.active { background: var(--burgundy); color: white; }

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(80,15,35,0.58); }
.hero-content { position: relative; z-index: 1; padding: 60px 20px 40px; }
.hero-location { color: rgba(255,255,255,0.85); font-size: 0.9rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 6vw, 4.2rem); font-style: italic; color: white; margin-bottom: 8px; text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 0.88rem; letter-spacing: 0.08em; margin-bottom: 32px; }

.btn-reservations {
  background: var(--amber); color: white; border: none;
  padding: 16px 44px; font-size: 1rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 4px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.btn-reservations:hover { background: var(--amber-hover); color: white; transform: translateY(-2px); }

/* ── FEED SECTION ── */
.section-bg-burgundy { background: var(--burgundy); padding: 48px 0 56px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: white; text-align: center; margin-bottom: 32px; font-style: italic; }
.section-title.dark { color: var(--burgundy); }

/* ── FEED CAROUSEL ── */
.feed-carousel-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.feed-carousel-track-outer {
  overflow: hidden;
  border-radius: 8px;
}

.feed-carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
  will-change: transform;
}

.feed-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  min-width: 0;
  cursor: pointer;
}

.feed-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.feed-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
div.feed-card-img { background-size: cover; background-position: center; height: 200px; }
.feed-card-body { padding: 16px; }
.feed-card-date { font-size: 0.72rem; color: var(--amber); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.feed-card-text { font-size: 0.88rem; color: var(--text-dark); line-height: 1.6; margin-bottom: 12px; }
.feed-card-link { color: var(--burgundy); font-size: 0.8rem; font-weight: 600; text-decoration: none; }
.feed-card-link:hover { color: var(--amber); }

/* ── CAROUSEL ARROWS ── */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  font-size: 1.2rem;
  color: var(--burgundy);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 10;
}
.carousel-arrow:hover { background: var(--burgundy); color: white; transform: translateY(-50%) scale(1.08); }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; }
.carousel-arrow:disabled:hover { background: white; color: var(--burgundy); transform: translateY(-50%); }
.carousel-arrow-prev { left: 4px; }
.carousel-arrow-next { right: 4px; }

/* ── CAROUSEL DOTS ── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.carousel-dot.active { background: white; transform: scale(1.3); }

/* ── MOBILE: 1 card ── */
@media (max-width: 700px) {
  .feed-carousel-wrap { padding: 0 48px; }
}

/* ── INNER PAGE HERO ── */
.page-hero {
  position: relative; height: 200px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 0 24px 0; text-align: center;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(80,15,35,0.6); }
.page-hero h1 { position: relative; font-family: 'Playfair Display', serif; font-style: italic; font-size: 2.2rem; color: white; margin: 0; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }

/* ── MENU PAGE ── */
.menu-page { max-width: 900px; margin: 48px auto; padding: 0 20px; text-align: center; }
.menu-note { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 32px; font-style: italic; }
.menu-img-wrap { background: white; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.15); overflow: hidden; display: inline-block; max-width: 100%; }
.menu-img-wrap img { max-width: 100%; height: auto; display: block; }
.menu-empty { padding: 60px 40px; color: var(--text-muted); font-style: italic; }

/* ── REVIEWS (Elfsight) ── */
.reviews-section { max-width: 1100px; margin: 48px auto; padding: 0 20px; }

/* ── TEAM ── */
.team-section { max-width: 1100px; margin: 48px auto; padding: 0 20px; }
.team-card { background: white; border-radius: 12px; box-shadow: 0 2px 16px rgba(0,0,0,0.1); overflow: hidden; display: flex; }
.team-photo { width: 480px;  object-fit: cover; margin-left: -20px; }
.team-photo-placeholder { width: 300px; min-height: 340px; flex-shrink: 0; background: var(--header-bg); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.team-info { padding: 36px; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--burgundy); margin-bottom: 4px; }
.team-role { color: var(--amber); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.team-bio { font-size: 0.9rem; line-height: 1.8; color: var(--text-dark); }
.madagascar-frame { overflow-y: scroll; max-height: 50vh; padding-right: 40px; } 

/* ── MAP ── */
.map-section { max-width: 1100px; margin: 48px auto; padding: 0 20px; }
.map-address { text-align: center; color: var(--text-muted); margin-bottom: 28px; font-size: 0.9rem; }
.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.map-wrap iframe { width: 100%; height: 480px; border: none; display: block; }

/* ── CONTACT ── */
.contact-section { max-width: 820px; margin: 48px auto; padding: 0 20px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 36px; }
.contact-info h3, .contact-form-wrap h3 { font-size: 0.95rem; font-weight: 600; color: var(--burgundy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; align-items: flex-start; }
.contact-icon { color: var(--amber); flex-shrink: 0; margin-top: 1px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px 14px; border: 1.5px solid #ccc; border-radius: 6px; font-family: 'Raleway', sans-serif; font-size: 0.88rem; margin-bottom: 12px; background: white; transition: border-color 0.2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--burgundy); }
.contact-form textarea { min-height: 100px; resize: vertical; }
.btn-submit { background: var(--burgundy); color: white; border: none; padding: 12px 28px; font-family: 'Raleway', sans-serif; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: background 0.2s; width: 100%; }
.btn-submit:hover { background: var(--burgundy-dark); }

/* ── RESERVATIONS ── */
.reservations-section { max-width: 800px; margin: 48px auto; padding: 0 20px; text-align: center; }
.mock-badge { display: inline-block; background: rgba(232,131,10,0.12); color: var(--amber); border: 1px solid var(--amber); border-radius: 20px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; padding: 3px 10px; }
.carbonara { 
	min-height: 640px;
	min-width: 360px;
	overflow: hidden; 
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.82);
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: white;
  border-radius: 12px;
  width: 90vw;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  animation: modalIn 0.2s ease;
}

/* Carbonara variant — iframe fills the box, no scroll */
.modal-box.modal-iframe {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 90vh;
}

.modal-box.modal-iframe .modal-close {
  background: var(--burgundy);
  color: white;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  top: 10px; right: 10px;
}

.modal-box.modal-iframe .modal-close:hover { background: var(--burgundy-dark); color: white; }

.modal-carbonara-iframe {
  flex: 1;
  width: 100%;
  border: none;
  display: block;
  border-radius: 0 0 12px 12px;
}

@keyframes modalIn { from { opacity:0; transform: scale(0.95); } to { opacity:1; transform: scale(1); } }

.modal-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none; font-size: 2rem; cursor: pointer;
  color: var(--text-muted); line-height: 1; z-index: 10;
  transition: color 0.15s;
}
.modal-close:hover { color: var(--burgundy); }

.modal-img { width: 100%; max-height: 720px; object-fit: cover; border-radius: 12px 12px 0 0; display: block; }
.modal-img-bg { width: 100%; height: 280px; background-size: cover; background-position: center; border-radius: 12px 12px 0 0; }

.modal-body { padding: 24px 28px 28px; }
.modal-date { font-size: 0.75rem; color: var(--amber); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.modal-text { font-size: 0.95rem; line-height: 1.75; color: var(--text-dark); white-space: pre-wrap; }
.modal-fb-link { display: inline-block; margin-top: 16px; color: var(--burgundy); font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.modal-fb-link:hover { color: var(--amber); }

/* ── A PROPOS ── */
.apropos-section {
  background: white;
  padding: 48px 20px;
}
.apropos-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  border: 1px solid #e0d8d0;
  border-radius: 4px;
  padding: 40px;
}
.apropos-text {
  flex: 0 0 320px;
  min-width: 0;
}
.apropos-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.apropos-sub {
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.apropos-sub::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--amber);
}
.apropos-text p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-dark);
}
.apropos-images { flex: 1; min-width: 0; }
.apropos-img-letterbox {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.apropos-img-placeholder {
  width: 100%;
  height: 260px;
  background: var(--page-bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .apropos-inner { flex-direction: column; }
  .apropos-text { flex: none; width: 100%; }
  .apropos-img-letterbox { height: 200px; }
}
@media (max-width: 480px) {
  .apropos-inner { flex-direction: column; }
  .apropos-text { flex: none; width: 100%; }
  .apropos-img-letterbox { height: 100px; max-width: 320px; }
}

/* ── PROSE PAGES (privacy, legal, bookings) ── */
.prose-section { max-width: 780px; margin: 48px auto; padding: 0 20px 60px; }
.prose-card {
  background: white;
  border-radius: 12px;
  padding: 40px 48px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-dark);
}
.prose-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--burgundy);
  margin: 28px 0 10px;
}
.prose-card h2:first-child { margin-top: 0; }
.prose-card p { margin: 0 0 14px; }
.prose-card a { color: var(--burgundy); }
.prose-card a:hover { color: var(--amber); }
@media (max-width: 640px) { .prose-card { padding: 24px 20px; } }
footer { background: var(--burgundy-dark); color: rgba(255,255,255,0.7); padding: 32px 24px; margin-top: 60px; text-align: center; font-size: 0.8rem; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; margin: 0 8px; }
footer a:hover { color: var(--amber); }
.footer-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.2); margin: 16px auto; }

.carbonara-iframe {
    display: block;
    width: 420px;
    margin: 0 auto;
    min-height: 1200px;
	overflow-y: scroll;
    overflow-x: hidden;
    transform: scale(0.75);
  	transform-origin: 0 0;
  	border: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) { nav.desktop-nav, .lang-toggle { display: none; } .hamburger { display: flex; } }
@media (max-width: 640px) {
  .team-card { flex-direction: column; }
  .team-photo, .team-photo-placeholder { width: 100%; min-height: 220px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  :root { --logo-size: 160px; --logo-overlap: 52px; }
  .carbonara-iframe { width: 320px; }
}