:root {
  --sz-bg: #fdfdfd;
  --sz-text: #111111;
  --sz-muted: #555555;
  --sz-soft: #f4f4f4;
  --sz-accent: #c5a880;
  --sz-accent-dark: #a3855c;
  --sz-white: #ffffff;
  --sz-ink: #0d1218;
  --sz-shadow: rgba(0, 0, 0, 0.06);
  --sz-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  margin: 0;
  background: var(--sz-bg);
  color: var(--sz-text);
  font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    sans-serif;
  line-height: 1.7;
  letter-spacing: 0.5px;
}

body,
.sz-site,
.sz-header,
.sz-footer {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.sz-site *,
.sz-header *,
.sz-footer * {
  box-sizing: border-box;
}

.sz-site a,
.sz-header a,
.sz-footer a {
  color: inherit;
  text-decoration: none;
}

.sz-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.035);
}

.sz-nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.sz-logo {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.sz-logo span:not(.sz-logo-large),
.sz-footer-brand span {
  color: var(--sz-accent);
  font-weight: 600;
}

.sz-logo .sz-logo-large {
  font-size: 1.4em;
  font-weight: 600;
}

.sz-logo .sz-logo-s {
  color: var(--sz-text) !important;
}

.sz-logo .sz-logo-z {
  color: var(--sz-accent) !important;
}

.sz-nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.sz-nav-links a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sz-text);
  font-weight: 400;
  position: relative;
  padding-bottom: 5px;
}

.sz-nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--sz-accent);
  transition: var(--sz-transition);
}

.sz-nav-links a:hover::after,
.sz-nav-links a.is-active::after {
  width: 100%;
}

.sz-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sz-auth a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--sz-muted);
  text-decoration: none;
  transition: var(--sz-transition);
}

.sz-auth a:hover {
  color: var(--sz-accent);
}

.sz-auth-btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border: 1px solid var(--sz-border);
  border-radius: 999px;
  background: transparent;
  color: var(--sz-text);
  cursor: pointer;
  text-decoration: none;
  transition: var(--sz-transition);
}

.sz-auth-btn:hover {
  border-color: var(--sz-accent);
  color: var(--sz-accent);
}

.sz-admin-menu {
  position: relative;
}

.sz-admin-menu summary {
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--sz-muted);
}

.sz-admin-menu summary::-webkit-details-marker {
  display: none;
}

.sz-admin-menu summary::after {
  content: "⌄";
  margin-left: 7px;
  color: var(--sz-accent-dark);
}

.sz-admin-menu[open] summary,
.sz-admin-menu summary:hover {
  color: var(--sz-accent-dark);
}

.sz-admin-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  min-width: 155px;
  padding: 8px;
  background: var(--sz-white);
  border: 1px solid rgba(197, 168, 128, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 10001;
}

