@charset "UTF-8";
:root {
  --sd-ink: #1a1a1a;
  --sd-charcoal: #2d2d2d;
  --sd-slate: #5a5a5a;
  --sd-stone: #8a8a8a;
  --sd-sand: #c4b8a8;
  --sd-cream: #faf8f5;
  --sd-ivory: #f5f3ef;
  --sd-white: #ffffff;
  --sd-gold: #b8956c;
  --sd-gold-light: #d4b896;
  --sd-gold-dark: #96774d;
  --sd-success: #2d8a5e;
  --sd-success-light: #e8f5ed;
  --sd-info: #3a7ca5;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

.suite-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 750px;
  background: var(--sd-ink);
  overflow: hidden;
  margin-top: 0;
}

.suite-hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.suite-hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-animation: heroFadeIn 1.2s var(--ease-out) 0.2s forwards;
          animation: heroFadeIn 1.2s var(--ease-out) 0.2s forwards;
}

@-webkit-keyframes heroFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
  }
}
.suite-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.1) 40%, rgba(26, 26, 26, 0.4) 80%, rgba(26, 26, 26, 0.7) 100%);
  z-index: 1;
}

.suite-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--space-xl) 0;
}

.suite-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.suite-hero__resort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sd-gold-light);
  margin-bottom: var(--space-sm);
  opacity: 0;
  -webkit-animation: slideUp 0.8s var(--ease-out) 0.4s forwards;
          animation: slideUp 0.8s var(--ease-out) 0.4s forwards;
}
.suite-hero__resort::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--sd-gold);
}

.suite-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sd-white);
  margin: 0 0 var(--space-sm);
  opacity: 0;
  -webkit-animation: slideUp 0.8s var(--ease-out) 0.5s forwards;
          animation: slideUp 0.8s var(--ease-out) 0.5s forwards;
}
.suite-hero__title em {
  font-style: italic;
  color: var(--sd-gold-light);
}

.suite-hero__specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  opacity: 0;
  -webkit-animation: slideUp 0.8s var(--ease-out) 0.6s forwards;
          animation: slideUp 0.8s var(--ease-out) 0.6s forwards;
}

.suite-hero__spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}
.suite-hero__spec i {
  color: var(--sd-gold);
  font-size: 1rem;
}

@-webkit-keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.suite-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 92px;
  z-index: 100;
  background: var(--sd-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.suite-nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.suite-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.suite-nav__list::-webkit-scrollbar {
  display: none;
}

.suite-nav__item {
  flex-shrink: 0;
}

.suite-nav__link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--sd-slate);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s var(--ease-smooth);
  white-space: nowrap;
}
.suite-nav__link:hover, .suite-nav__link.active {
  color: var(--sd-ink);
  border-bottom-color: var(--sd-gold);
}

.suite-nav__cta {
  margin-left: auto;
  padding: var(--space-sm) 0;
}

.suite-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sd-white);
  background: var(--sd-gold);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
}
.suite-nav__btn:hover {
  background: var(--sd-gold-dark);
  transform: translateY(-1px);
}
.suite-nav__btn i {
  font-size: 0.9rem;
}

.suite-content {
  background: var(--sd-cream);
  padding: var(--space-xl) 0 var(--space-2xl);
}

.suite-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.suite-content__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 992px) {
  .suite-content__grid {
    grid-template-columns: 1fr 380px;
    gap: var(--space-lg);
  }
}

.suite-main {
  min-width: 0;
}

.suite-booking-notice {
  background: var(--sd-success-light);
  border: 1px solid rgba(45, 138, 94, 0.2);
  border-radius: 12px;
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.suite-booking-notice__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-sm);
}
.suite-booking-notice__header i {
  font-size: 1.25rem;
  color: var(--sd-success);
}
.suite-booking-notice__header h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sd-ink);
  margin: 0;
}

.suite-booking-notice__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--sd-charcoal);
  margin: 0 0 var(--space-sm);
  line-height: 1.5;
}

.suite-booking-notice__link {
  color: var(--sd-success);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}
.suite-booking-notice__link:hover {
  color: var(--sd-gold);
}

.suite-availability {
  background: var(--sd-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: var(--space-lg);
}

.suite-availability__header {
  padding: var(--space-md);
  background: var(--sd-ivory);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.suite-availability__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sd-ink);
  margin: 0;
}

