/* =========
   Base
========= */
:root {
  --bg: #0b0b0c;
  --surface: #111114;
  --surface-2: #15151a;
  --card: rgba(255, 255, 255, .06);
  --stroke: rgba(255, 255, 255, .12);
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .68);
  --muted-2: rgba(255, 255, 255, .55);
  --accent: #f4b03e;
  /* sobrio, cercano al dorado */
  --accent-2: #ffcc6a;
  --shadow: 0 18px 55px rgba(0, 0, 0, .55);
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;

  --serif: "Playfair Display", ui-serif, Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);

  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 800px at 12% 8%, rgba(244, 176, 62, .16), transparent 62%),
    radial-gradient(1000px 700px at 88% 14%, rgba(255, 204, 106, .10), transparent 60%),
    radial-gradient(900px 700px at 50% 110%, rgba(244, 176, 62, .08), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), transparent 40%, rgba(0, 0, 0, .18));
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;

  overflow-x: hidden;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(244, 176, 62, .55);
  text-underline-offset: 4px;
}

.link:hover {
  text-decoration-color: rgba(244, 176, 62, .95);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, .9);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  transform: translateY(-160%);
  transition: transform .2s ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--accent);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 12px;
}

/* =========
   Header / Nav
========= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(11, 11, 12, .66);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
}

.brand__text {
  display: grid;
  line-height: 1.1;
  min-width: 0;
}

.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 18px;
  white-space: nowrap;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.nav__toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav__toggle:hover {
  background: rgba(255, 255, 255, .06);
}

.nav__toggle-lines {
  width: 18px;
  height: 12px;
  display: inline-block;
  position: relative;
}

.nav__toggle-lines::before,
.nav__toggle-lines::after,
.nav__toggle-lines {
  background: transparent;
}

.nav__toggle-lines::before,
.nav__toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, .86);
  border-radius: 99px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}

.nav__toggle-lines::before {
  top: 2px;
}

.nav__toggle-lines::after {
  top: 8px;
}

.site-header.is-open .nav__toggle-lines::before {
  top: 5px;
  transform: rotate(45deg);
}

.site-header.is-open .nav__toggle-lines::after {
  top: 5px;
  transform: rotate(-45deg);
}

.nav__menu {
  position: fixed;
  inset: 70px 16px auto 16px;
  background: rgba(17, 17, 20, .92);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  max-height: calc(100vh - 100px);
  overflow: auto;
}

.site-header.is-open .nav__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, .03);
  color: var(--text);
}

.nav__link:hover {
  border-color: rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .05);
}

.nav__cta {
  margin-top: 10px;
}

/* Desktop nav */
@media (min-width: 980px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    position: static;
    inset: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    max-height: none;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav__link {
    padding: 10px 10px;
    background: transparent;
    border: 1px solid transparent;
  }

  .nav__link:hover {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .08);
  }

  .nav__cta {
    margin-top: 0;
  }
}

/* =========
   Buttons
========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-weight: 600;
  letter-spacing: .1px;
  cursor: pointer;
  user-select: none;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}

.btn:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(180deg, rgba(244, 176, 62, .95), rgba(244, 176, 62, .75));
  border-color: rgba(244, 176, 62, .45);
  color: #14110b;
}

.btn--primary:hover {
  background: linear-gradient(180deg, rgba(255, 204, 106, .98), rgba(244, 176, 62, .80));
}

.btn--ghost {
  background: rgba(255, 255, 255, .03);
}

.btn--small {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
}

/* =========
   Typography
========= */
.h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 10px 0 10px;
  letter-spacing: .2px;
}

.h1__accent {
  display: block;
  color: rgba(255, 255, 255, .85);
}

.h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 34px);
  margin: 0 0 6px;
}

.h3 {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 8px;
}

.lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 56ch;
}

.muted {
  color: var(--muted);
}

/* =========
   Hero
========= */
.hero {
  padding: 30px 0 20px;
}

