: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-languages {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sz-languages a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--sz-muted);
  padding: 2px 6px;
  border-bottom: 1px solid transparent;
  transition: var(--sz-transition);
}

.sz-languages a.is-active {
  color: var(--sz-text);
  border-bottom-color: var(--sz-text);
}

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

.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-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-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 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-text-link {
  color: #a26b43;
  font-weight: 700;
  text-decoration: none;
}
.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-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-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 {
    animation: none;
  }

  .sz-hero-slide:not(:first-child) {
    display: 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);
}

.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,
.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 .sz-section-heading,
.sz-attractions .sz-section-heading,
.sz-experience {
  max-width: 820px;
  margin: 0 auto;
}

.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-experience {
  text-align: center;
}

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

.sz-gallery {
  background-color: var(--sz-soft);
  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-bg);
}

.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);
  box-shadow: 0 20px 50px var(--sz-shadow);
}

.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-fab-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  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-fab-group {
    bottom: 16px;
    right: 16px;
  }

  .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: 90px 40px;
  background: var(--sz-bg);
}

.sz-share-card {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  background: var(--sz-white);
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.09);
}

.sz-share-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: block;
}

.sz-share-content h2 {
  margin: 8px 0 16px;
}

.sz-share-content > p {
  color: var(--sz-muted);
  font-size: 15px;
  line-height: 1.65;
}

.sz-share-hint {
  margin: 20px 0 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  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-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }

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

/* 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: cover;
  object-position: center;
  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.04);
}

.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 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: cover;
  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);
}

.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-soft);
}

.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: cover;
  object-position: center;
  transition: var(--sz-transition);
}

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

.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 ===================== */

.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);
  }
}
