/* Hôtel Aguelmam — Thème Lumière Luxe */
:root {
  --gold: #B08D57;
  --gold-dark: #8B6D3F;
  --burgundy: #8B1E24;
  --burgundy-dark: #6B1520;
  --bg: #F8F6F2;
  --bg-alt: #FDFCF9;
  --card: #FFFFFF;
  --card-alt: #FAF8F5;
  --border: #E8E4DC;
  --border-light: #F0EDE6;
  --fg: #222222;
  --muted: #666666;
  --muted-light: #999999;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.font-display { font-family: 'Playfair Display', serif; font-weight: 500; letter-spacing: -0.01em; }
.gold-text { color: var(--gold); }
.gold-divider {
  display: inline-block;
  color: var(--gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold);
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 0.9rem 1.8rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(176, 141, 87, 0.3);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: 0 4px 12px rgba(176, 141, 87, 0.4); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 0.9rem 1.8rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 6px;
}
.btn-outline:hover { background: rgba(176, 141, 87, 0.08); }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg); }
.logo span { color: var(--gold); }
.nav { display: flex; gap: 2rem; align-items: center; }
.nav a { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; transition: color 0.2s; color: var(--fg); }
.nav a:hover, .nav a.active { color: var(--gold); }
.nav .btn-gold { padding: 0.6rem 1.2rem; font-size: 0.7rem; }
.menu-btn { display: none; background: transparent; border: none; color: var(--fg); cursor: pointer; }

@media (max-width: 900px) {
  .menu-btn { display: block; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--card); padding: 1.5rem; gap: 1.2rem; border-bottom: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); }
  .nav.open { display: flex; }
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(1.05); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(248,246,242,0.3) 0%, rgba(248,246,242,0.5) 60%, rgba(248,246,242,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 1.5rem 2rem;
}
.hero-content h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); margin: 1.5rem 0 1.2rem; max-width: 900px; color: var(--fg); }
.hero-content p { color: var(--muted); max-width: 620px; margin-bottom: 2rem; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* PAGE HERO */
.page-hero { position: relative; height: 55vh; min-height: 420px; overflow: hidden; }
.page-hero .hero-content { padding-top: 6rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); color: var(--fg); }

/* SECTIONS */
.section { max-width: 1240px; margin: 0 auto; padding: 5rem 1.5rem; }
.section-lg { padding: 6rem 1.5rem; }
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-top: 1.2rem; margin-bottom: 1rem; }
.section-title p { color: var(--muted); max-width: 640px; margin: 0 auto; }

/* GRID CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); }
.card img { width: 100%; height: 240px; object-fit: cover; filter: brightness(1.03); }
.card-body { padding: 1.5rem; }
.card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.6rem; color: var(--fg); }
.card-body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.card-price { color: var(--gold); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; }

/* ROOM DETAIL (chambres page) */
.room-article { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 6rem; }
.room-article.reverse .room-gallery { order: 2; }
@media (max-width: 900px) {
  .room-article, .room-article.reverse { grid-template-columns: 1fr; }
  .room-article.reverse .room-gallery { order: 0; }
}
.room-gallery { position: relative; }
.room-gallery-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--card-alt);
}
.room-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: none; filter: brightness(1.02); }
.room-gallery-main img.active { display: block; }
.room-gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.9); color: var(--fg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.room-gallery-nav:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.room-gallery-nav.prev { left: 12px; }
.room-gallery-nav.next { right: 12px; }
.room-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 0.6rem; }
.room-thumbs img {
  aspect-ratio: 4/3; object-fit: cover; cursor: pointer;
  border: 1px solid var(--border); opacity: 0.7; transition: all 0.2s;
  border-radius: 4px;
}
.room-thumbs img.active { border-color: var(--gold); opacity: 1; }
.room-info h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); margin: 1rem 0; color: var(--fg); }
.room-specs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.2rem 0; margin: 1.5rem 0; font-size: 0.85rem;
}
.room-specs span { color: var(--gold); margin-right: 0.4rem; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid img { aspect-ratio: 4/3; object-fit: cover; cursor: pointer; transition: opacity 0.3s; }
.gallery-grid img:hover { opacity: 0.75; }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: transparent; border: none; color: #fff; font-size: 2rem; cursor: pointer;
}

