:root {
  --ink: #1b1715;
  --muted: #6f635d;
  --paper: #fffaf6;
  --soft: #f3e7df;
  --veil: #fbf3ee;
  --clay: #b97861;
  --rose: #d9a39a;
  --champagne: #c9a46b;
  --moss: #7e8a74;
  --line: rgba(27, 23, 21, 0.13);
  --shadow: 0 18px 45px rgba(27, 23, 21, 0.08);
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  font-size: 16px;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a { color: inherit; text-decoration: none; }
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 246, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.78rem 1.25rem;
  gap: 1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.nav-links.right { justify-content: flex-end; }
.nav-links a {
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-bottom-color: var(--ink);
}
.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  white-space: nowrap;
}
.icon-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 auto;
}
.brand {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.5rem;
  align-items: center;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 205px;
  justify-self: center;
}
.brand-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.82;
}
.brand strong {
  display: block;
  grid-column: 2;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.16rem, 1.65vw, 1.55rem);
  font-weight: 700;
}
.brand span {
  display: block;
  grid-column: 2;
  margin-top: 0.22rem;
  font-size: 0.58rem;
  color: var(--muted);
}
.menu-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.menu-toggle,
.mobile-panel { display: none; }
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
}
.menu-toggle {
  gap: 5px;
  flex-direction: column;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.82rem 1.2rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: transparent;
  color: var(--ink);
}
.btn.light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn.light:hover {
  background: transparent;
  color: var(--paper);
}
.subtle-btn {
  background: transparent;
  color: var(--ink);
}
.subtle-btn:hover {
  background: var(--ink);
  color: var(--paper);
}
.hero {
  min-height: calc(100vh - 106px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  background: var(--ink);
  color: var(--paper);
}
.hero-media { min-height: 560px; }
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 14% 18%, rgba(217, 163, 154, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(27, 23, 21, 0.97), rgba(67, 48, 44, 0.96));
}
.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.05;
}
h1 { max-width: 650px; font-size: clamp(3rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2rem, 3.6vw, 4rem); }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.9rem); }
.hero-copy p {
  max-width: 560px;
  margin: 1.25rem 0 0;
  color: rgba(255, 250, 246, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.section { padding: clamp(3rem, 6.5vw, 6.5rem) 1.25rem; }
.inner {
  max-width: 1180px;
  margin: 0 auto;
}
.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
  border-radius: 6px;
}
.copy p,
.section-head p,
.product p,
.review p,
.form-help {
  color: var(--muted);
}
.copy p { font-size: 1.03rem; }
.service-band { background: var(--soft); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.section-head p {
  max-width: 470px;
  margin: 0;
}
.service-carousel {
  position: relative;
  min-height: 430px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 107, 0.35);
  border-radius: 8px;
  background: #1b1715;
  box-shadow: 0 26px 70px rgba(27, 23, 21, 0.16);
}
.carousel-track,
.carousel-slide {
  position: absolute;
  inset: 0;
}
.carousel-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 520ms ease;
}
.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}
.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 23, 21, 0.78), rgba(27, 23, 21, 0.16) 58%, rgba(27, 23, 21, 0.34)),
    linear-gradient(180deg, transparent 42%, rgba(27, 23, 21, 0.42));
}
.carousel-slide img {
  position: absolute;
  inset: 0;
}
.carousel-caption {
  position: absolute;
  left: clamp(1.2rem, 5vw, 4rem);
  bottom: clamp(1.4rem, 5vw, 3.6rem);
  z-index: 2;
  max-width: min(560px, calc(100% - 7rem));
  color: var(--paper);
}
.carousel-caption span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 246, 0.45);
  border-radius: 50%;
  background: rgba(27, 23, 21, 0.42);
  color: var(--paper);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.carousel-btn:hover {
  background: rgba(255, 250, 246, 0.92);
  color: var(--ink);
}
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }
.carousel-dots {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 250, 246, 0.74);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.carousel-dots button.active {
  background: var(--paper);
}
.carousel-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--champagne), rgba(255, 250, 246, 0.88));
  transform-origin: left center;
  animation: carousel-progress 4000ms linear infinite;
}
.service-carousel:hover .carousel-progress,
.service-carousel:focus-within .carousel-progress {
  animation-play-state: paused;
}
@keyframes carousel-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.service-card {
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: #ddd;
  border-radius: 6px;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.68));
}
.service-card img {
  position: absolute;
  inset: 0;
  transition: transform 420ms ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card div {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.3rem;
  color: var(--white);
}
.service-card span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.booking-band {
  background: var(--moss);
  color: var(--paper);
}
.booking-band p { color: rgba(255, 250, 246, 0.82); }
.product-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.product,
.review,
.form-panel,
.table-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.product figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  background: var(--soft);
}
.product div,
.review,
.form-panel,
.table-panel { padding: clamp(1rem, 2.4vw, 1.6rem); }
.table-panel { overflow-x: auto; }
.product p,
.review p { margin: 0.45rem 0 0; font-size: 0.94rem; }
.promo-card div {
  display: grid;
  gap: 0.9rem;
}
.promo-card .btn {
  width: 100%;
  margin-top: 0.15rem;
}
.product strong,
.review strong {
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.review {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  color: var(--ink);
}
.form-page {
  background:
    linear-gradient(180deg, #fffaf6, #f2e3da 58%, #ead8cd);
}
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.auth-page {
  min-height: calc(100vh - 180px);
  background:
    linear-gradient(135deg, #1b1715 0%, #34231f 42%, #f1e3da 42%, #fffaf6 100%);
}
.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.auth-intro p {
  max-width: 560px;
  color: rgba(255, 250, 246, 0.78);
}
.auth-intro h1 {
  color: var(--paper);
}
.auth-intro .eyebrow {
  color: var(--champagne);
}
.auth-mark {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  padding: 0.55rem;
  border: 1px solid rgba(201, 164, 107, 0.35);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(27, 23, 21, 0.24);
}
.auth-panel {
  padding: clamp(1.1rem, 3vw, 2rem);
  border-color: rgba(201, 164, 107, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: 0 26px 70px rgba(27, 23, 21, 0.18);
}
.role-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  padding: 0.35rem;
  margin-bottom: 1rem;
  background: var(--soft);
  border: 1px solid var(--line);
}
.role-tab {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.role-tab.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(27, 23, 21, 0.07);
}
.role-form {
  display: none;
}
.role-form.active {
  display: grid;
}
.smart-login {
  gap: 1rem;
}
.portal-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.portal-grid.single {
  grid-template-columns: minmax(260px, 420px);
}
.portal-summary,
.dashboard-shell {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}
.dashboard-card,
.stat-card {
  border: 1px solid rgba(201, 164, 107, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 246, 0.98), rgba(255, 255, 255, 0.9));
  box-shadow: 0 22px 60px rgba(27, 23, 21, 0.09);
}
.dashboard-card {
  padding: clamp(1.15rem, 2.8vw, 1.8rem);
}
.dashboard-card.featured {
  background:
    linear-gradient(150deg, #1b1715 0%, #34231f 58%, #7e8a74 100%);
  color: var(--paper);
}
.dashboard-card.featured h2,
.dashboard-card.featured .eyebrow {
  color: var(--paper);
}
.dashboard-card.featured .form-help {
  color: rgba(255, 250, 246, 0.74);
}
.dashboard-card.featured .metric {
  color: var(--champagne);
}
.dashboard-links {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.dashboard-card.featured .btn {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}
.dashboard-card.featured .subtle-btn {
  background: transparent;
  color: var(--paper);
}
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.summary-panel {
  margin: 0 0 1rem;
  padding: clamp(1rem, 2.4vw, 1.4rem);
  border: 1px solid rgba(201, 164, 107, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 246, 0.96), rgba(255, 255, 255, 0.82));
  box-shadow: 0 20px 55px rgba(27, 23, 21, 0.08);
}
.summary-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(201, 164, 107, 0.22);
}
.summary-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
}
.summary-head .eyebrow {
  margin: 0;
}
.category-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 155px;
  padding: 1rem;
}
.stat-card span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.stat-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 500;
  line-height: 1;
}
.compact-stat {
  min-height: 110px;
  border-color: rgba(126, 138, 116, 0.25);
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.95), rgba(242, 227, 218, 0.56));
}
.compact-stat strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--moss);
}
.portal-metric,
.portal-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.portal-table {
  margin-top: 1rem;
  overflow: visible;
}
.compact-head {
  margin-bottom: 1.25rem;
}
.booking-card-list {
  display: grid;
  gap: 0.85rem;
}
.booking-section {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}
.booking-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201, 164, 107, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.76);
}
.booking-section-head h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.booking-section-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
}
.booking-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.96), rgba(255, 255, 255, 0.9));
}
.booking-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.booking-card-head strong {
  display: block;
  margin-top: 0.2rem;
  overflow-wrap: anywhere;
}
.booking-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}
.booking-card-grid p {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.record-label {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.booking-actions {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-top: 0.15rem;
}
.approved-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 0.15rem;
}
.booking-search {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 0.65rem;
  align-items: end;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(201, 164, 107, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.72);
}
.booking-search .btn {
  min-width: 120px;
}
.promotion-form,
.banking-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: clamp(1rem, 2vw, 1.3rem);
  border: 1px solid rgba(201, 164, 107, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.72);
}
.promotion-form label:nth-child(3),
.promotion-form label:nth-child(4) {
  grid-column: 1 / -1;
}
.promotion-form .btn {
  align-self: end;
}
.banking-form .btn {
  align-self: end;
}
.banking-details {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(201, 164, 107, 0.32);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.72);
  color: var(--ink);
}
.banking-details span {
  display: block;
  overflow-wrap: anywhere;
}
.promotion-admin-list {
  display: grid;
  gap: 1rem;
}
.promotion-admin-card {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(201, 164, 107, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.9), rgba(255, 255, 255, 0.88));
}
.promotion-admin-card figure {
  margin: 0;
  min-height: 180px;
  aspect-ratio: 4 / 5;
  background: var(--soft);
  border-radius: 6px;
  overflow: hidden;
}
.promotion-admin-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promotion-admin-card form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.promotion-admin-card label:nth-child(3),
.promotion-admin-card label:nth-child(4) {
  grid-column: 1 / -1;
}
.promotion-actions {
  grid-column: 1 / -1;
}
.metric {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.75rem;
}
form {
  display: grid;
  gap: 0.85rem;
}
label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 246, 0.92);
  color: var(--ink);
  padding: 0.85rem 0.95rem;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(201, 164, 107, 0.25);
  border-color: rgba(201, 164, 107, 0.85);
  box-shadow: 0 10px 24px rgba(27, 23, 21, 0.06);
}
textarea {
  min-height: 145px;
  resize: vertical;
}
.check-label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  background: var(--soft);
  line-height: 1.5;
}
.check-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.12rem;
  padding: 0;
}
.notice {
  padding: 1rem;
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  background: var(--paper);
}
.notice.success { border-color: rgba(126, 138, 116, 0.55); }
.notice.error { border-color: rgba(185, 80, 70, 0.5); }
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.status-approved {
  border-color: rgba(126, 138, 116, 0.6);
  background: rgba(126, 138, 116, 0.16);
}
.status-declined {
  border-color: rgba(185, 80, 70, 0.45);
  background: rgba(185, 80, 70, 0.1);
}
.status-new {
  border-color: rgba(185, 120, 97, 0.5);
  background: rgba(185, 120, 97, 0.12);
}
.status-payment_pending {
  border-color: rgba(185, 120, 97, 0.5);
  background: rgba(185, 120, 97, 0.12);
}
.status-payment_received {
  border-color: rgba(126, 138, 116, 0.6);
  background: rgba(126, 138, 116, 0.16);
}
.muted-text {
  color: var(--muted);
}
.error-list {
  margin: 0;
  padding-left: 1.2rem;
}
.booking-result {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.booking-result p {
  color: var(--muted);
}
.booking-result strong {
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}
.details {
  display: grid;
  gap: 1.2rem;
  color: var(--muted);
}
.details strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.76rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.portal-bookings-table {
  min-width: 980px;
  table-layout: fixed;
}
.portal-bookings-table th:nth-child(1) { width: 18%; }
.portal-bookings-table th:nth-child(2) { width: 25%; }
.portal-bookings-table th:nth-child(3) { width: 13%; }
.portal-bookings-table th:nth-child(4) { width: 13%; }
.portal-bookings-table th:nth-child(5) { width: 12%; }
.portal-bookings-table th:nth-child(6) { width: 19%; }
th,
td {
  padding: 0.8rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.table-section-row td {
  background: rgba(255, 250, 246, 0.9);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.table-section-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  min-height: 26px;
  margin-left: 0.45rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
}
th {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}
.mini-btn {
  min-height: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 0.45rem 0.55rem;
  cursor: pointer;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
}
.mini-btn.approve {
  border-color: rgba(126, 138, 116, 0.55);
}
.mini-btn.decline {
  border-color: rgba(185, 80, 70, 0.45);
}
.footer {
  background: #120f0e;
  color: rgba(255, 250, 246, 0.72);
  padding: 2rem 1.25rem;
}
.footer .inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
}
.live-chat {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #1b1715;
  color: var(--paper);
  box-shadow: 0 16px 34px rgba(27, 23, 21, 0.22);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.live-chat svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}
@media (max-width: 980px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
  }
  .mobile-panel {
    border-top: 1px solid var(--line);
    padding: 0.35rem 1.25rem 1rem;
  }
  .mobile-panel a {
    display: block;
    padding: 0.78rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .menu-check:checked ~ .mobile-panel { display: block; }
  .brand { min-width: 0; }
  .brand-mark {
    width: 24px;
    height: 24px;
  }
  .hero,
  .split,
  .auth-shell,
  .form-grid,
  .portal-grid,
  .portal-summary,
  .dashboard-shell { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-media {
    min-height: 420px;
    order: -1;
  }
  .service-grid,
  .product-grid,
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-carousel { min-height: 380px; }
  .booking-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .booking-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .approved-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .booking-search {
    grid-template-columns: 1fr;
  }
  .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .summary-head {
    display: block;
  }
  .promotion-admin-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .topbar { font-size: 0.68rem; }
  .nav {
    padding: 0.75rem 0.85rem;
    gap: 0.6rem;
  }
  .brand {
    column-gap: 0.35rem;
    text-align: left;
  }
  .brand strong { font-size: 1rem; }
  .brand span { display: none; }
  .brand-mark {
    width: 22px;
    height: 22px;
  }
  .hero-media { min-height: 330px; }
  .hero-copy { padding: 2rem 1.25rem 2.5rem; }
  h1 { font-size: clamp(2.6rem, 17vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 12vw, 3rem); }
  .section { padding: 2.7rem 1rem; }
  .section-head { display: block; }
  .section-head p { margin-top: 1rem; }
  .service-grid,
  .product-grid,
  .review-grid { grid-template-columns: 1fr; }
  .service-carousel {
    min-height: 330px;
    border-radius: 6px;
  }
  .carousel-caption {
    max-width: calc(100% - 2rem);
    left: 1rem;
    right: 1rem;
    bottom: 3.1rem;
  }
  .carousel-caption h2 {
    font-size: 2rem;
  }
  .carousel-btn {
    top: auto;
    bottom: 0.9rem;
    width: 36px;
    height: 36px;
    font-size: 1.65rem;
    transform: none;
  }
  .carousel-dots {
    right: 50%;
    bottom: 1.8rem;
    transform: translateX(50%);
  }
  .service-card { min-height: 285px; }
  .form-panel,
  .table-panel {
    padding: 1rem;
  }
  .auth-mark {
    width: 76px;
    height: 76px;
  }
  .btn {
    width: 100%;
  }
  .action-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .booking-card-head {
    display: grid;
  }
  .booking-card-grid,
  .booking-actions,
  .approved-actions,
  .booking-search,
  .promotion-form,
  .banking-form,
  .promotion-admin-card form,
  .dashboard-stats,
  .category-summary {
    grid-template-columns: 1fr;
  }
  .live-chat {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 48px;
    height: 48px;
    min-height: 48px;
    justify-content: center;
    gap: 0;
    padding: 0;
    border-radius: 50%;
  }
  .live-chat svg {
    width: 22px;
    height: 22px;
  }
  .live-chat span {
    display: none;
  }
  th,
  td { font-size: 0.85rem; padding: 0.65rem 0.45rem; }
}