.sz-admin-dropdown a,
.sz-admin-dropdown .sz-sign-out-btn {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: var(--sz-text);
  text-align: left;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.sz-admin-dropdown a:hover,
.sz-admin-dropdown .sz-sign-out-btn:hover {
  background: var(--sz-soft);
  color: var(--sz-accent-dark);
}

/* Operations workspace */
.ops-page-head {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
}
.ops-page-head h1 {
  margin: 5px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  color: #21302b;
}
.ops-kicker,
.ops-eyebrow,
.ops-label {
  color: #a26b43;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}
.ops-brand-link {
  color: inherit;
  text-decoration: none;
}
.ops-brand-link:hover {
  color: #c28a5d;
}
.ops-tabs {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 5px;
}
.ops-tabs a {
  color: #52645d;
  text-decoration: none;
  font-size: 0.9rem;
}
.ops-tabs a:hover {
  color: #a26b43;
}
.ops-page-head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}
.ops-header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ops-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
}
.ops-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 25px 0;
}
.ops-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 25px 0;
}
.ops-summary-card {
  padding: 24px 28px;
}
.ops-summary-card h2 {
  margin: 0 0 12px;
  color: #21302b;
}
.ops-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid #e4e8e2;
  color: #708078;
}
.ops-summary-row strong {
  color: #21302b;
}
.ops-summary-total strong {
  color: #28704a;
  font-size: 1.15rem;
}
.ops-summary-table-card {
  padding: 0;
}
.ops-summary-table-heading {
  padding: 25px 28px 18px;
}
.ops-summary-table-heading h2 {
  margin: 0;
  color: #21302b;
  font-size: 1.25rem;
}
.ops-summary-table-wrap {
  overflow-x: auto;
}
.ops-summary-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
}
.ops-summary-table th,
.ops-summary-table td {
  padding: 16px 28px;
  border-top: 1px solid #e4e8e2;
  text-align: right;
  white-space: nowrap;
}
.ops-summary-table thead th {
  color: #89958e;
  background: #f7f9f6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 800;
}
.ops-summary-table th:first-child,
.ops-summary-table td:first-child {
  width: 30%;
  text-align: left;
}
.ops-summary-table tbody th {
  color: #708078;
  font-weight: 500;
}
.ops-summary-table tbody td {
  color: #21302b;
}
.ops-summary-table tbody tr:hover {
  background: #fcfdfb;
}
.ops-summary-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #bdd0c1;
  text-underline-offset: 4px;
}
.ops-summary-link:hover {
  color: #28704a;
}
.ops-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}
.ops-detail-head h2 {
  margin: 0 0 8px;
  color: #21302b;
}
.ops-dashboard-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.ops-detail-card {
  padding: 22px;
}
.ops-detail-card-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.ops-detail-card-heading h3 {
  margin: 0;
  color: #21302b;
}
.ops-detail-card-heading strong {
  color: #28704a;
  font-size: 1.3rem;
}
@media (max-width: 760px) {
  .ops-detail-head,
  .ops-dashboard-detail-grid {
    display: block;
  }
  .ops-detail-head .ops-button {
    display: inline-block;
    margin-top: 14px;
  }
  .ops-detail-card {
    margin-bottom: 16px;
  }
}
.ops-summary-table .ops-summary-total th,
.ops-summary-table .ops-summary-total td {
  border-top: 2px solid #dfe6df;
}
.ops-summary-table .ops-summary-total th {
  color: #708078;
}
.ops-summary-table .ops-summary-total strong {
  color: #28704a;
  font-size: 1.15rem;
}
.ops-summary-table .ops-summary-na strong {
  color: #a9b3ad;
  font-weight: 500;
}
.ops-stat,
.ops-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e4e8e2;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(37, 53, 44, 0.06);
}
.ops-stat {
  padding: 24px;
}
.ops-stat span,
.ops-stat strong {
  display: block;
}
.ops-stat small {
  display: block;
  margin-top: 8px;
  color: #708078;
  font-size: 0.78rem;
}
.ops-stat span {
  color: #708078;
  font-size: 0.85rem;
}
.ops-stat strong {
  color: #21302b;
  font-size: 1.65rem;
  margin-top: 9px;
}
.ops-actions,
.ops-toolbar,
.ops-form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.ops-toolbar {
  justify-content: space-between;
  margin-bottom: 18px;
  color: #68776f;
}
.ops-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: #334e43;
  color: white;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.ops-button:hover {
  background: #a26b43;
  color: white;
}
.ops-button-muted {
  background: #edf1ec;
  color: #43564d;
}
.ops-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.ops-card {
  padding: 22px;
  overflow: hidden;
}
.ops-card h2 {
  margin: 0 0 12px;
  color: #263a31;
  font-size: 1.15rem;
}
.ops-list-row,
.calendar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid #edf0ed;
  color: #273b32;
  text-decoration: none;
}
.ops-list-row span,
.calendar-row span {
  display: grid;
  gap: 4px;
}
.ops-list-row small,
.calendar-row small,
.ops-muted {
  color: #849087;
  font-size: 0.8rem;
}
.ops-empty {
  color: #89958e;
}
.ops-table-wrap {
  padding: 0;
  overflow-x: auto;
}
.ops-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.ops-table th,
.ops-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #edf0ed;
}
.ops-table th {
  color: #89958e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
}
.ops-table td strong,
.ops-table td small {
  display: block;
}
.ops-table-row-cancelled td {
  background: #fff8f7;
  color: #8f7771;
}
.ops-table-row-cancelled td:first-child {
  border-left: 4px solid #c77868;
  padding-left: 16px;
}
.ops-table-row-cancelled td strong {
  color: #765d57;
}
.ops-cancelled-label {
  color: #a34a3c;
  font-weight: 700;
}
.ops-text-link {
  color: #a26b43;
  font-weight: 700;
  text-decoration: none;
}
.ops-pagination,
.sz-pagination {
  display: flex;
  justify-content: center;
  padding: 18px 20px;
}
.ops-pagination .series-nav,
.sz-pagination .series-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ops-pagination a,
.ops-pagination .page,
.ops-pagination .current,
.sz-pagination a,
.sz-pagination .page,
.sz-pagination .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  color: #53665d;
  text-decoration: none;
  font-size: 0.82rem;
}
.ops-pagination a,
.sz-pagination a {
  border: 1px solid #e4e8e2;
}
.ops-pagination a:hover,
.ops-pagination .current,
.sz-pagination a:hover,
.sz-pagination .current {
  background: #e8f0eb;
  color: #29463a;
}
.ops-payment-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.ops-payment-summary > div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.ops-badge {
  background: #edf1ec;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
}
.ops-badge-unpaid {
  background: #f8e8e6;
  color: #a34a3c;
}
.ops-badge-partially_paid {
  background: #fff4e0;
  color: #9c6b2b;
}
.ops-badge-paid {
  background: #e8f5ed;
  color: #28704a;
}
.ops-badge-refunded {
  background: #eceef8;
  color: #4a5ba3;
}
.ops-form {
  max-width: 900px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #e4e8e2;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(37, 53, 44, 0.06);
}
.ops-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.ops-field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}
.ops-field-wide {
  grid-column: 1 / -1;
}
.ops-field label {
  color: #43564d;
  font-size: 0.84rem;
  font-weight: 700;
}
.ops-field input,
.ops-field select,
.ops-field textarea {
  border: 1px solid #d8e0d9;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  background: #fbfcfa;
  color: #263a31;
}
.ops-field input:focus,
.ops-field select:focus,
.ops-field textarea:focus {
  outline: 2px solid #d8b08e;
  border-color: #a26b43;
}
.ops-check {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ops-check label {
  order: 2;
}
.ops-errors {
  background: #fff0ed;
  color: #a34230;
  border: 1px solid #f2c6bb;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 20px;
}
.ops-detail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ops-detail div {
  display: grid;
  gap: 8px;
}
.calendar-list {
  max-width: 900px;
}
.calendar-row time {
  display: grid;
  min-width: 50px;
  text-align: center;
  color: #a26b43;
}
.calendar-row time strong {
  font-size: 1.6rem;
}
.calendar-row b {
  color: #68776f;
  font-size: 0.8rem;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.calendar-toolbar h2 {
  flex: 1;
  text-align: center;
  margin: 0;
  font-size: 1.5rem;
}
.calendar-legend {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: #68776f;
}
.calendar-legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
}
.calendar-legend-free {
  background: #e8f5ed;
}
.calendar-legend-occupied {
  background: #f8e8e6;
}

.calendar-grid-wrap {
  padding: 16px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.calendar-day-name {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #849087;
  padding: 8px 0;
}
.calendar-cell {
  min-height: 110px;
  background: #fff;
  border: 1px solid #e4e8e2;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.15s ease;
}
.calendar-cell-empty {
  background: transparent;
  border: none;
}
.calendar-cell:hover {
  box-shadow: 0 4px 14px rgba(37, 53, 44, 0.08);
}
.calendar-cell-occupied {
  background: #fdf6f5;
  border-color: #eadfd5;
}
.calendar-cell-today {
  border-color: #a26b43;
  box-shadow: 0 0 0 2px #a26b43;
}
.calendar-cell-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calendar-weekday {
  display: none;
}
.calendar-date {
  font-weight: 700;
  color: #25352c;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.calendar-cell-today .calendar-date {
  background: #a26b43;
  color: #fff;
}
.calendar-add-day {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #849087;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0;
  transition:
    opacity 0.15s ease,
    background 0.15s ease;
}
.calendar-cell:hover .calendar-add-day {
  opacity: 1;
}
.calendar-add-day:hover {
  background: #e8f5ed;
  color: #28704a;
}
.calendar-cell-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.calendar-free {
  font-size: 0.75rem;
  color: #849087;
  margin-top: auto;
}
.calendar-reservation {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 4px 8px;
  align-items: center;
  background: #fff;
  border: 1px solid #eadfd5;
  border-radius: 8px;
  padding: 4px 6px;
  text-decoration: none;
  color: #25352c;
  font-size: 0.78rem;
  line-height: 1.2;
}
.calendar-reservation:hover {
  background: #f8f4f0;
}
.calendar-reservation-dot {
  grid-row: span 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a26b43;
}
.calendar-villa-1 .calendar-reservation-dot {
  background: #a26b43;
}
.calendar-villa-2 .calendar-reservation-dot {
  background: #4a7c59;
}
.calendar-reservation-name {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.calendar-reservation-villa {
  grid-column: 2;
  color: #849087;
  font-size: 0.7rem;
}
.ops-document-box {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid #eadfd5;
  border-radius: 14px;
  background: #fffaf5;
}
.ops-document-box h3 {
  margin: 0 0 6px;
  color: #334e43;
}
.ops-document-box p {
  color: #78857e;
  font-size: 0.88rem;
  margin: 0 0 18px;
}
.ops-reservation-page {
  padding-top: 34px;
}
.ops-reservation-hero {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 24px;
  margin-bottom: 26px;
}
.ops-reservation-hero h1 {
  margin: 4px 0 7px;
  color: #21302b;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.045em;
}
.ops-hero-subtitle {
  color: #78857e;
  font-size: 1rem;
  margin: 0;
}
.ops-status {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ops-status-pending {
  background: #fff3d8;
  color: #996d1c;
}
.ops-status-confirmed {
  background: #e0f2e7;
  color: #28704a;
}
.ops-status-completed {
  background: #dcecf5;
  color: #2b6076;
}
.ops-status-cancelled {
  background: #fde5e1;
  color: #a34a3c;
}
.ops-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ops-info-card {
  background: #fff;
  border: 1px solid #e4e8e2;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 9px 24px rgba(37, 53, 44, 0.05);
}
.ops-info-card strong,
.ops-info-card small {
  display: block;
}
.ops-info-card strong {
  color: #263a31;
  font-size: 1.12rem;
  margin: 8px 0 5px;
}
.ops-info-card small {
  color: #85928b;
  font-size: 0.78rem;
}
.ops-info-card-accent {
  background: #334e43;
  border-color: #334e43;
}
.ops-info-card-accent .ops-label,
.ops-info-card-accent strong,
.ops-info-card-accent small {
  color: white;
}
.ops-info-card-accent .ops-label {
  color: #e5bd99;
}
.ops-detail-columns {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 18px;
}
.ops-detail-section {
  padding: 24px;
}
.ops-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.ops-section-heading h2 {
  margin: 0;
}
.ops-line-item,
.ops-money-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid #edf0ed;
}
.ops-line-item span {
  display: grid;
  gap: 4px;
}
.ops-line-item small {
  color: #849087;
  font-size: 0.8rem;
}
.ops-money-row {
  color: #68776f;
}
.ops-money-total {
  color: #263a31;
  font-weight: 800;
  border-top: 2px solid #dfe6df;
}
.ops-detail-actions {
  margin-top: 22px;
}
@media (max-width: 800px) {
  .ops-reservation-hero {
    display: block;
  }
  .ops-status {
    display: inline-block;
    margin-top: 16px;
  }
  .ops-detail-grid,
  .ops-detail-columns {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 800px) {
  .ops-page-head {
    display: block;
  }
  .ops-tabs {
    margin-top: 22px;
  }
  .ops-stats,
  .ops-summary-grid,
  .ops-columns,
  .ops-detail {
    grid-template-columns: 1fr;
  }
  .ops-form-grid {
    grid-template-columns: 1fr;
  }
  .ops-shell {
    padding: 22px 18px;
  }
}

.ops-service-paid {
  color: #28704a;
  font-weight: 800;
}
.ops-service-unpaid {
  color: #a34a3c;
  font-weight: 800;
}
.ops-money-paid {
  color: #28704a;
}
.ops-money-unpaid {
  color: #a34a3c;
}
.ops-money-paid b,
.ops-money-unpaid b {
  font-weight: 800;
}
.ops-service-row {
  border: 1px solid #e4e8e2;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.6);
}
.ops-service-new {
  border-style: dashed;
  border-color: #c5a880;
  background: rgba(197, 168, 128, 0.05);
}
.ops-line-actions {
  margin-top: 4px;
}
.ops-line-actions a {
  font-size: 0.8rem;
}
.ops-button-danger {
  background: #a34a3c;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
}

.sz-burger {
  display: none;
}

.sz-terms-page {
  padding-top: 0;
}
.sz-terms-hero {
  background: var(--sz-ink);
  color: var(--sz-white);
  padding: 190px 24px 110px;
  text-align: center;
}
.sz-terms-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.sz-terms-hero h1 {
  margin: 12px 0 20px;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 300;
  letter-spacing: -0.03em;
}
.sz-terms-intro {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.65;
}
.sz-terms-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 40px 120px;
}
.sz-terms-lead {
  max-width: 650px;
  margin-bottom: 60px;
}
.sz-terms-lead h2,
.sz-terms-services h2,
.sz-terms-contact h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin: 10px 0 20px;
  letter-spacing: -0.02em;
}
.sz-terms-lead p:not(.sz-kicker),
.sz-terms-contact p:not(.sz-kicker) {
  color: #343434;
  font-size: 17px;
  line-height: 1.8;
}
.sz-terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.sz-terms-card {
  position: relative;
  padding: 38px 38px 36px;
  border: 1px solid rgba(163, 133, 92, 0.45);
  border-top: 4px solid var(--sz-accent);
  background: #fff;
  min-height: 235px;
  box-shadow: 0 8px 24px rgba(13, 18, 24, 0.07);
}
.sz-terms-number {
  color: var(--sz-accent-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}
.sz-terms-card h3 {
  margin: 18px 0 12px;
  font-size: 22px;
  font-weight: 600;
  color: var(--sz-ink);
}
.sz-terms-card p,
.sz-terms-services-copy p {
  margin: 0;
  color: #303030;
  font-size: 17px;
  line-height: 1.8;
}
.sz-terms-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 100px;
  padding: 65px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.sz-terms-services-copy p + p {
  margin-top: 20px;
}
.sz-terms-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 70px;
  padding: 44px 38px;
  border: 2px solid rgba(163, 133, 92, 0.55);
  border-radius: 4px;
  background: #fbf6ee;
}
.sz-terms-notes-copy {
  display: grid;
  gap: 24px;
}
.sz-terms-notes-copy h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 600;
  color: var(--sz-ink);
}
.sz-terms-notes-copy p {
  margin: 0;
  color: #303030;
  font-size: 17px;
  line-height: 1.8;
}
.sz-terms-reliability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 24px;
  padding: 44px 38px;
  background: var(--sz-ink);
  color: var(--sz-white);
}
.sz-terms-reliability h2 {
  color: var(--sz-white);
}
.sz-terms-reliability-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.8;
}
.sz-terms-reliability-copy p + p {
  margin-top: 20px;
}
.sz-terms-contact {
  max-width: 600px;
  margin: 100px auto 0;
  text-align: center;
}
.sz-terms-contact .sz-button {
  margin-top: 20px;
}
@media (max-width: 700px) {
  .sz-terms-hero {
    padding: 150px 24px 80px;
  }
  .sz-terms-content {
    padding: 70px 24px 80px;
  }
  .sz-terms-grid,
  .sz-terms-services,
  .sz-terms-notes,
  .sz-terms-reliability {
    grid-template-columns: 1fr;
  }
  .sz-terms-services {
    gap: 10px;
    margin-top: 70px;
    padding: 45px 0;
  }
  .sz-terms-notes,
  .sz-terms-reliability {
    gap: 30px;
  }
}

.sz-hero {
  min-height: 100vh;
  background: var(--sz-ink);
  color: var(--sz-white);
  position: relative;
  overflow: hidden;
}

.sz-hero-slider,
.sz-hero-slide,
.sz-hero-image {
  position: absolute;
  inset: 0;
}

.sz-hero-slide {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 120px 10% 70px;
  opacity: 0;
  visibility: hidden;
  animation: szHeroSlide 20s infinite;
}

.sz-hero-slide:nth-child(2) {
  animation-delay: 5s;
}

.sz-hero-slide:nth-child(3) {
  animation-delay: 10s;
}

.sz-hero-slide:nth-child(4) {
  animation-delay: 15s;
}

.sz-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: szHeroImageZoom 20s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .sz-hero-slide,
  .sz-hero-image,
  .sz-hero-slide .sz-hero-content,
  .sz-hero .sz-hero-dots span::before {
    animation: none;
  }

  .sz-hero-slide:first-child {
    opacity: 1;
    visibility: visible;
  }

  .sz-hero-slide:not(:first-child),
  .sz-hero-dots {
    display: none;
  }

  .sz-hero-slide .sz-hero-content {
    opacity: 1;
    transform: none;
  }

  .sz-hero-image {
    transform: none;
  }
}

.sz-hero-slide:nth-child(2) .sz-hero-image {
  animation-delay: 5s;
}

.sz-hero-slide:nth-child(3) .sz-hero-image {
  animation-delay: 10s;
}

.sz-hero-slide:nth-child(4) .sz-hero-image {
  animation-delay: 15s;
}

.sz-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12) 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.36)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 120px
    );
  pointer-events: none;
}

.sz-hero-content {
  max-width: 480px;
  position: relative;
  z-index: 2;
  padding: clamp(20px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(13, 18, 24, 0.52), rgba(13, 18, 24, 0.28)),
    rgba(13, 18, 24, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0 48px 0 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(30px);
  animation: szHeroContentFadeIn 20s infinite;
}

.sz-hero-slide:nth-child(2) .sz-hero-content {
  animation-delay: 5s;
  background:
    linear-gradient(135deg, rgba(8, 34, 42, 0.54), rgba(13, 18, 24, 0.3)),
    rgba(8, 34, 42, 0.16);
}

.sz-hero-slide:nth-child(3) .sz-hero-content {
  animation-delay: 10s;
  background:
    linear-gradient(135deg, rgba(77, 54, 37, 0.52), rgba(13, 18, 24, 0.3)),
    rgba(77, 54, 37, 0.14);
}

.sz-hero-slide:nth-child(4) .sz-hero-content {
  animation-delay: 15s;
  background:
    linear-gradient(135deg, rgba(62, 47, 35, 0.54), rgba(13, 18, 24, 0.3)),
    rgba(62, 47, 35, 0.14);
}

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

.sz-hero h1 {
  margin: 0 0 25px;
  font-family: inherit;
  font-size: clamp(19px, 3vw, 28px);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--sz-white);
  max-width: none;
}

