:root {
  --bg: #f7f4ef;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #1f2937;
  --muted: #5f6c7b;
  --primary: #b9855b;
  --primary-dark: #8f6240;
  --accent: #e9d7c5;
  --line: rgba(31, 41, 55, 0.08);
  --shadow: 0 20px 60px rgba(35, 32, 29, 0.12);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #faf8f4 0%, #f3eee7 100%);
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.12rem 1rem;
  background: rgba(16, 19, 24, 0.4);
  backdrop-filter: blur(16px);
  color: #fff;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 170px;
  height: 170px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
}

.brand-text {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-link {
  font-size: 0.92rem;
  opacity: 0.95;
}

.mobile-quick-nav {
  display: none;
}

.review-links-text {
  margin-top: 1.25rem;
  padding: 1.5rem;
}

.review-links-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.review-links-list a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
}

.language-switcher {
  display: flex;
  gap: 0.4rem;
  padding: 0.2rem;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: #fff;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.lang-btn.active {
  background: #fff;
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 12.5rem 0 3rem;
  background-image: url('../images/gallery-porto-luce-hd.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.76), rgba(24, 34, 46, 0.45));
}

.main-nav,
.hero-content {
  position: relative;
  z-index: 1;
}

.main-nav {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 420px;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.direct-layout h2,
.contact-card h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  margin: 0.5rem 0 1rem;
  max-width: 11ch;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}

.hero .eyebrow,
.hero-text,
.hero-notes,
.hero-copy .btn-secondary,
.topbar-link,
.main-nav a {
  color: #fff;
}

.hero-text {
  max-width: 60ch;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}

.hero-notes span::before {
  content: '•';
  margin-right: 0.45rem;
  color: #f3d2b3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #d6ab84);
  color: #fff;
  box-shadow: 0 12px 30px rgba(185, 133, 91, 0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}



.btn-full {
  width: 100%;
}

.booking-card,
.card,
.history-card,
.interest-card,
.rule-card,
.amenity-card,
.soft-card {
  backdrop-filter: blur(18px);
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-card {
  position: sticky;
  top: 6rem;
  color: var(--text);
  padding: 1.5rem;
}

.booking-badge {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.booking-card h2 {
  margin: 1rem 0 0.6rem;
  font-size: 1.8rem;
}

.booking-card p {
  color: var(--muted);
  line-height: 1.6;
}

.booking-form {
  display: grid;
  gap: 0.95rem;
  margin: 1.2rem 0;
}

.booking-helper {
  margin: -0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.95);
}

.booking-microcopy {
  display: grid;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.booking-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.95rem;
  border-radius: 16px;
  background: #f2fbf5;
  color: #1f8f47;
  font-weight: 700;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.7;
}

.trust-bar {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-bar div {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.trust-bar strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.trust-bar span {
  color: var(--muted);
}

.apartment-grid,
.discover-layout,
.reviews-layout,
.contact-section,
.direct-layout {
  display: grid;
  gap: 1.5rem;
}

.apartment-grid {
  grid-template-columns: 1.05fr 1fr;
}

.card-image,
.soft-card,
.discover-gallery .discover-item {
  background-size: cover;
  background-position: center;
}

.scenic-1 { background-image: linear-gradient(rgba(33,33,33,0.16), rgba(33,33,33,0.16)), url('../images/salone-moderno.jpg'); }
.scenic-2 { background-image: linear-gradient(rgba(17,17,17,0.2), rgba(17,17,17,0.2)), url('../images/gallery-set-5.jpg'); }
.scenic-3 { background-image: linear-gradient(rgba(17,17,17,0.2), rgba(17,17,17,0.2)), url('../images/gallery-set-1.jpg'); }
.scenic-4 { background-image: linear-gradient(rgba(17,17,17,0.18), rgba(17,17,17,0.18)), url('../images/gallery-set-3.jpg'); }
.scenic-5 { background-image: linear-gradient(rgba(17,17,17,0.24), rgba(17,17,17,0.24)), url('../images/gallery-set-4.jpg'); }
.scenic-6 { background-image: linear-gradient(rgba(17,17,17,0.2), rgba(17,17,17,0.2)), url('../images/gallery-set-2.jpg'); }
.scenic-7 { background-image: linear-gradient(rgba(17,17,17,0.2), rgba(17,17,17,0.2)), url('../images/gallery-set-6.jpg'); }
.scenic-8 { background-image: linear-gradient(rgba(17,17,17,0.2), rgba(17,17,17,0.2)), url('../images/gallery-set-7.jpg'); }

.feature-image {
  min-height: 480px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.image-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.apartment-details {
  display: grid;
  gap: 1rem;
}

.amenities-grid,
.interest-grid,
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.amenity-card,
.interest-card,
.rule-card {
  padding: 1.3rem;
}

.amenity-card i,
.interest-card i,
.rule-card i {
  font-size: 1.2rem;
  color: var(--primary);
}

.amenity-card h3,
.interest-card h3,
.rule-card h3,
.soft-card h3 {
  margin: 0.9rem 0 0.5rem;
}

.soft-card h3,
.soft-card p {
  color: #fff;
}

.amenity-card p,
.interest-card p,
.rule-card p,
.highlight-box,
.review-score p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.soft-card p {
  line-height: 1.7;
}

.highlight-box {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.3rem;
  border: 1px solid var(--line);
}

.highlight-title {
  margin-top: 0;
  color: var(--text);
  font-weight: 700;
}

.highlight-box ul {
  margin: 0;
  padding-left: 1.1rem;
}

.gallery-section {
  background: #16191f;
  color: #fff;
}

.gallery-viewer {
  width: min(calc(100% - 2rem), 1280px);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-stage {
  width: 100%;
  min-height: auto;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  background-color: #0f1318;
  border: none;
  padding: 0;
}

.gallery-stage-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #0f1318;
}

.gallery-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  background: rgba(16, 19, 24, 0.62);
  backdrop-filter: blur(14px);
  padding: 0.85rem 1rem;
  border-radius: 14px;
  color: #fff;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(6, 8, 12, 0.92);
  backdrop-filter: blur(14px);
}

.gallery-lightbox.open {
  display: flex;
}

.lightbox-image-wrap {
  width: min(92vw, 1400px);
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.lightbox-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.38);
  background: #0f1318;
}

.lightbox-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: #0f1318;
}


.lightbox-caption {
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.lightbox-close,
.lightbox-nav {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.lightbox-nav {
  flex: 0 0 auto;
}

.gallery-stage:hover,
.gallery-stage:focus-visible,
.thumb:hover,
.thumb:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(241, 202, 168, 0.7), 0 30px 80px rgba(0,0,0,0.35);
}

.thumb:focus-visible {
  box-shadow: 0 0 0 2px rgba(241, 202, 168, 0.75);
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-nav {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.16);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  z-index: 3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-nav.prev {
  left: 1.25rem;
}

.gallery-nav.next {
  right: 1.25rem;
}

.gallery-thumbs,
.discover-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-thumbs {
  width: min(calc(100% - 1rem), 1440px);
}

.thumb,
.discover-item {
  min-height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  background-color: #0f1318;
}

.thumb {
  padding: 0;
}

.thumb-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #0f1318;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15,15,15,.18), rgba(15,15,15,.18));
}

.discover-item {
  min-height: 240px;
}

.thumb.active {
  border-color: #f1caa8;
}

.thumb span,
.discover-item span {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  background: rgba(16, 19, 24, 0.55);
  color: #fff;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.88rem;
}

.experience-section,
.contact-section,
.direct-layout {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.experience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.experience-pills span {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.experience-cards {
  display: grid;
  gap: 1rem;
}

.soft-card {
  min-height: 250px;
  padding: 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.video-section {
  padding-top: 1rem;
}

.video-card {
  padding: 1rem;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 24px;
  overflow: hidden;
  background: #111827;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.discover-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.9));
}

.discover-layout {
  grid-template-columns: 1fr 1.2fr;
}

.history-card {
  padding: 1.5rem;
}

.discover-editorial {
  display: grid;
  gap: 1.5rem;
}

.discover-block {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.discover-block-split {
  grid-template-columns: 1.05fr 1fr;
}

.discover-block-split.reverse {
  grid-template-columns: 1fr 1.05fr;
}

.discover-block-copy {
  padding: 1.75rem;
}

.discover-story-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.discover-photo {
  min-height: 320px;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.discover-feature {
  min-height: 360px;
  border-radius: var(--radius);
}

.discover-long-text {
  padding: 1.75rem;
}

.discover-long-text p + p {
  margin-top: 1rem;
}

.reviews-layout {
  grid-template-columns: 280px 1fr 1fr;
  align-items: start;
}

.review-score,
.review-categories,
.contact-card,
.map-card {
  padding: 1.5rem;
}

.score-number {
  display: inline-flex;
  width: 84px;
  height: 84px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), #deb895);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.score-row {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.review-list {
  display: grid;
  gap: 1rem;
}

.testimonial {
  padding: 1.4rem;
}

.rules-grid {
  grid-template-columns: repeat(3, 1fr);
}

.direct-section {
  background: #1b212a;
  color: #fff;
}

.direct-benefits {
  display: grid;
  gap: 1rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.map-embed iframe {
  width: 100%;
  min-height: 380px;
  border: none;
  border-radius: 18px;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
}

@media (max-width: 1080px) {
  .hero-content,
  .apartment-grid,
  .discover-layout,
  .reviews-layout,
  .experience-section,
  .contact-section,
  .direct-layout,
  .trust-bar,
  .rules-grid,
  .discover-block-split,
  .discover-block-split.reverse {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: relative;
    top: auto;
  }

  .gallery-thumbs,
  .discover-gallery,
  .amenities-grid,
  .interest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 0.18rem 0.65rem;
  }

  .brand-mark {
    gap: 0.45rem;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-text {
    font-size: 0.9rem;
    line-height: 1.02;
    max-width: 130px;
  }

  .topbar-actions {
    gap: 0.55rem;
  }

  .topbar-link,
  .main-nav {
    display: none;
  }

  .language-switcher {
    gap: 0.2rem;
    padding: 0.14rem;
  }

  .lang-btn {
    padding: 0.35rem 0.62rem;
    font-size: 0.88rem;
  }

  .mobile-quick-nav {
    display: none !important;
  }

  .mobile-quick-nav {
    position: sticky;
    top: 4.15rem;
    z-index: 68;
    display: flex !important;
    gap: 0.45rem;
    overflow-x: auto;
    padding: 0.5rem 0.65rem 0.15rem;
    background: linear-gradient(180deg, rgba(247, 244, 239, 0.98), rgba(247, 244, 239, 0.92));
    backdrop-filter: blur(10px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-quick-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-quick-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.62rem 0.82rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: 0 8px 18px rgba(31, 41, 55, 0.08);
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text);
  }

  .hero {
    min-height: auto;
    padding-top: 8.1rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-notes,
  .hero-ctas,
  .experience-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-viewer {
    width: min(calc(100% - 1rem), 100%);
    overflow: hidden;
  }

  .gallery-nav {
    width: 44px;
    height: 44px;
    display: inline-flex;
  }

  .gallery-nav.prev {
    left: 0.5rem;
  }

  .gallery-nav.next {
    right: 0.5rem;
  }

  .gallery-stage {
    min-height: 43vh;
    height: clamp(240px, 43vh, 420px);
    aspect-ratio: 16 / 9;
    background-size: cover;
  }

  .gallery-thumbs,
  .discover-gallery,
  .amenities-grid,
  .interest-grid,
  .rules-grid {
    grid-template-columns: 1fr;
  }

  .gallery-thumbs {
    width: min(calc(100% - 1rem), 100%);
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .thumb {
    min-height: 92px;
    aspect-ratio: 16 / 9;
  }

  .floating-cta {
    left: 1rem;
    right: 1rem;
    bottom: 0.85rem;
  }

  .floating-cta .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .container,
  .gallery-viewer,
  .gallery-thumbs {
    width: min(calc(100% - 0.8rem), 100%);
  }

  .gallery-stage {
    min-height: 260px;
    height: clamp(260px, 38vh, 360px);
  }

  .thumb {
    min-height: 84px;
  }

  .hero {
    padding-top: 7.4rem;
  }

  .gallery-caption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    font-size: 0.86rem;
  }

  .thumb span,
  .discover-item span {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    font-size: 0.8rem;
  }

  .gallery-lightbox {
    padding: 1rem 0.6rem;
  }

  .lightbox-image-wrap {
    width: min(calc(100vw - 1.2rem), 100%);
  }

  .lightbox-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: min(70vh, calc((100vw - 1.2rem) * 9 / 16));
  }

  .lightbox-nav,
  .lightbox-close {
    width: 44px;
    height: 44px;
  }
}

