:root {
  --ink: #141816;
  --ink-soft: #2a312e;
  --paper: #f2efe8;
  --paper-2: #e5e0d5;
  --mist: rgba(242, 239, 232, 0.82);
  --sea: #1f5c57;
  --sea-deep: #143f3b;
  --line: rgba(20, 24, 22, 0.12);
  --shadow: 0 24px 60px rgba(20, 24, 22, 0.18);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Fraunces", Georgia, serif;
  --header-h: 5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #dfeae6 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #e8dfd0 0%, transparent 50%),
    var(--paper);
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-size: 1.0625rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

.visually-hidden,
.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip:focus {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  background: #111111;
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: #111111;
  color: var(--paper);
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 2.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.brand img {
  display: block;
  height: calc(var(--header-h) - 1.15rem);
  width: auto;
  max-width: min(150px, 42vw);
  object-fit: contain;
  filter: none;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: center;
}

.site-nav a {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.35vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

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

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  place-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.nav-toggle__lines {
  position: relative;
  display: block;
  width: 1.45rem;
  height: 2px;
  background: currentColor;
  transition: background 0.25s var(--ease);
}

.nav-toggle__lines::before,
.nav-toggle__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.nav-toggle__lines::before { top: -0.4rem; }
.nav-toggle__lines::after { top: 0.4rem; }

.site-header.is-open .nav-toggle__lines {
  background: transparent;
}

.site-header.is-open .nav-toggle__lines::before {
  transform: translateY(0.4rem) rotate(45deg);
}

.site-header.is-open .nav-toggle__lines::after {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  color: var(--paper);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

.hero__veil {
  display: none;
}

.hero__logo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(52vw, 28rem);
  margin-top: calc(var(--header-h) * -0.55 - 29vh);
  animation: rise 0.9s var(--ease) both;
}

.hero__logo img {
  width: 100%;
  height: auto;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(1.25rem); }
  to { opacity: 1; transform: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

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

.btn--solid {
  background: var(--paper);
  color: var(--ink);
}

.btn--ghost {
  border-color: rgba(242, 239, 232, 0.55);
  color: var(--paper);
  background: transparent;
}

/* Sections */
.section {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 4vw, 4rem);
}

.section__intro {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section__intro h2,
.gallery-tile__text h2,
.contact h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section__intro p,
.contact__lead {
  margin: 0;
  color: var(--ink-soft);
}

.section--efoto {
  padding-top: clamp(2.5rem, 6vh, 4rem);
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
}

.efoto-banner {
  position: relative;
  min-height: clamp(22rem, 55vw, 34rem);
  overflow: hidden;
  color: var(--paper);
}

.efoto-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.efoto-banner__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 24, 22, 0.25) 0%, rgba(20, 24, 22, 0.55) 45%, rgba(20, 24, 22, 0.88) 100%),
    linear-gradient(90deg, rgba(20, 24, 22, 0.55) 0%, transparent 60%);
}

.efoto-banner__content {
  position: relative;
  z-index: 1;
  max-width: min(52rem, 92%);
  padding: clamp(1.75rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(22rem, 55vw, 34rem);
}

.efoto-banner__content h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  white-space: nowrap;
  hyphens: none;
}

.efoto-banner__lead {
  margin: 0 0 1.35rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: rgba(242, 239, 232, 0.92);
  max-width: 40rem;
  text-wrap: pretty;
  hyphens: none;
}

.efoto-banner__kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.7);
  white-space: nowrap;
}

.efoto-banner__content > p:last-child {
  margin: 0;
  color: rgba(242, 239, 232, 0.86);
  line-height: 1.55;
  max-width: 42rem;
  text-wrap: pretty;
  hyphens: none;
}

.section__intro--shop h2,
.section__intro--shop p {
  color: var(--paper);
}

.section__intro--shop p {
  color: rgba(242, 239, 232, 0.78);
}

.section--galerije {
  background: linear-gradient(180deg, transparent, rgba(31, 92, 87, 0.06));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.gallery-tile {
  grid-column: span 6;
  position: relative;
  min-height: clamp(16rem, 32vw, 24rem);
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: #2a312e;
  color: var(--paper);
  text-align: left;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(20, 24, 22, 0.78) 100%);
  pointer-events: none;
}

.gallery-tile:nth-child(5),
.gallery-tile--wide { grid-column: span 12; min-height: clamp(14rem, 28vw, 20rem); }

.gallery-tile:hover,
.gallery-tile:focus-visible {
  transform: scale(1.01);
  filter: saturate(1.08);
}

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