.sz-hero p:not(.sz-kicker) {
  margin: 0 0 34px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.94);
  max-width: 620px;
}

.sz-hero-dots {
  position: absolute;
  left: 10%;
  bottom: 52px;
  z-index: 5;
  display: flex;
  gap: 12px;
}

.sz-hero-dots span {
  width: 36px;
  height: 2px;
  display: block;
  background: rgba(255, 255, 255, 0.38);
  overflow: hidden;
  position: relative;
}

.sz-hero-dots span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sz-accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: szHeroDot 20s infinite;
}

.sz-hero-dots span:nth-child(2)::before {
  animation-delay: 5s;
}

.sz-hero-dots span:nth-child(3)::before {
  animation-delay: 10s;
}

.sz-hero-dots span:nth-child(4)::before {
  animation-delay: 15s;
}

.sz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 45px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 500;
  transition: var(--sz-transition);
}

.sz-button-light {
  color: var(--sz-white);
  background-color: transparent;
}

.sz-button-light:hover {
  color: var(--sz-text);
  background-color: var(--sz-white);
  border-color: var(--sz-white);
}

.sz-button-dark {
  color: var(--sz-white);
  background-color: var(--sz-text);
  border-color: var(--sz-text);
}

.sz-button-dark:hover {
  background-color: var(--sz-accent-dark);
  border-color: var(--sz-accent-dark);
}

.sz-button-outline {
  color: var(--sz-text);
  background-color: transparent;
  border-color: rgba(17, 17, 17, 0.25);
}

.sz-button-outline:hover {
  color: var(--sz-accent-dark);
  border-color: var(--sz-accent);
}

.sz-button-whatsapp,
a.sz-button-whatsapp,
a.sz-button-whatsapp:link,
a.sz-button-whatsapp:visited {
  color: var(--sz-white);
  background-color: #25d366;
  border-color: #25d366;
  font-size: 11px;
  letter-spacing: 2px;
  text-indent: 2px;
  padding: 16px 40px;
  width: 100%;
}

.sz-button-whatsapp:hover,
a.sz-button-whatsapp:hover {
  background-color: #1ebc5b;
  border-color: #1ebc5b;
  color: var(--sz-white);
}

.sz-brand-story {
  padding: 120px 40px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.sz-brand-story h2,
.sz-section-heading h2,
.sz-booking-card h2 {
  margin: 0;
  font-family: inherit;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sz-text);
}

.sz-brand-story h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 30px;
}

.sz-brand-story p:not(.sz-kicker) {
  margin: 0;
  font-size: 16px;
  color: var(--sz-muted);
  font-weight: 300;
}

.sz-showcase {
  max-width: 1300px;
  margin: 0 auto 120px;
  padding: 0 40px;
}

.sz-feature {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 140px;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.sz-feature:last-child {
  margin-bottom: 0;
}

.sz-feature-reverse {
  flex-direction: row-reverse;
}

.sz-image {
  flex: 1.2;
  height: 550px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(197, 168, 128, 0.42);
  border-radius: 0 96px 0 96px;
  background:
    linear-gradient(
      135deg,
      rgba(197, 168, 128, 0.24),
      rgba(255, 255, 255, 0.94)
    ),
    var(--sz-white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: var(--sz-transition);
}

.sz-image img,
.sz-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0 82px 0 82px;
  transition: var(--sz-transition);
}

.sz-image::before {
  content: "";
  position: absolute;
  inset: 10px;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.42)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 38%);
  border-radius: 0 82px 0 82px;
  z-index: 1;
}

.sz-image::after,
.sz-gallery-item::after {
  content: attr(aria-label);
  position: absolute;
  left: 50px;
  bottom: 24px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.sz-image:hover img,
.sz-gallery-item:hover img {
  transform: scale(1.04);
}

.sz-feature-copy {
  flex: 0.8;
  padding: 40px 0;
}

.sz-feature-copy h3 {
  margin: 0 0 20px;
  font-family: inherit;
  font-size: 28px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sz-text);
}

.sz-feature-copy p:not(.sz-kicker) {
  margin: 0 0 30px;
  font-size: 15px;
  color: var(--sz-muted);
  font-weight: 300;
}

.sz-text-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sz-text);
  font-weight: 600;
  border-bottom: 1px solid var(--sz-text);
  padding-bottom: 4px;
  transition: var(--sz-transition);
}

.sz-text-link:hover {
  color: var(--sz-accent);
  border-color: var(--sz-accent);
}

.sz-error {
  color: var(--sz-accent);
  text-align: center;
  font-size: 14px;
  margin-top: 16px;
}

.sz-amenities {
  background-color: var(--sz-text);
  color: var(--sz-white);
  padding: 60px 40px;
}

.sz-amenities-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.sz-amenity {
  text-align: center;
  min-width: 150px;
}

.sz-amenity span {
  font-size: 24px;
  color: var(--sz-accent);
}

.sz-amenity p {
  margin: 10px 0 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
}

.sz-why,
.sz-location,
.sz-attractions,
.sz-testimonials,
.sz-house-rules,
.sz-faq,
.sz-experience {
  padding: 90px 40px;
  background-color: var(--sz-white);
}

#faq,
#house-rules,
#arriving {
  scroll-margin-top: 90px;
}

.sz-why-grid,
.sz-faq-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.sz-why-card,
.sz-faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px;
  border-radius: 0 32px 0 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.sz-why-card h3,
.sz-faq-item h3 {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.sz-why-card p,
.sz-faq-item p,
.sz-muted {
  margin: 0;
  color: var(--sz-muted);
  line-height: 1.6;
}

.sz-location {
  background: var(--sz-soft);
}

.sz-attractions {
  background: var(--sz-soft);
}

.sz-location-map {
  margin: 32px auto;
  max-width: 1100px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.sz-location-map img {
  width: 100%;
  height: auto;
  display: block;
}

.sz-location-details {
  margin: 32px auto 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.sz-location-detail {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0 28px 0 28px;
  background: var(--sz-white);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}

.sz-location-detail h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
}

.sz-location-detail p {
  margin: 0;
  color: var(--sz-muted);
  line-height: 1.5;
}

.sz-location-cta {
  margin-top: 32px;
  text-align: center;
}
.sz-location-qr-card {
  min-width: 0;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0 28px 0 28px;
  background: var(--sz-white);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}
.sz-location-qr {
  width: 180px;
  height: 180px;
  flex: 0 0 180px;
  border-radius: 12px;
}
.sz-location-qr-card p {
  margin: 0 0 10px;
}
.sz-location-qr-card .sz-kicker {
  margin-bottom: 8px;
}

.sz-location-tools {
  max-width: 760px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.sz-location-tools .sz-location-qr-card {
  max-width: none;
  margin: 0;
}

.sz-location-map-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0 28px 0 28px;
  background: var(--sz-white);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  cursor: zoom-in;
  text-align: left;
}

.sz-location-map-preview {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.sz-location-map-card:hover .sz-location-map-preview,
.sz-location-map-card:focus-visible .sz-location-map-preview {
  transform: scale(1.025);
  filter: brightness(0.78);
}

.sz-location-map-card-label {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--sz-white);
  background: rgba(23, 37, 42, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sz-location .sz-section-heading,
.sz-attractions .sz-section-heading,
.sz-experience {
  max-width: 820px;
  margin: 0 auto;
}

.sz-location-directions-link {
  display: inline-block;
  margin-top: 18px;
}

.sz-arrival-page {
  padding-top: 90px;
}

.sz-arrival-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  background: var(--sz-soft);
}

.sz-arrival-hero-copy {
  align-self: center;
  max-width: 620px;
  padding: 72px 8vw;
}

.sz-arrival-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 300;
}

.sz-arrival-hero-copy > p:not(.sz-kicker) {
  margin: 0 0 28px;
  color: var(--sz-muted);
  font-size: 17px;
}

.sz-arrival-hero a.sz-button-dark,
.sz-arrival-hero a.sz-button-dark:visited {
  color: var(--sz-white);
}

.sz-arrival-hero-image {
  width: 100%;
  height: 560px;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  background: var(--sz-soft);
}

.sz-arrival-section {
  padding: 90px 40px;
  background: var(--sz-white);
}

.sz-arrival-section:nth-of-type(3) {
  background: var(--sz-soft);
}

.sz-arrival-section .sz-section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
}

.sz-arrival-photo-grid,
.sz-arrival-video-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sz-arrival-photo-card,
.sz-arrival-video-card {
  margin: 0;
  overflow: hidden;
  background: var(--sz-white);
  border-radius: 0 28px 0 28px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.sz-arrival-photo-card img {
  width: 100%;
  height: 560px;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}

.sz-arrival-photo-card--fit img {
  object-fit: contain;
  object-position: center;
  background: var(--sz-ink);
}

.sz-arrival-photo-card figcaption,
.sz-arrival-video-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 18px;
  color: var(--sz-muted);
  font-size: 13px;
}

.sz-arrival-photo-card figcaption span,
.sz-arrival-video-card figcaption span {
  color: var(--sz-accent-dark);
  font-weight: 700;
  font-size: 18px;
}

.sz-arrival-video-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sz-arrival-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: var(--sz-ink);
}

.sz-arrival-note {
  padding: 52px 40px;
  text-align: center;
  background: var(--sz-ink);
  color: var(--sz-white);
}

.sz-arrival-note p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 760px) {
  .sz-arrival-hero {
    display: flex;
    flex-direction: column-reverse;
  }

  .sz-arrival-hero-image {
    height: 430px;
  }

  .sz-arrival-hero-copy {
    padding: 54px 28px 64px;
  }

  .sz-arrival-section {
    padding: 64px 22px;
  }

  .sz-arrival-photo-grid,
  .sz-arrival-video-grid {
    grid-template-columns: 1fr;
  }

  .sz-arrival-photo-card img {
    height: min(140vw, 620px);
  }
}
@media (max-width: 600px) {
  .sz-location-tools {
    grid-template-columns: 1fr;
  }

  .sz-location-map-card {
    justify-self: center;
  }

  .sz-location-qr-card {
    flex-direction: column;
    text-align: center;
  }
}

.sz-testimonials {
  background: var(--sz-bg);
  text-align: center;
}

.sz-house-rules-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sz-house-rules-list li {
  padding: 18px 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0 30px 0 30px;
  background: var(--sz-white);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 15px;
}

