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

:root {
  --sand-50:  #FAF6ED;
  --sand-100: #F0E6CC;
  --sand-200: #E2CFA0;
  --sand-300: #D4B483;
  --sand-400: #C8A96E;
  --sand-500: #B8942A;
  --sand-600: #8B6914;
  --brown:    #3D2B1F;
  --brown-lt: #6B4F3A;
  --pine:     #2C4A3E;
  --pine-lt:  #3D6B5C;
  --white:    #FFFFFF;
  --red:      #C0392B;
  --orange:   #E67E22;
  --green:    #27AE60;
  --shadow:   0 4px 24px rgba(61,43,31,.12);
  --shadow-sm:0 2px 8px rgba(61,43,31,.08);
  --radius:   12px;
  --radius-sm:6px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--sand-50);
  color: var(--brown);
  line-height: 1.7;
}

h1,h2,h3,h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a { color: var(--pine); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,246,237,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-200);
  padding: 0 2rem;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: var(--shadow); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--brown);
  display: flex; align-items: center; gap: .5rem;
}
.nav-logo span { color: var(--sand-500); }

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--brown-lt);
  letter-spacing: .03em;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--pine); }

.nav-cta {
  background: var(--pine);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--pine-lt) !important; transform: translateY(-1px); }

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a30 0%, #2C4A3E 40%, #4a7a66 70%, #8B6914 100%);
  text-align: center;
  padding: 5rem 1rem 3rem;
}

.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(200,169,110,.07)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-badge {
  display: inline-block;
  background: rgba(200,169,110,.2);
  border: 1px solid rgba(200,169,110,.4);
  color: var(--sand-300);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; color: var(--sand-300); }

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--sand-400); color: var(--brown); }
.btn-primary:hover { background: var(--sand-300); }

.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-pine { background: var(--pine); color: var(--white); }
.btn-pine:hover { background: var(--pine-lt); }

.btn-sm { padding: .55rem 1.4rem; font-size: .9rem; }

.hero-stats {
  margin-top: 4rem;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--sand-300); }
.hero-stat span { font-size: .85rem; color: rgba(255,255,255,.6); letter-spacing: .05em; text-transform: uppercase; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 1rem; }
.section-alt { background: var(--sand-100); }

.container { max-width: 1100px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--brown); }
.section-header p { font-size: 1.1rem; color: var(--brown-lt); max-width: 560px; margin: .75rem auto 0; }
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--sand-400), var(--sand-300));
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ===== SPLIT SECTIONS ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse .split-img { order: 2; }
.split.reverse .split-text { order: 1; }

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--sand-200);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img .img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  color: var(--sand-600);
}
.split-img .img-placeholder svg { opacity: .4; }
.split-img .img-placeholder p { font-size: .9rem; opacity: .7; }

.split-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.split-text p { color: var(--brown-lt); margin-bottom: 1rem; }

.feature-list { list-style: none; margin-top: 1.5rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--sand-200);
  font-size: .95rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--pine); }

/* ===== CAROUSEL ===== */
.carousel-section { background: var(--brown); padding: 5rem 0; }
.carousel-section .section-header h2 { color: var(--sand-200); }
.carousel-section .section-header p { color: var(--sand-300); }

.carousel-wrap { position: relative; max-width: 900px; margin: 0 auto; padding: 0 1rem; }

.carousel-track-container { overflow: hidden; border-radius: var(--radius); }

.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.carousel-slide {
  min-width: 100%;
  aspect-ratio: 16/9;
  background: var(--sand-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-lt);
  font-size: .95rem;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.9);
  border: none; cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}
.carousel-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.1); }
.carousel-btn.prev { left: .25rem; }
.carousel-btn.next { right: .25rem; }

.carousel-dots {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active { background: var(--sand-400); transform: scale(1.3); }

/* ===== TARIFS CARD ===== */
.tarifs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

.tarif-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand-200);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.tarif-card .tarif-icon {
  width: 52px; height: 52px;
  background: var(--sand-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--sand-600);
}
.tarif-card .tarif-label { font-size: .85rem; color: var(--brown-lt); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.tarif-card .tarif-price { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--brown); }
.tarif-card .tarif-unit { font-size: .85rem; color: var(--brown-lt); }
.tarif-card.highlight { background: var(--pine); border-color: var(--pine); }
.tarif-card.highlight .tarif-icon { background: rgba(255,255,255,.15); color: var(--sand-300); }
.tarif-card.highlight .tarif-label { color: rgba(255,255,255,.7); }
.tarif-card.highlight .tarif-price { color: var(--sand-300); }
.tarif-card.highlight .tarif-unit { color: rgba(255,255,255,.7); }

