﻿:root {
  --ink: #151f19;
  --muted: #657269;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --line: #dce4dd;
  --soft: #edf4ea;
  --green: #245a3d;
  --green-dark: #153324;
  --gold: #d39a35;
  --clay: #a85d3b;
  --shadow: 0 18px 55px rgba(24, 39, 29, 0.16);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
svg { width: 22px; height: 22px; }

.app-shell { min-height: 100vh; }
.side-nav {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  width: 280px;
  padding: 22px;
  color: white;
  background: var(--green-dark);
  transform: translateX(-100%);
  transition: transform 180ms ease;
  box-shadow: var(--shadow);
}
.side-nav.open { transform: translateX(0); }
.side-nav nav { display: grid; gap: 10px; margin-top: 28px; }
.side-nav nav a, .nav-close {
  padding: 12px;
  border-radius: 8px;
  color: white;
  background: rgba(255,255,255,0.08);
}
.nav-close {
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.brand, .topbar, .hero-actions, .metrics, .slot-tools, .contact-links {
  display: flex;
  align-items: center;
}
.brand { gap: 10px; font-weight: 900; }
.brand-logo {
  display: block;
  width: min(168px, 100%);
  height: auto;
  object-fit: contain;
}
.top-brand-logo { width: min(150px, 34vw); }
.admin-brand-logo { width: 150px; }
.login-logo {
  display: block;
  width: min(210px, 100%);
  height: auto;
  margin: 0 auto 18px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 8px;
  color: white;
  background: rgba(255,255,255,0.16);
}

.page { min-width: 0; }
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 72px;
  justify-content: space-between;
  gap: 14px;
  padding: 0 clamp(16px, 4vw, 54px);
  color: white;
  background: rgba(16, 29, 21, 0.72);
  backdrop-filter: blur(14px);
}
.top-brand { font-weight: 900; margin-right: auto; }
.top-link, .services-menu > button {
  border: 0;
  color: white;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}
.services-menu { position: relative; }
.services-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  display: none;
  width: min(380px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  box-shadow: var(--shadow);
}
.services-dropdown.open { display: grid; gap: 8px; }
.dropdown-category { padding: 10px; border-radius: 8px; background: var(--soft); }
.dropdown-category strong { display: block; margin-bottom: 6px; }
.dropdown-category a { display: inline-block; margin: 0 8px 6px 0; color: var(--green); font-weight: 800; font-size: .9rem; }

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 8px;
  color: inherit;
  background: rgba(255,255,255,0.14);
  cursor: pointer;
}
.button, .small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 900;
}
.button.primary { color: #1b1508; background: var(--gold); }
.button.secondary, .button.ghost {
  color: white;
  border: 1px solid rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.13);
}
.button.full { width: 100%; }
.small-button {
  min-height: 34px;
  padding: 8px 12px;
  color: white;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 122px clamp(18px, 5vw, 72px) 54px;
  color: white;
}
.hero img, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero img { object-fit: cover; object-position: 62% 50%; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10,21,15,.9) 0%, rgba(10,21,15,.72) 36%, rgba(10,21,15,.24) 78%),
    linear-gradient(0deg, rgba(11,18,14,.48), rgba(11,18,14,.08));
}
.hero-content {
  position: relative;
  width: min(760px, 100%);
}
.kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: .95;
}
h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; }
h3 { margin-bottom: 8px; }
.hero-content p:not(.kicker) {
  max-width: 640px;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 2vw, 1.22rem);
}
.hero-actions { gap: 12px; flex-wrap: wrap; }
.metrics {
  gap: 12px;
  flex-wrap: wrap;
  margin: 34px 0 0;
  padding: 0;
}
.metrics div {
  min-width: 150px;
  padding: 14px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.11);
}
.metrics dt { font-weight: 900; }
.metrics dd { margin: 0; color: rgba(255,255,255,.76); }

.section {
  padding: clamp(58px, 9vw, 96px) clamp(18px, 5vw, 72px);
}
.section > * {
  width: min(1160px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.intro, .quote-band, .contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}
.intro {
  color: white;
  background: var(--green-dark);
}
.intro p:last-child { color: rgba(255,255,255,.76); font-size: 1.06rem; }
.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}
.section-heading.split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  align-items: end;
}
.section-heading.split p:last-child { color: var(--muted); margin: 0; }

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 18px;
}
.category-tabs button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 13px;
  color: var(--green-dark);
  background: white;
  cursor: pointer;
  font-weight: 900;
}
.category-tabs button.active { color: white; background: var(--green); }
.service-grid, .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-card, .testimonial-card, .slot-panel, .panel-form, .admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 35px rgba(24, 39, 29, .06);
}
.service-card { min-height: 230px; padding: 24px; }
.service-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--green);
  background: var(--soft);
  font-weight: 900;
}
.service-card p, .testimonial-card p { color: var(--muted); }
.service-card strong { color: var(--clay); }

