/* ========== TOKENS ========== */
:root {
  --cream:        #F4ECD9;
  --cream-2:      #EAE0C8;
  --paper:        #FBF6EA;
  --terracotta:   #6B2330;
  --terracotta-d: #4A1620;
  --olive:        #1F2A22;
  --olive-d:      #131B14;
  --espresso:     #1A0F08;
  --espresso-2:   #2D1A0F;
  --gold:         #A37D2C;
  --line:         #D4C4A3;
  --muted:        #8A7560;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --script: "Italianno", "Allura", cursive;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--terracotta-d); text-decoration: none; }
a:hover { color: var(--espresso); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.skip {
  position: absolute; top: -40px; left: 12px;
  background: var(--espresso); color: var(--cream);
  padding: 8px 14px; border-radius: 8px; z-index: 1000;
}
.skip:focus { top: 12px; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

/* ========== TYPE ========== */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; margin: 0; }
.h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.02em;
}
.h2 em { font-style: italic; color: var(--terracotta); }
.center { text-align: center; }
.kicker {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 14px;
}
.kicker.center { display: block; }

/* ========== BRAND ========== */
.brand-amore {
  font-family: var(--script);
  font-size: 1.7em;
  line-height: 0.7;
  color: var(--terracotta);
  font-weight: 400;
  vertical-align: -0.05em;
}
.brand-caffe {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ========== LOGO IMAGE ========== */
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(45, 26, 15, 0.15);
}
.hero-logo {
  display: block;
  width: clamp(280px, 38vw, 460px);
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: fadeUp 1s 0.15s both;
}
.footer-logo {
  height: 90px;
  width: auto;
  display: block;
  border-radius: 5px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  margin-bottom: 14px;
}

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 247, 238, 0.0);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251, 247, 238, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(45, 26, 15, 0.04);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  font-size: 22px;
  color: var(--espresso);
  display: inline-flex; align-items: baseline;
  white-space: nowrap;
}
.nav.is-light .brand { color: var(--cream); }
.nav.is-light .brand .brand-amore { color: var(--cream); }
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 15px;
  color: var(--espresso);
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav.is-light .nav-links a { color: var(--cream); }
.nav-links a:hover { color: var(--terracotta); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--terracotta);
  transition: width 0.25s;
}
.nav-links a:hover::after { width: 100%; }
.nav-ig {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 8px 16px !important;
  font-size: 14px !important;
}
.nav-ig::after { display: none !important; }
.nav-ig:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream) !important; }

.hamburger {
  display: none;
  width: 36px; height: 28px;
  flex-direction: column; justify-content: space-between;
  padding: 4px 0;
}
.hamburger span {
  display: block; height: 2px; background: var(--espresso);
  border-radius: 2px; transition: transform 0.3s, opacity 0.2s, background 0.3s;
}
.nav.is-light .hamburger span { background: var(--cream); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--pad) 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  padding: 14px 4px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--espresso);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu.open { display: flex; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--cream);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("images/nutella-cappuccino.jpg") center/cover no-repeat;
  background-position: center 55%;
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(45,26,15,0.0) 0%, rgba(45,26,15,0.55) 70%, rgba(45,26,15,0.85) 100%),
    linear-gradient(180deg, rgba(45,26,15,0.45) 0%, rgba(45,26,15,0.15) 35%, rgba(45,26,15,0.5) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 120px var(--pad) 90px;
  max-width: 880px;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-2);
  margin: 0 0 14px;
  opacity: 0.92;
  animation: fadeUp 0.9s 0.05s both;
}
.hero-title {
  font-family: var(--serif);
  margin: 0 0 24px;
  line-height: 0.92;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-amore {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(5.5rem, 18vw, 12rem);
  line-height: 0.85;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
  animation: fadeUp 1s 0.15s both;
  margin-bottom: -0.18em;
}
.hero-caffe {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--cream);
  animation: fadeUp 1s 0.3s both;
}
.hero-tag {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  margin: 0 auto 38px;
  max-width: 620px;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.95;
  animation: fadeUp 1s 0.45s both;
}
.hero-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 1s 0.6s both;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.2s, background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(107,35,48,0.4);
}
.btn-primary:hover { background: var(--terracotta-d); color: var(--cream); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(107,35,48,0.5); }
.btn-ghost {
  border-color: rgba(251,247,238,0.6);
  color: var(--cream);
}
.btn-ghost:hover { background: var(--cream); color: var(--espresso); border-color: var(--cream); }

.hero-meta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--cream-2);
  opacity: 0.9;
  animation: fadeUp 1s 0.75s both;
}
.hero-meta .dot { opacity: 0.5; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 38px;
  color: var(--cream); opacity: 0.65;
  animation: bob 2.4s ease-in-out infinite, fadeUp 1.2s 1s both;
}
.hero-scroll svg { width: 100%; height: 100%; }
.hero-scroll:hover { opacity: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ========== STORY ========== */
.story {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
  position: relative;
}
.story::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.story-text { max-width: 540px; }
.story-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--espresso-2);
  margin: 0 0 20px;
}
.story-text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.4em;
  font-weight: 400;
  font-style: italic;
  line-height: 0.85;
  float: left;
  padding: 0.05em 0.12em 0 0;
  color: var(--terracotta);
}
.story-sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px !important;
  margin-top: 28px !important;
  color: var(--espresso) !important;
}
.story-sign span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.story-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(45,26,15,0.25);
  aspect-ratio: 4/5;
}
.story-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.story-photo-stamp {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--cream);
  color: var(--espresso);
  padding: 18px 22px;
  border-radius: 100px;
  text-align: center;
  font-family: var(--serif);
  border: 2px solid var(--terracotta);
  transform: rotate(-6deg);
  box-shadow: 0 8px 20px rgba(45,26,15,0.18);
}
.stamp-line {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-family: var(--sans);
  font-weight: 500;
}
.stamp-big {
  display: block;
  font-family: var(--script);
  font-size: 38px;
  line-height: 0.9;
  color: var(--terracotta);
  margin: 2px 0;
}

