:root {
  --ink: #112138;
  --ink-soft: rgba(17, 33, 56, 0.78);
  --paper: #f7f9fc;
  --paper-strong: #ecf4ff;
  --soft: #e9f0f9;
  --line: rgba(17, 33, 56, 0.1);
  --accent: #1f87b7;
  --accent-warm: #f09b4e;
  --night: #0f2237;
  --night-deep: #091827;
  --white: #ecf4ff;
  --shadow-lg: 0 32px 70px rgba(9, 24, 39, 0.2);
  --shadow-md: 0 20px 45px rgba(17, 33, 56, 0.12);
  --radius-lg: 28px;
  --radius-md: 22px;
  --shell: min(1180px, calc(100vw - 40px));
  --header-offset: calc(env(safe-area-inset-top, 0px) + 180px);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(920px 420px at -12% 18%, rgba(31, 135, 183, 0.11), transparent 66%),
    radial-gradient(780px 360px at 112% 62%, rgba(240, 155, 78, 0.1), transparent 68%),
    linear-gradient(180deg, #fbfcfe 0%, var(--paper) 100%);
}

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

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

.site-main {
  min-height: 100vh;
}

.site-shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-page {
  overflow: clip;
}

.section-block[id],
.section-soft[id],
.contact-section[id] {
  scroll-margin-top: calc(var(--header-offset) + 8px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 144px;
  height: 144px;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(9, 24, 39, 0.14));
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-copy small {
  font-size: 1.1rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(17, 33, 56, 0.62);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.site-nav a {
  position: relative;
  padding-bottom: 3px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  border: 1px solid rgba(17, 33, 56, 0.14);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  padding: 0.35rem 0.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17, 33, 56, 0.08);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(31, 135, 183, 0.34);
  background: rgba(255, 255, 255, 0.92);
}

.lang-btn.active {
  border-color: rgba(31, 135, 183, 0.68);
  background: rgba(31, 135, 183, 0.12);
}

.lang-btn img {
  display: block;
  width: 28px;
  height: 18px;
  border-radius: 3px;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.pill-button:hover,
.pill-button:focus-visible {
  transform: translateY(-1px);
}

.pill-button-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(9, 24, 39, 0.18);
}

.pill-button-ghost {
  background: rgba(236, 244, 255, 0.08);
  color: var(--white);
  border-color: rgba(236, 244, 255, 0.38);
}

.hero-full {
  position: relative;
  min-height: calc(100svh - 84px);
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-carousel,
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-slides {
  z-index: 0;
}

.hero-slide {
  opacity: 0;
  overflow: hidden;
  background:
    radial-gradient(720px 360px at 18% 18%, rgba(149, 204, 228, 0.2), transparent 60%),
    linear-gradient(180deg, #7ea9c5 0%, #567892 100%);
  transition: opacity 0.55s ease;
  will-change: opacity;
}

.hero-slide--portrait {
  background:
    radial-gradient(820px 420px at 50% 18%, rgba(233, 244, 255, 0.22), transparent 60%),
    linear-gradient(180deg, #7ea9c5 0%, #5b7f9a 100%);
}

.hero-slide--square {
  background:
    radial-gradient(700px 360px at 50% 22%, rgba(210, 232, 246, 0.18), transparent 60%),
    linear-gradient(180deg, #6f98b8 0%, #4c6f8b 100%);
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  will-change: transform;
}

.hero-slide.is-active .hero-slide-media {
  animation: hero-kenburns 8s ease-in-out infinite alternate;
}

.hero-slide-media--portrait {
  object-fit: contain;
  object-position: center center;
  padding: clamp(24px, 3vw, 44px);
}

.hero-slide-media--square {
  object-fit: cover;
  object-position: center 38%;
}

.hero-slide-media--panorama {
  object-fit: cover;
  object-position: center 42%;
}

.hero-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 19, 32, 0.08) 0%, rgba(8, 19, 32, 0.12) 36%, rgba(8, 19, 32, 0.28) 100%);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 360px at 85% 14%, rgba(31, 135, 183, 0.12), transparent 60%),
    radial-gradient(640px 360px at 16% 82%, rgba(240, 155, 78, 0.08), transparent 68%);
  z-index: 1;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 44px;
  padding: 100px 0 84px;
}

.hero-copy,
.hero-panel {
  animation: rise-in 800ms ease both;
}

.hero-panel {
  animation-delay: 140ms;
}

.section-kicker {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker-dark {
  color: var(--accent);
}

.section-kicker-light {
  color: rgba(236, 244, 255, 0.75);
}

.hero-copy .section-kicker {
  color: rgba(236, 244, 255, 0.82);
}

.hero-copy h1,
.section-title,
.hero-stat h2,
.tour-card h3,
.story-panel h3 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(3.3rem, 6vw, 4.7rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero-summary {
  max-width: 39rem;
  margin: 26px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(236, 244, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-panel {
  align-self: end;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
  color: var(--white);
  text-shadow: 0 6px 18px rgba(9, 24, 39, 0.55);
}

.panel-kicker {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 244, 255, 0.7);
}

.hero-stat-list {
  display: grid;
  gap: 14px;
}

.hero-stat {
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: transparent;
}

.hero-stat h2 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-stat p {
  margin: 0;
  line-height: 1.7;
  color: rgba(236, 244, 255, 0.78);
}

.hero-indicators {
  display: none;
}

.hero-nav {
  position: absolute;
  right: calc((100vw - var(--shell)) / 2);
  bottom: 106px;
  z-index: 3;
  display: flex;
  gap: 14px;
}

.hero-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(236, 244, 255, 0.2);
  border-radius: 999px;
  background: rgba(236, 244, 255, 0.12);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  transform: translateY(-1px);
  background: rgba(236, 244, 255, 0.2);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 42px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(236, 244, 255, 0.36);
}

.hero-dots button.is-active {
  background: var(--white);
}

.section-block,
.section-soft,
.contact-section {
  padding: 88px 0;
}

.section-soft {
  background:
    radial-gradient(700px 420px at 110% 20%, rgba(31, 135, 183, 0.12), transparent 68%),
    linear-gradient(180deg, #f0f5fb 0%, var(--soft) 100%);
}

.section-heading,
.intro-grid,
.story-grid,
.contact-grid {
  display: grid;
  gap: 32px;
}

.intro-grid,
.story-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.section-title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.35rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.section-title.light {
  color: var(--white);
}

.section-copy {
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.85;
}

.section-copy.narrow {
  max-width: 34rem;
}

.detail-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.detail-list li {
  position: relative;
  padding-left: 22px;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.tour-card,
.story-panel,
.gallery-card,
.contact-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.tour-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 33, 56, 0.06);
}

.tour-image {
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.04);
}

.tour-body {
  padding: 24px;
}

.card-eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tour-card h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.12;
  font-weight: 500;
}

.tour-card p {
  margin: 16px 0 0;
  line-height: 1.8;
  color: var(--ink-soft);
}

.tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.tour-meta span {
  color: var(--ink);
}

.tour-meta a {
  color: var(--accent);
}

.story-copy > p:not(.section-kicker) {
  margin-top: 22px;
  color: var(--ink-soft);
  line-height: 1.85;
}

.story-panels {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.story-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 33, 56, 0.06);
}

.story-panel h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 500;
}