.sz-house-rules-list strong {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sz-house-rules-list .sz-house-rule-alert {
  border-color: rgba(180, 111, 26, 0.55);
  background: linear-gradient(135deg, #fff8e8, #fffdf7);
  box-shadow: 0 12px 28px rgba(180, 111, 26, 0.12);
}

.sz-house-rule-alert strong {
  color: #9a5d13;
}

.sz-house-rule-icon {
  display: inline-grid;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: 0.45rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #b46f1a;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: -0.1rem;
}

.sz-experience {
  text-align: center;
}

.sz-faq {
  background: var(--sz-soft);
}

.sz-gallery {
  background-color: var(--sz-white);
  padding: 100px 40px;
}

.sz-section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.sz-section-heading .sz-kicker {
  margin-bottom: 14px;
}

.sz-section-heading h2 {
  font-size: clamp(26px, 4vw, 32px);
  letter-spacing: 3px;
}

.sz-gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sz-gallery-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 0 62px 0 62px;
  background:
    linear-gradient(
      135deg,
      rgba(197, 168, 128, 0.22),
      rgba(255, 255, 255, 0.98)
    ),
    var(--sz-white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
  transition: var(--sz-transition);
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}

.sz-gallery-item img {
  border-radius: 0 52px 0 52px;
}

.sz-gallery-large,
.sz-gallery-wide {
  grid-column: span 2;
}

.sz-gallery-item::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.72));
  border-radius: 0 52px 0 52px;
  z-index: 1;
}

.sz-booking {
  padding: 60px 40px;
  background: var(--sz-soft);
}

.sz-booking-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 76px);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--sz-white);
  box-shadow: 0 20px 50px var(--sz-shadow);
}

.sz-share + .sz-booking {
  background: var(--sz-white);
}

.sz-share + .sz-booking .sz-booking-card {
  background: var(--sz-soft);
}

.sz-booking-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 22px;
}

.sz-booking-card p:not(.sz-kicker) {
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--sz-muted);
  font-weight: 300;
}

.sz-booking-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sz-footer {
  background-color: var(--sz-ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 80px 40px 40px;
  font-size: 13px;
  font-weight: 300;
}

.sz-footer-grid {
  max-width: 1300px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 50px;
}

.sz-footer-brand {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--sz-white);
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.sz-footer h4 {
  margin: 0 0 18px;
  color: var(--sz-white);
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 500;
}

.sz-footer p {
  margin: 0;
}

.sz-footer a:not(.sz-footer-brand) {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.62);
  transition: var(--sz-transition);
}

.sz-footer a:hover {
  color: var(--sz-accent);
}

.sz-whatsapp-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 999px;
  color: #25d366 !important;
  font-size: 14px;
  font-weight: 500;
  transition: var(--sz-transition);
}

.sz-whatsapp-btn:hover {
  background-color: #25d366;
  color: var(--sz-white) !important;
  border-color: #25d366;
}

.sz-whatsapp-btn svg {
  flex-shrink: 0;
}

.sz-floating-widgets {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.sz-language-fab {
  display: flex;
  flex-direction: column;
  max-height: min(50vh, 420px);
  overflow-y: auto;
  background: transparent;
  scrollbar-width: thin;
}

.sz-language-fab a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 34px;
  border-radius: 50%;
  background: transparent;
  font-size: 23px;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
  transition: var(--sz-transition);
}

.sz-language-fab a:first-child {
  padding-top: 5px;
}

.sz-language-fab a:last-child {
  padding-bottom: 5px;
}

.sz-language-fab a:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.08);
}

.sz-language-fab a.is-active {
  background: rgba(197, 168, 128, 0.35);
}

.sz-fab-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sz-fab-label {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 28px;
  background: rgba(13, 18, 24, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: var(--sz-transition);
  animation:
    szFabLabelIn 0.5s ease both,
    szFabLabelPulse 2s 0.5s infinite;
}

.sz-fab-group:hover .sz-fab-label {
  background: rgba(13, 18, 24, 0.95);
  transform: translateX(-4px);
}

@keyframes szFabLabelIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes szFabLabelPulse {
  0% {
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.18),
      0 0 0 0 rgba(197, 168, 128, 0.5);
  }
  70% {
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.18),
      0 0 0 12px rgba(197, 168, 128, 0);
  }
  100% {
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.18),
      0 0 0 0 rgba(197, 168, 128, 0);
  }
}

.sz-whatsapp-fab {
  position: relative;
  bottom: auto;
  right: auto;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: var(--sz-transition);
  animation: szWhatsappPulse 2s infinite;
}

.sz-whatsapp-fab:hover {
  background-color: #1da851;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  transform: scale(1.08);
}

@keyframes szWhatsappPulse {
  0% {
    box-shadow:
      0 4px 12px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow:
      0 4px 12px rgba(37, 211, 102, 0.4),
      0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 4px 12px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .sz-floating-widgets {
    right: 16px;
    bottom: 16px;
    gap: 8px;
  }

  .sz-language-fab a {
    width: 38px;
    min-height: 30px;
    font-size: 20px;
  }

  .sz-whatsapp-fab {
    width: 50px;
    height: 50px;
  }

  .sz-fab-label {
    padding: 8px 14px;
    font-size: 11px;
  }
}

.sz-copyright {
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
}

@keyframes szFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes szHeroContentFadeIn {
  0%,
  7.5% {
    opacity: 0;
    transform: translateY(30px);
  }

  13%,
  22% {
    opacity: 1;
    transform: translateY(0);
  }

  28%,
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}

@keyframes szHeroSlide {
  0% {
    opacity: 0;
    visibility: visible;
    z-index: 2;
  }

  6%,
  22% {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  30%,
  100% {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  }
}

@keyframes szHeroImageZoom {
  0%,
  22% {
    transform: scale(1.04);
  }

  30%,
  100% {
    transform: scale(1.1);
  }
}

@keyframes szHeroDot {
  0% {
    transform: scaleX(0);
  }

  22% {
    transform: scaleX(1);
  }

  30%,
  100% {
    transform: scaleX(0);
  }
}

@media (max-width: 992px) {
  .sz-feature,
  .sz-feature-reverse {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }

  .sz-image,
  .sz-feature-copy {
    width: 100%;
  }

  .sz-image {
    height: 400px;
    flex: none;
  }

  .sz-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sz-gallery-large,
  .sz-gallery-wide {
    grid-column: span 1;
  }

  .sz-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .sz-nav {
    padding: 20px;
  }

  .sz-nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--sz-white);
    padding: 20px 24px 30px;
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 9998;
  }

  .sz-nav-links.is-open {
    display: flex;
  }

  .sz-nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
  }

  .sz-nav-links a::after {
    display: none;
  }

  .sz-nav-links .sz-auth {
    display: block;
    width: 100%;
    padding-top: 14px;
  }

  .sz-nav-links .sz-auth-btn {
    display: inline-block;
    margin-top: 4px;
  }

  .sz-admin-menu summary {
    padding: 14px 0;
    font-size: 14px;
  }

  .sz-admin-dropdown {
    position: static;
    margin: 0 0 8px;
    box-shadow: none;
  }

  .sz-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 12px;
  }

  .sz-burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--sz-text);
    border-radius: 2px;
    transition: var(--sz-transition);
  }

  .sz-burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .sz-burger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .sz-burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .sz-logo {
    font-size: 20px;
    letter-spacing: 4px;
  }

  .sz-hero-slide {
    padding: 115px 24px 70px;
  }

  .sz-hero-content {
    max-width: 100%;
    padding: 28px;
    border-radius: 0 42px 0 42px;
  }

  .sz-hero-dots {
    left: 24px;
    bottom: 34px;
  }

  .sz-hero h1 {
    font-size: 38px;
  }

  .sz-brand-story,
  .sz-gallery,
  .sz-booking {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sz-showcase {
    padding: 0 24px;
    margin-bottom: 80px;
  }

  .sz-gallery-grid {
    grid-template-columns: 1fr;
  }

  .sz-gallery-item {
    height: 260px;
  }

  .sz-button {
    width: 100%;
  }

  .sz-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.sz-share {
  padding: 18px 40px;
  background: var(--sz-soft);
}

.sz-share-card {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  gap: 28px;
  align-items: center;
  background: var(--sz-white);
  border-radius: 24px;
  padding: 18px 22px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.08);
}

.sz-share-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  display: block;
}

.sz-share-content .sz-kicker {
  margin-bottom: 4px;
  font-size: 10px;
}

.sz-share-content h2 {
  margin: 0 0 4px;
  font-size: 20px;
}

.sz-share-content > p {
  margin: 0;
  color: var(--sz-muted);
  font-size: 12px;
  line-height: 1.45;
}

.sz-share-content .sz-experience-share-buttons {
  gap: 8px;
  margin-top: 8px;
}

.sz-share-content .sz-experience-share-buttons .sz-share-btn {
  width: 30px;
  height: 30px;
}

.sz-share-content .sz-share-icon {
  width: 16px;
  height: 16px;
}

.sz-share-hint {
  margin: 6px 0 0;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--sz-muted);
  opacity: 0.65;
}

.sz-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

@media (max-width: 860px) {
  .sz-share {
    padding: 18px 24px;
  }

  .sz-share-card {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 18px;
  }

  .sz-share-image img {
    height: 180px;
  }
}

/* Flash messages */

/* ===== Experiences Index Page ===== */

.sz-experiences-page {
  padding-top: 80px;
}

.sz-experiences-hero {
  padding: 100px 40px 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--sz-soft) 0%, var(--sz-bg) 100%);
}

.sz-experiences-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.sz-experiences-hero h1 {
  margin: 0 0 16px;
  font-family: inherit;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--sz-text);
}

.sz-experiences-hero-lead {
  margin: 0;
  font-size: 16px;
  color: var(--sz-muted);
  font-weight: 300;
  line-height: 1.8;
}

.sz-experiences-list {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}

.sz-experience-item {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 100px;
}

.sz-experience-item:last-child {
  margin-bottom: 0;
}

.sz-experience-item-reverse {
  flex-direction: row-reverse;
}

.sz-experience-item-image {
  flex: 1.1;
  display: block;
  height: 440px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 0 80px 0 80px;
  background:
    linear-gradient(
      135deg,
      rgba(197, 168, 128, 0.22),
      rgba(255, 255, 255, 0.98)
    ),
    var(--sz-white);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.1);
  transition: var(--sz-transition);
}

.sz-experience-item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: var(--sz-soft);
  border-radius: 0 68px 0 68px;
  transition: var(--sz-transition);
}

.sz-experience-item-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0 68px 0 68px;
  background: linear-gradient(
    135deg,
    rgba(197, 168, 128, 0.15),
    rgba(244, 244, 244, 0.5)
  );
}

.sz-experience-item-image:hover {
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.14);
}

.sz-experience-item-image:hover img {
  transform: scale(1.01);
}

.sz-experience-item-copy {
  flex: 0.9;
  padding: 20px 0;
}

.sz-experience-item-copy time {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sz-accent);
  font-weight: 500;
}
.sz-experience-item-copy .sz-media-views,
.sz-experience-article-meta .sz-media-views {
  display: block;
  margin-top: 8px;
  color: var(--sz-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sz-experience-item-copy h3 {
  margin: 0 0 18px;
  font-family: inherit;
  font-size: 26px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
  color: var(--sz-text);
}

.sz-experience-item-copy h3 a {
  transition: var(--sz-transition);
}

.sz-experience-item-copy h3 a:hover {
  color: var(--sz-accent);
}

.sz-experience-item-copy p {
  margin: 0 0 24px;
  font-size: 15px;
  color: var(--sz-muted);
  font-weight: 300;
  line-height: 1.8;
}

.sz-experiences-empty {
  text-align: center;
  padding: 80px 40px 120px;
}

/* ===== Experiences Show Page ===== */

.sz-experience-detail {
  padding-top: 0;
}

.sz-experience-hero-split {
  display: flex;
  align-items: stretch;
  margin-top: 70px;
  min-height: 400px;
  max-height: 600px;
  background: #1a1a1a;
}

.sz-experience-hero-image {
  flex: 0 0 50%;
  margin: 0;
  overflow: hidden;
}

.sz-experience-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.sz-experience-hero-excerpt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 50px;
  background: #1a1a1a;
  text-align: center;
}

.sz-experience-hero-excerpt p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  letter-spacing: 0.5px;
  font-style: italic;
}

