:root {
  --gold: #d3a03b;
  --gold-soft: #e6b653;
  --ink: #3f3f3f;
  --muted: #686868;
  --paper: #ffffff;
  --charcoal: #424240;
  --line: #9c9c9c;
  --shadow: 0 13px 18px rgba(0, 0, 0, .18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 clamp(20px, 5vw, 58px);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  order: 3;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(211, 160, 59, .4);
  border-radius: 999px;
}

.language-switch button {
  display: grid;
  min-width: 32px;
  height: 24px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button.active {
  color: #fff;
  background: var(--gold);
}

.brand,
.footer-brand {
  display: inline-flex;
  width: 230px;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 54px);
  color: #4c4c4c;
  font-size: 15px;
  font-weight: 700;
  margin-left: auto;
  margin-right: clamp(18px, 4vw, 42px);
}

.main-nav a {
  padding: 12px 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 500px;
  display: block;
  padding: 95px clamp(18px, 5.4vw, 82px) 54px;
  overflow: visible;
  isolation: isolate;
  background: #231d19;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  background: linear-gradient(90deg, rgba(0, 0, 0, .64) 0%, rgba(0, 0, 0, .42) 48%, rgba(0, 0, 0, .18) 100%);
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 5000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide:nth-child(1) {
  object-position: center center;
}

.hero-slide:nth-child(2) {
  object-position: center center;
}

.hero-slide:nth-child(3),
.hero-slide:nth-child(4),
.hero-slide:nth-child(5),
.hero-slide:nth-child(6) {
  object-position: center center;
}

.hero-copy,
.booking-card,
.slider-dots {
  position: relative;
  z-index: 1;
}

.hero-copy {
  width: min(610px, 58vw);
  color: #fff;
  animation: heroCopyIn 900ms ease both;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(66px, 9vw, 116px);
  font-weight: 700;
  line-height: .83;
}

.hero p {
  max-width: 445px;
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.32;
}

.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 33px;
  padding: 0 31px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: var(--gold-soft);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-booking-cta {
  display: none;
}

.booking-engine {
  position: absolute;
  top: 160px;
  right: clamp(18px, 5.4vw, 82px);
  z-index: 10;
  width: 310px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: visible;
  animation: bookingIn 850ms 160ms ease both;
}

.booking-engine::before {
  display: block;
  padding: 29px 29px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

html[lang="it"] .booking-engine::before {
  content: "Prenota ora e ottieni il miglior prezzo!";
}

html[lang="en"] .booking-engine::before {
  content: "Book now and get the best price!";
}

.booking-engine-inner {
  width: 100%;
  overflow: visible;
}

.booking-engine-inner beddy-bar,
.booking-engine-inner iframe,
.booking-engine-inner [class*="beddy"],
.booking-engine-inner [id*="beddy"] {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.contact-form label {
  display: block;
}

.contact-form span {
  display: block;
  color: #777;
  font-size: 13px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: #9b9b9b;
  background: transparent;
  font-family: var(--sans);
  font-size: 15px;
  outline: 0;
}

.slider-dots {
  position: absolute;
  left: 53%;
  bottom: 26px;
  display: flex;
  gap: 11px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #fff;
  opacity: .95;
  cursor: pointer;
}

.slider-dots .active {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.intro,
.spaces,
.contacts {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.intro {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  background: #fff;
  padding: 88px 24px 72px;
}

.intro h2,
.spaces h2,
.contacts h2,
.services-content h2 {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 600;
}

.intro h2 {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: clamp(44px, 5.2vw, 68px);
  line-height: 1.02;
}

.intro p,
.spaces p {
  max-width: 780px;
  margin: 0 auto 18px;
  color: #666;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.42;
}

.spaces p {
  display: grid;
  gap: 10px;
  max-width: 700px;
}

.spaces-kicker {
  color: #4f4f4d;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.intro p:empty {
  display: none;
}

.services-section {
  scroll-margin-top: 92px;
  padding: 34px clamp(18px, 4.5vw, 70px) 92px;
}

.services-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(330px, .95fr);
  column-gap: clamp(34px, 5vw, 70px);
  align-items: center;
  width: min(1120px, 100%);
  min-height: 560px;
  margin: 0 auto;
  padding: 58px clamp(42px, 5vw, 74px) 58px 0;
}

.services-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 0 120px;
  z-index: -1;
  border-radius: 34px 0 34px 0;
  background: var(--charcoal);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .12);
}

.building-photo {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: center;
  justify-self: start;
  box-shadow: 0 20px 34px rgba(0, 0, 0, .14);
}

.services-content {
  justify-self: center;
  width: 300px;
  max-width: 100%;
}

.services-content h2 {
  position: relative;
  margin-bottom: 48px;
  font-size: clamp(43px, 3.9vw, 55px);
  line-height: .9;
  text-align: center;
}

.services-content h2::after {
  content: none;
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 104px);
  gap: 31px 44px;
  justify-content: center;
}

.services-grid::before,
.services-grid::after {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 50px;
  width: 31px;
  border: 5px solid #fff;
  pointer-events: none;
}

.services-grid::before {
  left: -28px;
  border-right: 0;
  border-radius: 30px 0 0 30px;
}

.services-grid::after {
  right: -28px;
  border-left: 0;
  border-radius: 0 30px 30px 0;
}

.services-grid article:nth-child(1)::after,
.services-grid article:nth-child(7)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -44px;
  width: 44px;
  height: 5px;
  background: #fff;
  transform: translateY(-50%);
}

.services-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  padding: 13px 9px 10px;
  background: #fff;
  border-radius: 13px 0 13px 0;
  color: #1f1f1f;
  text-align: center;
  box-shadow: none;
  transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
  z-index: 1;
}