.suite-availability__table {
  width: 100%;
  border-collapse: collapse;
}
.suite-availability__table th {
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sd-stone);
  text-align: left;
  background: var(--sd-ivory);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.suite-availability__table td {
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--sd-charcoal);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  vertical-align: middle;
}
.suite-availability__table tr:last-child td {
  border-bottom: none;
}
.suite-availability__table tr:hover td {
  background: rgba(184, 149, 108, 0.05);
}

.suite-availability__dates {
  font-weight: 500;
  color: var(--sd-ink);
}
.suite-availability__dates small {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sd-success);
  margin-top: 2px;
}

.suite-availability__rate {
  font-weight: 600;
  color: var(--sd-ink);
}

.suite-availability__total {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--sd-gold-dark);
}

.suite-availability__action {
  text-align: right;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sd-white);
  background: var(--sd-success);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s var(--ease-smooth);
}
.btn-book:hover {
  background: #236b49;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 138, 94, 0.3);
  color: var(--sd-white);
}

.suite-section {
  background: var(--sd-white);
  border-radius: 12px;
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.suite-section__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--sd-ink);
  margin: 0 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.suite-section__title::before {
  content: "";
  display: block;
  width: 4px;
  height: 28px;
  background: var(--sd-gold);
  border-radius: 2px;
}

.suite-section__subtitle {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--sd-info);
  margin: 0 0 var(--space-md);
}

.suite-section__content {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--sd-charcoal);
}
.suite-section__content p {
  margin: 0 0 var(--space-md);
}
.suite-section__content p:last-child {
  margin-bottom: 0;
}

.suite-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
@media (min-width: 576px) {
  .suite-specs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.suite-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-md);
  background: var(--sd-ivory);
  border-radius: 8px;
  text-align: center;
}
.suite-spec i {
  font-size: 1.5rem;
  color: var(--sd-gold);
  margin-bottom: 8px;
}

.suite-spec__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sd-ink);
  line-height: 1;
}

.suite-spec__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sd-stone);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.suite-amenities {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .suite-amenities {
    grid-template-columns: repeat(3, 1fr);
  }
}

.suite-amenities__group h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sd-gold-dark);
  margin: 0 0 var(--space-sm);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.suite-amenities__group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.suite-amenities__group li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--sd-charcoal);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.suite-amenities__group li:last-child {
  border-bottom: none;
}
.suite-amenities__group li i {
  width: 20px;
  color: var(--sd-gold);
  font-size: 0.9rem;
  text-align: center;
}

.suite-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
@media (min-width: 576px) {
  .suite-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.suite-gallery__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
@media (min-width: 576px) {
  .suite-gallery__item:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
}
.suite-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.suite-gallery__item:hover img {
  transform: scale(1.05);
}
.suite-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-smooth);
}
.suite-gallery__item:hover::after {
  opacity: 1;
}

.suite-gallery__expand {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--sd-white);
  border-radius: 50%;
  color: var(--sd-ink);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-smooth);
  z-index: 1;
}
.suite-gallery__item:hover .suite-gallery__expand {
  opacity: 1;
  transform: translateY(0);
}

.suite-floorplan {
  text-align: center;
}
.suite-floorplan img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.suite-testimonials {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.suite-testimonial {
  position: relative;
  padding: var(--space-md);
  background: var(--sd-ivory);
  border-radius: 8px;
  border-left: 4px solid var(--sd-gold);
}
.suite-testimonial::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: var(--space-md);
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--sd-sand);
  line-height: 1;
  opacity: 0.5;
}

.suite-testimonial__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--sd-charcoal);
  margin: 0 0 var(--space-sm);
  font-style: italic;
}

.suite-testimonial__author {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sd-ink);
}
.suite-testimonial__author span {
  font-weight: 400;
  color: var(--sd-stone);
}

.suite-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: calc(152px + var(--space-md));
}
@media (max-width: 991px) {
  .suite-sidebar {
    position: static;
  }
}

.suite-quote-box {
  background: var(--sd-white);
  border-radius: 12px;
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.suite-quote-box__header {
  text-align: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.suite-quote-box__header h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sd-ink);
  margin: 0 0 8px;
}
.suite-quote-box__header p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--sd-slate);
  margin: 0;
}

.suite-quote-box__cta {
  display: block;
  width: 100%;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sd-white);
  background: linear-gradient(135deg, var(--sd-gold) 0%, var(--sd-gold-dark) 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
}
.suite-quote-box__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 149, 108, 0.35);
  color: var(--sd-white);
}

.suite-quote-box__benefits {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.suite-quote-box__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--sd-charcoal);
}
.suite-quote-box__benefits li i {
  color: var(--sd-success);
  font-size: 0.9rem;
}