.sz-experience-hero-excerpt h2 {
  margin: 0 0 16px;
  font-family: inherit;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
  color: var(--sz-white);
  font-style: italic;
}

.sz-experience-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.sz-experience-article {
  min-width: 0;
}

.sz-experience-sidebar {
  position: sticky;
  top: 100px;
}

.sz-experience-article-meta {
  text-align: center;
  margin-bottom: 40px;
}

.sz-experience-article-meta time {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--sz-accent);
  font-weight: 500;
}

.sz-experience-article-meta h1 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
  color: var(--sz-text);
}

.sz-experience-excerpt {
  margin: 0 0 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.25);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--sz-muted);
  font-style: italic;
  text-align: center;
}

.sz-experience-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--sz-text);
}

.sz-experience-body p {
  margin: 0 0 24px;
}

.sz-experience-body p:first-child {
  margin-top: 0;
}

.sz-experience-body h1,
.sz-experience-body h2,
.sz-experience-body h3 {
  font-family: inherit;
  font-weight: 400;
  margin: 40px 0 16px;
  color: var(--sz-text);
}

.sz-experience-body h1 {
  font-size: 28px;
}
.sz-experience-body h2 {
  font-size: 22px;
}
.sz-experience-body h3 {
  font-size: 18px;
}

.sz-experience-body ul,
.sz-experience-body ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.sz-experience-body li {
  margin-bottom: 8px;
}

.sz-experience-body blockquote {
  border-left: 3px solid var(--sz-accent);
  padding-left: 20px;
  margin: 0 0 24px;
  color: var(--sz-muted);
  font-style: italic;
}

.sz-experience-body pre {
  background: var(--sz-soft);
  padding: 16px;
  border-radius: 6px;
  overflow-x: auto;
  margin: 0 0 24px;
}

.sz-experience-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}

.sz-experience-body a {
  color: var(--sz-accent);
  text-decoration: underline;
}

.sz-experience-article-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.sz-experience-more {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sz-experience-more h2 {
  font-family: var(--sz-font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--sz-text);
  margin: 0 0 28px;
}

.sz-experience-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sz-experience-more-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0 24px 0 24px;
  overflow: hidden;
  transition: var(--sz-transition);
}

.sz-experience-more-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.sz-experience-more-card img,
.sz-experience-more-placeholder {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: var(--sz-soft);
  display: block;
}

.sz-experience-more-placeholder {
  background: var(--sz-gradient, linear-gradient(135deg, #f5f0e8, #e8e0d0));
}

.sz-experience-more-body {
  padding: 18px 20px 22px;
}

.sz-experience-more-body time {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--sz-muted);
}

.sz-experience-more-body h3 {
  margin: 0 0 10px;
  font-family: var(--sz-font-heading);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--sz-text);
  transition: var(--sz-transition);
}

.sz-experience-more-card:hover h3 {
  color: var(--sz-accent);
}

.sz-experience-more-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--sz-muted);
}