.hero__grid {
  display: grid;
  gap: 20px;
}

.hero__content {
  padding: 8px 0;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
  font-size: 13px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(244, 176, 62, .16);
}

.hero__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
  max-width: 520px;
}

.meta-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
}

.meta-card__k {
  color: var(--muted-2);
  font-size: 13px;
}

.meta-card__v {
  font-weight: 600;
  font-size: 13px;
}

.hero__visual {
  display: grid;
  place-items: stretch;
}

.hero__card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  box-shadow: var(--shadow);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.hero__card::before {
  content: "";
  position: absolute;
  inset: -80px -120px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(244, 176, 62, .35), transparent 60%);
  filter: blur(2px);
}

.hero__card-top {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
}

.hero__badge {
  font-size: 12px;
  color: #14110b;
  background: rgba(244, 176, 62, .92);
  border: 1px solid rgba(244, 176, 62, .35);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.hero__badge--muted {
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  border-color: rgba(255, 255, 255, .10);
  font-weight: 600;
}

.hero__card-title {
  font-family: var(--serif);
  font-size: 22px;
  margin-top: 12px;
  position: relative;
}

.hero__card-sub {
  color: var(--muted);
  margin-top: 2px;
  font-size: 13px;
  position: relative;
}

.hero__card-line {
  height: 1px;
  background: rgba(255, 255, 255, .10);
  margin: 14px 0;
  position: relative;
}

.hero__card-list {
  display: grid;
  gap: 10px;
  position: relative;
}

.hero__card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, .86);
  font-weight: 600;
  font-size: 13px;
}

.hero__card-row span:last-child {
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
}

@media (min-width: 980px) {
  .hero {
    padding: 44px 0 30px;
  }

  .hero__grid {
    grid-template-columns: 1.25fr .85fr;
    align-items: center;
    gap: 28px;
  }

  .hero__meta {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========
   Sections / Cards
========= */
.section {
  padding: 54px 0;
}

.section--dense {
  padding: 46px 0;
}

.section__head {
  margin-bottom: 18px;
}

.section__head--row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  padding: 16px;
}

.grid-3 {
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========
   Menu UI
========= */
.menu-ui {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  padding: 14px;
  overflow: hidden;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.tab {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  padding: 12px 12px;
  font-weight: 800;
  cursor: pointer;
  color: rgba(255, 255, 255, .86);
}

.tab.is-active {
  background: rgba(244, 176, 62, .14);
  border-color: rgba(244, 176, 62, .35);
  color: var(--text);
}

.menu-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.search {
  position: relative;
  display: grid;
}

.search__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, .62);
  pointer-events: none;
}

.search__input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .22);
  color: var(--text);
  padding: 12px 12px 12px 40px;
  font-weight: 600;
}

.search__input::placeholder {
  color: rgba(255, 255, 255, .45);
  font-weight: 600;
}

.search__clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  border-radius: 12px;
  padding: 7px 10px;
  cursor: pointer;
}

.search__clear:hover {
  background: rgba(255, 255, 255, .06);
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 4px 0 10px;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .86);
  padding: 8px 10px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

.chip:hover {
  background: rgba(255, 255, 255, .05);
}

.chip.is-active {
  border-color: rgba(244, 176, 62, .40);
  background: rgba(244, 176, 62, .14);
}

.accordion {
  display: grid;
  gap: 10px;
}

.acc {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  overflow: hidden;
  background: rgba(255, 255, 255, .02);
}

.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  background: rgba(255, 255, 255, .03);
  border: 0;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.acc__title {
  display: grid;
  gap: 2px;
}

.acc__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
}

.acc__meta {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.acc__chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, .75);
  border-bottom: 2px solid rgba(255, 255, 255, .75);
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-right: 4px;
}

.acc.is-open .acc__chev {
  transform: rotate(-135deg);
}

