:root {
  --wool: #f3f0ea;
  --slate: #2b2824;
  --moss: #5c6b52;
  --stone: #83796c;
  --line: #e2dccd;
  --accent: #8a6f4e;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --content-width: 100%;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  color: var(--slate);
  background: var(--wool);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- GATE ---------- */
.gate {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: #201e1b;
  color: #cfc7b8;
}

.gate-mark {
  opacity: 0.4;
  width: min(60vw, 280px);
  height: auto;
  display: block;
}

.gate form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 260px;
}

.gate #gate-password {
  background: transparent;
  border: 1px solid rgba(207, 199, 184, 0.35);
  color: #cfc7b8;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  caret-color: #cfc7b8;
  width: 100%;
}

.gate #gate-password::placeholder {
  color: rgba(207, 199, 184, 0.3);
}

.gate #gate-password:focus {
  border-color: rgba(207, 199, 184, 0.65);
}

.gate button[type="submit"] {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 11px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease;
}

.gate button[type="submit"]:hover {
  background: #765d3f;
}

.gate.shake {
  animation: shake 0.4s;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

/* ---------- CONTENT ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(243, 240, 234, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 8px;
  max-width: 1100px;
}

.wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--slate);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.site-header nav {
  white-space: nowrap;
}

.site-header nav a {
  color: var(--stone);
  text-decoration: none;
  margin-left: 24px;
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.site-header nav a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .site-header nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    white-space: normal;
  }

  .site-header nav.open {
    display: flex;
  }

  .site-header nav a {
    margin-left: 0;
    padding: 12px 2px;
    font-size: 13px;
    border-top: 1px solid var(--line);
  }

  .site-header nav a:first-child {
    border-top: none;
  }
}

.hero {
  position: relative;
  height: 62vh;
  min-height: 380px;
  max-height: 620px;
  overflow: hidden;
}

.hero-track {
  position: absolute;
  inset: 0;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero-track::-webkit-scrollbar { display: none; }

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 30, 27, 0) 35%, rgba(32, 30, 27, 0.62) 100%);
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 40px 24px 44px;
  color: var(--wool);
  pointer-events: none;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(32, 30, 27, 0.35);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.hero-nav:hover { background: rgba(32, 30, 27, 0.6); }
.hero-prev { left: 16px; }
.hero-next { right: 16px; }

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 7px;
  pointer-events: auto;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.hero-caption h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 44px);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  max-width: 640px;
}

.hero-caption p {
  margin: 0;
  color: rgba(243, 240, 234, 0.88);
  font-size: 16px;
  max-width: 460px;
}

.about, .location, .gallery, .availability, .booking, .nearby, .reviews {
  padding: 56px 24px;
}

.nearby p {
  color: #4a463f;
  line-height: 1.65;
  max-width: var(--content-width);
  font-size: 16px;
}

.nearby p:not(:last-child) {
  margin-bottom: 16px;
}

.kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.location p {
  color: var(--stone);
  margin: 0 0 14px;
}

.location p a {
  color: var(--accent);
}

.map-embed {
  border-radius: 10px;
  overflow: hidden;
  max-width: var(--content-width);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(43, 40, 36, 0.06);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
}

.parking-note {
  max-width: var(--content-width);
  margin-top: 14px;
  color: var(--stone);
  font-size: 14px;
}

h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--slate);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}

.about p {
  color: #4a463f;
  line-height: 1.65;
  max-width: var(--content-width);
  font-size: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  display: block;
  border: none;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(43, 40, 36, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 14px 28px rgba(43, 40, 36, 0.18);
}

.placeholder-img {
  background: repeating-linear-gradient(
    135deg,
    #e4ded0,
    #e4ded0 10px,
    #ded7c7 10px,
    #ded7c7 20px
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.placeholder-img::after {
  content: attr(data-placeholder);
  font-size: 12px;
  color: #8a8270;
  background: rgba(255,255,255,0.7);
  padding: 4px 8px;
  border-radius: 3px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(84vw, 1100px);
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }

@media (max-width: 640px) {
  .lightbox-nav { width: 38px; height: 38px; font-size: 20px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 10px; right: 10px; }
}

.confirm-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 20px;
}

.confirm-modal[hidden] { display: none; }

.confirm-modal-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.confirm-modal-icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-size: 20px;
}

.confirm-modal-card h3 {
  font-family: var(--serif);
  font-weight: normal;
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--slate);
}

.confirm-modal-card p {
  color: var(--stone);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 22px;
}

.confirm-modal-note {
  font-size: 12px !important;
  color: var(--stone);
  background: var(--wool);
  border-radius: 8px;
  padding: 10px 12px;
  margin: -8px 0 20px !important;
}

.confirm-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: none;
  background: none;
  color: var(--stone);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.confirm-modal-close:hover { background: var(--wool); }

.confirm-modal-ok {
  background: var(--slate);
  color: var(--wool);
  border: none;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.confirm-modal-ok:hover { background: var(--moss); }

.availability-intro {
  color: var(--stone);
  margin-bottom: 16px;
}

.calendar {
  max-width: var(--content-width);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px 22px;
  box-shadow: 0 1px 2px rgba(43, 40, 36, 0.05);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.calendar-month {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--slate);
}

.calendar-header button {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--slate);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.calendar-header button:hover:not(:disabled) { background: rgba(138, 111, 78, 0.08); }

.calendar-header button:disabled {
  opacity: 0.3;
  cursor: default;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--stone);
  padding: 4px 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 7px;
  color: var(--slate);
}

.cal-empty { visibility: hidden; }

.cal-past { color: var(--line); }

.cal-today {
  box-shadow: inset 0 0 0 1px var(--accent);
  font-weight: 600;
}

.cal-booked {
  background: #f1dad5;
  color: #a5473a;
  font-weight: 500;
}

.calendar-legend {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--stone);
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.calendar-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.calendar-legend .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  display: inline-block;
}

.calendar-legend .dot.booked {
  background: #f1dad5;
  border-color: #e3b3ab;
}

.booking p { color: var(--stone); }

.booking form {
  max-width: var(--content-width);
  margin-top: 20px;
}

.price-table {
  max-width: var(--content-width);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(43, 40, 36, 0.05);
  overflow: hidden;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  font-size: 15px;
}

.price-row:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.price-row span:last-child {
  font-family: var(--serif);
  font-size: 18px;
}

.price-note {
  max-width: var(--content-width);
  margin-top: 14px;
  color: var(--stone);
  font-size: 14px;
}

.rules-list {
  max-width: var(--content-width);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(43, 40, 36, 0.05);
  margin: 0;
  padding: 0 22px;
  list-style: none;
}

.rules-list li {
  padding: 14px 0;
  font-size: 15px;
  line-height: 1.5;
  color: #4a463f;
}

.rules-list li:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.rules-note {
  max-width: var(--content-width);
  margin-top: 14px;
  color: var(--stone);
  font-size: 14px;
}

.reviews-list {
  max-width: var(--content-width);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 1px 2px rgba(43, 40, 36, 0.05);
}

.review-photo {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.review-rating {
  display: block;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--slate);
  margin: 0 0 10px;
}

.review-name {
  margin: 0;
  font-size: 13px;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-row {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.form-row-split {
  flex-direction: row;
  gap: 16px;
}

.form-row-split > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--stone);
  margin-bottom: 7px;
}

input, textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--slate);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(138, 111, 78, 0.14);
}

button[type="submit"] {
  background: var(--slate);
  color: var(--wool);
  border: none;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
  background: var(--moss);
  transform: translateY(-1px);
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
}

.form-status.success { color: var(--moss); }
.form-status.error { color: #a5473a; }

.nights-tally {
  margin-top: -4px;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--stone, #7a7568);
}

.nights-tally.error { color: #a5473a; }

.mailto-fallback {
  margin-top: 20px;
  font-size: 14px;
}

.mailto-fallback a, .site-footer a {
  color: var(--accent);
}

.site-footer {
  padding: 34px 24px 56px;
  color: var(--stone);
  font-size: 14px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row-split { flex-direction: column; gap: 0; }
  .hero-caption h1 { font-size: 26px; }
  .admin-wrap { padding: 20px 14px 60px; }
  .admin-section { padding: 16px 14px; }
  .booking-table { font-size: 13px; }
  .booking-table th, .booking-table td { padding: 8px 6px; }
}

/* ---------- MANAGE BOOKING ---------- */
.manage {
  padding-top: 48px;
  padding-bottom: 60px;
}

.manage-summary {
  max-width: var(--content-width);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 20px 0;
}

.manage-summary p {
  margin: 4px 0;
  font-size: 15px;
  color: var(--slate);
}

.manage-name {
  font-family: var(--serif);
  font-size: 18px;
}

.manage-cancel {
  background: none;
  border: 1px solid #a5473a;
  color: #a5473a;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.manage-cancel:hover {
  background: #fbeceA;
}

.manage-rearrange {
  margin-top: 32px;
}

.manage-rearrange form {
  max-width: var(--content-width);
  margin-top: 16px;
}

.manage-lock {
  max-width: var(--content-width);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 0 0 24px;
}

.manage-lock p {
  margin: 4px 0;
  font-size: 14px;
  color: var(--slate);
}

.manage-lock form {
  margin-top: 14px;
}

.manage-lock input {
  max-width: 160px;
  letter-spacing: 2px;
  font-size: 16px;
}

/* ---------- ADMIN ---------- */
.admin-login {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #201e1b;
}

.admin-login form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 260px;
}