.gallery-tile__label {
  position: absolute;
  left: 1.25rem;
  bottom: 1.2rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-tile--text {
  cursor: default;
  display: grid;
  align-items: end;
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    linear-gradient(160deg, #2a2a2a 0%, #1c1c1c 55%, #121212 100%);
}

.gallery-tile--text::after { display: none; }

.gallery-tile--text:hover,
.gallery-tile--text:focus-visible {
  transform: none;
  filter: none;
}

.gallery-tile__text {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.gallery-tile__text h2 {
  color: var(--paper);
}

.gallery-tile__text p {
  margin: 0;
  color: rgba(242, 239, 232, 0.86);
  font-size: 1.05rem;
  line-height: 1.5;
}

.gallery-tile__text p + p {
  margin-top: 0.85rem;
}

.gallery-tile__kicker {
  margin: 0 0 0.65rem !important;
  font-family: var(--font-display);
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.7) !important;
}

.gallery-tile--wide.gallery-tile--text {
  align-items: center;
}

.gallery-tile--copy {
  min-height: auto;
  align-items: center;
  justify-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

.gallery-tile--copy .gallery-tile__text {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

.gallery-tile--copy .gallery-tile__text h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  white-space: nowrap;
  hyphens: none;
  text-align: center;
}

.gallery-tile--copy .gallery-tile__text p {
  line-height: 1.55;
  text-wrap: pretty;
  hyphens: none;
  text-align: center;
}

.gallery-tile--copy .gallery-tile__text p + p {
  margin-top: 0.85rem;
}

.section--shop {
  background: #161616;
  color: var(--paper);
}

.section--shop .gallery-grid {
  margin-bottom: 0;
}

.shop-media {
  max-width: 70rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  display: grid;
  gap: 0.65rem;
}

.shop-media__feature {
  margin: 0;
  overflow: hidden;
}

.shop-media__feature img {
  display: block;
  width: 100%;
  height: clamp(14rem, 42vw, 28rem);
  object-fit: cover;
}

.shop-media__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.65rem;
}

.shop-media__grid img {
  display: block;
  width: 100%;
  height: clamp(8rem, 18vw, 12rem);
  object-fit: cover;
}

.shop-media__grid img:nth-child(1),
.shop-media__grid img:nth-child(2),
.shop-media__grid img:nth-child(3) {
  grid-column: span 2;
}

.shop-media__grid img:nth-child(4),
.shop-media__grid img:nth-child(5) {
  grid-column: span 3;
}

.section--contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section--contact > .contact,
.section--contact > .place-card,
.section--contact > .map {
  width: 100%;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.place-card {
  max-width: 70rem;
  margin: clamp(2.5rem, 6vw, 4rem) auto clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid rgba(242, 239, 232, 0.18);
  background: #1a1a1a;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}

.place-card__block {
  min-width: 0;
  max-width: 36rem;
  width: 100%;
}

.place-card__label {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.55);
}

.place-card__firm {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--paper);
}

.place-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.8vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: rgba(242, 239, 232, 0.92);
}

.place-card__note {
  margin: 0.7rem 0 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: rgba(242, 239, 232, 0.55);
}

.place-card .text-link {
  margin-top: 0;
  align-self: center;
  justify-self: center;
  color: var(--paper);
}

.place-card .hours {
  justify-items: center;
}

.place-card .hours li {
  grid-template-columns: 6.5rem auto;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
  text-align: center;
}

.place-card .hours li span:first-child {
  opacity: 1;
  text-align: right;
}

.place-card .hours li span:last-child {
  text-align: left;
}

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.hours li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.4;
}

.hours li span:first-child {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.55);
  padding-top: 0.12rem;
}

.hours li span:last-child {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--paper);
}

.map {
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 clamp(0.5rem, 2vw, 1rem);
}

.section--contact .map__caption {
  color: var(--ink-soft);
}