/* ===== Lombok guest guide ===== */
.sz-guide { background: var(--sz-bg); }
.sz-guide-hero { min-height: 680px; position: relative; display: grid; align-items: center; overflow: hidden; background: #ece7dd; }
.sz-guide-hero-image { position: absolute; inset: 0 0 0 43%; background: linear-gradient(90deg, #ece7dd 0%, rgba(236,231,221,.2) 30%, rgba(0,0,0,.04)), url("/assets/top-pool.webp") center / cover; }
.sz-guide-hero-content { position: relative; z-index: 1; width: min(1240px, calc(100% - 80px)); margin: 0 auto; padding: 120px 0 80px; }
.sz-guide-hero-content h1 { max-width: 620px; margin: 14px 0 24px; font-size: clamp(48px, 7vw, 94px); line-height: .98; font-weight: 300; letter-spacing: -3px; }
.sz-guide-hero-content h1 em { color: var(--sz-accent-dark); font-family: Georgia, serif; font-weight: 400; }
.sz-guide-hero-content > p:not(.sz-kicker) { max-width: 470px; color: var(--sz-muted); font-size: 18px; line-height: 1.7; }
.sz-guide-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.sz-guide-intro, .sz-guide-section-heading, .sz-guide-grid, .sz-guide-map-frame, .sz-guide-map-caption { max-width: 1240px; margin-left: auto; margin-right: auto; }
.sz-guide-intro { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; padding: 100px 40px; }
.sz-guide-intro h2, .sz-guide-section-heading h2, .sz-guide-cta h2 { margin: 8px 0 0; font-size: clamp(32px, 4vw, 56px); line-height: 1.05; font-weight: 300; letter-spacing: -1px; }
.sz-guide-intro > p { margin: 10px 0 0; color: var(--sz-muted); font-size: 17px; line-height: 1.8; }
.sz-guide-quick-facts { padding: 90px 40px; background: white; }
.sz-guide-quick-facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1240px; margin: 0 auto; }
.sz-guide-quick-facts article { padding: 28px; border-top: 2px solid var(--sz-accent); background: var(--sz-soft); }
.sz-guide-fact-number { color: var(--sz-accent-dark); font-family: Georgia, serif; font-size: 24px; }
.sz-guide-quick-facts h3 { margin: 26px 0 10px; font-size: 22px; font-weight: 400; }
.sz-guide-quick-facts article p { margin: 0; color: var(--sz-muted); font-size: 14px; line-height: 1.7; }
.sz-guide-sources { max-width: 1240px; margin: 24px auto 0; color: var(--sz-muted); font-size: 11px; }
.sz-guide-sources a { color: var(--sz-accent-dark); text-decoration: underline; }
.sz-guide-island-hub { padding: 100px 40px; background: var(--sz-ink); color: white; }
.sz-guide-island-hub .sz-guide-section-heading > p:not(.sz-kicker) { color: rgba(255,255,255,.7); }
.sz-guide-route-list { display: grid; gap: 12px; max-width: 1240px; margin: 0 auto; }
.sz-guide-route-list article { display: flex; align-items: center; gap: 22px; padding: 20px 24px; border: 1px solid rgba(255,255,255,.18); }
.sz-guide-route-icon { display: grid; flex: 0 0 48px; place-items: center; width: 48px; height: 48px; border: 1px solid var(--sz-accent); border-radius: 50%; color: var(--sz-accent); font-size: 23px; }
.sz-guide-route-copy { display: grid; gap: 5px; }
.sz-guide-route-copy span { color: var(--sz-accent); font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
.sz-guide-route-copy strong { font-size: 18px; font-weight: 400; }
.sz-guide-route-copy i { padding: 0 7px; color: var(--sz-accent); font-style: normal; }
.sz-guide-route-copy small { color: rgba(255,255,255,.58); font-size: 11px; }
.sz-guide-other-islands-heading { max-width: 1240px; margin: 76px auto 22px; }
.sz-guide-other-islands-heading span { color: var(--sz-accent); font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
.sz-guide-other-islands-heading h3 { margin: 8px 0 0; font-size: 30px; font-weight: 300; }
.sz-guide-island-hub .sz-guide-neighbouring-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; max-width: 1240px; margin: 0 auto; }
.sz-guide-island-hub .sz-guide-neighbouring-grid article { min-height: 230px; padding: 20px; border: 1px solid rgba(255,255,255,.18); }
.sz-guide-island-icon { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--sz-accent); border-radius: 50%; color: var(--sz-accent); font-family: Georgia, serif; }
.sz-guide-island-hub h4 { margin: 18px 0 10px; font-size: 21px; font-weight: 400; }
.sz-guide-island-hub .sz-guide-neighbouring-grid p { color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.6; }
.sz-guide-island-hub .sz-guide-neighbouring-grid span { display: block; margin-top: 22px; color: rgba(255,255,255,.55); font-size: 10px; line-height: 1.5; text-transform: uppercase; letter-spacing: 1px; }
.sz-guide-island-hub .sz-guide-sources { color: rgba(255,255,255,.55); }
.sz-guide-itineraries { padding: 100px 40px; background: var(--sz-bg); }
.sz-guide-itinerary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1240px; margin: 0 auto; }
.sz-guide-itinerary-grid article { min-height: 285px; padding: 25px 22px; border: 1px solid rgba(0,0,0,.11); background: white; }
.sz-guide-itinerary-grid h3 { margin: 24px 0 12px; font-size: 22px; line-height: 1.15; font-weight: 400; }
.sz-guide-itinerary-grid article p:not(.sz-itinerary-label) { color: var(--sz-muted); font-size: 14px; line-height: 1.65; }
.sz-itinerary-label { margin: 10px 0 0; color: var(--sz-accent-dark); font-size: 10px; text-transform: uppercase; letter-spacing: 1.4px; }
.sz-guide-itinerary-grid article > span:last-child { display: block; margin-top: 28px; color: var(--sz-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.sz-guide-neighbouring-islands { padding: 100px 40px; background: white; }
.sz-guide-neighbouring-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 1240px; margin: 0 auto; }
.sz-guide-neighbouring-grid article { min-height: 255px; padding: 24px 20px; border: 1px solid rgba(0,0,0,.1); }
.sz-guide-neighbouring-grid h3 { margin: 0 0 14px; font-size: 24px; font-weight: 400; }
.sz-guide-neighbouring-grid p { color: var(--sz-muted); font-size: 13px; line-height: 1.65; }
.sz-guide-neighbouring-grid span { display: block; margin-top: 24px; color: var(--sz-accent-dark); font-size: 10px; line-height: 1.5; text-transform: uppercase; letter-spacing: 1px; }
.sz-guide-map-section { padding: 100px 40px; background: var(--sz-soft); }
.sz-guide-section-heading { padding: 0 0 30px; }
.sz-guide-section-heading > p:not(.sz-kicker) { max-width: 640px; margin: 16px 0 0; color: var(--sz-muted); }
.sz-guide-map-frame { overflow: hidden; background: var(--sz-soft); box-shadow: 0 25px 60px rgba(0,0,0,.15); }
.sz-guide-map-frame img { width: 100%; display: block; }
.sz-guide-map-caption { display: flex; justify-content: space-between; gap: 20px; padding: 14px 4px 0; color: var(--sz-muted); font-size: 12px; }
.sz-guide-map-caption a, .sz-guide-card a { color: var(--sz-accent-dark); text-decoration: underline; }
.sz-guide-places { padding: 100px 40px; }
.sz-guide-filters { max-width: 1240px; margin: 0 auto 34px; display: flex; gap: 10px; flex-wrap: wrap; }
.sz-guide-filters button { border: 1px solid rgba(0,0,0,.12); background: transparent; padding: 11px 17px; border-radius: 999px; font: inherit; font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; cursor: pointer; }
.sz-guide-filters button.is-active, .sz-guide-filters button:hover { background: var(--sz-ink); color: white; border-color: var(--sz-ink); }
.sz-guide-filters { align-items: center; gap: 8px; padding: 6px; border: 1px solid rgba(0,0,0,.1); border-radius: 999px; width: fit-content; background: white; }
.sz-guide-filters button { border: 0; padding: 12px 18px; color: var(--sz-muted); transition: var(--sz-transition); outline: none; }
.sz-guide-filters button.is-active { color: white; background: var(--sz-ink); box-shadow: 0 4px 14px rgba(13,18,24,.16); }
.sz-guide-filters button:hover:not(.is-active) { color: var(--sz-ink); background: var(--sz-soft); }
.sz-guide-filters button:focus-visible { outline: 2px solid var(--sz-accent); outline-offset: 3px; }
.sz-guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sz-guide-card { display: grid; grid-template-rows: 190px 1fr; min-height: 405px; border: 1px solid rgba(0,0,0,.08); background: white; border-radius: 0 26px 0 26px; overflow: hidden; transition: var(--sz-transition); }
.sz-guide-card[hidden] { display: none; }
.sz-guide-card:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(0,0,0,.1); }
.sz-guide-card-media { position: relative; background-position: center; background-size: cover; }
.sz-guide-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,18,24,.03), rgba(13,18,24,.24)); }
.sz-guide-card-number { position: absolute; z-index: 1; top: 16px; left: 16px; display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--sz-ink); color: var(--sz-accent); font-family: Georgia, serif; font-size: 18px; }
.sz-guide-card-image-count { position: absolute; z-index: 1; top: 18px; right: 16px; display: inline-flex; align-items: center; justify-content: center; min-width: 28px; height: 28px; padding: 0 8px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; color: white; background: rgba(13,18,24,.76); font-size: 11px; font-weight: 600; letter-spacing: .3px; }
.sz-guide-card-category { position: absolute; z-index: 1; right: 16px; bottom: 14px; color: white; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; }
.sz-guide-card-body { display: flex; min-width: 0; flex-direction: column; padding: 20px 18px 22px; }
.sz-guide-card-meta { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: 5px; color: var(--sz-muted); font-size: 11px; line-height: 1.45; text-transform: uppercase; letter-spacing: 1px; }
.sz-guide-card-meta span, .sz-guide-card-meta strong { min-width: 0; max-width: 100%; overflow-wrap: break-word; word-break: normal; }
.sz-guide-card-meta strong { color: var(--sz-accent-dark); font-weight: 500; text-align: left; }
.sz-guide-card h3 { max-width: 100%; margin: 14px 0 8px; font-size: 20px; line-height: 1.18; font-weight: 400; overflow-wrap: anywhere; }
.sz-guide-card p { min-height: 0; margin: 0 0 14px; color: var(--sz-muted); font-size: 14px; line-height: 1.6; overflow-wrap: anywhere; }
.sz-guide-card a { font-size: 12px; }
.sz-guide-card { color: inherit; text-decoration: none; }
.sz-guide-card-link { margin-top: auto; color: var(--sz-accent-dark); font-size: 12px; text-decoration: underline; }
.sz-guide-places-footer { max-width: 1240px; margin: 42px auto 0; text-align: center; }
.sz-guide-places-index-hero { color: white; background-color: var(--sz-ink); background-position: center; background-size: cover; }
.sz-guide-places-index-hero-content { width: min(900px, calc(100% - 80px)); margin: 0 auto; padding: 120px 0 90px; }
.sz-guide-places-index-hero h1 { max-width: 720px; margin: 16px 0; font-size: clamp(50px, 8vw, 92px); line-height: .96; font-weight: 300; letter-spacing: -3px; }
.sz-guide-places-index-hero p:not(.sz-kicker) { max-width: 590px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.7; }
.sz-guide-place-search { position: relative; max-width: 680px; margin-top: 40px; }
.sz-guide-place-search label { display: block; margin-bottom: 10px; color: var(--sz-accent); font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
.sz-guide-place-search input { width: 100%; padding: 20px 22px; border: 1px solid rgba(255,255,255,.28); border-radius: 0 18px 0 18px; outline: none; color: white; background: rgba(255,255,255,.1); font: inherit; font-size: 16px; }
.sz-guide-place-search input::placeholder { color: rgba(255,255,255,.58); }
.sz-guide-search-results { position: absolute; z-index: 5; top: 88px; right: 0; left: 0; overflow: hidden; border-radius: 0 0 14px 14px; background: white; box-shadow: 0 18px 40px rgba(0,0,0,.25); }
.sz-guide-search-results a { display: flex; justify-content: space-between; gap: 20px; padding: 14px 18px; color: var(--sz-ink); border-bottom: 1px solid rgba(0,0,0,.08); text-decoration: none; }
.sz-guide-search-results a:hover { background: var(--sz-soft); }
.sz-guide-search-results span { color: var(--sz-muted); font-size: 11px; text-transform: uppercase; }
.sz-guide-places-index-list { padding: 80px 40px 110px; }
.sz-guide-search-empty { margin: 50px auto; color: var(--sz-muted); text-align: center; }
.sz-guide-place-hero { min-height: 580px; display: flex; align-items: end; background-position: center; background-size: cover; color: white; }
.sz-guide-place-hero-content { width: min(1240px, calc(100% - 80px)); margin: 0 auto; padding: 120px 0 70px; }
.sz-guide-back-link { display: inline-block; margin-bottom: 42px; color: rgba(255,255,255,.82); font-size: 12px; text-decoration: underline; }
.sz-guide-place-hero h1 { max-width: 800px; margin: 12px 0 18px; font-size: clamp(50px, 8vw, 100px); line-height: .95; font-weight: 300; letter-spacing: -3px; }
.sz-guide-place-hero p:not(.sz-kicker) { max-width: 620px; color: rgba(255,255,255,.8); font-size: 19px; line-height: 1.6; }
.sz-guide-place-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; max-width: 1240px; margin: 0 auto; padding: 100px 40px; }
.sz-guide-place-copy h2 { margin: 8px 0 20px; font-size: clamp(34px, 4vw, 58px); line-height: 1.05; font-weight: 300; }
.sz-guide-place-copy p:not(.sz-kicker) { max-width: 650px; color: var(--sz-muted); font-size: 17px; line-height: 1.8; }
.sz-guide-place-copy .sz-button { display: inline-block; margin-top: 16px; }
.sz-guide-route-section { padding: 82px 40px 92px; background: var(--sz-soft); }
.sz-guide-route-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; max-width: 1240px; margin: 0 auto 28px; }
.sz-guide-route-heading h2 { margin: 8px 0 12px; font-size: clamp(34px, 4vw, 58px); line-height: 1.05; font-weight: 300; }
.sz-guide-route-heading p:not(.sz-kicker) { max-width: 620px; margin: 0; color: var(--sz-muted); line-height: 1.7; }
.sz-guide-route-heading .sz-button { flex: 0 0 auto; }
.sz-route-map { position: relative; max-width: 1240px; height: 430px; margin: 0 auto; overflow: hidden; border: 1px solid rgba(0,0,0,.1); background: #dfe8ee; box-shadow: 0 25px 60px rgba(0,0,0,.15); }
.sz-route-map-status { position: absolute; z-index: 500; top: 18px; left: 18px; padding: 10px 14px; border-radius: 999px; color: var(--sz-ink); background: rgba(255,255,255,.9); font-size: 12px; box-shadow: 0 5px 16px rgba(0,0,0,.12); }
.sz-route-map-status.is-error { color: #8a3b2d; }
.sz-route-map-footer { display: flex; justify-content: space-between; gap: 20px; max-width: 1240px; margin: 14px auto 0; color: var(--sz-muted); font-size: 12px; }
.sz-route-map-footer small { font-size: 11px; }
.sz-route-marker { display: flex !important; align-items: center; justify-content: center; border: 3px solid white; border-radius: 50%; color: white; background: var(--sz-ink); box-shadow: 0 4px 12px rgba(0,0,0,.3); font-size: 12px; font-weight: 700; }
.sz-route-marker-destination { color: white; background: #2374e1; font-size: 14px; }
.sz-guide-place-facts { align-self: start; border-top: 1px solid rgba(0,0,0,.15); }
.sz-guide-place-facts div { display: flex; justify-content: space-between; gap: 20px; padding: 19px 0; border-bottom: 1px solid rgba(0,0,0,.12); }
.sz-guide-place-facts span { color: var(--sz-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; }
.sz-guide-place-facts strong { font-weight: 400; }
.sz-guide-place-related { padding: 90px 40px 110px; background: var(--sz-soft); }
.sz-guide-place-gallery { max-width: 1240px; margin: 0 auto; padding: 0 40px 100px; }
.sz-guide-place-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.sz-guide-place-gallery-item { position: relative; margin: 0; overflow: hidden; padding: 6px; border: 1px solid rgba(197, 168, 128, 0.4); border-radius: 0 42px 0 42px; background: linear-gradient(135deg, rgba(197, 168, 128, 0.22), rgba(255, 255, 255, 0.98)), var(--sz-white); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1); }
.sz-guide-place-gallery-item img { display: block; width: 100%; aspect-ratio: 10 / 7; object-fit: cover; border-radius: 0 36px 0 36px; transition: var(--sz-transition); }
.sz-guide-place-gallery-item:hover img { transform: scale(1.04); }
.sz-guide-place-gallery-item figcaption { padding: 10px 14px; color: var(--sz-muted); font-size: 11px; line-height: 1.4; }
.sz-guide-place-related .sz-guide-section-heading { padding-bottom: 24px; }
.sz-guide-place-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1240px; margin: 0 auto; }
.sz-guide-place-related-card { display: block; overflow: hidden; color: inherit; text-decoration: none; border: 1px solid rgba(0,0,0,.08); background: white; border-radius: 0 22px 0 22px; transition: var(--sz-transition); }
.sz-guide-place-related-card:hover { transform: translateY(-4px); box-shadow: 0 18px 35px rgba(0,0,0,.1); }
.sz-guide-place-related-image { height: 180px; background-position: center; background-size: cover; }
.sz-guide-place-related-card > div:last-child { padding: 18px; }
.sz-guide-place-related-card span { color: var(--sz-muted); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.sz-guide-place-related-card h3 { margin: 10px 0 8px; font-size: 20px; font-weight: 400; }
.sz-guide-place-related-card p { margin: 0; color: var(--sz-muted); font-size: 13px; line-height: 1.6; }
.sz-guide-place-pagination { display: flex; justify-content: space-between; gap: 30px; max-width: 1240px; margin: 0 auto; padding: 34px 40px 70px; }
.sz-guide-place-pagination-link { display: grid; gap: 8px; color: inherit; text-decoration: none; }
.sz-guide-place-pagination-link span { color: var(--sz-accent-dark); font-size: 10px; text-transform: uppercase; letter-spacing: 1.3px; }
.sz-guide-place-pagination-link strong { font-size: 18px; font-weight: 400; }
.sz-guide-place-pagination-next { text-align: right; }
@media (max-width: 900px) { .sz-guide-place-layout { grid-template-columns: 1fr; gap: 40px; } .sz-guide-place-hero-content { width: calc(100% - 48px); } }
@media (max-width: 900px) { .sz-guide-place-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) { .sz-guide-route-section { padding: 70px 24px; } .sz-guide-route-heading { display: block; } .sz-guide-route-heading .sz-button { margin-top: 22px; } .sz-route-map { height: 360px; } .sz-route-map-footer { display: block; } .sz-route-map-footer small { display: block; margin-top: 8px; } }
@media (max-width: 560px) { .sz-guide-place-gallery { padding: 0 24px 70px; } .sz-guide-place-gallery-grid { grid-template-columns: 1fr; } .sz-guide-place-related { padding: 70px 24px 80px; } .sz-guide-place-related-grid { grid-template-columns: 1fr; } }
.sz-guide-cta { padding: 110px 40px; text-align: center; color: white; background: var(--sz-ink); }
.sz-guide-cta h2 { color: white; }
.sz-guide-cta > p:not(.sz-kicker) { max-width: 520px; margin: 18px auto 28px; color: rgba(255,255,255,.72); }
@media (max-width: 900px) { .sz-guide-hero-image { inset: 42% 0 0; opacity: .35; } .sz-guide-hero-content { width: calc(100% - 48px); padding: 110px 0 180px; } .sz-guide-intro { grid-template-columns: 1fr; gap: 24px; padding: 70px 24px; } .sz-guide-quick-facts { padding: 70px 24px; } .sz-guide-quick-facts-grid { grid-template-columns: 1fr; } .sz-guide-itineraries { padding: 70px 24px; } .sz-guide-itinerary-grid { grid-template-columns: repeat(2, 1fr); } .sz-guide-island-hub { padding: 70px 24px; } .sz-guide-island-hub .sz-guide-neighbouring-grid { grid-template-columns: 1fr; } .sz-guide-map-section, .sz-guide-places { padding: 70px 24px; } .sz-guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sz-guide-itinerary-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .sz-guide-hero-content h1 { font-size: 52px; } .sz-guide-grid { grid-template-columns: 1fr; } .sz-guide-map-caption { flex-direction: column; } }

.sz-experience-more-footer {
  margin-top: 32px;
  text-align: center;
}

.sz-experience-share {
  margin-bottom: 32px;
}

.sz-experience-share-label {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sz-muted);
  margin-bottom: 12px;
}

.sz-experience-share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sz-experience-share-buttons .sz-share-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: var(--sz-white);
  cursor: pointer;
  transition: var(--sz-transition);
  padding: 0;
  overflow: hidden;
}

.sz-share-btn .sz-share-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.sz-experience-share-buttons .sz-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sz-share-copy {
  font-family: inherit;
}

.sz-share-copy.is-copied {
  background: #25d366;
  border-color: #25d366;
}

.sz-share-copy.is-copied .sz-share-icon {
  filter: brightness(0) invert(1);
}

.sz-experience-cta {
  background: var(--sz-soft);
  border-left: 3px solid var(--sz-accent);
  border-radius: 0 16px 0 16px;
  overflow: hidden;
}

.sz-experience-cta-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.sz-experience-cta-body {
  padding: clamp(24px, 3.5vw, 36px);
}

.sz-experience-cta h3 {
  font-family: inherit;
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 26px);
  margin: 8px 0 14px;
  color: var(--sz-text);
}