.admin-login h1 {
  font-family: var(--serif);
  font-style: italic;
  color: #cfc7b8;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 8px;
  text-align: center;
}

.admin-login input {
  background: transparent;
  border: 1px solid rgba(207, 199, 184, 0.35);
  color: #cfc7b8;
  padding: 10px 12px;
  border-radius: 8px;
}

.admin-login button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 11px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease;
}

.admin-login button:hover { background: #765d3f; }

.admin-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 34px 24px 80px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.admin-header h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0;
}

.admin-header a, .admin-header button {
  font-size: 13px;
  color: var(--stone);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

.admin-section {
  margin-bottom: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
}

.admin-section h2 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.admin-section {
  overflow-x: auto;
}

.booking-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}

.booking-table th {
  text-align: left;
  color: var(--stone);
  font-weight: 500;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.booking-table td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

/* Contact/message content can be long (email addresses especially) — let
   those two wrap at word boundaries within a capped width, rather than
   inflating the whole table or breaking mid-word like the rest of the row. */
.booking-table td.wrap-cell {
  max-width: 220px;
  overflow-wrap: break-word;
}

.status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.status-pending { background: #f2e5c8; color: #8a6a1e; }
.status-approved { background: #dfe8d8; color: var(--moss); }
.status-declined { background: #f1dad5; color: #a5473a; }
.status-cancelled { background: #e6e2d8; color: var(--stone); }

.code-set {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: #dfe8d8;
  color: var(--moss);
}

.row-actions button {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  margin-right: 6px;
  margin-bottom: 4px;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.row-actions button.approve { border-color: var(--moss); color: var(--moss); }
.row-actions button.approve:hover { background: rgba(92, 107, 82, 0.08); }
.row-actions button.decline { border-color: #a5473a; color: #a5473a; }
.row-actions button.decline:hover { background: rgba(165, 71, 58, 0.08); }

.block-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
  max-width: 640px;
}

.block-form .form-row { margin-bottom: 0; min-width: 130px; }

.all-bookings-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.all-bookings-controls input[type="search"] {
  flex: 1 1 220px;
  font-size: 14px;
  padding: 9px 12px;
}

.review-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.all-bookings-controls select {
  font-family: inherit;
  font-size: 14px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--slate);
}

.empty-note {
  color: var(--stone);
  font-size: 14px;
}

.accounts-summary {
  font-size: 15px;
  margin: 4px 0 16px;
}

.paid-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  cursor: pointer;
}

.paid-toggle input {
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.comp-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: #e6e2d8;
  color: var(--stone);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--stone);
  cursor: pointer;
}

.checkbox-row input {
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.checkbox-row.inline {
  display: inline-flex;
  margin-right: 10px;
  margin-bottom: 4px;
}

.form-note {
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f4f1ea;
  border: 1px solid #e6e2d8;
  font-size: 13px;
  color: var(--stone);
  line-height: 1.5;
}