.story-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.78;
}

.portrait-frame {
  overflow: hidden;
  border-radius: 34px;
  min-height: 580px;
  box-shadow: var(--shadow-lg);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.gallery-count {
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 30px;
}

.gallery-tile {
  border: 1px solid rgba(17, 33, 56, 0.12);
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  aspect-ratio: 4 / 3;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-tile--portrait {
  aspect-ratio: 4 / 3;
}

.gallery-tile--square {
  aspect-ratio: 4 / 3;
}

.gallery-tile--panorama {
  aspect-ratio: 4 / 3;
  grid-column: auto;
}

.gallery-tile-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.55s ease;
}

.gallery-tile-media--portrait {
  object-position: center 30%;
}

.gallery-tile-media--panorama {
  object-position: center 46%;
}

.gallery-tile:hover,
.gallery-tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gallery-tile:hover .gallery-tile-media,
.gallery-tile:focus-visible .gallery-tile-media {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 18px;
  background: rgba(8, 20, 33, 0.82);
}

.lightbox__content {
  margin: 0 auto;
  width: min(92vw, 1560px);
  max-width: min(92vw, 1560px);
  text-align: center;
}

.lightbox__content img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 72px);
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.38);
}

.lightbox__close,
.lightbox__arrow {
  border: 1px solid rgba(236, 244, 255, 0.4);
  background: rgba(9, 24, 39, 0.5);
  color: var(--white);
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 20px;
}

.lightbox__arrow {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  font-size: 26px;
}