.suite-suggestions {
  background: var(--sd-white);
  border-radius: 12px;
  padding: var(--space-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.suite-suggestions__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--sd-ink);
  text-align: center;
  margin: 0 0 var(--space-md);
}

.suite-suggestion {
  display: block;
  margin-bottom: var(--space-sm);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s var(--ease-smooth);
}
.suite-suggestion:last-child {
  margin-bottom: 0;
}
.suite-suggestion:hover {
  transform: translateY(-2px);
}

.suite-suggestion__image {
  position: relative;
  aspect-ratio: 16/10;
}
.suite-suggestion__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.suite-suggestion__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 35%, transparent 70%);
}

.suite-suggestion__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  z-index: 1;
}

.suite-suggestion__dates {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sd-gold-light);
  margin-bottom: 4px;
}

.suite-suggestion__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sd-white);
  line-height: 1.3;
}

.suite-share {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.suite-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sd-white);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s var(--ease-smooth);
}
.suite-share__btn--facebook {
  background: #1877f2;
}
.suite-share__btn--facebook:hover {
  background: #0b5fcc;
  color: var(--sd-white);
}
.suite-share__btn--twitter {
  background: #1da1f2;
}
.suite-share__btn--twitter:hover {
  background: #0c85d0;
  color: var(--sd-white);
}

.suite-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: var(--space-md);
  border-radius: 8px;
  margin-bottom: var(--space-md);
}
.suite-alert i {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.suite-alert--success {
  background: var(--sd-success-light);
  border: 1px solid rgba(45, 138, 94, 0.2);
}
.suite-alert--success i {
  color: var(--sd-success);
}
.suite-alert--warning {
  background: #fff8e6;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.suite-alert--warning i {
  color: #f59e0b;
}

.suite-alert__content {
  flex: 1;
}
.suite-alert__content strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sd-ink);
  margin-bottom: 4px;
}
.suite-alert__content p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--sd-charcoal);
  margin: 0;
  line-height: 1.5;
}

.btn-watchlist {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sd-white);
  background: var(--sd-success);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
}
.btn-watchlist:hover {
  background: #236b49;
  transform: translateY(-1px);
}
.btn-watchlist i {
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .suite-hero {
    height: 50vh;
    min-height: 400px;
  }
  .suite-nav {
    top: 92px;
  }
  .suite-content__grid {
    grid-template-columns: 1fr;
  }
  .suite-sidebar {
    order: -1;
    margin-bottom: var(--space-lg);
  }
}
@media (max-width: 767px) {
  .suite-hero__specs {
    flex-direction: column;
    gap: var(--space-xs);
  }
  .suite-section {
    padding: var(--space-md);
  }
  .suite-availability__table {
    font-size: 0.85rem;
  }
  .suite-availability__table th, .suite-availability__table td {
    padding: var(--space-xs) var(--space-sm);
  }
  .btn-book {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}
.suite-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}
.suite-lightbox.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.suite-lightbox__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  -webkit-animation: lightboxFadeIn 0.3s var(--ease-smooth);
          animation: lightboxFadeIn 0.3s var(--ease-smooth);
}

@-webkit-keyframes lightboxFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.suite-lightbox__container {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: lightboxZoomIn 0.3s var(--ease-smooth);
          animation: lightboxZoomIn 0.3s var(--ease-smooth);
}

@-webkit-keyframes lightboxZoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lightboxZoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.suite-lightbox__image {
  max-width: 100%;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.suite-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--sd-white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
}
.suite-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.suite-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--sd-white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
}
.suite-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}
.suite-lightbox__nav--prev {
  left: 20px;
}
.suite-lightbox__nav--next {
  right: 20px;
}

.suite-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--sd-white);
}

@media (max-width: 767px) {
  .suite-lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .suite-lightbox__nav--prev {
    left: 10px;
  }
  .suite-lightbox__nav--next {
    right: 10px;
  }
  .suite-lightbox__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .suite-hero__image,
.suite-hero__resort,
.suite-hero__title,
.suite-hero__specs {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
  }
  .suite-gallery__item img,
.suite-suggestion,
.btn-book,
.btn-watchlist,
.suite-quote-box__cta {
    transition: none;
  }
}
.suite-nav__link:focus-visible,
.btn-book:focus-visible,
.btn-watchlist:focus-visible,
.suite-quote-box__cta:focus-visible {
  outline: 3px solid var(--sd-gold);
  outline-offset: 2px;
}