@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --forest-950: #10201a;
  --forest-900: #16281f;
  --forest-800: #1f3a2c;
  --forest-700: #2c4f3a;
  --forest-600: #3d6a4c;
  --forest-500: #4f8560;
  --moss-300: #a9c6ab;
  --cream-050: #faf7f0;
  --cream-100: #f3ecdd;
  --wood-600: #a9723f;
  --wood-700: #8a5a2f;
  --ink: #1c211d;
  --muted: #626e64;
  --danger: #b3452f;
  --ok: #3d7a4d;
  --warn: #b8862f;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(16, 32, 26, 0.12);
  --shadow-lg: 0 24px 60px rgba(16, 32, 26, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream-050);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

a { color: inherit; }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 33, 29, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--forest-900);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--forest-800);
  opacity: 0.85;
}
.nav-links a:hover { opacity: 1; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-800);
  color: var(--cream-050);
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.header-cta:hover { background: var(--forest-700); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--cream-050);
  background:
    radial-gradient(circle at 15% 20%, rgba(79, 133, 96, 0.35), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(169, 114, 63, 0.25), transparent 50%),
    linear-gradient(160deg, var(--forest-950) 0%, var(--forest-900) 45%, var(--forest-800) 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 90px),
    repeating-linear-gradient(25deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 120px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 680px;
  padding: 140px 0 100px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--moss-300);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  margin-bottom: 20px;
}

.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(250, 247, 240, 0.85);
  margin-bottom: 34px;
  max-width: 540px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--cream-050);
  color: var(--forest-900);
}
.btn-primary:hover { background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { border-color: #fff; }

.btn-block { width: 100%; }

.btn-dark {
  background: var(--forest-800);
  color: var(--cream-050);
}
.btn-dark:hover { background: var(--forest-700); }
.btn-dark:disabled { background: #b9c0ba; cursor: not-allowed; }

.hero-stats {
  position: relative;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 620px;
}

.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}
.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(250,247,240,0.7);
}

/* ---------- Critters strip ---------- */

.critters-strip {
  position: relative;
  height: 110px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream-050) 0%, var(--cream-100) 45%, #cfe0c9 100%);
  border-top: 1px solid rgba(28, 33, 29, 0.06);
  border-bottom: 1px solid rgba(28, 33, 29, 0.06);
}

.critter {
  position: absolute;
  bottom: 6px;
  left: 0;
  animation: walk-ltr var(--duration, 20s) linear var(--delay, 0s) infinite;
  will-change: transform;
}
.critter-flip { animation-name: walk-rtl; }

@keyframes walk-ltr {
  from { transform: translateX(-15vw); }
  to { transform: translateX(115vw); }
}
@keyframes walk-rtl {
  from { transform: translateX(115vw) scaleX(-1); }
  to { transform: translateX(-15vw) scaleX(-1); }
}

.c-leg {
  transform-box: fill-box;
  transform-origin: top center;
  animation: leg-swing 0.5s ease-in-out infinite;
}
.c-leg-2 { animation-delay: 0.25s; }
@keyframes leg-swing {
  0%, 100% { transform: rotate(-14deg); }
  50% { transform: rotate(14deg); }
}

.c-body-group {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: body-bob 0.5s ease-in-out infinite;
}
@keyframes body-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.c-wing {
  transform-box: fill-box;
  transform-origin: top center;
  animation: wing-flap 0.9s ease-in-out infinite;
}
@keyframes wing-flap {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-10deg); }
}

.b-hop {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: hop 0.9s ease-in-out infinite;
}
@keyframes hop {
  0%, 100% { transform: translateY(0) scaleY(1); }
  30% { transform: translateY(-16px) scaleY(1.05); }
  55% { transform: translateY(0) scaleY(0.9); }
}

.b-shadow {
  transform-box: fill-box;
  transform-origin: center;
  animation: shadow-pulse 0.9s ease-in-out infinite;
}
@keyframes shadow-pulse {
  0%, 100% { transform: scaleX(1); opacity: 0.15; }
  30% { transform: scaleX(0.6); opacity: 0.08; }
  55% { transform: scaleX(1); opacity: 0.16; }
}

@media (prefers-reduced-motion: reduce) {
  .critter, .c-leg, .c-body-group, .c-wing, .b-hop, .b-shadow {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .critters-strip { height: 84px; }
}

/* ---------- Sections ---------- */

section { padding: 100px 0; }
.section-alt { background: var(--cream-100); }

.section-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { color: var(--wood-700); }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); color: var(--forest-900); }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: 14px; line-height: 1.6; }

/* About */

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

.about-copy p { color: var(--muted); line-height: 1.75; font-size: 1.02rem; margin-bottom: 16px; }

