/* ============================================
   Variables & Reset
============================================ */
:root {
  --color-bg: #0c0c0c;
  --color-bg-alt: #161310;
  --color-bg-card: #1d1a16;
  --color-text: #f4efe6;
  --color-text-muted: #a39a8d;
  --color-gold: #c9a14a;
  --color-gold-light: #e3c785;
  --color-border: rgba(201, 161, 74, 0.18);

  --font-heading: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  --container-width: 1200px;
  --header-height: 84px;

  --transition-base: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.icon {
  width: 1.4em;
  height: 1.4em;
  flex: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  scroll-margin-top: var(--header-height);
}

/* ============================================
   Scroll Reveal Animation
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================
   Section Heading
============================================ */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* ============================================
   Buttons
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 38px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  border-radius: 2px;
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: #14110d;
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: #14110d;
}

.btn-block {
  width: 100%;
}

/* ============================================
   Header / Navigation
============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background-color var(--transition-base), box-shadow var(--transition-base), height var(--transition-base);
  background: transparent;
}

.header.is-scrolled {
  height: 70px;
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: var(--color-text);
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__list {
  display: flex;
  gap: 36px;
}

.nav__list a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding-bottom: 6px;
  transition: color var(--transition-base);
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav__list a:hover {
  color: var(--color-gold-light);
}

.nav__list a:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--color-text);
  transition: var(--transition-base);
}

.nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero
============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 45%, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0) 70%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.65) 0%, rgba(12, 12, 12, 0.7) 45%, rgba(12, 12, 12, 0.95) 100%);
  z-index: -1;
}

.hero__content {
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 24px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 1.08;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.65);
  animation: fadeInUp 1s ease 0.4s both;
}

.hero__text {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s ease 0.6s both;
}

.hero__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}

.hero__scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gold-light);
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0%; }
  100% { top: 100%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   Page Banner
============================================ */
.page-banner {
  position: relative;
  padding: 200px 0 100px;
  text-align: center;
  overflow: hidden;
}

.page-banner__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.6) 0%, rgba(12, 12, 12, 0.78) 60%, var(--color-bg) 100%);
  z-index: -1;
}

.page-banner__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 20px;
}

.page-banner__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.1;
}

/* ============================================
   About
============================================ */
.about {
  padding: 120px 0;
  background: var(--color-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.about__media {
  position: relative;
  border: 1px solid var(--color-border);
  padding: 20px;
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about__body .section-head {
  text-align: left;
  margin: 0 0 24px;
  max-width: none;
}

.about__body .section-eyebrow::after {
  display: none;
}

.about__text p {
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.about__stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-gold);
}

.about__stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ============================================
   Menu
============================================ */
.menu {
  padding: 120px 0;
  background: var(--color-bg-alt);
}

.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.menu__tab {
  padding: 12px 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  transition: var(--transition-base);
}

.menu__tab:hover {
  color: var(--color-gold-light);
  border-color: var(--color-gold);
}

.menu__tab.is-active {
  background: var(--color-gold);
  color: #14110d;
  border-color: var(--color-gold);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.featured-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.menu__cta {
  display: flex;
  justify-content: center;
}

.menu-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
}

.menu-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card__media img {
  transform: scale(1.08);
}

.menu-card__body {
  padding: 24px;
}

.menu-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.menu-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
}

.menu-card__price {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.2rem;
  white-space: nowrap;
}

.menu-card__desc {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* ============================================
   Gallery
============================================ */
.gallery {
  padding: 120px 0;
  background: var(--color-bg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter var(--transition-base);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0);
  transition: background var(--transition-base);
}

.gallery__item:hover::after {
  background: rgba(12, 12, 12, 0.25);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  opacity: 0;
  transition: var(--transition-base);
  font-size: 1.8rem;
}

.gallery__item:hover .gallery__icon {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__image-wrap {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__image-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--color-border);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-radius: 50%;
  transition: var(--transition-base);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--color-gold);
  color: #14110d;
  border-color: var(--color-gold);
}

.lightbox__close {
  top: 28px;
  right: 28px;
}

.lightbox__prev {
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================
   Reservation
============================================ */
.reservation {
  padding: 120px 0;
  background: var(--color-bg-alt);
  position: relative;
}

.reservation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.reservation__info .section-head {
  text-align: left;
  margin: 0 0 24px;
  max-width: none;
}

.reservation__info .section-eyebrow::after {
  display: none;
}

.reservation__text {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.reservation__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reservation__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.reservation__detail-icon {
  width: 40px;
  height: 40px;
  flex: none;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.reservation__detail-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.reservation__detail-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Form */
.form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 48px;
  position: relative;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  margin-bottom: 22px;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color var(--transition-base);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form__textarea {
  resize: vertical;
  min-height: 110px;
}

.form__error {
  display: block;
  color: #e08383;
  font-size: 0.78rem;
  margin-top: 6px;
  min-height: 1em;
}

.form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form__success.is-visible {
  display: block;
}

.form.is-submitted .form__fields,
.form.is-submitted .form__submit {
  display: none;
}

.form__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.8rem;
}

.form__success h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.form__success p {
  color: var(--color-text-muted);
}

/* ============================================
   Contact
============================================ */
.contact {
  padding: 120px 0;
  background: var(--color-bg);
}

.contact__head {
  text-align: left;
  margin: 0 0 32px;
  max-width: none;
}

.contact__head .section-eyebrow::after {
  display: none;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__item-title {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.contact__item-text {
  color: var(--color-text-muted);
}

.contact__socials {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.contact__social {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.contact__social:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
}

.contact__map {
  border: 1px solid var(--color-border);
  min-height: 360px;
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: invert(92%) hue-rotate(180deg) contrast(90%);
}

/* ============================================
   Footer
============================================ */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 72px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

.footer__brand img {
  width: 36px;
  height: 36px;
}

.footer__text {
  color: var(--color-text-muted);
  max-width: 320px;
}

.footer__heading {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 22px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  transition: color var(--transition-base);
}

.footer__links a:hover {
  color: var(--color-gold-light);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer__credit {
  transition: color var(--transition-base);
}

.footer__credit:hover {
  color: var(--color-gold-light);
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 992px) {
  .about__grid,
  .reservation__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__media {
    order: -1;
  }

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

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: rgba(12, 12, 12, 0.97);
    backdrop-filter: blur(12px);
    transform: translateY(-100%);
    transition: transform var(--transition-base);
    z-index: 1050;
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .nav__list a {
    font-size: 1.1rem;
  }

  .nav__toggle {
    display: flex;
  }

  .menu__grid,
  .featured-menu__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .form {
    padding: 32px 24px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 44px;
  }

  .about,
  .menu,
  .gallery,
  .reservation,
  .contact {
    padding: 80px 0;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .lightbox__prev {
    left: 10px;
  }

  .lightbox__next {
    right: 10px;
  }

  .lightbox__close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
}
