@charset "UTF-8";
:root {
  --color-background: #ffffff;
  --color-surface: #f5f5f5;
  --color-text: #111111;
  --color-text-muted: #5c5c5c;
  --color-accent: #111111;
  --color-border: #e5e5e5;
  --color-on-dark: #ffffff;
  --color-hero-title: #eceae4;
  --color-hero-text: #d8d5cc;
  --color-cta: #c2a878;
  --color-cta-hover: #b39766;
  --color-cta-text: #101113;
  --color-green: #315a56;
  --color-text-soft: #0000008c;
  --color-gold-soft: #c2a87859;
  --color-beige: #eae3da;
  --color-gray: #808080;
  --color-stone: #9b968c;
  --hero-overlay: rgba(12, 14, 13, 0.4);
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  /* Display / hero */
  --text-display-family: var(--font-heading);
  --text-display-size: clamp(1.875rem, 0.8rem + 5.2vw, 5.25rem);
  --text-display-weight: 500;
  --text-display-line: 1.05;
  --text-display-letter: -0.02em;
  /* Titulares */
  --text-h1-family: var(--font-heading);
  --text-h1-size: clamp(2.25rem, 4.5vw, 3.75rem);
  --text-h1-weight: 500;
  --text-h1-line: 1.1;
  --text-h1-letter: -0.02em;
  --text-h2-family: var(--font-heading);
  --text-h2-size: clamp(1.875rem, 3.2vw, 3rem);
  --text-h2-weight: 500;
  --text-h2-line: 1.15;
  --text-h2-letter: -0.015em;
  --text-h3-family: var(--font-heading);
  --text-h3-size: clamp(1.5rem, 2.4vw, 2.25rem);
  --text-h3-weight: 500;
  --text-h3-line: 1.2;
  --text-h3-letter: -0.01em;
  --text-h4-family: var(--font-heading);
  --text-h4-size: clamp(1.25rem, 1.8vw, 1.75rem);
  --text-h4-weight: 500;
  --text-h4-line: 1.25;
  --text-h4-letter: 0;
  /* Párrafos */
  --text-lead-family: var(--font-body);
  --text-lead-size: 1.125rem;
  --text-lead-weight: 400;
  --text-lead-line: 1.6;
  --text-lead-letter: 0;
  --text-body-family: var(--font-body);
  --text-body-size: 1rem;
  --text-body-weight: 400;
  --text-body-line: 1.6;
  --text-body-letter: 0;
  --text-body-sm-family: var(--font-body);
  --text-body-sm-size: 0.875rem;
  --text-body-sm-weight: 400;
  --text-body-sm-line: 1.5;
  --text-body-sm-letter: 0;
  /* CTA / botones */
  --text-cta-family: var(--font-body);
  --text-cta-size: 0.8125rem;
  --text-cta-weight: 600;
  --text-cta-line: 1.2;
  --text-cta-letter: 0.16em;
  /* UI: labels, nav, pies de foto */
  --text-label-family: var(--font-body);
  --text-label-size: 0.8125rem;
  --text-label-weight: 600;
  --text-label-line: 1.3;
  --text-label-letter: 0.04em;
  --text-caption-family: var(--font-body);
  --text-caption-size: 0.75rem;
  --text-caption-weight: 400;
  --text-caption-line: 1.4;
  --text-caption-letter: 0.01em;
  --text-kicker-family: var(--font-body);
  --text-kicker-size: 0.8125rem;
  --text-kicker-weight: 400;
  --text-kicker-line: 1.3;
  --text-kicker-letter: 0.18em;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --container-max: 81.25rem;
  --container-pad: 1.25rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --header-height: 4.5rem;
  --transition: 0.2s ease;
}