/* ========== SIGNATURES ========== */
.signatures {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream-2);
  position: relative;
}
.sig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.sig-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.sig-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -16px rgba(45,26,15,0.18);
}
.sig-photo {
  aspect-ratio: 5/4;
  overflow: hidden;
}
.sig-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.sig-card:hover .sig-photo img { transform: scale(1.06); }
.sig-card h3 {
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  padding: 22px 22px 6px;
  color: var(--espresso);
}
.sig-card p {
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--espresso-2);
  margin: 0;
}

/* ========== MENU ========== */
.menu {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
}
.menu-intro {
  max-width: 520px;
  margin: 12px auto 50px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--espresso-2);
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  max-width: 980px;
  margin: 0 auto;
}
.menu-cat {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.menu-col .menu-cat:not(:first-child) {
  margin-top: 44px;
}
.menu-list {
  list-style: none;
  margin: 0; padding: 0;
}
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  font-size: 16px;
}
.m-name { font-weight: 500; color: var(--espresso); }
.m-name em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
  margin-left: 6px;
}
.m-dot {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-3px);
}
.m-price {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
  white-space: nowrap;
}
.m-desc {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
  text-align: right;
  max-width: 60%;
  line-height: 1.4;
}
.menu-cat em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-left: 10px;
}
.menu-foot {
  margin-top: 48px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== GALLERY ========== */
.gallery {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream-2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
  margin-top: 48px;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 0;
  cursor: zoom-in;
  background: var(--paper);
  aspect-ratio: 1 / 1;
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s, filter 0.4s;
}
.g-item:hover img { transform: scale(1.06); filter: brightness(1.03); }

.gallery-foot {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
}
.gallery-foot a { color: var(--terracotta); }

/* ========== VISIT ========== */
.visit {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--olive);
  color: var(--cream);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.visit-text { padding: 8px 0; }
.visit-text .kicker { color: var(--gold); }
.visit-text .h2 { color: var(--cream); }
.visit-text .h2 em { color: var(--gold); }
.visit-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(251,247,238,0.85);
  margin: 0 0 36px;
  max-width: 480px;
}
.visit-block { margin-bottom: 28px; }
.visit-h {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.visit-block p {
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream);
}
.visit-block a {
  color: var(--cream);
  border-bottom: 1px solid rgba(251,247,238,0.3);
}
.visit-block a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.visit-link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold) !important;
  border: 0 !important;
}
.visit-link:hover { color: var(--cream) !important; }
.visit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.hours {
  border-collapse: collapse;
}
.hours td {
  padding: 4px 22px 4px 0;
  font-size: 16px;
  color: var(--cream);
}
.hours td:last-child {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  border: 1px solid rgba(251,247,238,0.12);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.visit-map iframe {
  width: 100%; height: 100%; min-height: 460px; border: 0;
  filter: saturate(0.85);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--espresso);
  color: var(--cream-2);
  padding: 80px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(251,247,238,0.12);
}
.footer-brand .brand-amore { color: var(--terracotta); font-size: 56px; }
.footer-brand .brand-caffe { color: var(--cream); font-size: 32px; font-style: italic; }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  margin-top: 12px;
  color: rgba(251,247,238,0.65);
  font-size: 16px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-cols h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.footer-cols p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(251,247,238,0.75);
}
.footer-cols a {
  color: var(--cream);
  border-bottom: 1px dotted rgba(251,247,238,0.35);
}
.footer-cols a:hover { color: var(--gold); border-color: var(--gold); }
.footer-bottom {
  padding-top: 28px;
  font-size: 13px;
  text-align: center;
  color: rgba(251,247,238,0.5);
  letter-spacing: 0.05em;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,12,6,0.94);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 5vw;
  opacity: 0;
  transition: opacity 0.25s;
}
.lightbox[hidden] { display: none; }
.lightbox.show { opacity: 1; }
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.lb-cap {
  position: absolute;
  bottom: 6vw;
  left: 0; right: 0;
  text-align: center;
  color: var(--cream-2);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  margin: 0;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(251,247,238,0.1);
  color: var(--cream);
  font-size: 30px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid rgba(251,247,238,0.18);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(251,247,238,0.2); transform: scale(1.05); }
.lb-close { top: 28px; right: 28px; }
.lb-prev { left: 28px; top: 50%; transform: translateY(-50%); font-size: 36px; }
.lb-next { right: 28px; top: 50%; transform: translateY(-50%); font-size: 36px; }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.05); }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .story-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-photo { aspect-ratio: 4/3; max-width: 540px; margin-inline: auto; }

  .sig-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .menu-grid { grid-template-columns: 1fr; gap: 50px; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 360px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .hero-content { padding-top: 100px; padding-bottom: 70px; }

  .sig-grid { grid-template-columns: 1fr; gap: 18px; }
  .sig-card { display: grid; grid-template-columns: 130px 1fr; align-items: center; }
  .sig-photo { aspect-ratio: 1/1; }
  .sig-card h3 { font-size: 18px; padding: 14px 16px 4px; }
  .sig-card p { padding: 0 16px 16px; font-size: 14px; }

  .visit-row { grid-template-columns: 1fr; gap: 24px; }

  .lb-close { top: 14px; right: 14px; width: 44px; height: 44px; font-size: 24px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