/* TESTIMONIALS */
.testimonials { background: var(--bg-alt); padding: 5rem 1.5rem; }
.testimonial {
  background: var(--card); border: 1px solid var(--border);
  padding: 2rem; text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.testimonial p { color: var(--muted); font-style: italic; margin-bottom: 1rem; }
.testimonial cite { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; font-style: normal; }
.stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.2em; }

/* CONTACT */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px; border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1rem;
  background: var(--card-alt);
  border-radius: 50%;
}
.contact-item .label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--gold); margin-bottom: 0.25rem; }
.map-wrap { border: 1px solid var(--border); height: 480px; overflow: hidden; border-radius: 8px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* FORM */
.form { background: var(--card); border: 1px solid var(--border); padding: 2rem; border-radius: 8px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form label { display: block; margin-bottom: 1.2rem; }
.form label span.lbl {
  display: block;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 0.5rem;
}
.form input, .form select, .form textarea {
  width: 100%; background: var(--bg-alt); border: 1px solid var(--border); color: var(--fg);
  padding: 0.8rem 1rem; font-size: 0.9rem; font-family: inherit;
  transition: border-color 0.2s;
  border-radius: 4px;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--gold); }
.aside-info { background: var(--card); border: 1px solid var(--border); padding: 2rem; border-radius: 8px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); }
.aside-info ul { list-style: none; margin: 1rem 0; }
.aside-info li { padding: 0.4rem 0; color: var(--muted); font-size: 0.9rem; }
.aside-info li::before { content: "•"; color: var(--gold); margin-right: 0.6rem; }
.price-list { border-top: 1px solid var(--border); padding-top: 1.2rem; margin-top: 1.2rem; }
.price-list li { display: flex; justify-content: space-between; }
.price-list li::before { content: ""; margin: 0; }
.price-list li span { color: var(--gold); }

/* MENU (restaurant) */
.menu-list { max-width: 780px; margin: 0 auto; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: 1.2rem 0; border-bottom: 1px dashed var(--border); gap: 1rem; }
.menu-item h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--fg); }
.menu-item p { color: var(--muted); font-size: 0.85rem; }
.menu-item .price { color: var(--gold); font-weight: 500; white-space: nowrap; }