.sz-experience-cta p:not(.sz-kicker) {
  color: var(--sz-muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 20px;
  text-align: justify;
}

/* ===== Homepage Experiences Preview ===== */

.sz-experiences-preview {
  padding: 100px 40px;
  background: var(--sz-white);
}

.sz-experiences-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sz-experience-card {
  background: var(--sz-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0 30px 0 30px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
  transition: var(--sz-transition);
}

.sz-experience-card:hover {
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.sz-experience-card-image {
  display: block;
  height: 240px;
  overflow: hidden;
  border-bottom: 3px solid var(--sz-accent);
}

.sz-experience-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: var(--sz-soft);
  transition: var(--sz-transition);
}

.sz-experience-card-image:hover img {
  transform: scale(1.01);
}

.sz-experience-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(197, 168, 128, 0.15),
    rgba(244, 244, 244, 0.5)
  );
}

.sz-experience-card-body {
  padding: 28px 24px 32px;
}

.sz-experience-card-body time {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sz-accent);
  font-weight: 500;
}

.sz-experience-card-body h3 {
  margin: 0 0 12px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  color: var(--sz-text);
}

.sz-experience-card-body h3 a {
  transition: var(--sz-transition);
}

.sz-experience-card-body h3 a:hover {
  color: var(--sz-accent);
}

.sz-experience-card-body p {
  margin: 0;
  font-size: 14px;
  color: var(--sz-muted);
  font-weight: 300;
  line-height: 1.7;
}

.sz-experiences-cta {
  text-align: center;
  margin-top: 50px;
}

/* ===== Responsive ===== */

@media (max-width: 968px) {
  .sz-experience-item,
  .sz-experience-item-reverse {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 70px;
  }

  .sz-experience-item-image {
    flex: none;
    width: 100%;
    height: 320px;
  }

  .sz-experience-item-copy {
    text-align: center;
  }

  .sz-experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sz-experience-more-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sz-experiences-hero {
    padding: 70px 24px 40px;
  }

  .sz-experiences-list {
    padding: 50px 24px 80px;
  }

  .sz-experience-item-image {
    height: 260px;
    border-radius: 0 50px 0 50px;
  }

  .sz-experience-item-image img,
  .sz-experience-item-placeholder {
    border-radius: 0 40px 0 40px;
  }

  .sz-experience-hero-split {
    flex-direction: column;
    max-height: none;
  }

  .sz-experience-hero-image {
    flex: none;
    height: 300px;
  }

  .sz-experience-hero-excerpt {
    flex: none;
    padding: 30px 24px;
  }

  .sz-experience-article {
    padding: 0;
  }

  .sz-experience-layout {
    grid-template-columns: 1fr;
    padding: 50px 24px 70px;
    gap: 32px;
  }

  .sz-experience-sidebar {
    position: static;
  }

  .sz-experiences-grid {
    grid-template-columns: 1fr;
  }

  .sz-experience-more-grid {
    grid-template-columns: 1fr;
  }

  .sz-experiences-preview {
    padding: 60px 24px;
  }
}

/* ===== Login Page ===== */

.sz-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(197, 168, 128, 0.08) 0%,
    var(--sz-soft) 100%
  );
  padding: 40px 20px;
}

.sz-login-card {
  width: 100%;
  max-width: 400px;
  background: var(--sz-white);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 0 32px 0 32px;
  padding: 48px 40px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.sz-login-logo {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--sz-text);
  text-decoration: none;
}

.sz-login-subtitle {
  margin: 0 0 32px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--sz-accent);
  font-weight: 500;
}

.sz-login-form {
  text-align: left;
}

.sz-login-field {
  margin-bottom: 20px;
}

.sz-login-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sz-muted);
  font-weight: 500;
}

.sz-login-field input[type="email"],
.sz-login-field input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 15px;
  color: var(--sz-text);
  background: var(--sz-bg);
  transition: var(--sz-transition);
  box-sizing: border-box;
}

.sz-login-field input:focus {
  outline: none;
  border-color: var(--sz-accent);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.sz-login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--sz-muted);
}

.sz-login-remember input {
  accent-color: var(--sz-accent);
}

.sz-login-remember label {
  cursor: pointer;
}

.sz-login-submit {
  width: 100%;
  padding: 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  background: var(--sz-accent);
  color: var(--sz-white);
  border-radius: 8px;
  transition: var(--sz-transition);
}

.sz-login-submit:hover {
  background: var(--sz-accent-dark);
}

.sz-login-error {
  margin: 20px 0 0;
  padding: 12px 16px;
  background: rgba(207, 34, 46, 0.08);
  border: 1px solid rgba(207, 34, 46, 0.2);
  border-radius: 8px;
  font-size: 13px;
  color: #cf222e;
}

.sz-login-notice {
  margin: 20px 0 0;
  padding: 12px 16px;
  background: rgba(26, 127, 55, 0.08);
  border: 1px solid rgba(26, 127, 55, 0.2);
  border-radius: 8px;
  font-size: 13px;
  color: #1a7f37;
}

@media (max-width: 480px) {
  .sz-login-card {
    padding: 32px 24px;
    border-radius: 0 24px 0 24px;
  }
}

/* Flash messages */
.sz-flash {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: szFlashSlide 0.3s ease;
}

.sz-flash-notice {
  background: #1a7f37;
  color: #fff;
}

.sz-flash-alert {
  background: #cf222e;
  color: #fff;
}

@keyframes szFlashSlide {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ===================== VillaPromo Show Page ===================== */

/* ===================== Gallery ===================== */
.sz-gallery-page {
  background: #f5f1e9;
  min-height: 100vh;
  padding: 7rem clamp(1.25rem, 4vw, 5rem) 6rem;
}
.sz-gallery-intro {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.sz-gallery-intro h1 {
  color: #17252a;
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.98;
  margin: 0.6rem 0 1.25rem;
}
.sz-gallery-intro p:last-child {
  color: #667275;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 560px;
}
.sz-upload-gallery-grid {
  max-width: 1050px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.sz-upload-gallery-card {
  height: 360px;
  min-height: 0;
  box-sizing: border-box;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 0 62px 0 62px;
  background:
    linear-gradient(
      135deg,
      rgba(197, 168, 128, 0.22),
      rgba(255, 255, 255, 0.98)
    ),
    var(--sz-white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}
.sz-upload-gallery-open {
  border: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
  background: #203238;
  border-radius: 0 52px 0 52px;
  display: block;
  text-align: left;
}
.sz-upload-gallery-media {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  border-radius: 0 52px 0 52px;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}
.sz-upload-gallery-open:hover .sz-upload-gallery-media {
  transform: scale(1.045);
  filter: brightness(0.78);
}
.sz-upload-gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 4rem 1.4rem 1.25rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(8, 20, 24, 0.82));
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  pointer-events: none;
}
.sz-upload-gallery-caption strong {
  font:
    1.15rem Georgia,
    serif;
}
.sz-upload-gallery-caption small {
  opacity: 0.82;
  font-size: 0.85rem;
}
.sz-media-views {
  opacity: 0.72;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.sz-upload-gallery-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 0.15rem;
  color: #17252a;
  background: #f4eee2;
  font-size: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.sz-gallery-empty {
  text-align: center;
  color: #667275;
}
.sz-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 4rem 2rem 2rem;
  background: rgba(8, 18, 21, 0.94);
  display: grid;
  place-items: center;
}
.sz-lightbox[hidden] {
  display: none;
}
.sz-lightbox-content img,
.sz-lightbox-content video {
  max-width: min(94vw, 1400px);
  max-height: 84vh;
  object-fit: contain;
  display: block;
}
.sz-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  border: 0;
  background: none;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}
.sz-lightbox-open {
  overflow: hidden;
}
@media (max-width: 760px) {
  .sz-gallery-page {
    padding-top: 5.5rem;
  }
  .sz-upload-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .sz-upload-gallery-card {
    height: 240px;
    min-height: 0;
  }
  .sz-upload-gallery-caption {
    padding: 3rem 0.8rem 0.8rem;
  }
  .sz-upload-gallery-caption strong {
    font-size: 0.95rem;
  }
}

.sz-vp-page {
  background: var(--sz-bg);
}

.sz-vp-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.sz-vp-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0 0 0 80px;
}

.sz-vp-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.15) 75%,
    transparent 100%
  );
  padding: 60px clamp(24px, 6vw, 80px) clamp(56px, 6vw, 80px);
  text-align: center;
}

.sz-vp-hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.sz-vp-hero-content h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 12px 0 20px;
}

.sz-vp-hero-caption {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

.sz-vp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.sz-vp-hero .sz-button-dark {
  background-color: var(--sz-gold);
  border-color: var(--sz-gold);
  color: #fff;
}

.sz-vp-hero .sz-button-dark:hover {
  background-color: var(--sz-accent-dark);
  border-color: var(--sz-accent-dark);
  color: #fff;
}

.sz-vp-hero .sz-button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}