@media (min-width: 48rem) {
  :root {
    --text-kicker-size: 1.5rem;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: var(--text-body-family);
  font-size: var(--text-body-size);
  font-weight: var(--text-body-weight);
  line-height: var(--text-body-line);
  letter-spacing: var(--text-body-letter);
  color: var(--color-text);
}

h1,
.text-h1 {
  font-family: var(--text-h1-family);
  font-size: var(--text-h1-size);
  font-weight: var(--text-h1-weight);
  line-height: var(--text-h1-line);
  letter-spacing: var(--text-h1-letter);
}

h2,
.text-h2 {
  font-family: var(--text-h2-family);
  font-size: var(--text-h2-size);
  font-weight: var(--text-h2-weight);
  line-height: var(--text-h2-line);
  letter-spacing: var(--text-h2-letter);
}

h3,
.text-h3 {
  font-family: var(--text-h3-family);
  font-size: var(--text-h3-size);
  font-weight: var(--text-h3-weight);
  line-height: var(--text-h3-line);
  letter-spacing: var(--text-h3-letter);
}

h4,
h5,
h6,
.text-h4 {
  font-family: var(--text-h4-family);
  font-size: var(--text-h4-size);
  font-weight: var(--text-h4-weight);
  line-height: var(--text-h4-line);
  letter-spacing: var(--text-h4-letter);
}

.text-display {
  font-family: var(--text-display-family);
  font-size: var(--text-display-size);
  font-weight: var(--text-display-weight);
  line-height: var(--text-display-line);
  letter-spacing: var(--text-display-letter);
}

p,
.text-body {
  font-family: var(--text-body-family);
  font-size: var(--text-body-size);
  font-weight: var(--text-body-weight);
  line-height: var(--text-body-line);
  letter-spacing: var(--text-body-letter);
}

.text-lead {
  font-family: var(--text-lead-family);
  font-size: var(--text-lead-size);
  font-weight: var(--text-lead-weight);
  line-height: var(--text-lead-line);
  letter-spacing: var(--text-lead-letter);
}

.text-body-sm {
  font-family: var(--text-body-sm-family);
  font-size: var(--text-body-sm-size);
  font-weight: var(--text-body-sm-weight);
  line-height: var(--text-body-sm-line);
  letter-spacing: var(--text-body-sm-letter);
}

.text-cta {
  font-family: var(--text-cta-family);
  font-size: var(--text-cta-size);
  font-weight: var(--text-cta-weight);
  line-height: var(--text-cta-line);
  letter-spacing: var(--text-cta-letter);
}

.text-label {
  font-family: var(--text-label-family);
  font-size: var(--text-label-size);
  font-weight: var(--text-label-weight);
  line-height: var(--text-label-line);
  letter-spacing: var(--text-label-letter);
}

.text-caption {
  font-family: var(--text-caption-family);
  font-size: var(--text-caption-size);
  font-weight: var(--text-caption-weight);
  line-height: var(--text-caption-line);
  letter-spacing: var(--text-caption-letter);
}

.text-kicker {
  font-family: var(--text-kicker-family);
  font-size: var(--text-kicker-size);
  font-weight: var(--text-kicker-weight);
  line-height: var(--text-kicker-line);
  letter-spacing: var(--text-kicker-letter);
  text-transform: uppercase;
}

html {
  scroll-behavior: smooth;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  min-height: 100vh;
  background-color: var(--color-background);
}

@media (prefers-reduced-motion: no-preference) {
  .js-animate .vg-header__logo,
  .js-animate .hero__city,
  .js-animate .hero__kicker,
  .js-animate .hero__title,
  .js-animate .hero__lead,
  .js-animate .hero__cta,
  .js-animate [data-reveal],
  .js-animate [data-reveal-stagger] > * {
    opacity: 0;
  }
}
.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.5rem 0.75rem;
  background: var(--color-text);
  color: var(--color-background);
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.vg-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}
.vg-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: var(--header-height);
  padding: 0.85rem 1.25rem 0;
}
.vg-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.vg-header__logo img {
  width: auto;
  height: 3.25rem;
}
@media (min-width: 48rem) {
  .vg-header__logo img {
    height: 4.5rem;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-height) + 1.5rem) 0 18vh;
}
@media (min-width: 48rem) {
  .hero {
    padding-bottom: 20vh;
  }
}
.hero {
  overflow: hidden;
  color: var(--color-on-dark);
  text-align: center;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero__city {
  font-family: var(--text-label-family);
  font-size: 1rem;
  font-weight: 800;
  line-height: var(--text-label-line);
  letter-spacing: 0.22em;
  margin: 0 0 0.5rem;
  color: var(--color-hero-title);
  text-transform: uppercase;
}
.hero__kicker {
  font-family: var(--text-kicker-family);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: var(--text-kicker-line);
  letter-spacing: var(--text-kicker-letter);
  margin: 0;
  color: var(--color-hero-text);
  text-transform: uppercase;
}
@media (min-width: 48rem) {
  .hero__city {
    font-size: 1.875rem;
  }
  .hero__kicker {
    font-size: 1.125rem;
  }
}
.hero__title {
  font-family: var(--text-display-family);
  font-size: var(--text-display-size);
  font-weight: var(--text-display-weight);
  line-height: var(--text-display-line);
  letter-spacing: var(--text-display-letter);
  margin: 0.6rem 0 0;
  font-weight: 500;
  color: var(--color-hero-title);
}
.hero__lead {
  font-family: var(--text-lead-family);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: var(--text-lead-line);
  letter-spacing: var(--text-lead-letter);
  max-width: 22rem;
  margin: 1rem 0 0;
  color: var(--color-hero-text);
}
@media (min-width: 48rem) {
  .hero__lead {
    max-width: 28rem;
    font-size: 1.375rem;
  }
}
@media (min-width: 64rem) {
  .hero__lead {
    max-width: none;
    white-space: nowrap;
  }
}
.hero__cta {
  margin-top: 1.75rem;
}
@media (min-width: 48rem) {
  .hero__cta {
    margin-top: 2.25rem;
  }
}

.finance {
  background-color: var(--color-gold-soft);
  color: var(--color-green);
  text-align: center;
}
.finance__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 2.75rem;
}
@media (min-width: 48rem) {
  .finance__inner {
    padding-block: 3.75rem;
  }
}
.finance__title {
  font-family: var(--text-h3-family);
  font-size: var(--text-h3-size);
  font-weight: var(--text-h3-weight);
  line-height: var(--text-h3-line);
  letter-spacing: var(--text-h3-letter);
  margin: 0;
  color: inherit;
  font-size: clamp(1.75rem, 0.9rem + 2.4vw, 2.875rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.finance__amount {
  font-family: var(--text-h4-family);
  font-size: var(--text-h4-size);
  font-weight: var(--text-h4-weight);
  line-height: var(--text-h4-line);
  letter-spacing: var(--text-h4-letter);
  margin: 0.6rem 0 0;
  color: inherit;
  font-size: clamp(1.25rem, 0.85rem + 1.6vw, 2.125rem);
  font-weight: 500;
}
@media (min-width: 48rem) {
  .finance__amount {
    margin-top: 0.75rem;
  }
}
.finance__note {
  font-family: var(--text-caption-family);
  font-size: var(--text-caption-size);
  font-weight: var(--text-caption-weight);
  line-height: var(--text-caption-line);
  letter-spacing: var(--text-caption-letter);
  max-width: 20rem;
  margin: 1.25rem 0 0;
  color: var(--color-text-soft);
  font-size: 0.8125rem;
  font-weight: 500;
}
@media (min-width: 48rem) {
  .finance__note {
    max-width: none;
    margin-top: 1.75rem;
  }
}

.overview {
  background-color: var(--color-beige);
  padding-block: 3.25rem;
}
@media (min-width: 48rem) {
  .overview {
    padding-block: 4.5rem;
  }
}
@media (min-width: 64rem) {
  .overview {
    padding-block: 5.5rem;
  }
}
.overview__inner {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
@media (min-width: 64rem) {
  .overview__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 5.5rem;
    align-items: start;
  }
}
.overview__kicker {
  font-family: var(--text-label-family);
  font-size: var(--text-label-size);
  font-weight: var(--text-label-weight);
  line-height: var(--text-label-line);
  letter-spacing: var(--text-label-letter);
  margin: 0 0 0.75rem;
  color: var(--color-cta);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.overview__title {
  font-family: var(--text-h2-family);
  font-size: var(--text-h2-size);
  font-weight: var(--text-h2-weight);
  line-height: var(--text-h2-line);
  letter-spacing: var(--text-h2-letter);
  margin: 0;
  color: var(--color-green);
  font-size: clamp(1.75rem, 1rem + 2vw, 2.75rem);
  font-weight: 500;
  text-transform: uppercase;
}
.overview__text {
  font-family: var(--text-body-family);
  font-size: var(--text-body-size);
  font-weight: var(--text-body-weight);
  line-height: var(--text-body-line);
  letter-spacing: var(--text-body-letter);
  margin: 1.25rem 0 0;
  color: var(--color-gray);
  line-height: 1.7;
}
@media (min-width: 48rem) {
  .overview__text {
    max-width: 34rem;
  }
}
.overview__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 1.25rem;
}
@media (min-width: 48rem) {
  .overview__stats {
    gap: 2.25rem 2.5rem;
  }
}
@media (min-width: 64rem) {
  .overview__stats {
    padding-top: 2.25rem;
  }
}
.overview__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}
.overview__value {
  font-family: var(--text-h3-family);
  font-size: var(--text-h3-size);
  font-weight: var(--text-h3-weight);
  line-height: var(--text-h3-line);
  letter-spacing: var(--text-h3-letter);
  color: var(--color-green);
  font-size: clamp(1.75rem, 1.1rem + 1.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
}
.overview__label {
  font-family: var(--text-caption-family);
  font-size: var(--text-caption-size);
  font-weight: var(--text-caption-weight);
  line-height: var(--text-caption-line);
  letter-spacing: var(--text-caption-letter);
  color: var(--color-stone);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plans {
  background-color: var(--color-beige);
  padding-block: 2rem;
}
@media (min-width: 48rem) {
  .plans {
    padding-block: 2.5rem;
  }
}
.plans__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (min-width: 48rem) {
  .plans__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.plans__kicker {
  font-family: var(--text-label-family);
  font-size: var(--text-label-size);
  font-weight: var(--text-label-weight);
  line-height: var(--text-label-line);
  letter-spacing: var(--text-label-letter);
  margin: 0 0 0.5rem;
  color: var(--color-cta);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.plans__title {
  font-family: var(--text-h3-family);
  font-size: var(--text-h3-size);
  font-weight: var(--text-h3-weight);
  line-height: var(--text-h3-line);
  letter-spacing: var(--text-h3-letter);
  margin: 0;
  color: var(--color-green);
  font-size: clamp(1.375rem, 1rem + 1.1vw, 2rem);
  font-weight: 500;
}
.plans__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex-shrink: 0;
}
.plans .btn {
  flex-shrink: 0;
}

.gallery {
  background-color: var(--color-beige);
  padding-block: 1.25rem 1.5rem;
}
@media (min-width: 48rem) {
  .gallery {
    padding-block: 1.5rem 1.75rem;
  }
}
@media (min-width: 64rem) {
  .gallery {
    padding-block: 1.75rem 2rem;
  }
}
.gallery__title {
  font-family: var(--text-label-family);
  font-size: var(--text-label-size);
  font-weight: var(--text-label-weight);
  line-height: var(--text-label-line);
  letter-spacing: var(--text-label-letter);
  margin: 0 0 1.25rem;
  color: var(--color-cta);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (min-width: 48rem) {
  .gallery__title {
    margin-bottom: 1.75rem;
  }
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 36rem) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 48rem) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }
}
body.single-landing .gallery__item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  aspect-ratio: 4/3;
  background-color: var(--color-surface);
  cursor: zoom-in;
  appearance: none;
}
.gallery__item:nth-child(n+7) {
  display: none;
}
@media (min-width: 36rem) {
  .gallery__item:first-child {
    grid-column: 1/-1;
    aspect-ratio: 16/10;
  }
}
@media (min-width: 48rem) {
  .gallery__item {
    aspect-ratio: 3/2;
  }
  .gallery__item:first-child {
    grid-column: 1/3;
    grid-row: 1/3;
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
  }
}
.gallery__item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 13, 0);
  transition: background var(--transition);
  pointer-events: none;
}
.gallery__item:hover img, .gallery__item:focus-visible img {
  transform: scale(1.03);
}
.gallery__item:hover::after, .gallery__item:focus-visible::after {
  background: rgba(12, 14, 13, 0.18);
}
body.single-landing .gallery__item:focus-visible {
  outline: 2px solid var(--color-cta);
  outline-offset: 3px;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .gallery__item img {
    transition: none;
  }
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: rgba(16, 17, 19, 0.96);
  color: var(--color-on-dark);
}
.gallery-lightbox::backdrop {
  background: rgba(12, 14, 13, 0.88);
}
.gallery-lightbox[open] {
  display: flex;
  flex-direction: column;
}
.gallery-lightbox__header {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem 0.5rem;
}
@media (min-width: 48rem) {
  .gallery-lightbox__header {
    padding: 1.1rem 1.5rem 0.75rem;
  }
}
.gallery-lightbox__meta {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.35rem;
}
.gallery-lightbox__count {
  font-family: var(--text-caption-family);
  font-size: var(--text-caption-size);
  font-weight: var(--text-caption-weight);
  line-height: var(--text-caption-line);
  letter-spacing: var(--text-caption-letter);
  margin: 0;
  color: var(--color-hero-text);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
}
.gallery-lightbox__caption {
  font-family: var(--text-label-family);
  font-size: var(--text-label-size);
  font-weight: var(--text-label-weight);
  line-height: var(--text-label-line);
  letter-spacing: var(--text-label-letter);
  margin: 0;
  color: var(--color-cta);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
body.single-landing .gallery-lightbox__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-on-dark);
  cursor: pointer;
}
.gallery-lightbox__close svg {
  width: 1.25rem;
  height: 1.25rem;
}
.gallery-lightbox__close:hover, .gallery-lightbox__close:focus-visible {
  color: var(--color-cta);
}
body.single-landing .gallery-lightbox__close:focus-visible {
  outline: 2px solid var(--color-cta);
  outline-offset: 3px;
  box-shadow: none;
}
.gallery-lightbox__stage {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  min-height: 0;
  padding-inline: 0.5rem;
}
@media (min-width: 48rem) {
  .gallery-lightbox__stage {
    padding-inline: 3.5rem;
  }
}
.gallery-lightbox__main {
  width: 100%;
  height: 100%;
}
.gallery-lightbox__main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.gallery-lightbox__main img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(100%, 100vh - 11rem);
  object-fit: contain;
}
body.single-landing .gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(194, 168, 120, 0.45);
  background: rgba(16, 17, 19, 0.55);
  color: var(--color-on-dark);
  transform: translateY(-50%);
  cursor: pointer;
}
@media (min-width: 48rem) {
  body.single-landing .gallery-lightbox__nav {
    width: 2.75rem;
    height: 2.75rem;
  }
}
.gallery-lightbox__nav svg {
  width: 1.15rem;
  height: 1.15rem;
}
.gallery-lightbox__nav:hover, .gallery-lightbox__nav:focus-visible {
  border-color: var(--color-cta);
  color: var(--color-cta);
}
body.single-landing .gallery-lightbox__nav:focus-visible {
  outline: 2px solid var(--color-cta);
  outline-offset: 3px;
  box-shadow: none;
}
.gallery-lightbox__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.gallery-lightbox__nav--prev {
  left: 0.75rem;
}
.gallery-lightbox__nav--next {
  right: 0.75rem;
}
.gallery-lightbox__thumbs {
  flex-shrink: 0;
  width: 100%;
  height: 3.15rem;
  margin: 0.75rem 0 1.15rem;
  padding-inline: 1rem;
}
@media (min-width: 48rem) {
  .gallery-lightbox__thumbs {
    height: 4rem;
    margin: 0.85rem 0 1.5rem;
    padding-inline: 1.5rem;
  }
}
.gallery-lightbox__thumbs .swiper-slide {
  width: 4.5rem;
  height: 3.15rem;
  overflow: hidden;
  opacity: 0.42;
  cursor: pointer;
  transition: opacity var(--transition);
}
@media (min-width: 48rem) {
  .gallery-lightbox__thumbs .swiper-slide {
    width: 5.75rem;
    height: 4rem;
  }
}
.gallery-lightbox__thumbs .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.gallery-lightbox__thumbs .swiper-slide:hover {
  opacity: 0.8;
}
.gallery-lightbox__thumbs .swiper-slide-thumb-active {
  opacity: 1;
  outline: 1px solid var(--color-cta);
  outline-offset: 2px;
}