.about-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent 40%),
    linear-gradient(140deg, var(--forest-600), var(--forest-900));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 3.5rem;
  overflow: hidden;
}
.about-visual.has-photo { background: var(--cream-100); }
.about-visual.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.fact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.fact-card .icon { font-size: 1.6rem; margin-bottom: 8px; }
.fact-card .val { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; color: var(--forest-900); }
.fact-card .lbl { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

/* Amenities */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.amenity-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.amenity-card .icon { font-size: 1.8rem; }
.amenity-card .title { font-weight: 700; font-size: 1rem; color: var(--forest-900); }
.amenity-card .desc { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 12px;
}
.gallery-grid > div:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid > div:nth-child(4) { grid-column: span 2; }

.gallery-tile {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.55);
  background: linear-gradient(135deg, var(--forest-700), var(--forest-950));
}
.gallery-tile:nth-child(4n+2) { background: linear-gradient(135deg, var(--wood-600), var(--forest-900)); }
.gallery-tile:nth-child(4n+3) { background: linear-gradient(135deg, var(--forest-500), var(--forest-800)); }
.gallery-tile:nth-child(4n) { background: linear-gradient(135deg, var(--wood-700), var(--forest-950)); }

.gallery-tile.gallery-photo {
  background: var(--cream-100);
  padding: 0;
}
.gallery-tile.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Booking */

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

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.calendar-nav .month-label {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--forest-900);
  text-transform: capitalize;
}
.calendar-nav button {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(28,33,29,0.12);
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  color: var(--forest-800);
}
.calendar-nav button:hover { background: var(--cream-100); }
.calendar-nav button:disabled { opacity: 0.35; cursor: not-allowed; }

.weekday-row, .day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.weekday-row { margin-bottom: 6px; }
.weekday-row span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.88rem;
  cursor: pointer;
  user-select: none;
  color: var(--ink);
  background: transparent;
  position: relative;
}
.day-cell.empty { cursor: default; }
.day-cell.past { color: #c3c8c3; cursor: not-allowed; }
.day-cell.available:hover { background: var(--cream-100); }
.day-cell.booked { background: #f3d9d2; color: var(--danger); cursor: not-allowed; text-decoration: line-through; }
.day-cell.pending-day { background: #f7e7c9; color: var(--warn); }
.day-cell.in-range { background: var(--moss-300); color: var(--forest-950); }
.day-cell.range-edge { background: var(--forest-700); color: #fff; font-weight: 700; }
.day-cell.today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.calendar-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--muted);
}
.calendar-legend span { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.dot.available { background: var(--cream-100); border: 1px solid #ddd; }
.dot.booked { background: #f3d9d2; }
.dot.pending-day { background: #f7e7c9; }
.dot.in-range { background: var(--moss-300); }

.booking-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest-900);
  margin-bottom: 6px;
  margin-top: 16px;
}
.booking-form label:first-child { margin-top: 0; }

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(28,33,29,0.14);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream-050);
}
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--forest-600);
}
.booking-form textarea { resize: vertical; min-height: 70px; }

.addons-block { margin-top: 16px; }
.addons-block label { margin-bottom: 8px; }

.addons-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.addon-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(28, 33, 29, 0.12);
  background: var(--cream-050);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
}
.addon-option:has(input:checked) {
  border-color: var(--forest-600);
  background: var(--cream-100);
}
.addon-option .addon-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.addon-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--forest-700); flex-shrink: 0; }
.addon-option .addon-price { color: var(--muted); font-weight: 700; white-space: nowrap; }
.addon-qty {
  padding: 3px 6px;
  border-radius: 6px;
  border: 1.5px solid rgba(28, 33, 29, 0.18);
  background: #fff;
  font-size: 0.85rem;
  font-family: inherit;
}