.booking, .quote-band { background: var(--soft); }
.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(340px, 1fr);
  gap: 18px;
}
.slot-panel { padding: 18px; }
.slot-tools { justify-content: space-between; margin-bottom: 12px; }
.slot-list { display: grid; gap: 10px; max-height: 520px; overflow: auto; }
.slot-option {
  display: grid;
  gap: 2px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  text-align: left;
  background: white;
  cursor: pointer;
}
.slot-option.active { border-color: var(--green); box-shadow: 0 0 0 3px rgba(36,90,61,.13); }
.slot-option strong { color: var(--green-dark); }
.slot-option span { color: var(--muted); }
.panel-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}
.panel-form.compact { width: min(520px, 100%); }
label { display: grid; gap: 7px; font-weight: 800; color: var(--green-dark); }
input, select, textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbd7cf;
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
}
textarea { resize: vertical; }
.form-status { min-height: 24px; margin: 0; color: var(--green); font-weight: 800; }
.form-status.error { color: #a02f2f; }

.testimonial-card { padding: 24px; }
.testimonial-card .stars { color: var(--gold); font-weight: 900; }
.contact-links { flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 22px; font-weight: 900; }

.site-footer {
  padding: 42px clamp(18px, 5vw, 72px);
  color: white;
  background: #101d15;
}
.site-footer a { color: white; }
.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, .8fr) minmax(220px, .8fr);
  gap: 28px;
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: start;
}
.footer-logo {
  display: block;
  width: min(190px, 100%);
  height: auto;
  margin-bottom: 14px;
}
.footer-brand p,
.footer-contact span,
.footer-socials span {
  margin: 0;
  color: rgba(255,255,255,.72);
}
.footer-contact {
  display: grid;
  gap: 8px;
  font-style: normal;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-socials a {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 9px 11px;
  background: rgba(255,255,255,.08);
  font-weight: 900;
}
.footer-socials a:hover { background: rgba(255,255,255,.16); }

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: grid;
  justify-items: end;
  gap: 12px;
}
.chat-launcher {
  border: 0;
  border-radius: 8px;
  padding: 13px 16px;
  color: white;
  background: var(--green);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 900;
}
.chat-panel {
  width: min(400px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}
.chat-panel header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  color: white;
  background: var(--green-dark);
}
.chat-panel header div { display: grid; gap: 2px; }
.chat-panel header span { color: rgba(255,255,255,.72); font-size: .84rem; }
.chat-messages {
  display: grid;
  gap: 10px;
  min-height: 250px;
  max-height: 330px;
  overflow: auto;
  padding: 14px;
  background: #f6f8f4;
}
.message {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: .95rem;
}
.message.bot { justify-self: start; border: 1px solid var(--line); background: white; }
.message.user { justify-self: end; color: white; background: var(--green); }
.chat-form {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}
.icon-button.send { color: white; background: var(--gold); }

.admin-body { background: #f5f7f2; }
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar {
  padding: 22px;
  color: white;
  background: var(--green-dark);
}
.admin-sidebar nav { display: grid; gap: 8px; margin-top: 28px; }
.admin-sidebar button {
  border: 0;
  border-radius: 8px;
  padding: 11px;
  color: white;
  background: rgba(255,255,255,.08);
  text-align: left;
  cursor: pointer;
  font-weight: 800;
}
.admin-sidebar button.active { background: var(--gold); color: #1b1508; }
.admin-main { padding: 28px; }
.admin-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.admin-card { padding: 18px; }
.admin-card strong { display: block; font-size: 1.8rem; }
.admin-section { display: none; }
.admin-section.active { display: grid; gap: 16px; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: white;
}
.data-table th, .data-table td {
  padding: 11px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.data-table th { color: white; background: var(--green); }
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 250px;
}
.status-pill {
  flex-basis: 100%;
  width: max-content;
  max-width: 100%;
  border-radius: 8px;
  padding: 5px 8px;
  color: var(--green-dark);
  background: var(--soft);
  font-size: .86rem;
}
.status-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 9px;
  color: var(--green-dark);
  background: white;
  cursor: pointer;
  font-weight: 800;
  font-size: .82rem;
}
.status-button.active {
  color: white;
  border-color: var(--green);
  background: var(--green);
}
.status-button:disabled {
  opacity: .7;
  cursor: wait;
}
.inline-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: white;
}
.inline-form .wide { grid-column: 1 / -1; }
.login-card {
  width: min(420px, calc(100vw - 32px));
  margin: 12vh auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

@media (min-width: 1120px) {
  .side-nav {
    transform: none;
  }
  .page {
    margin-left: 280px;
  }
  .topbar {
    left: 280px;
  }
  .nav-close, .topbar [data-open-nav] {
    display: none;
  }
}

@media (max-width: 920px) {
  .top-link, .services-menu { display: none; }
  .intro, .quote-band, .contact, .section-heading.split, .booking-layout, .footer-inner {
    grid-template-columns: 1fr;
  }
  .service-grid, .testimonial-grid, .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
  .inline-form { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .hero { min-height: 88svh; padding-inline: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  h1 { font-size: clamp(2.9rem, 16vw, 4rem); }
  .metrics { display: grid; }
  .service-grid, .testimonial-grid, .admin-grid { grid-template-columns: 1fr; }
  .section { padding-inline: 16px; }
  .panel-form { padding: 18px; }
  .chat-widget { right: 12px; bottom: 12px; }
}

.form-note {
  margin: -6px 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

input[type="file"] {
  padding: 13px;
  background: #fff;
}

.attachment-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 150px;
}

.attachment-list a {
  color: var(--green);
  font-weight: 800;
  word-break: break-word;
}

.recaptcha-box {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow-x: auto;
}

.recaptcha-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.recaptcha-box p.error {
  color: var(--danger);
  font-weight: 800;
}

[data-recaptcha-widget] {
  min-height: 78px;
}

.review-form {
  margin-top: 28px;
  max-width: 680px;
}

.review-form h3 {
  margin: 0;
  font-size: 1.25rem;
}