.location {
  background-color: var(--color-beige);
  padding-block: 1.25rem 3.25rem;
}
@media (min-width: 48rem) {
  .location {
    padding-block: 1.5rem 4.5rem;
  }
}
@media (min-width: 64rem) {
  .location {
    padding-block: 1.75rem 5.5rem;
  }
}
.location__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 64rem) {
  .location__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 5rem;
    align-items: center;
  }
}
.location__kicker {
  font-family: var(--text-label-family);
  font-size: var(--text-label-size);
  font-weight: var(--text-label-weight);
  line-height: var(--text-label-line);
  letter-spacing: var(--text-label-letter);
  margin: 0 0 0.75rem;
  color: var(--color-cta);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.location__title {
  font-family: var(--text-h2-family);
  font-size: var(--text-h2-size);
  font-weight: var(--text-h2-weight);
  line-height: var(--text-h2-line);
  letter-spacing: var(--text-h2-letter);
  margin: 0;
  color: var(--color-green);
  font-size: clamp(1.75rem, 1rem + 2vw, 2.75rem);
  font-weight: 500;
}
.location__text {
  font-family: var(--text-body-family);
  font-size: var(--text-body-size);
  font-weight: var(--text-body-weight);
  line-height: var(--text-body-line);
  letter-spacing: var(--text-body-letter);
  margin: 1.25rem 0 0;
  color: var(--color-gray);
  line-height: 1.7;
}
@media (min-width: 48rem) {
  .location__text {
    max-width: 32rem;
  }
}
.location__map {
  overflow: hidden;
  min-height: 16rem;
  aspect-ratio: 4/3;
  background-color: #1c1e1d;
}
@media (min-width: 64rem) {
  .location__map {
    min-height: 20rem;
  }
}
.location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(0.95) saturate(0.6);
}