/* ===== INFOS PRATIQUES ===== */
.infos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; gap: 1rem;
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow-sm);
}
.info-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--sand-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--pine);
}
.info-card-body h4 { font-size: 1rem; margin-bottom: .25rem; }
.info-card-body p { font-size: .9rem; color: var(--brown-lt); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--pine) 0%, var(--pine-lt) 100%);
  padding: 4rem 1rem;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--brown);
  color: rgba(255,255,255,.7);
  padding: 3rem 1rem 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto 2rem; }
.footer-brand h3 { color: var(--sand-300); font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: .75rem; }
.footer-brand p { font-size: .9rem; line-height: 1.6; }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 1rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; font-size: .9rem; }
.footer-col ul li a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--sand-300); }
.footer-bottom {
  text-align: center;
  font-size: .82rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.4);
}

/* ===== RESERVATION PAGE ===== */
.page-hero {
  padding: 8rem 1rem 3rem;
  background: linear-gradient(135deg, #1a3a30, #2C4A3E);
  text-align: center;
  color: var(--white);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--sand-200); }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-top: .75rem; }

.reservation-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem 5rem;
  align-items: start;
}

/* ===== CALENDAR ===== */
.calendar-card, .booking-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.cal-header h3 { font-size: 1.1rem; }
.cal-nav-btn {
  background: none; border: 1px solid var(--sand-200);
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.cal-nav-btn:hover { background: var(--sand-100); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day-name {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--brown-lt);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .4rem 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  position: relative;
  user-select: none;
}
.cal-day.empty { cursor: default; }
.cal-day.past { color: var(--sand-200); cursor: not-allowed; }

.cal-day.available { background: rgba(39,174,96,.08); color: var(--brown); }
.cal-day.available:hover { background: rgba(39,174,96,.2); }

.cal-day.pending { background: rgba(230,126,34,.12); color: var(--brown); cursor: not-allowed; }
.cal-day.confirmed { background: rgba(192,57,43,.1); color: #999; cursor: not-allowed; }
.cal-day.blocked { background: var(--sand-100); color: var(--sand-300); cursor: not-allowed; }

.cal-day.selected-start, .cal-day.selected-end {
  background: var(--pine) !important;
  color: var(--white) !important;
  font-weight: 700;
}
.cal-day.in-range {
  background: rgba(44,74,62,.12) !important;
  color: var(--brown) !important;
  border-radius: 0;
}
.cal-day.selected-start { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.cal-day.selected-end { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.cal-day.selected-start.selected-end { border-radius: var(--radius-sm); }

.cal-legend {
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sand-100);
}
.cal-legend-item { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--brown-lt); }
.cal-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cal-legend-dot.available { background: rgba(39,174,96,.5); }
.cal-legend-dot.pending { background: rgba(230,126,34,.6); }
.cal-legend-dot.confirmed { background: rgba(192,57,43,.5); }

/* ===== BOOKING SIDEBAR ===== */
.booking-sidebar h3 { font-size: 1.2rem; margin-bottom: 1.5rem; }

.date-display {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-bottom: 1.5rem;
}
.date-box {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
}
.date-box label { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--brown-lt); font-weight: 700; }
.date-box .date-val { font-size: 1rem; font-weight: 600; color: var(--brown); margin-top: .15rem; }

.person-selector { margin-bottom: 1.5rem; }
.person-selector label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .5rem; color: var(--brown); }

.counter-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid var(--sand-100);
}
.counter-row:last-child { border-bottom: none; }
.counter-label { font-size: .9rem; }
.counter-sub { font-size: .78rem; color: var(--brown-lt); }
.counter-ctrl { display: flex; align-items: center; gap: .6rem; }
.counter-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--sand-300);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--pine);
  transition: background var(--transition);
}
.counter-btn:hover { background: var(--sand-100); }
.counter-val { font-size: 1rem; font-weight: 700; min-width: 24px; text-align: center; }

.price-breakdown {
  background: var(--sand-50);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--sand-200);
}
.price-row { display: flex; justify-content: space-between; font-size: .9rem; padding: .3rem 0; }
.price-row.total {
  border-top: 1px solid var(--sand-200);
  margin-top: .5rem; padding-top: .75rem;
  font-weight: 700; font-size: 1.05rem;
}
.price-row.total span:last-child { color: var(--pine); font-family: 'Playfair Display', serif; font-size: 1.2rem; }

.price-empty { text-align: center; color: var(--brown-lt); font-size: .9rem; padding: .5rem 0; }

/* ===== RESERVATION FORM ===== */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin: 1.75rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--sand-200);
  display: flex; align-items: center; gap: .5rem;
}
.form-section-title svg { color: var(--pine); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--brown-lt); }
.form-group input, .form-group textarea, .form-group select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--sand-200);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  background: var(--sand-50);
  color: var(--brown);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(44,74,62,.12);
  background: var(--white);
}
.form-group textarea { min-height: 100px; resize: vertical; }