.services-grid article:hover {
  background: #fffdf8;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .16);
}

.services-grid img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.services-grid strong {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  line-height: .86;
}

.spaces {
  scroll-margin-top: 124px;
  max-width: 1280px;
  padding: 22px clamp(14px, 2vw, 28px) 112px;
}

.spaces h2 {
  margin-bottom: 39px;
  font-size: 54px;
  line-height: 1;
}

.spaces p {
  max-width: 660px;
  margin-bottom: 66px;
  font-size: 18px;
}

.spaces-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.spaces-gallery img {
  width: 100%;
  aspect-ratio: 1.41 / 1;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.spaces-gallery img:hover {
  filter: saturate(1.06) contrast(1.03);
  transform: translateY(-5px);
}

.reviews {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(14px, 2vw, 28px) 118px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: #6a6a66;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reviews h2 {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
}

.reviews-hashtag {
  margin: 0 0 38px;
  color: #666;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  display: grid;
  align-content: space-between;
  min-height: 214px;
  padding: 30px 26px 24px;
  border: 1px solid rgba(211, 160, 59, .32);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .07);
  text-align: left;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.review-rating span {
  letter-spacing: .08em;
}

.review-rating em {
  color: #686863;
  font-size: 11px;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-card p {
  margin: 0 0 24px;
  color: #595954;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
}

.review-card p::before {
  content: "\201C";
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 48px;
  line-height: .65;
}

.review-card strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  gap: 16px;
  padding: 34px;
  background: rgba(24, 24, 22, .92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  margin: 0;
  min-width: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
}

.lightbox figcaption {
  margin-top: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.lightbox-close,
.lightbox-arrow {
  border: 0;
  color: #fff;
  background: rgba(211, 160, 59, .9);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 32px;
  line-height: 1;
}

.lightbox-arrow {
  display: grid;
  width: 54px;
  height: 78px;
  place-items: center;
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 54px;
  justify-self: center;
}

.contacts {
  position: relative;
  scroll-margin-top: 124px;
  max-width: 1320px;
  padding: 0 clamp(14px, 2vw, 28px) 128px;
}

.contacts h2 {
  margin-bottom: 31px;
  font-size: 52px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(420px, 520px) minmax(560px, 1fr);
  width: min(1260px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 0 0 18px 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.contact-form {
  padding: 34px clamp(36px, 4vw, 62px) 24px;
  text-align: left;
}

.contact-form label {
  margin-bottom: 10px;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form input {
  height: 25px;
}

.contact-form textarea {
  height: 74px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  resize: vertical;
}

.contact-form .privacy {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 7px;
  align-items: start;
  margin: 0 0 8px;
}

.privacy input {
  width: 10px;
  height: 10px;
  margin: 2px 0 0;
}

.privacy span {
  font-size: 5px;
  line-height: 1.35;
}

.privacy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form .gold-button {
  display: flex;
  width: 92px;
  min-height: 24px;
  margin: 0 auto;
  padding: 0;
}

.contact-form-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: #5e5e59;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.contact-form-status.is-error {
  color: #9a3d32;
}

.social-links {
  position: absolute;
  top: 195px;
  right: clamp(10px, 1.6vw, 32px);
  display: grid;
  gap: 9px;
}

.social-links a {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--gold-soft);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(150px, auto) minmax(220px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: 176px;
  padding: 48px clamp(34px, 7vw, 86px) 42px;
  color: #fff;
  background: var(--charcoal);
}

.site-footer address {
  justify-self: start;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.52;
}

.site-footer nav {
  display: grid;
  justify-items: center;
  align-self: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.18;
}

.footer-brand {
  justify-self: end;
  width: min(210px, 100%);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reviews.reveal {
  opacity: 1;
  transform: none;
}

.parallax-soft {
  transition: transform 700ms ease;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes bookingIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (max-width: 820px) {
  .site-header {
    height: auto;
    min-height: 68px;
    padding: 12px 22px;
  }

  body {
    padding-bottom: calc(148px + env(safe-area-inset-bottom));
  }

  .mobile-booking-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 2147483200;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border: 0;
    border-radius: 2px;
    color: #fff;
    background: #b88632;
    box-shadow: 0 12px 28px rgba(184, 134, 50, .34);
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
  }

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

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 16px;
    display: none;
    width: min(240px, calc(100vw - 32px));
    padding: 14px 18px;
    background: #fff;
    box-shadow: var(--shadow);
    margin: 0;
  }

  .main-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .hero {
    min-height: auto;
    padding: 70px 24px 36px;
  }

  .hero-copy {
    width: 100%;
    max-width: 470px;
  }

  .hero h1 {
    font-size: clamp(48px, 12vw, 56px);
    line-height: .9;
  }

  .hero p {
    max-width: 360px;
    margin-bottom: 22px;
    font-size: 16px;
  }

  .slider-dots {
    display: none;
  }

  .booking-engine {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    min-height: 64px;
    padding: 0;
    border: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    animation: none;
    z-index: 90;
    pointer-events: none;
  }

  .booking-engine::before {
    display: none;
    content: none;
  }

  .booking-engine-inner {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 64px;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .booking-engine-inner beddy-bar {
    display: block !important;
    width: 100% !important;
    min-height: 64px;
  }


  .services-panel {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px;
    width: min(520px, 100%);
  }

  .services-panel::before {
    inset: 0;
  }

  .building-photo {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    box-shadow: none;
  }

  .services-content {
    width: min(300px, 100%);
    max-width: none;
    padding: 28px 0 4px;
  }

  .services-content h2 {
    margin-bottom: 26px;
    text-align: center;
  }

  .services-content h2::after {
    margin-inline: auto;
  }

  .spaces-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews {
    padding: 58px 18px 86px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .review-card {
    min-height: 0;
  }

  .lightbox {
    grid-template-columns: 46px 1fr 46px;
    gap: 8px;
    padding: 22px 12px;
  }

  .lightbox-arrow {
    width: 42px;
    height: 62px;
    font-size: 42px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    width: min(820px, 100%);
  }

  .contact-card img {
    height: 320px;
  }

  .contact-form {
    padding: 25px 28px 22px;
  }

  .social-links {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 26px;
    min-height: 300px;
    padding-top: 48px;
    padding-bottom: 132px;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
    width: 210px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 46px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero {
    min-height: 360px;
  }

  .brand {
    width: 185px;
  }

  .language-switch button {
    min-width: 30px;
    height: 23px;
  }

  .intro {
    padding: 60px 22px 66px;
  }

  .intro h2 {
    max-width: 340px;
    margin-bottom: 22px;
    font-size: 34px;
    line-height: 1.06;
  }

  .intro p {
    max-width: 340px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.38;
  }

  .spaces p {
    max-width: 330px;
    gap: 9px;
    font-size: 17px;
    line-height: 1.34;
  }

  .spaces-kicker {
    font-size: 20px;
    line-height: 1.2;
  }

  .services-grid {
    grid-template-columns: repeat(2, 96px);
    gap: 26px 38px;
  }

  .services-grid article {
    width: 96px;
    height: 96px;
    min-height: 0;
    padding: 11px 7px 9px;
  }

  .services-grid::before,
  .services-grid::after {
    top: 45px;
    bottom: 45px;
    width: 24px;
    border-width: 4px;
  }

  .services-grid::before {
    left: -22px;
  }

  .services-grid::after {
    right: -22px;
  }

  .services-grid article:nth-child(1)::after,
  .services-grid article:nth-child(7)::after {
    right: -38px;
    width: 38px;
    height: 4px;
  }

  .services-grid img {
    width: 36px;
    height: 36px;
  }

  .services-grid strong {
    font-size: 13px;
  }

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

  .reviews {
    padding: 46px 18px 78px;
  }

  .section-kicker {
    font-size: 12px;
  }

  .reviews h2 {
    margin-bottom: 28px;
    font-size: 44px;
  }

  .reviews-hashtag {
    margin-bottom: 28px;
    font-size: 22px;
  }

  .reviews-grid {
    gap: 14px;
  }

  .review-card {
    padding: 24px 22px 20px;
  }

  .review-rating {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .review-card p {
    font-size: 16px;
    line-height: 1.42;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-content: center;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
  }

  .contacts {
    padding-inline: 18px;
  }
}