.listings {
  background-color: var(--color-beige);
  padding-block: 0 2.25rem;
}
@media (min-width: 48rem) {
  .listings {
    padding-block: 0 2.75rem;
  }
}
@media (min-width: 64rem) {
  .listings {
    padding-block: 0 3.25rem;
  }
}
.listings__title {
  font-family: var(--text-h2-family);
  font-size: var(--text-h2-size);
  font-weight: var(--text-h2-weight);
  line-height: var(--text-h2-line);
  letter-spacing: var(--text-h2-letter);
  position: relative;
  margin: 0 0 2.5rem;
  padding-top: 2.5rem;
  color: var(--color-green);
  font-size: clamp(1.75rem, 1rem + 2vw, 2.75rem);
  font-weight: 500;
  text-align: center;
}
@media (min-width: 48rem) {
  .listings__title {
    margin-bottom: 3.5rem;
    padding-top: 3rem;
  }
}
.listings__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 55%;
  max-width: 12.5rem;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1411764706);
  transform: translateX(-50%);
}
@media (min-width: 48rem) {
  .listings__title::before {
    width: 40%;
    max-width: none;
  }
}
.listings__grid {
  display: grid;
  gap: 2.25rem 1.5rem;
}
@media (min-width: 48rem) {
  .listings__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
}
@media (min-width: 64rem) {
  .listings__grid {
    gap: 3rem 2.5rem;
  }
}