.map__frame {
  display: block;
  width: 100%;
  height: clamp(16rem, 42vw, 26rem);
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

.map__caption {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.contact {
  max-width: 40rem;
}

.contact--with-form {
  width: 100%;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact__lead { margin-bottom: 2rem; }

.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}

.contact__list li {
  display: grid;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact__list span:first-child {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea);
}

.contact__list a {
  text-decoration: none;
  font-size: 1.2rem;
}

.contact__list a:hover { text-decoration: underline; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.social-links a {
  font-size: 1.05rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem 1.5rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 4rem) 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.site-footer__social {
  display: flex;
  gap: 1rem;
  margin: 0;
}

.site-footer__social a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-footer__social a:hover { text-decoration: underline; }

.site-footer__note {
  margin: 0;
}

.site-footer__note code {
  font-size: 0.85em;
}

/* Cookie consent — soft, non-blocking bottom bar */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 1rem clamp(1.15rem, 3.5vw, 2rem);
  background: #111111;
  color: var(--paper);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.22);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 16rem;
  max-width: 42rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(242, 239, 232, 0.88);
}

.cookie-banner__btn {
  flex: 0 0 auto;
  min-height: 2.75rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(242, 239, 232, 0.35);
  background: transparent;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.cookie-banner__btn:hover {
  background: rgba(242, 239, 232, 0.1);
  border-color: rgba(242, 239, 232, 0.7);
}

.cookie-banner__btn:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

/* Contact form */
.cform {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid rgba(20, 24, 22, 0.1);
  box-shadow: 0 18px 50px rgba(20, 24, 22, 0.08);
}

.cform__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.cform__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
}

.cform__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.cform__label em {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.55;
}

.cform input,
.cform textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid rgba(20, 24, 22, 0.18);
  background: #f7f5f0;
  color: var(--ink);
  padding: 0.95rem 1rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.4;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.cform input::placeholder,
.cform textarea::placeholder {
  color: rgba(20, 24, 22, 0.38);
}

.cform input:focus,
.cform textarea:focus {
  outline: none;
  border-color: var(--sea);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 92, 87, 0.15);
}

.cform textarea {
  resize: vertical;
  min-height: 9rem;
}

.cform__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 3.15rem;
  margin-top: 0.35rem;
  padding: 0 1.6rem;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.cform__submit:hover {
  background: var(--sea-deep);
  transform: translateY(-2px);
}

.cform__submit:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.cform__status {
  margin: 0;
  min-height: 1.35em;
  font-size: 0.98rem;
}

.cform__status.is-ok { color: var(--sea-deep); }
.cform__status.is-error { color: #8a2e2e; }

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Lightbox */
.lightbox[hidden] { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 11, 0.88);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 3.5rem 1rem 1.5rem;
}

.lightbox__figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.lightbox__figure img {
  max-height: min(78vh, 900px);
  width: auto;
  max-width: min(92vw, 1200px);
  box-shadow: var(--shadow);
}

.lightbox__figure figcaption {
  color: rgba(242, 239, 232, 0.8);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox__close,
.lightbox__nav {
  border: 0;
  background: rgba(242, 239, 232, 0.1);
  color: var(--paper);
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
}

.lightbox__nav {
  width: 2.75rem;
  height: 2.75rem;
}

body.lightbox-open { overflow: hidden; }

@media (max-width: 860px) {
  .gallery-tile,
  .gallery-tile--wide { grid-column: span 12; }
  .efoto-banner__content h2,
  .efoto-banner__kicker,
  .gallery-tile--copy .gallery-tile__text h2 {
    white-space: normal;
  }
  .contact--with-form { grid-template-columns: 1fr; }
  .place-card {
    grid-template-columns: 1fr;
  }
  .place-card .text-link {
    justify-self: center;
  }
  .shop-media__grid {
    grid-template-columns: 1fr 1fr;
  }
  .shop-media__grid img:nth-child(1),
  .shop-media__grid img:nth-child(2),
  .shop-media__grid img:nth-child(3),
  .shop-media__grid img:nth-child(4),
  .shop-media__grid img:nth-child(5) {
    grid-column: span 1;
  }
  .shop-media__grid img:nth-child(5) {
    grid-column: span 2;
  }

  .nav-toggle { display: inline-grid; }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 35;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }

  .site-header.is-open ~ .nav-backdrop,
  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 36;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 1.35rem;
    background: #111111;
    border-bottom: 1px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 0.35s var(--ease),
      opacity 0.3s var(--ease),
      visibility 0.3s var(--ease),
      padding 0.35s var(--ease),
      border-color 0.3s var(--ease);
  }

  .site-header.is-open .site-nav {
    max-height: min(70vh, 28rem);
    opacity: 1;
    visibility: visible;
    padding: 0.5rem 1.35rem 1.35rem;
    border-bottom-color: rgba(242, 239, 232, 0.12);
  }

  .site-nav a {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    padding: 1rem 0.15rem;
    border-bottom: 1px solid rgba(242, 239, 232, 0.1);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .lightbox__dialog {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .lightbox__nav { justify-self: center; }
}
