/* ---------- Reset & Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
/* The hidden attribute must always win, even over elements with an explicit display rule (.btn, .modal-overlay, etc). */
[hidden] { display: none !important; }

:root {
  --bg: #0b0b0d;
  --bg-alt: #131316;
  --card: #17171b;
  --card-border: #26262b;
  --text: #f2f1ee;
  --text-dim: #a8a6a1;
  --accent: #d4af37;
  --accent-dim: #b8952c;
  --accent-text: #14140f;
  --radius: 10px;
  --max-width: 1160px;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; position: relative; padding-bottom: 14px; }
.section-head h2::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 56px; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s ease;
}
.section-head h2.underline-in::after { transform: scaleX(1); }
.section-sub { color: var(--text-dim); font-size: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn::before {
  content: "";
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 130%; }
.btn-accent { background: var(--accent); color: var(--accent-text); --mx: 50%; --my: 50%; }
.btn-accent:hover { background: var(--accent-dim); }
.btn-accent::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80px circle at var(--mx) var(--my), rgba(255,255,255,0.45), transparent 70%);
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.btn-accent:hover::after { opacity: 1; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--card-border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { display: block; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--card-border);
}
.scroll-progress {
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.1rem; }
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  transition: transform 0.4s ease;
}
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.08); }
.logo-mark.small { width: 28px; height: 28px; }
.logo-text em { color: var(--accent); font-style: normal; }

.main-nav { display: flex; gap: 28px; margin-left: auto; }
.main-nav a { position: relative; color: var(--text-dim); font-size: 0.92rem; transition: color 0.15s ease; }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.main-nav a:hover { color: var(--accent); }
.main-nav a:hover::after { width: 100%; }

.header-cta { padding: 10px 20px; font-size: 0.8rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  margin-left: auto;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 15%, rgba(212, 175, 55, 0.12), transparent 55%),
    linear-gradient(90deg, rgba(11,11,13,0.96) 0%, rgba(11,11,13,0.88) 35%, rgba(11,11,13,0.55) 65%, rgba(11,11,13,0.25) 100%),
    linear-gradient(180deg, rgba(11,11,13,0.35) 0%, rgba(11,11,13,0) 18%, rgba(11,11,13,0) 82%, rgba(11,11,13,0.7) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 24px; }
.hero-sub { color: var(--text-dim); font-size: 1.1rem; max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-inner .eyebrow, .hero-inner h1, .hero-inner .hero-sub, .hero-inner .hero-actions {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
}
.hero-inner .eyebrow { animation-delay: 0.1s; }
.hero-inner h1 { animation-delay: 0.25s; }
.hero-inner .hero-sub { animation-delay: 0.45s; }
.hero-inner .hero-actions { animation-delay: 0.6s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Trust Strip ---------- */
.trust-strip { background: var(--bg-alt); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); padding: 18px 0; }
.trust-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.trust-inner .dot { color: var(--accent); }

/* ---------- Services ---------- */
.services { padding: 100px 0; }
.single-service { display: flex; justify-content: center; }
.price-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.single-price-card { max-width: 420px; width: 100%; }
.price-card-featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(212,175,55,0.06), var(--card)); }
.price-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.price { font-family: var(--font-head); font-size: 2.2rem; color: var(--accent); margin-bottom: 20px; }
.price span { font-family: var(--font-body); font-size: 0.9rem; color: var(--text-dim); text-transform: none; letter-spacing: 0; margin-left: 6px; }
.feature-list { margin-bottom: 28px; flex-grow: 1; }
.feature-list li { padding: 6px 0; color: var(--text-dim); font-size: 0.92rem; border-bottom: 1px dashed var(--card-border); }
.feature-list li:first-child { color: var(--text); font-weight: 500; }
.feature-list li:last-child { border-bottom: none; }

/* ---------- Gallery ---------- */
.gallery { padding: 100px 0; background: var(--bg-alt); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-border); height: 200px; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:not(.ba-slider):hover img { transform: scale(1.06); }

/* Before/After slider */
.ba-slider { cursor: ew-resize; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; user-select: none; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-handle-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--accent);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
  pointer-events: none;
}
.ba-handle-btn {
  position: absolute; top: 50%; left: 50%;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent); color: var(--accent-text);
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%);
  font-size: 0.95rem; font-weight: 700;
  pointer-events: none;
}
.ba-label {
  position: absolute; top: 10px; z-index: 2;
  font-family: var(--font-head); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(11, 11, 13, 0.65);
  pointer-events: none;
}
.ba-label-before { left: 10px; color: var(--text-dim); }
.ba-label-after { right: 10px; color: var(--accent); }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none;
}