.listing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.listing__media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: var(--color-surface);
}
.listing__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.listing__zone {
  font-family: var(--text-caption-family);
  font-size: var(--text-caption-size);
  font-weight: var(--text-caption-weight);
  line-height: var(--text-caption-line);
  letter-spacing: var(--text-caption-letter);
  margin: 1.15rem 0 0;
  color: var(--color-cta);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.listing__name {
  font-family: var(--text-h3-family);
  font-size: var(--text-h3-size);
  font-weight: var(--text-h3-weight);
  line-height: var(--text-h3-line);
  letter-spacing: var(--text-h3-letter);
  margin: 0.85rem 0 0;
  color: var(--color-green);
  font-size: clamp(1.25rem, 0.9rem + 1vw, 1.75rem);
  font-weight: 500;
  text-transform: uppercase;
}
.listing__meta {
  font-family: var(--text-caption-family);
  font-size: var(--text-caption-size);
  font-weight: var(--text-caption-weight);
  line-height: var(--text-caption-line);
  letter-spacing: var(--text-caption-letter);
  margin: 0.8rem 0 0;
  color: var(--color-text-soft);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.listing .btn {
  margin-top: 1.5rem;
}
.listing--upcoming .listing__media {
  cursor: default;
}
.btn--disabled {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

.contact {
  background-color: var(--color-beige);
  padding-block: 2rem;
}
@media (min-width: 48rem) {
  .contact {
    padding-block: 2.5rem;
  }
}
@media (min-width: 64rem) {
  .contact {
    padding-block: 3rem;
  }
}
.contact__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem 4rem;
  }
}
.contact__title {
  font-family: var(--text-h2-family);
  font-size: var(--text-h2-size);
  font-weight: var(--text-h2-weight);
  line-height: var(--text-h2-line);
  letter-spacing: var(--text-h2-letter);
  margin: 0;
  color: var(--color-green);
  font-size: clamp(1.75rem, 1rem + 2vw, 2.75rem);
  font-weight: 500;
  text-transform: uppercase;
}
.contact__panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact__cta {
  align-self: flex-start;
}
.contact__channels {
  position: relative;
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.25rem;
}
@media (min-width: 36rem) {
  .contact__channels {
    grid-template-columns: auto auto;
    gap: 2rem 3.5rem;
  }
}
@media (min-width: 48rem) {
  .contact__channels {
    margin-top: 2.75rem;
    padding-top: 2.5rem;
    gap: 2.25rem 4rem;
  }
}
.contact__channels::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1411764706);
}
.contact__channel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.contact__label {
  font-family: var(--text-caption-family);
  font-size: var(--text-caption-size);
  font-weight: var(--text-caption-weight);
  line-height: var(--text-caption-line);
  letter-spacing: var(--text-caption-letter);
  margin: 0;
  color: var(--color-green);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vg-footer {
  background-color: var(--color-beige);
  padding-block: 1rem 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.0784313725);
}
@media (min-width: 48rem) {
  .vg-footer {
    padding-block: 1.15rem 1.4rem;
  }
}
.vg-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vg-footer__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vg-footer__list li {
  display: flex;
  align-items: center;
}
.vg-footer__list li:not(:last-child)::after {
  content: "·";
  margin-inline: 0.75rem;
  color: rgba(0, 0, 0, 0.2392156863);
}
.vg-footer__link {
  font-family: var(--text-caption-family);
  font-size: var(--text-caption-size);
  font-weight: var(--text-caption-weight);
  line-height: var(--text-caption-line);
  letter-spacing: var(--text-caption-letter);
  color: var(--color-text-soft);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.vg-footer__link:hover, .vg-footer__link:focus-visible {
  color: var(--color-green);
}
body.single-landing .vg-footer__link:focus-visible {
  outline: 2px solid var(--color-cta);
  outline-offset: 3px;
  box-shadow: none;
}

body.single-landing .btn {
  font-family: var(--text-cta-family);
  font-size: var(--text-cta-size);
  font-weight: var(--text-cta-weight);
  line-height: var(--text-cta-line);
  letter-spacing: var(--text-cta-letter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border: 0;
  text-align: center;
  text-transform: uppercase;
  transition: background-color var(--transition), color var(--transition);
}
@media (min-width: 48rem) {
  body.single-landing .btn {
    padding: 1rem 1.75rem;
  }
}
body.single-landing .btn--gold {
  background-color: var(--color-cta);
  color: var(--color-cta-text);
}
body.single-landing .btn--gold:hover, body.single-landing .btn--gold:focus-visible {
  background-color: var(--color-cta-hover);
}
body.single-landing .btn--outline {
  border: 1px solid var(--color-green);
  background-color: transparent;
  color: var(--color-green);
}
body.single-landing .btn--outline:hover, body.single-landing .btn--outline:focus-visible {
  background-color: var(--color-green);
  color: var(--color-beige);
}
body.single-landing .btn:focus-visible {
  outline: 2px solid var(--color-on-dark);
  outline-offset: 3px;
  box-shadow: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: var(--color-green);
}
.lead-modal::backdrop {
  background: rgba(12, 14, 13, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
}
.lead-modal[open] {
  display: block;
}
.lead-modal[open]:not(.is-closing)::backdrop {
  animation: lead-backdrop-in 0.45s ease forwards;
}
.lead-modal.is-closing::backdrop {
  animation: lead-backdrop-out 0.45s ease forwards;
}
.lead-modal__panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 1.25rem 1.25rem 2rem;
  background-color: var(--color-beige);
  transform: translateX(100%);
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 36rem) {
  .lead-modal__panel {
    padding: 1.5rem 1.75rem 2.25rem;
  }
}
@media (min-width: 48rem) {
  .lead-modal__panel {
    width: min(32rem, 48%);
    padding: 1.75rem 2rem 2.5rem;
  }
}
@media (min-width: 64rem) {
  .lead-modal__panel {
    width: min(34rem, 38%);
    padding: 2rem 2.25rem 2.75rem;
  }
}
body.single-landing .lead-modal__close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -0.35rem -0.35rem 0.5rem auto;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: var(--color-green);
}
.lead-modal__close svg {
  width: 1.1rem;
  height: 1.1rem;
}
.lead-modal__close:hover, .lead-modal__close:focus-visible {
  color: var(--color-cta);
}
body.single-landing .lead-modal__close:focus-visible {
  outline: 2px solid var(--color-cta);
  outline-offset: 3px;
  box-shadow: none;
}

@keyframes lead-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes lead-backdrop-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.lead-form[hidden] {
  display: none;
}
.lead-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.lead-form__success[hidden] {
  display: none;
}
.lead-form__success {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lead-form__success p:not(.lead-form__title) {
  color: var(--color-text-muted);
}
.lead-form__kicker {
  font-family: var(--text-caption-family);
  font-size: var(--text-caption-size);
  font-weight: var(--text-caption-weight);
  line-height: var(--text-caption-line);
  letter-spacing: var(--text-caption-letter);
  margin: 0;
  color: var(--color-cta);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lead-form__title {
  font-family: var(--text-h2-family);
  font-size: var(--text-h2-size);
  font-weight: var(--text-h2-weight);
  line-height: var(--text-h2-line);
  letter-spacing: var(--text-h2-letter);
  margin: 0.4rem 0 1.5rem;
  color: var(--color-green);
  font-size: clamp(1.75rem, 1.2rem + 1.4vw, 2.35rem);
  font-weight: 500;
}
.lead-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.lead-form__field {
  display: block;
}
body.single-landing .lead-form__input {
  width: 100%;
  padding: 0.35rem 0 0.65rem;
  border: 0;
  border-bottom: 1px solid rgba(16, 17, 19, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--color-green);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  appearance: none;
}
body.single-landing .lead-form__input::placeholder {
  color: var(--color-gray);
}
body.single-landing .lead-form__input:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: var(--color-green);
}
.lead-form__select {
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23315a56' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
  cursor: pointer;
}
.lead-form__intent {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  border: 0;
}
@media (min-width: 36rem) {
  .lead-form__intent {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}
.lead-form__choice {
  min-width: 0;
}
.lead-form__choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lead-form__choice span {
  font-family: var(--text-cta-family);
  font-size: var(--text-cta-size);
  font-weight: var(--text-cta-weight);
  line-height: var(--text-cta-line);
  letter-spacing: var(--text-cta-letter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.3490196078);
  background: transparent;
  color: #17181b;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}
.lead-form__choice input:focus-visible + span {
  outline: 2px solid var(--color-cta);
  outline-offset: 3px;
}
.lead-form__choice input:checked + span {
  border-color: #2a2823;
  background-color: #2a2823;
  color: #c2a878;
}
.lead-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.35rem 0 0;
  color: var(--color-green);
  font-size: 0.8125rem;
  line-height: 1.4;
  cursor: pointer;
}
.lead-form__consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--color-green);
}
body.single-landing .lead-form__consent input:focus-visible {
  outline: 2px solid var(--color-cta);
  outline-offset: 2px;
  box-shadow: none;
}
.lead-form__consent a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.lead-form__submit {
  width: 100%;
  margin-top: 1.25rem;
  color: var(--color-on-dark);
}
.lead-form__note {
  font-family: var(--text-caption-family);
  font-size: var(--text-caption-size);
  font-weight: var(--text-caption-weight);
  line-height: var(--text-caption-line);
  letter-spacing: var(--text-caption-letter);
  margin: 0.85rem 0 0;
  color: var(--color-text-soft);
  text-align: center;
}
.lead-form__contacts {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1411764706);
}
@media (min-width: 36rem) {
  .lead-form__contacts {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.lead-form__contact-label {
  font-family: var(--text-caption-family);
  font-size: var(--text-caption-size);
  font-weight: var(--text-caption-weight);
  line-height: var(--text-caption-line);
  letter-spacing: var(--text-caption-letter);
  margin: 0 0 0.35rem;
  color: var(--color-cta);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lead-form__contact-value {
  font-family: var(--text-body-sm-family);
  font-size: var(--text-body-sm-size);
  font-weight: var(--text-body-sm-weight);
  line-height: var(--text-body-sm-line);
  letter-spacing: var(--text-body-sm-letter);
  color: var(--color-green);
  font-weight: 600;
}

/* Swiper 14 */

/**
 * Swiper 14.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 26, 2026
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