/* MENU PAGE */
.menu-nav {
  position: sticky;
  top: 0;
  background: var(--card);
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.menu-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-nav-inner::-webkit-scrollbar {
  display: none;
}
.menu-nav-link {
  display: inline-block;
  padding: 1rem 1.2rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s, font-weight 0.3s, text-shadow 0.3s;
  position: relative;
}
.menu-nav-link:hover {
  color: var(--gold);
}
.menu-nav-link.active {
  color: var(--gold);
  font-weight: 500;
  text-shadow: 0 0 20px rgba(176, 141, 87, 0.2);
}
.menu-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  animation: slideIn 0.3s ease;
  box-shadow: 0 0 10px rgba(176, 141, 87, 0.4);
}
@keyframes slideIn {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.menu-search-section {
  padding: 2rem 0;
  background: var(--bg);
}
.menu-search-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}
.menu-search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 0.95rem;
  border-radius: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.menu-search-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.1);
}
.menu-search-input::placeholder {
  color: var(--muted);
}
.search-no-results {
  text-align: center;
  color: var(--muted);
  padding: 2rem;
  font-style: italic;
}
.menu-container {
  max-width: 900px;
  margin: 0 auto;
}
.menu-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.menu-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.menu-card:hover {
  border-color: rgba(176, 141, 87, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.menu-card h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin: 0.6rem 0 1rem;
  color: var(--fg);
}
.menu-note {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
}
.menu-item:last-child {
  border-bottom: none;
}
.menu-item span:first-child {
  color: var(--fg);
}
.menu-item .price {
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  margin-left: 1.5rem;
}
.badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-left: 0.8rem;
  white-space: nowrap;
}
.badge-chef {
  background: rgba(176, 141, 87, 0.15);
  color: var(--gold);
  border: 1px solid rgba(176, 141, 87, 0.3);
}
.badge-bestseller {
  background: rgba(176, 141, 87, 0.1);
  color: var(--gold);
  border: 1px solid rgba(176, 141, 87, 0.25);
}
.badge-new {
  background: rgba(176, 141, 87, 0.1);
  color: var(--gold);
  border: 1px solid rgba(176, 141, 87, 0.25);
}
.menu-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.menu-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  padding: 0.8rem 1rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
}
.menu-table-header span {
  text-align: center;
}
.menu-table-header span:first-child {
  text-align: left;
}
.menu-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.menu-table-row:last-child {
  border-bottom: none;
}
.menu-table-row:hover {
  background: var(--bg-alt);
}
.menu-table-row span:first-child {
  color: var(--fg);
  text-align: left;
}
.menu-table-row .price {
  color: var(--gold);
  font-weight: 500;
  text-align: center;
}
.menu-table-row .badge {
  font-size: 0.6rem;
  padding: 0.15rem 0.5rem;
  margin-right: 0.5rem;
}
.menu-table-row .badge + span {
  margin-left: 0;
}
.menu-table.pizza-table .menu-table-header,
.menu-table.pizza-table .menu-table-row {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
@media (max-width: 768px) {
  .menu-table {
    border: none;
    border-radius: 0;
  }
  .menu-table-header {
    display: none;
  }
  .menu-table-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    background: var(--card);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .menu-table-row span {
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--border-light);
  }
  .menu-table-row span:last-child {
    border-bottom: none;
  }
  .menu-table-row span:first-child {
    font-weight: 600;
    color: var(--gold);
  }
  .menu-table-row .price {
    text-align: left;
    display: flex;
    justify-content: space-between;
  }
  .menu-table-row .price::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.8rem;
    margin-right: 0.5rem;
  }
  .menu-table.pizza-table .menu-table-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .menu-nav-inner {
    padding: 0 1rem;
  }
  .menu-nav-link {
    padding: 0.8rem 1rem;
    font-size: 0.75rem;
  }
  .menu-search-container {
    padding: 0 1rem;
  }
  .menu-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 560px) {
  .menu-table-header,
  .menu-table-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .menu-table-header span:nth-child(2),
  .menu-table-header span:nth-child(3),
  .menu-table-row .price:nth-child(2),
  .menu-table-row .price:nth-child(3) {
    text-align: left;
  }
}
.menu-cta {
  padding: 5rem 0;
  text-align: center;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* SUMMARY / RECAP */
.summary { max-width: 780px; margin: 0 auto; background: var(--card); border: 1px solid var(--border); padding: 2.5rem; border-radius: 8px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); }
.summary-head { display: flex; justify-content: space-between; padding-bottom: 1.5rem; margin-bottom: 1.8rem; border-bottom: 1px solid var(--border); align-items: flex-start; }
.summary-ref { color: var(--gold); font-family: monospace; font-size: 1.1rem; }
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; margin-bottom: 2rem; }
.summary-row .label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.3rem; }
.summary-total { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.summary-total .amount { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); }
.summary-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; margin-top: 1.5rem; }
@media (max-width: 640px) { .summary-actions { grid-template-columns: 1fr; } .summary-grid { grid-template-columns: 1fr; } }
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: var(--card); border: 1px solid var(--gold); color: var(--fg);
  padding: 0.9rem 1.4rem; font-size: 0.9rem; z-index: 200;
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.toast.show { opacity: 1; }
.toast.error { border-color: #e05252; }

/* FOOTER */
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem 1.5rem;
}
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--gold); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; }
.site-footer ul li { padding: 0.3rem 0; color: var(--muted); font-size: 0.9rem; }
.site-footer ul li a:hover { color: var(--gold); }
.footer-bottom { max-width: 1240px; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border); text-align: center; color: var(--muted); font-size: 0.8rem; }

@media print {
  .site-header, .site-footer, .no-print { display: none !important; }
  body { background: #fff; color: #000; }
  .summary { background: #fff; color: #000; border-color: #ccc; }
}
