:root {
  --ink: #12110f;
  --muted: #6f6a60;
  --paper: #f5f1ea;
  --panel: #fffdf8;
  --line: #ded4c4;
  --black: #090908;
  --gold: #c8a04c;
  --gold-soft: #efe3c5;
  --green: #2f5f4f;
  --shadow: 0 18px 46px rgba(18, 15, 10, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

[hidden] {
  display: none !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 56px;
  border-bottom: 1px solid rgba(222, 212, 196, 0.88);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(200, 160, 76, 0.55);
  border-radius: 8px;
  overflow: hidden;
  background: var(--black);
}

.brand-mark img,
.hero-logo,
.location-details img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small,
.site-nav,
.footer,
.review-grid span,
.location-details p {
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--ink);
  border-color: var(--gold);
}

.language-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eee5d7;
}

.lang {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.lang.active {
  color: var(--panel);
  background: var(--black);
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  padding: 76px 56px;
  color: var(--panel);
  background-color: var(--black);
  background-image:
    linear-gradient(90deg, rgba(9, 9, 8, 0.96) 0%, rgba(9, 9, 8, 0.78) 42%, rgba(9, 9, 8, 0.33) 74%, rgba(9, 9, 8, 0.18) 100%),
    url("assets/lux-owner-hero.jpg?v=20260716-owner2");
  background-image:
    linear-gradient(90deg, rgba(9, 9, 8, 0.96) 0%, rgba(9, 9, 8, 0.78) 42%, rgba(9, 9, 8, 0.33) 74%, rgba(9, 9, 8, 0.18) 100%),
    image-set(
      url("assets/lux-owner-hero.webp?v=20260716-owner2") type("image/webp"),
      url("assets/lux-owner-hero.jpg?v=20260716-owner2") type("image/jpeg")
    );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-copy {
  position: relative;
  width: min(720px, 100%);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.36);
}

.hero-logo {
  width: 220px;
  height: 220px;
  margin-bottom: 26px;
  border: 1px solid rgba(200, 160, 76, 0.52);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.2rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 .title-line {
  display: block;
}

h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.hero-meta {
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.74);
  font-size: 1.08rem;
}

.hero-actions,
.button {
  display: inline-flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 900;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button.primary {
  color: var(--black);
  background: var(--gold);
}

.button.secondary {
  color: var(--panel);
  background: rgba(255, 253, 248, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.24);
}

.button.full {
  width: 100%;
}

.booking-strip,
.section {
  padding: 58px 56px;
}

.booking-strip {
  display: grid;
  grid-template-columns: minmax(210px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.section-title {
  margin-bottom: 26px;
}

.booking-strip .section-title {
  margin: 0;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.booking-name-field {
  grid-column: span 2;
}

.booking-status {
  grid-column: 1 / -1;
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(47, 95, 79, 0.34);
  border-radius: 8px;
  color: #15382e;
  background: rgba(47, 95, 79, 0.09);
  line-height: 1.45;
}

.booking-status[hidden] {
  display: none;
}

.booking-status strong,
.booking-status span {
  display: block;
}

.booking-status.error {
  border-color: rgba(137, 55, 39, 0.34);
  color: #733224;
  background: rgba(137, 55, 39, 0.09);
}

.booking-whatsapp-link {
  width: fit-content;
  margin-top: 8px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdf8;
  outline-color: var(--gold);
}

textarea {
  min-height: 86px;
  resize: vertical;
}

.services-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.services-grid article,
.review-grid article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.services-grid strong,
.review-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.services-grid p {
  min-height: 44px;
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--gold);
  font-weight: 900;
}

.reviews {
  background: #eee8df;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.google-review-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 248, .14);
  border-radius: 8px;
  background: var(--black);
  color: var(--panel);
}

.google-review-copy {
  display: grid;
  gap: 8px;
}

.google-review-copy strong,
.google-review-copy > span {
  display: block;
}

.google-review-copy strong {
  font-size: 1.15rem;
}

.google-review-copy > span {
  color: rgba(255, 253, 248, .68);
}

.google-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.google-rating span {
  display: inline-flex;
  align-items: center;
}

.rating-score {
  color: var(--panel);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.rating-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0;
}

.rating-count {
  color: rgba(255, 253, 248, .68);
  font-weight: 850;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.button.secondary.dark {
  color: var(--panel);
  background: rgba(255, 253, 248, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, .22);
}

.review-form {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}

.map-panel {
  min-height: 380px;
  background: #e7dfd3;
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
}

.location-details {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 28px;
}

.location-details img {
  width: 118px;
  height: 118px;
  border: 1px solid rgba(200, 160, 76, 0.52);
  border-radius: 8px;
  background: var(--black);
}

.location-details p {
  margin-bottom: 0;
}

.location-details .button {
  margin-top: 12px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px 56px 34px;
  border-top: 1px solid var(--line);
  background: var(--panel);
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--muted);
  font-weight: 850;
}

.social-link:hover {
  color: var(--ink);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 14px 28px;
  }

  .site-nav {
    justify-content: start;
  }

  .hero,
  .booking-strip,
  .section,
  .footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .booking-strip,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-form,
  .review-form {
    grid-template-columns: 1fr;
  }

  .booking-name-field {
    grid-column: auto;
  }

  .google-review-card {
    align-items: stretch;
    flex-direction: column;
  }

  .review-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 12px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    padding: 58px 18px;
    background-image:
      linear-gradient(180deg, rgba(9, 9, 8, 0.92) 0%, rgba(9, 9, 8, 0.78) 48%, rgba(9, 9, 8, 0.45) 100%),
      url("assets/lux-owner-hero-mobile.jpg?v=20260716-owner2");
    background-image:
      linear-gradient(180deg, rgba(9, 9, 8, 0.92) 0%, rgba(9, 9, 8, 0.78) 48%, rgba(9, 9, 8, 0.45) 100%),
      image-set(
        url("assets/lux-owner-hero-mobile.webp?v=20260716-owner2") type("image/webp"),
        url("assets/lux-owner-hero-mobile.jpg?v=20260716-owner2") type("image/jpeg")
      );
    background-position: center top;
  }

  .hero-logo {
    display: none;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .booking-strip,
  .section {
    padding: 42px 18px;
  }

  .services-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 18px;
  }
}


.admin-body {
  color: var(--ink);
  background: var(--black);
}

.admin-shell {
  min-height: 100vh;
  padding: 28px;
  background: linear-gradient(180deg, #0b0a09 0%, #201812 42%, #f5f1ea 42%);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.admin-header .brand {
  color: var(--panel);
}

.admin-login,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(220px, .45fr) minmax(0, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 52px auto;
  padding: 28px;
}

.admin-login h1 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 3.8rem;
}

.admin-login-form {
  display: grid;
  gap: 12px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.admin-panel {
  padding: 24px;
}

.admin-panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-panel-title h2 {
  font-size: 1.8rem;
}

.admin-panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-panel .button.secondary.dark {
  color: var(--ink);
  background: #efe8dc;
  box-shadow: inset 0 0 0 1px var(--line);
}

.admin-two-col,
.hours-grid,
.service-editor,
.booking-list {
  display: grid;
  gap: 12px;
}

.admin-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-note {
  margin: 12px 0 16px;
  color: var(--muted);
  line-height: 1.45;
}

.integration-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 4px 0 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.integration-line > div {
  display: grid;
  gap: 3px;
}

.integration-line span,
.booking-notification {
  color: var(--muted);
}

.integration-status {
  font-weight: 850;
}

.integration-status.active,
.booking-notification[data-status="sent"] {
  color: #2f5f4f;
}

.booking-notification[data-status="awaiting"] {
  color: #8a641f;
}

.integration-status.warning,
.booking-notification[data-status="failed"] {
  color: #893727;
}

.booking-notification {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 800;
}

.hours-row,
.service-row,
.booking-item {
  display: grid;
  align-items: end;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #faf7f0;
}

.hours-row {
  grid-template-columns: 1fr 160px 160px;
}

.service-row {
  grid-template-columns: minmax(160px, 1fr) 100px 100px minmax(180px, 1.2fr) 92px;
}

.booking-item {
  grid-template-columns: minmax(0, 1fr) 180px;
}

.booking-item strong,
.booking-item span {
  display: block;
}

.booking-item span {
  margin-top: 4px;
  color: var(--muted);
}

.switch-line {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
}

.switch-line input {
  width: 18px;
  min-height: 18px;
}

button:disabled {
  cursor: wait;
  opacity: .72;
}

@media (max-width: 920px) {
  .admin-shell {
    padding: 18px;
  }

  .admin-login,
  .admin-two-col,
  .hours-row,
  .service-row,
  .booking-item {
    grid-template-columns: 1fr;
  }

  .admin-panel-title,
  .admin-panel-actions,
  .admin-header-actions,
  .admin-header {
    align-items: stretch;
    flex-direction: column;
  }
}