.lightbox__close:hover,
.lightbox__arrow:hover,
.lightbox__close:focus-visible,
.lightbox__arrow:focus-visible {
  background: rgba(236, 244, 255, 0.24);
}

.contact-section {
  background:
    radial-gradient(920px 420px at -12% 22%, rgba(31, 135, 183, 0.2), transparent 66%),
    radial-gradient(600px 330px at 110% 78%, rgba(240, 155, 78, 0.2), transparent 70%),
    linear-gradient(165deg, var(--night-deep), var(--night));
  color: var(--white);
}

.contact-copy p:last-child {
  margin-top: 24px;
  max-width: 34rem;
  color: rgba(236, 244, 255, 0.76);
  line-height: 1.85;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: rgba(236, 244, 255, 0.08);
  border: 1px solid rgba(236, 244, 255, 0.12);
  color: var(--white);
}

.contact-card span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 244, 255, 0.66);
}

.contact-card strong {
  font-size: 1.22rem;
  font-weight: 700;
}

.contact-form-card {
  padding: 26px;
  background: rgba(236, 244, 255, 0.08);
  border: 1px solid rgba(236, 244, 255, 0.12);
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  margin: 0 0 18px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 244, 255, 0.66);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(236, 244, 255, 0.18);
  border-radius: 18px;
  background: rgba(9, 24, 39, 0.42);
  color: var(--white);
  padding: 15px 18px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(236, 244, 255, 0.46);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(159, 212, 250, 0.78);
  box-shadow: 0 0 0 4px rgba(74, 149, 199, 0.18);
  background: rgba(9, 24, 39, 0.58);
}

.contact-submit {
  width: 100%;
  justify-content: center;
}

.contact-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.contact-status {
  margin: 0;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.contact-status-success {
  background: rgba(78, 156, 107, 0.18);
  color: #dff6e4;
  border: 1px solid rgba(138, 209, 160, 0.26);
}

.contact-status-error {
  background: rgba(168, 85, 78, 0.18);
  color: #ffe6df;
  border: 1px solid rgba(226, 150, 139, 0.26);
}

.site-footer {
  padding: 24px 0 34px;
  background: var(--night-deep);
  color: rgba(236, 244, 255, 0.68);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.93rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--white);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-kenburns {
  from {
    transform: scale(1.01) translateY(0);
  }

  to {
    transform: scale(1.12) translateY(-2%);
  }
}

@media (max-width: 1100px) {
  .hero-shell,
  .intro-grid,
  .story-grid,
  .contact-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 840px) {
  .site-header {
    padding: 14px 0;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-tools {
    margin-left: auto;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    overflow-x: auto;
  }

  .hero-full {
    min-height: max(760px, 100svh);
  }

  .hero-shell {
    padding: 84px 0 104px;
  }

  .hero-nav {
    bottom: 120px;
  }

  .hero-slide-media,
  .hero-slide-media--square,
  .hero-slide-media--panorama,
  .hero-slide-media--portrait {
    object-fit: contain;
    object-position: center top;
    padding: 20px 18px 260px;
    transform: none;
  }

  .hero-slide.is-active .hero-slide-media {
    animation: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .tour-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    min-height: 420px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(1180px, calc(100vw - 28px));
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav {
    font-size: 0.72rem;
  }

  .brand-copy small {
    font-size: 1.08rem;
  }

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

  .pill-button {
    width: 100%;
  }

  .header-cta {
    width: auto;
    min-height: 44px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-full {
    min-height: max(700px, 100svh);
  }

  .hero-shell {
    padding: 74px 0 96px;
  }

  .hero-slide-media,
  .hero-slide-media--square,
  .hero-slide-media--panorama,
  .hero-slide-media--portrait {
    padding: 14px 10px 300px;
  }

  .section-block,
  .section-soft,
  .contact-section {
    padding: 72px 0;
  }

  .hero-nav {
    right: 14px;
    bottom: 102px;
    gap: 10px;
  }

  .hero-arrow {
    width: 46px;
    height: 46px;
  }

  .hero-dots {
    bottom: 26px;
  }

  .lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }

  .lightbox__arrow {
    justify-self: center;
  }

  .contact-form-card {
    padding: 22px;
  }

  .lightbox {
    padding: 18px 16px 22px;
  }

  .lightbox__content {
    width: min(100%, calc(100vw - 32px));
    max-width: min(100%, calc(100vw - 32px));
  }
}