/* ---------- About ---------- */
.about { padding: 100px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-photo {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}
.about-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; }
.about-copy p { color: var(--text-dim); margin-bottom: 16px; }
.about-values { margin-top: 24px; }
.about-values li { padding: 6px 0; }
.about-values strong { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; background: var(--bg-alt); }
.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 4px 20px;
}
.faq-item summary {
  padding: 16px 28px 16px 0; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-size: 1rem; letter-spacing: 0.01em;
  position: relative; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 1.3rem; font-family: var(--font-body);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--text-dim); padding: 0 0 18px; font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 100px 0; background: var(--bg-alt); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 28px;
}
.testimonial p { color: var(--text); margin-bottom: 16px; font-style: italic; }
.testimonial cite { color: var(--text-dim); font-size: 0.85rem; font-style: normal; }
.testimonial-stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 10px; font-size: 0.95rem; }
.testimonial-empty { color: var(--text-dim); grid-column: 1 / -1; text-align: center; padding: 20px 0; }

/* ---------- Contact ---------- */
.contact { padding: 100px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; }
.contact h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.contact-list { margin-top: 28px; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid var(--card-border); display: flex; gap: 8px; }
.cancellation-note { margin-top: 20px; font-size: 0.82rem; color: var(--text-dim); }
.cancellation-note a { color: var(--accent); text-decoration: underline; }
.contact-list strong { color: var(--accent); min-width: 110px; }