.date-range-display {
  display: flex;
  gap: 12px;
}
.date-range-display > div {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--cream-100);
  font-size: 0.92rem;
}
.date-range-display .lbl { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.date-range-display .val { font-weight: 700; color: var(--forest-900); margin-top: 2px; }

.price-summary {
  margin-top: 22px;
  padding: 18px;
  border-radius: 12px;
  background: var(--forest-900);
  color: var(--cream-050);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-summary .rate { font-size: 0.82rem; color: rgba(250,247,240,0.7); }
.price-summary .total { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }

.form-msg {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.ok { background: #e2f0e4; color: var(--ok); }
.form-msg.err { background: #f7e0da; color: var(--danger); }

/* Unwind mini-game */

.game-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.game-area {
  position: relative;
  height: 320px;
  background: linear-gradient(180deg, #cfe8f5 0%, #eaf3df 55%, #cfe0c9 100%);
}

.game-hud {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--forest-900);
  pointer-events: none;
}
.game-hud span {
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 12px;
  border-radius: 999px;
}

.game-critter {
  position: absolute;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  padding: 0;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  animation: critter-pop 0.18s ease-out;
  filter: drop-shadow(0 3px 4px rgba(16, 32, 26, 0.25));
}
@keyframes critter-pop {
  from { transform: scale(0.3); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.game-critter-caught {
  animation: critter-caught 0.2s ease-in forwards;
  pointer-events: none;
}
@keyframes critter-caught {
  to { transform: scale(1.6); opacity: 0; }
}

.game-area.playing { cursor: none; }

.game-net {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: none;
  pointer-events: none;
  transform: translate(-8px, -70%) rotate(-18deg);
  filter: drop-shadow(0 3px 4px rgba(16, 32, 26, 0.3));
}
.game-net.is-visible { display: block; }
.game-net.game-net-swipe { animation: net-swipe 0.22s ease-out; }
@keyframes net-swipe {
  0% { transform: translate(-8px, -70%) rotate(-18deg); }
  50% { transform: translate(-8px, -70%) rotate(22deg) scale(1.15); }
  100% { transform: translate(-8px, -70%) rotate(-18deg); }
}

@media (prefers-reduced-motion: reduce) {
  .game-net.game-net-swipe { animation: none; }
}

.game-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 247, 240, 0.9);
  backdrop-filter: blur(2px);
  text-align: center;
  padding: 24px;
}
.game-overlay[hidden] { display: none; }
.game-panel p { color: var(--muted); margin-bottom: 16px; }
.game-panel .game-end-msg { font-weight: 700; color: var(--forest-900); }
.game-end-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.game-panel .btn-outline { color: var(--forest-800); border-color: rgba(28, 33, 29, 0.25); }
.game-panel .btn-outline:hover { border-color: var(--forest-800); }

@media (prefers-reduced-motion: reduce) {
  .game-critter, .game-critter-caught { animation: none; }
}

/* Contact / Footer */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 20px;
  box-shadow: var(--shadow);
}
.contact-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
.contact-card .title { font-weight: 700; color: var(--forest-900); }
.contact-card .val { color: var(--muted); margin-top: 4px; font-size: 0.92rem; }
.contact-card a { text-decoration: none; color: var(--forest-700); font-weight: 600; }

.map-embed {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-embed iframe { display: block; border: 0; }

footer {
  background: var(--forest-950);
  color: rgba(250,247,240,0.65);
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
}
footer a { color: var(--moss-300); text-decoration: none; }

/* ---------- Auth pages (login) ---------- */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--forest-950), var(--forest-800));
  padding: 24px;
}
.auth-card {
  background: var(--cream-050);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  width: 100%;
  max-width: 380px;
}
.auth-card h1 { font-size: 1.5rem; color: var(--forest-900); margin-bottom: 6px; }
.auth-card p.sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 26px; }
.auth-card input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(28,33,29,0.14);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.auth-card input:focus { outline: none; border-color: var(--forest-600); }
.auth-error {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 10px;
  display: none;
}
.auth-error.show { display: block; }

/* ---------- Admin ---------- */

.admin-shell { min-height: 100vh; background: var(--cream-100); }
.admin-header {
  background: var(--forest-950);
  color: var(--cream-050);
  padding: 18px 0;
}
.admin-header .container { display: flex; align-items: center; justify-content: space-between; }
.admin-header h1 { font-size: 1.2rem; }
.admin-header .btn-outline { border-color: rgba(255,255,255,0.3); padding: 8px 16px; font-size: 0.85rem; }

.admin-main { padding: 36px 0 80px; }

.admin-grid { display: grid; grid-template-columns: 320px 1fr; gap: 24px; align-items: start; }

.settings-card h2, .bookings-card h2 { font-size: 1.05rem; color: var(--forest-900); margin-bottom: 18px; }
.settings-card label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--forest-900); margin: 14px 0 6px; }
.settings-card label:first-of-type { margin-top: 0; }
.settings-card input {
  width: 100%; padding: 10px 12px; border-radius: 8px;
  border: 1.5px solid rgba(28,33,29,0.14); font-size: 0.92rem;
}
.settings-card .save-row { margin-top: 20px; }
.save-note { font-size: 0.8rem; color: var(--ok); margin-top: 10px; display: none; }
.save-note.show { display: block; }

.status-tabs { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.status-tabs button {
  padding: 8px 16px; border-radius: 999px; border: 1.5px solid rgba(28,33,29,0.12);
  background: #fff; font-size: 0.82rem; font-weight: 700; cursor: pointer; color: var(--muted);
}
.status-tabs button.active { background: var(--forest-800); border-color: var(--forest-800); color: #fff; }

.booking-row {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.booking-row .dates { font-weight: 700; color: var(--forest-900); }
.booking-row .meta { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.booking-row .comment { font-size: 0.82rem; color: var(--muted); margin-top: 6px; font-style: italic; }
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
}
.badge.pending { background: #f7e7c9; color: var(--warn); }
.badge.confirmed { background: #d9ecdb; color: var(--ok); }
.badge.rejected { background: #f3d9d2; color: var(--danger); }
.badge.cancelled { background: #e6e6e6; color: #666; }
.badge.blocked { background: #e0e0e0; color: #555; }

.row-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.row-actions button {
  padding: 7px 14px; border-radius: 8px; border: none; font-size: 0.8rem; font-weight: 700; cursor: pointer;
}
.btn-confirm { background: var(--ok); color: #fff; }
.btn-reject { background: var(--danger); color: #fff; }
.btn-cancel { background: #e6e6e6; color: #444; }
.empty-state { color: var(--muted); font-size: 0.9rem; padding: 30px; text-align: center; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav-links, .header-cta { display: none; }
  .about-grid, .booking-grid, .admin-grid { grid-template-columns: 1fr; }
  .fact-grid, .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-grid > div:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero-content { padding: 120px 0 70px; }
}
