: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-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;
}

.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(38px, 6vw, 56px);
  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;
  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-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;
}

.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,
.sz-experience {
  background: var(--sz-soft);
}

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

.sz-location-map img {
  width: 100%;
  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);
}

.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: 110px 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-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;
  }

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