.sz-vp-hero .sz-button-outline:hover {
  background-color: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  color: #fff;
}

.sz-vp-features {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
  background: var(--sz-bg);
}

.sz-vp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.sz-vp-feature {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 0 40px 0 40px;
  background: var(--sz-surface);
  transition: var(--sz-transition);
}

.sz-vp-feature:hover {
  border-color: rgba(197, 168, 128, 0.7);
  box-shadow: 0 12px 32px rgba(197, 168, 128, 0.12);
}

.sz-vp-feature span {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
}

.sz-vp-feature h3 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--sz-gold);
}

.sz-vp-feature p {
  font-size: 14px;
  color: var(--sz-muted);
  line-height: 1.6;
  margin: 0;
}

.sz-vp-gallery {
  padding: 0 clamp(24px, 6vw, 80px) clamp(60px, 8vw, 100px);
}

.sz-vp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.sz-vp-gallery-grid img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  padding: 6px;
  border: 1px solid rgba(197, 168, 128, 0.42);
  border-radius: 0 52px 0 52px;
  background: linear-gradient(
    135deg,
    rgba(197, 168, 128, 0.08),
    transparent 60%
  );
  transition: var(--sz-transition);
}

.sz-vp-gallery-grid img:hover {
  transform: scale(1.02);
  border-color: rgba(197, 168, 128, 0.7);
}

@media (max-width: 900px) {
  .sz-vp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sz-vp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sz-vp-hero {
    height: 100svh;
    min-height: 500px;
  }

  .sz-vp-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .sz-vp-features-grid {
    grid-template-columns: 1fr;
  }

  .sz-vp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile-first cleaner workspace */
.sz-button {
  display: inline-block;
  padding: 11px 16px;
  border-radius: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.sz-button-dark {
  background: #18222a;
  color: #fff;
}
.sz-manager-task {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: #fff;
  border: 1px solid #e4ded6;
  border-radius: 12px;
  margin: 10px 0;
}
.sz-manager-task span {
  display: block;
  color: #777;
  font-size: 0.85rem;
  margin-top: 4px;
}
.sz-manager-form {
  display: grid;
  gap: 8px;
}
.sz-manager-form input,
.sz-manager-form select {
  padding: 11px;
  border: 1px solid #ddd2c8;
  border-radius: 8px;
}
.sz-manager-form h2 {
  margin-top: 20px;
}
.sz-custom-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto auto;
  gap: 6px;
  align-items: center;
}
.sz-custom-row input {
  min-width: 0;
}
.sz-custom-row input[type="checkbox"] {
  min-width: auto;
}
.sz-housekeeping {
  max-width: 720px;
  margin: 0 auto;
  padding: 142px 16px 80px;
  color: #18222a;
}
.sz-housekeeping-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
}
.sz-housekeeping h1 {
  margin: 4px 0;
  font-size: clamp(2rem, 9vw, 3.2rem);
}
.sz-housekeeping-head strong {
  font-size: 1.35rem;
  color: #8a5b32;
}
.sz-progress {
  height: 8px;
  background: #e8e1d8;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.sz-progress span {
  display: block;
  height: 100%;
  background: #8a5b32;
  transition: width 0.25s;
}
.sz-task-section {
  margin: 20px 0;
}
.sz-task-section h2 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a5b32;
}
.sz-task-section:first-child h2 {
  color: #18222a;
}
.sz-task-item {
  background: #fff;
  border: 1px solid #e4ded6;
  border-radius: 14px;
  margin: 8px 0;
  padding: 13px 12px;
  box-shadow: 0 2px 8px #18222a0b;
}
.sz-task-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.sz-task-item input {
  position: absolute;
  opacity: 0;
}
.sz-check {
  width: 24px;
  height: 24px;
  flex: none;
  border: 2px solid #b6aaa0;
  border-radius: 50%;
}
.sz-task-item input:checked + .sz-check {
  background: #8a5b32;
  border-color: #8a5b32;
  box-shadow: inset 0 0 0 5px #fff;
}
.sz-task-item.is-done .sz-task-label {
  text-decoration: line-through;
  opacity: 0.58;
}
.sz-task-label {
  display: block;
}
.sz-task-label strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.3;
}
.sz-task-label small {
  display: block;
  margin-top: 4px;
  color: #8b857f;
  font-size: 0.78rem;
  line-height: 1.25;
}
.sz-note-button {
  border: 0;
  background: transparent;
  float: right;
  font-size: 1.15rem;
  cursor: pointer;
}
.sz-task-item textarea {
  display: none;
  width: calc(100% - 36px);
  margin: 10px 0 0 36px;
  min-height: 55px;
  border: 1px solid #ddd2c8;
  border-radius: 8px;
  padding: 8px;
}
.sz-task-item textarea.is-visible {
  display: block;
}
.sz-note-preview {
  margin: 10px 0 0 36px;
  padding: 9px 11px;
  border-left: 3px solid #c79b6a;
  color: #6f6259;
  background: #fcfaf7;
  border-radius: 0 7px 7px 0;
  white-space: pre-wrap;
  font-size: 0.9rem;
}
.sz-manager-empty {
  margin-top: 30px;
  padding: 48px 24px;
  text-align: center;
  border: 1px dashed #d7cbbf;
  border-radius: 16px;
  background: #fcfaf7;
}
.sz-manager-empty-icon {
  font-size: 2.5rem;
}
.sz-manager-empty h2 {
  margin: 12px 0 6px;
}
.sz-manager-empty p {
  color: #777;
  margin: 0 auto 20px;
}
@media (max-width: 760px) {
  .sz-housekeeping {
    padding-top: 104px;
  }
  .sz-housekeeping-head {
    align-items: flex-start;
    gap: 12px;
  }
  .sz-housekeeping-head h1 {
    font-size: 2rem;
  }
  .sz-housekeeping-head .sz-button {
    white-space: nowrap;
  }
  .sz-custom-row {
    grid-template-columns: 1fr;
  }
}

/* Operations workspace: readable mobile layouts without horizontal scrolling. */
@media (max-width: 760px) {
  .ops-page-head {
    padding: 26px 14px 0;
  }

  .ops-page-head h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .ops-page-head-right {
    align-items: stretch;
    gap: 16px;
  }

  .ops-tabs {
    gap: 10px 14px;
  }

  .ops-header-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .ops-header-actions .ops-button {
    width: 100%;
    text-align: center;
  }

  .ops-shell {
    padding: 18px 14px;
  }

  .ops-summary-table-card {
    border-radius: 14px;
  }

  .ops-summary-table-heading {
    padding: 20px 18px 14px;
  }

  .ops-summary-table-wrap {
    overflow: visible;
  }

  .ops-summary-table {
    display: block;
    min-width: 0;
  }

  .ops-summary-table thead {
    display: none;
  }

  .ops-summary-table tbody {
    display: block;
  }

  .ops-summary-table tbody tr {
    display: block;
    padding: 14px 18px;
    border-top: 1px solid #e4e8e2;
  }

  .ops-summary-table tbody tr:first-child {
    border-top: 0;
  }

  .ops-summary-table th,
  .ops-summary-table td,
  .ops-summary-table th:first-child,
  .ops-summary-table td:first-child {
    width: auto;
    white-space: normal;
  }

  .ops-summary-table tbody th {
    display: block;
    padding: 0 0 8px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .ops-summary-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 0;
    border-top: 0;
    text-align: right;
    line-height: 1.35;
  }

  .ops-summary-table tbody td + td {
    margin-top: 8px;
  }

  .ops-summary-table tbody td::before {
    content: attr(data-label);
    flex: 0 1 auto;
    color: #89958e;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-align: left;
    text-transform: uppercase;
  }

  .ops-summary-table tbody td strong {
    flex: 0 0 auto;
    margin-left: auto;
    text-align: right;
  }

  .ops-summary-table .ops-summary-total {
    padding-top: 16px;
  }

  .ops-summary-table tbody tr.ops-summary-total {
    border-top: 2px solid #dfe6df;
  }

  .ops-summary-table tbody tr.ops-summary-total th,
  .ops-summary-table tbody tr.ops-summary-total td {
    border-top: 0;
  }

  .ops-list-row {
    align-items: flex-start;
    gap: 10px;
  }

  .ops-list-row span {
    min-width: 0;
  }

  .ops-list-row b {
    flex: 0 0 auto;
    max-width: 46%;
    overflow-wrap: anywhere;
    text-align: right;
  }

  .calendar-toolbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
  }

  .calendar-toolbar h2 {
    min-width: 0;
    font-size: 1.15rem;
    white-space: nowrap;
  }

  .calendar-toolbar .ops-button {
    padding: 9px 13px;
  }

  .calendar-toolbar .ops-button:not(.ops-button-muted) {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }

  .calendar-legend {
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 10px;
  }

  .calendar-grid-wrap {
    padding: 10px;
    border-radius: 14px;
  }

  .calendar-grid {
    display: block;
  }

  .calendar-day-name,
  .calendar-cell-empty {
    display: none;
  }

  .calendar-cell {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 10px;
  }

  .calendar-cell:last-child {
    margin-bottom: 0;
  }

  .calendar-cell-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
  }

  .calendar-weekday {
    display: block;
    color: #849087;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
  }

  .calendar-date {
    width: 32px;
    height: 32px;
  }

  .calendar-add-day {
    width: 26px;
    height: 26px;
    opacity: 1;
  }

  .calendar-cell-body {
    min-width: 0;
  }

  .calendar-free {
    margin-top: 6px;
  }

  .calendar-reservation {
    min-width: 0;
    grid-template-columns: 8px minmax(0, 1fr);
  }

  .calendar-reservation-villa {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* Lombok guide editorial refinement */
.sz-guide-hero { min-height: 570px; }
.sz-guide-hero-content { padding-top: 92px; padding-bottom: 72px; }
.sz-guide-intro { gap: 56px; padding-top: 64px; padding-bottom: 64px; }
.sz-guide-story { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1240px; margin: 0 auto; padding: 0 40px 72px; }
.sz-guide-story article { padding-top: 22px; border-top: 1px solid var(--sz-accent); }
.sz-guide-story h3 { margin: 14px 0 10px; font-size: 25px; font-weight: 400; }
.sz-guide-story article p:not(.sz-kicker) { margin: 0; color: var(--sz-muted); font-size: 14px; line-height: 1.7; }
.sz-guide-quick-facts { padding-top: 64px; padding-bottom: 64px; }
.sz-guide-itineraries, .sz-guide-map-section, .sz-guide-places { padding-top: 72px; padding-bottom: 72px; }
.sz-guide-island-hub { padding-top: 72px; padding-bottom: 72px; }
.sz-guide-section-heading h2 { font-size: clamp(31px, 3.6vw, 50px); }
.sz-guide-search-cta { display: inline-block; margin-top: 18px; color: var(--sz-accent-dark); font-size: 12px; text-decoration: underline; text-underline-offset: 4px; }
.sz-guide-places-footer { margin-top: 28px; }
.sz-guide-cta { padding-top: 76px; padding-bottom: 76px; }
@media (max-width: 900px) { .sz-guide-story { grid-template-columns: 1fr; padding: 0 24px 56px; } .sz-guide-intro { padding-top: 52px; padding-bottom: 52px; } }