.form-checkbox {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .75rem;
  background: var(--sand-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--sand-200);
  cursor: pointer;
}
.form-checkbox input { width: 18px; height: 18px; accent-color: var(--pine); margin-top: 1px; flex-shrink: 0; }
.form-checkbox span { font-size: .9rem; line-height: 1.4; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-bottom: 1.25rem;
  display: none;
}
.alert.info { background: rgba(44,74,62,.08); border: 1px solid rgba(44,74,62,.2); color: var(--pine); }
.alert.error { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.2); color: var(--red); }
.alert.success { background: rgba(39,174,96,.08); border: 1px solid rgba(39,174,96,.2); color: #1e8449; }
.alert.show { display: block; }

.rib-box {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-top: 1.5rem;
}
.rib-box h4 { font-size: 1rem; margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.rib-box p { font-size: .9rem; color: var(--brown-lt); line-height: 1.5; }
.rib-details { margin-top: .75rem; font-family: 'Courier New', monospace; font-size: .9rem; color: var(--brown); background: var(--white); padding: .75rem; border-radius: var(--radius-sm); border: 1px solid var(--sand-200); }

/* ===== NO PETS NOTICE ===== */
.no-pets-notice {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1.25rem;
  background: rgba(192,57,43,.06);
  border: 1px solid rgba(192,57,43,.2);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--red);
  margin-bottom: 1rem;
}

/* ===== ADMIN ===== */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--brown);
  padding: 2rem 0;
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 240px;
  overflow-y: auto;
}
.admin-sidebar-logo {
  padding: 0 1.5rem 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--sand-300);
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1rem;
}
.admin-nav { list-style: none; }
.admin-nav li a {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1.5rem;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: background var(--transition), color var(--transition);
}
.admin-nav li a:hover, .admin-nav li a.active {
  background: rgba(255,255,255,.07);
  color: var(--white);
}
.admin-nav li a svg { flex-shrink: 0; }

.admin-main {
  margin-left: 240px;
  padding: 2rem;
  background: #f5f0e8;
  min-height: 100vh;
}
.admin-header { margin-bottom: 2rem; }
.admin-header h1 { font-size: 1.8rem; color: var(--brown); }

.admin-section { display: none; }
.admin-section.active { display: block; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--sand-100);
}
.card-header h3 { font-size: 1.1rem; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-card .stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--pine); }
.stat-card .stat-lbl { font-size: .82rem; color: var(--brown-lt); text-transform: uppercase; letter-spacing: .05em; }

table { width: 100%; border-collapse: collapse; font-size: .9rem; }
thead th {
  text-align: left;
  padding: .65rem 1rem;
  background: var(--sand-50);
  color: var(--brown-lt);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  border-bottom: 1px solid var(--sand-200);
}
tbody td { padding: .75rem 1rem; border-bottom: 1px solid var(--sand-100); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--sand-50); }

.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
}
.badge-pending { background: rgba(230,126,34,.15); color: #b7610a; }
.badge-confirmed { background: rgba(39,174,96,.15); color: #1e8449; }
.badge-cancelled { background: rgba(192,57,43,.12); color: var(--red); }

.action-btn {
  background: none; border: none; cursor: pointer;
  padding: .35rem .6rem; border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 600;
  transition: background var(--transition);
}
.action-btn.confirm { color: #1e8449; }
.action-btn.confirm:hover { background: rgba(39,174,96,.1); }
.action-btn.cancel { color: var(--red); }
.action-btn.cancel:hover { background: rgba(192,57,43,.1); }
.action-btn.view { color: var(--pine); }
.action-btn.view:hover { background: rgba(44,74,62,.1); }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.pricing-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1rem;
  background: var(--sand-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--sand-200);
  gap: 1rem;
}
.pricing-item label { font-size: .9rem; font-weight: 600; flex: 1; }
.pricing-item input {
  width: 90px;
  padding: .45rem .75rem;
  border: 1.5px solid var(--sand-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--brown);
  background: var(--white);
}
.pricing-item input:focus { outline: none; border-color: var(--pine); }
.pricing-item .currency { font-size: .9rem; color: var(--brown-lt); font-weight: 600; }

.login-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brown), #6B4F3A);
}
.login-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.login-card h1 { font-size: 1.5rem; margin-bottom: .25rem; }
.login-card p { font-size: .9rem; color: var(--brown-lt); margin-bottom: 1.75rem; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.5);
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 600px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.modal-header h3 { font-size: 1.2rem; }
.modal-close { background: none; border: none; cursor: pointer; font-size: 1.4rem; color: var(--brown-lt); line-height: 1; }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.detail-item label { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--brown-lt); font-weight: 700; }
.detail-item p { font-size: .95rem; color: var(--brown); margin-top: .15rem; }

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  background: var(--brown);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: .9rem;
  max-width: 320px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #1e8449; }
.toast.error { background: var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse .split-img { order: 0; }
  .split.reverse .split-text { order: 0; }
  .reservation-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
}
@media (max-width: 640px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--sand-50); padding: 1.5rem; gap: 1rem; box-shadow: var(--shadow); }
  .nav-burger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}