.booking-form { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; color: var(--text-dim); }
.booking-form input, .booking-form select, .booking-form textarea {
  background: var(--bg); border: 1px solid var(--card-border); border-radius: 6px;
  padding: 10px 12px; color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-note { font-size: 0.85rem; color: var(--accent); min-height: 1.2em; }

.input-error { border-color: #e05c5c !important; }
.field-error { display: block; color: #e05c5c; font-size: 0.8rem; min-height: 1.1em; }

.form-success {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  background: rgba(212, 175, 55, 0.08); border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 14px 16px; font-size: 0.88rem;
}
.form-success strong { color: var(--accent); }
.form-success span { color: var(--text-dim); }

.success-check { width: 40px; height: 40px; margin-bottom: 6px; }
.success-check-circle {
  stroke: var(--accent); stroke-width: 2.5;
  stroke-dasharray: 151; stroke-dashoffset: 151;
  animation: successCircle 0.5s ease forwards;
}
.success-check-mark {
  stroke: var(--accent); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 34; stroke-dashoffset: 34;
  animation: successMark 0.35s ease forwards 0.45s;
}
@keyframes successCircle { to { stroke-dashoffset: 0; } }
@keyframes successMark { to { stroke-dashoffset: 0; } }

/* ---------- Availability calendar ---------- */
.availability-block { display: flex; flex-direction: column; gap: 8px; }
.availability-label { font-size: 0.85rem; color: var(--text-dim); }
.availability-hint { font-size: 0.78rem; color: var(--text-dim); opacity: 0.8; }
.date-fallback { display: flex; flex-direction: column; gap: 6px; font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; }

.availability-calendar {
  background: var(--bg); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 16px;
}
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-label { font-family: var(--font-head); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }
.cal-nav {
  background: var(--card); border: 1px solid var(--card-border); color: var(--text);
  width: 28px; height: 28px; border-radius: 6px; cursor: pointer; font-size: 1rem; line-height: 1;
}
.cal-nav:hover { border-color: var(--accent); color: var(--accent); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-size: 0.7rem; color: var(--text-dim); padding-bottom: 4px; letter-spacing: 0.05em; }
.cal-day {
  aspect-ratio: 1; border-radius: 6px; border: 1px solid transparent;
  background: transparent; color: var(--text); font-size: 0.82rem; cursor: pointer;
}
.cal-day-empty { visibility: hidden; }
.cal-day.cal-open:hover { border-color: var(--accent); color: var(--accent); }
.cal-day.cal-closed { background: rgba(224, 92, 92, 0.12); color: #e05c5c; cursor: not-allowed; text-decoration: line-through; }
.cal-day.cal-past { color: var(--text-dim); opacity: 0.35; cursor: default; }
.cal-day.cal-today { border-color: var(--card-border); font-weight: 700; }
.cal-day.cal-selected { background: var(--accent); color: var(--accent-text); font-weight: 700; }
.cal-legend { display: flex; gap: 16px; margin-top: 12px; font-size: 0.75rem; color: var(--text-dim); }
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.cal-dot-open { background: var(--accent); }
.cal-dot-closed { background: #e05c5c; }

/* ---------- Slot picker ---------- */
.slot-picker { min-height: 44px; }
.slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.slot-btn {
  background: var(--bg); border: 1px solid var(--card-border); color: var(--text);
  border-radius: 6px; padding: 10px 12px; font-size: 0.85rem; cursor: pointer;
  font-family: var(--font-body); transition: border-color 0.15s ease, background 0.15s ease;
}
.slot-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.slot-btn.slot-selected { background: var(--accent); color: var(--accent-text); border-color: var(--accent); font-weight: 600; }
.slot-btn.slot-closed, .slot-btn.slot-booked {
  background: rgba(224, 92, 92, 0.1); color: #e05c5c; border-color: transparent;
  text-decoration: line-through; cursor: not-allowed;
}
.slot-btn.slot-closed.slot-selected, .slot-btn.slot-booked.slot-selected {
  background: #e05c5c; color: #fff; text-decoration: none;
}
.slot-empty { color: var(--text-dim); font-size: 0.85rem; padding: 8px 0; }

/* ---------- Vehicle plate lookup ---------- */
.plate-input-row { display: flex; gap: 8px; }
.plate-input-row input {
  flex: 1; background: var(--bg); border: 1px solid var(--card-border); border-radius: 6px;
  padding: 10px 12px; color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.plate-input-row input:focus { outline: none; border-color: var(--accent); }
.plate-input-row .btn-small { white-space: nowrap; padding: 10px 16px; }
.plate-result { font-size: 0.85rem; margin-top: 8px; min-height: 1.2em; }
.plate-result-success { color: var(--accent); }
.plate-result-error { color: #e05c5c; }

@media (max-width: 480px) {
  .slot-grid { grid-template-columns: 1fr; }
}

/* ---------- Admin page ---------- */
.admin-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.admin-box {
  width: 100%; max-width: 460px;
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 32px;
}
.admin-panel { max-width: 640px; }
.admin-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; font-family: var(--font-head); }
.admin-brand .logo-mark { width: 32px; height: 32px; border-radius: 8px; }
.admin-brand .logo-text em { color: var(--accent); font-style: normal; }
.admin-box h1 { font-size: 1.6rem; margin-bottom: 10px; }
.admin-box > p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 20px; }
.admin-field { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 16px; }
.admin-field input {
  background: var(--bg); border: 1px solid var(--card-border); border-radius: 6px;
  padding: 10px 12px; color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
}
.admin-field input:focus { outline: none; border-color: var(--accent); }
.admin-warning { color: #e05c5c; font-size: 0.85rem; margin-top: 12px; }
.admin-note { margin-top: 20px; font-size: 0.78rem; color: var(--text-dim); line-height: 1.6; border-top: 1px solid var(--card-border); padding-top: 16px; }

.admin-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.admin-actions .btn { flex: 1; }
.admin-steps { margin: 24px 0; padding-left: 20px; color: var(--text-dim); font-size: 0.85rem; display: flex; flex-direction: column; gap: 6px; }
.admin-steps code { background: var(--bg); border: 1px solid var(--card-border); border-radius: 4px; padding: 1px 6px; color: var(--accent); }
.admin-output {
  width: 100%; min-height: 160px;
  background: var(--bg); border: 1px solid var(--card-border); border-radius: 6px;
  color: var(--text-dim); font-family: monospace; font-size: 0.8rem; padding: 12px;
  resize: vertical;
}

/* ---------- Calendar: booked indicator ---------- */
.cal-day { position: relative; display: flex; align-items: center; justify-content: center; }
.cal-booked-dot {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: #5b9dd9;
}
.cal-day.cal-selected .cal-booked-dot { background: var(--accent-text); }
.cal-dot-booked { background: #5b9dd9; }
.cal-day.cal-blocked { opacity: 0.4; cursor: not-allowed; }

/* ---------- Admin dashboard ---------- */
.admin-dashboard { padding: 40px 20px 80px; }
.admin-header { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.admin-header h1 { font-size: 1.8rem; }
.admin-header .admin-brand { margin-bottom: 4px; }

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 4px;
}
.stat-value { font-family: var(--font-head); font-size: 1.8rem; color: var(--accent); }
.stat-label { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }

.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.admin-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 24px;
}
.admin-card h2 { font-size: 1.15rem; margin-bottom: 4px; }
.admin-card-sub { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 16px; }
.admin-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.admin-card-head h2 { margin-bottom: 0; }

.btn-small { padding: 8px 16px; font-size: 0.78rem; }
.btn-danger { border-color: #e05c5c; color: #e05c5c; }
.btn-danger:hover { background: #e05c5c; color: #fff; border-color: #e05c5c; }

.day-detail { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--card-border); }
.day-detail-date { font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 4px; }
.day-detail-status { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 12px; }
.day-detail-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.day-detail-sub { font-size: 0.8rem; color: var(--text-dim); margin: 14px 0 8px; }

.review-form { margin: 4px 0 16px; }

.gallery-preview { display: flex; gap: 12px; margin: 14px 0; }
.gallery-preview img { width: 50%; max-height: 160px; object-fit: cover; border-radius: 8px; border: 1px solid var(--card-border); }
.gallery-output { margin-top: 16px; }

.closed-dates-file { margin-top: 20px; border-top: 1px solid var(--card-border); padding-top: 16px; }
.closed-dates-file summary { cursor: pointer; color: var(--accent); font-size: 0.85rem; font-family: var(--font-head); letter-spacing: 0.03em; text-transform: uppercase; }
.closed-dates-file .admin-note { border-top: none; padding-top: 12px; margin-top: 0; }

.admin-search {
  width: 100%; background: var(--bg); border: 1px solid var(--card-border); border-radius: 6px;
  padding: 10px 12px; color: var(--text); font-family: var(--font-body); font-size: 0.9rem; margin-bottom: 14px;
}
.admin-search:focus { outline: none; border-color: var(--accent); }

.bookings-list { display: flex; flex-direction: column; gap: 8px; max-height: 480px; overflow-y: auto; margin-bottom: 16px; }
.bookings-empty { color: var(--text-dim); font-size: 0.85rem; padding: 20px 0; text-align: center; }
.booking-row {
  display: grid; grid-template-columns: 68px 1fr auto; align-items: center; gap: 12px;
  background: var(--bg); border: 1px solid var(--card-border); border-radius: 8px;
  padding: 10px 14px; text-align: left; cursor: pointer; color: var(--text);
  font-family: var(--font-body); transition: border-color 0.15s ease;
}
.booking-row:hover { border-color: var(--accent); }
.booking-row-past { opacity: 0.55; }
.booking-row-date { font-family: var(--font-head); font-size: 0.85rem; color: var(--accent); line-height: 1.3; }
.booking-row-date small { font-family: var(--font-body); color: var(--text-dim); font-size: 0.7rem; }
.booking-row-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.booking-row-main strong { font-size: 0.92rem; }
.booking-row-sub { font-size: 0.78rem; color: var(--text-dim); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.status-pill { font-size: 0.72rem; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.status-pending { background: rgba(212, 175, 55, 0.15); color: var(--accent); }
.status-confirmed { background: rgba(91, 157, 217, 0.15); color: #5b9dd9; }
.status-completed { background: rgba(120, 200, 140, 0.15); color: #78c88c; }

.admin-storage-note { max-width: 720px; margin-top: 32px; }

/* ---------- Booking modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 200;
}
.modal-box {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 28px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
}
.modal-box h2 { font-size: 1.2rem; margin-bottom: 18px; }
.modal-box form { display: flex; flex-direction: column; gap: 14px; }
.modal-box label { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; color: var(--text-dim); }
.modal-box input, .modal-box select, .modal-box textarea {
  background: var(--bg); border: 1px solid var(--card-border); border-radius: 6px;
  padding: 10px 12px; color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
}
.modal-box input:focus, .modal-box select:focus, .modal-box textarea:focus { outline: none; border-color: var(--accent); }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 6px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--card-border); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); }
.footer-nav { display: flex; gap: 20px; }
.footer-nav a { color: var(--text-dim); font-size: 0.85rem; }
.footer-nav a:hover { color: var(--accent); }
.footer-copy { color: var(--text-dim); font-size: 0.8rem; }

/* ---------- Reveal Animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.gallery-grid [data-reveal]:nth-child(1) { transition-delay: 0s; }
.gallery-grid [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.gallery-grid [data-reveal]:nth-child(3) { transition-delay: 0.24s; }
.gallery-grid [data-reveal]:nth-child(4) { transition-delay: 0s; }
.gallery-grid [data-reveal]:nth-child(5) { transition-delay: 0.12s; }
.gallery-grid [data-reveal]:nth-child(6) { transition-delay: 0.24s; }
.testimonial-grid [data-reveal]:nth-child(1) { transition-delay: 0s; }
.testimonial-grid [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.testimonial-grid [data-reveal]:nth-child(3) { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .gallery-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .hero-photo { object-position: 70% center; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-inner { gap: 32px; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--card-border);
    flex-direction: column; gap: 0; padding: 8px 0;
    transform: translateY(-150%); transition: transform 0.25s ease;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { padding: 14px 24px; border-bottom: 1px solid var(--card-border); }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
}