.acc__panel {
  padding: 12px 14px 14px;
  display: grid;
  gap: 10px;
}

.note-inline {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .72);
  background: rgba(0, 0, 0, .18);
  font-size: 13px;
  line-height: 1.45;
}

.item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  padding: 12px 12px;
}

.item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.item__name {
  font-weight: 800;
  letter-spacing: .1px;
}

.item__desc {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 13px;
}

.price {
  font-weight: 900;
  color: rgba(255, 255, 255, .92);
  white-space: nowrap;
}

.price--accent {
  color: var(--accent-2);
}

.price__variants {
  margin-top: 6px;
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, .82);
}

.price__row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.price__label {
  color: rgba(255, 255, 255, .62);
  font-weight: 700;
}

.menu-footnote {
  margin: 14px 2px 0;
  font-size: 12px;
}

/* =========
   Gallery
========= */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery__item {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .10);
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .18s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========
   Map
========= */
.map {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .02);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

.map iframe {
  width: 100%;
  height: clamp(320px, 45vw, 450px);
  border: 0 !important;
  display: block;
}

/* =========
   Contact
========= */
.contact {
  display: grid;
  gap: 14px;
}

.contact__card--soft {
  background: rgba(255, 255, 255, .02);
}

.contact__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.list__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding-bottom: 10px;
}

.list__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.list__k {
  color: var(--muted-2);
  font-weight: 700;
  font-size: 13px;
}

.list__v {
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, .88);
}

.social {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.social__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  font-weight: 800;
}

.social__btn:hover {
  background: rgba(255, 255, 255, .05);
}

.social__btn svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, .86);
}

.note {
  margin-top: 16px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(244, 176, 62, .22);
  background: rgba(244, 176, 62, .08);
  color: rgba(255, 255, 255, .82);
  line-height: 1.45;
}

@media (min-width: 980px) {
  .contact {
    grid-template-columns: 1.1fr .9fr;
  }
}

/* =========
   Footer
========= */
.footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 26px 0 34px;
  background: rgba(0, 0, 0, .18);
}

.footer__grid {
  display: grid;
  gap: 14px;
}

.footer__brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__brand img {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
}

.footer__name {
  font-family: var(--serif);
  font-weight: 800;
}

.footer__muted {
  color: var(--muted);
  font-size: 13px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.footer__link {
  color: rgba(255, 255, 255, .84);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 0;
}

.footer__link:hover {
  color: rgba(255, 255, 255, .98);
}

.footer__bottom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* =========
   Floating WhatsApp
========= */
.wa-float {
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(244, 176, 62, .42);
  background: linear-gradient(180deg, rgba(244, 176, 62, .95), rgba(244, 176, 62, .72));
  display: grid;
  place-items: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .55);
  z-index: 1200;
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: #14110b;
}

.wa-float:hover {
  filter: brightness(1.03);
}

@media (min-width: 980px) {
  .wa-float {
    right: 20px;
    bottom: 20px;
  }
}

/* =========
   Lightbox
========= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
}

.lightbox__panel {
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(17, 17, 20, .92);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  grid-template-rows: 44px 1fr auto;
  gap: 10px;
  padding: 10px;
  align-items: center;
}

.lightbox__img {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  justify-self: center;
  align-self: center;
  max-width: 100%;
  max-height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  object-fit: contain;
  background: rgba(0, 0, 0, .25);
}

.lightbox__caption {
  grid-column: 1 / -1;
  grid-row: 3;
  justify-self: center;
  padding: 8px 10px 2px;
  font-size: 12px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .92);
  cursor: pointer;
  z-index: 2;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, .06);
}

.lightbox__close {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.lightbox__prev {
  grid-column: 1;
  grid-row: 2;
}

.lightbox__next {
  grid-column: 3;
  grid-row: 2;
}

@media (min-width: 980px) {
  .lightbox__panel {
    inset: 30px;
  }
}