:root {
  --bg: #020202;
  --bg-soft: #090909;
  --panel: #101010;
  --panel-strong: #171717;
  --text: #f8f8f5;
  --muted: #b9b9b3;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #f51f2f;
  --accent-deep: #a90816;
  --steel: #75808a;
  --cream: #f4f0e8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 78%, transparent);
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  background: var(--text);
  color: var(--bg);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  width: min(100% - 32px, var(--max));
  margin: 18px auto 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(4, 4, 4, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.82);
  border-color: rgba(245, 31, 47, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand__word {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.35rem);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.12rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta {
  padding: 0.75rem 1rem;
  min-height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.84rem;
}

.header-cta svg,
.btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

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

.hero {
  position: relative;
  min-height: 760px;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 128px max(24px, calc((100vw - var(--max)) / 2)) 72px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.16) 72%, rgba(0, 0, 0, 0.34) 100%),
    radial-gradient(circle at 58% 42%, rgba(245, 31, 47, 0.22), transparent 36%),
    #020202 url("assets/hero-bg.jpeg") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero__shade,
.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.24) 48%, rgba(0, 0, 0, 0.08)),
    linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 44%);
}

.hero__grain {
  z-index: -2;
  opacity: 0.17;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(245, 31, 47, 0.07) 0 1px, transparent 1px 11px);
  mix-blend-mode: screen;
}

.hero__content {
  width: min(1060px, 100%);
  position: relative;
  z-index: 4;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
p,
a,
dt,
dd,
span {
  overflow-wrap: break-word;
}

h1 {
  max-width: 980px;
  margin-bottom: 1.4rem;
  font-size: 5.85rem;
  line-height: 0.96;
  font-weight: 800;
}

h2 {
  font-size: 3.7rem;
  line-height: 1.02;
  font-weight: 800;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.16;
}

.hero__lead {
  max-width: 760px;
  margin-bottom: 2rem;
  color: rgba(248, 248, 245, 0.82);
  font-size: 1.26rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}

.btn {
  max-width: 100%;
  min-height: 54px;
  padding: 0.95rem 1.18rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 18px 38px rgba(245, 31, 47, 0.31);
}

.btn--primary:hover {
  background: #ff3343;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.btn--large {
  min-height: 62px;
  padding-inline: 1.45rem;
}

.hero__metrics {
  display: grid;
  grid-template-columns:
    minmax(140px, 0.85fr)
    minmax(160px, 0.9fr)
    minmax(150px, 0.9fr)
    minmax(235px, 1.35fr);
  gap: 0.8rem;
  width: min(1060px, 100%);
  margin: 0;
}

.hero__metrics div {
  min-width: 0;
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.hero__metrics dt {
  margin-bottom: 0.28rem;
  color: var(--text);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.08;
}

.hero__metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  padding: clamp(72px, 9vw, 128px) max(24px, calc((100vw - var(--max)) / 2));
}

.section__intro {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section__intro p:not(.eyebrow),
.approach__copy p,
.conversion p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section--services {
  background:
    linear-gradient(180deg, var(--bg), #080808 52%, var(--bg-soft)),
    linear-gradient(90deg, rgba(245, 31, 47, 0.06), transparent);
}

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

.service-card {
  min-height: 510px;
  overflow: hidden;
  min-width: 0;
  contain: layout paint;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 31, 47, 0.52);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.service-card__media {
  min-height: 255px;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.85)),
    var(--image) var(--position, center) / cover;
}

.service-card__body {
  padding: 1.4rem;
}

.service-card__body svg {
  width: 34px;
  height: 34px;
  margin-bottom: 1.4rem;
  color: var(--accent);
  stroke-width: 1.8;
}

.service-card h3 {
  margin-bottom: 0.9rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.section--approach {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  background:
    linear-gradient(180deg, var(--bg-soft), #050505),
    linear-gradient(110deg, rgba(255, 255, 255, 0.05), transparent);
}

.approach__copy {
  position: sticky;
  top: 132px;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--accent);
  font-weight: 800;
}

.timeline h3 {
  margin-bottom: 0.45rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.social-section {
  background: #050505;
}

.social-section .section__intro {
  margin-inline: auto;
  text-align: center;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}

.work-gallery__item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  aspect-ratio: 4 / 3;
  contain: layout paint;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.work-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent 58%);
  pointer-events: none;
}

.work-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease, filter 320ms ease;
}

.work-gallery__item:hover img {
  transform: scale(1.045);
  filter: brightness(1.08);
}

@media (min-width: 981px) {
  .work-gallery__item:nth-last-child(2) {
    grid-column: 2;
  }
}

.social-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: min(520px, 100%);
  margin-inline: auto;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 150px;
  padding: 1.4rem;
  border: 1px solid rgba(245, 31, 47, 0.45);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 24%, rgba(245, 31, 47, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  color: var(--text);
  font-weight: 800;
  font-size: 1.28rem;
  box-shadow: 0 0 0 0 rgba(245, 31, 47, 0.34), 0 22px 62px rgba(0, 0, 0, 0.28);
  animation: instagram-pulse 2.4s ease-in-out infinite;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(245, 31, 47, 0.55);
  background: linear-gradient(135deg, rgba(245, 31, 47, 0.24), rgba(255, 255, 255, 0.04));
}

.social-links svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.conversion {
  padding: clamp(76px, 10vw, 132px) max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(130deg, rgba(245, 31, 47, 0.18), rgba(0, 0, 0, 0) 42%),
    linear-gradient(180deg, #050505, #090909);
}

.conversion__inner {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4.7rem);
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 31, 47, 0.16), transparent 34%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.conversion__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.95), rgba(12, 12, 12, 0.78) 62%, rgba(12, 12, 12, 0.58));
  z-index: 0;
}

.conversion__inner > * {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.conversion h2 {
  margin-bottom: 1rem;
}

.conversion p {
  margin-bottom: 2rem;
}

.booking-form {
  display: grid;
  gap: 1rem;
  width: min(760px, 100%);
}

.booking-form__trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.booking-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
}

.booking-form__date-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
}

.booking-form__date-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.booking-form__date-wrap label {
  gap: 0.45rem;
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.booking-form label span {
  color: rgba(248, 248, 245, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.44);
  color: var(--text);
  font: inherit;
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-form select {
  appearance: auto;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(245, 31, 47, 0.78);
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 0 0 4px rgba(245, 31, 47, 0.14);
}

.booking-form input:invalid,
.booking-form select:invalid {
  border-color: rgba(245, 31, 47, 0.46);
}

.booking-form small {
  color: rgba(248, 248, 245, 0.58);
  font-size: 0.78rem;
  line-height: 1.4;
}

.booking-form__full {
  grid-column: 1 / -1;
}

.booking-form__error {
  min-height: 1.3em;
  margin: 0;
  color: #ff8d96;
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-form__error.is-success {
  color: #9effb6;
}

.booking-form .btn {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.booking-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.conversion .contact-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 1rem 0 0;
  color: rgba(248, 248, 245, 0.8);
  font-size: 0.95rem;
}

.conversion .contact-note a {
  transition: color 180ms ease;
}

.conversion .contact-note a:hover {
  color: var(--accent);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.6rem max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #020202;
  font-size: 0.9rem;
}

.site-footer img {
  width: 138px;
  height: 50px;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--text);
  font-weight: 700;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@keyframes slow-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0.001deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(0.001deg);
  }
}

@keyframes instagram-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(245, 31, 47, 0.32), 0 22px 62px rgba(0, 0, 0, 0.28);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 0 0 14px rgba(245, 31, 47, 0), 0 28px 78px rgba(245, 31, 47, 0.16);
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .hero__content {
    width: min(980px, 100%);
  }

  .hero__metrics {
    grid-template-columns:
      minmax(120px, 0.8fr)
      minmax(145px, 0.85fr)
      minmax(130px, 0.85fr)
      minmax(220px, 1.35fr);
  }

  .hero__metrics dt {
    font-size: 1.78rem;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .hero__lead {
    font-size: 1.14rem;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .section--approach,
  .social-links {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-card__media {
    min-height: 300px;
  }

  .approach__copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .eyebrow {
    font-size: 0.78rem;
  }

  h1 {
    font-size: 2.68rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  h3 {
    font-size: 1.22rem;
  }

  .section__intro p:not(.eyebrow),
  .approach__copy p,
  .conversion p {
    font-size: 1rem;
  }

  .hero__metrics dt {
    font-size: 1.42rem;
  }

  .site-header {
    width: min(100% - 20px, var(--max));
    margin-top: 10px;
    padding: 0.55rem;
    gap: 0.7rem;
  }

  .brand__word {
    display: none;
  }

  .header-cta {
    padding-inline: 0.78rem;
    font-size: 0.78rem;
  }

  .hero {
    padding: 108px 18px 54px;
    background-position: 58% center;
  }

  body::before,
  .hero__grain {
    display: none;
  }

  .hero__actions,
  .hero__metrics {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    display: grid;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .section,
  .conversion {
    padding-inline: 18px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card__media {
    min-height: 220px;
  }

  .timeline li {
    grid-template-columns: 48px 1fr;
  }

  .social-links a {
    min-height: 104px;
  }

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

  .work-gallery__item {
    aspect-ratio: 4 / 3;
  }

  .conversion__inner {
    padding: 1.5rem;
    background:
      radial-gradient(circle at 82% 18%, rgba(245, 31, 47, 0.14), transparent 36%),
      linear-gradient(110deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  }

  .booking-form__grid {
    grid-template-columns: 1fr;
  }

  .booking-form__date-row {
    grid-template-columns: 1fr;
  }

  .booking-form .btn {
    justify-self: stretch;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.34rem;
  }
}

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

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

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lb-overlay--open {
  opacity: 1;
  pointer-events: all;
}

.lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 72px 80px;
  box-sizing: border-box;
}

.lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lb-img--loaded {
  opacity: 1;
  transform: scale(1);
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.18s ease;
  z-index: 10000;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.08);
}

.lb-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
}

.lb-close svg,
.lb-prev svg,
.lb-next svg {
  width: 20px;
  height: 20px;
}

.lb-prev,
.lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}

.lb-prev:hover,
.lb-next:hover {
  transform: translateY(-50%) scale(1.08);
}

.lb-prev {
  left: 16px;
}

.lb-next {
  right: 16px;
}

.lb-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  pointer-events: none;
}

@media (max-width: 640px) {
  .lb-img-wrap {
    padding: 60px 16px;
  }

  .lb-prev {
    left: 8px;
  }

  .lb-next {
    right: 8px;
  }

  .lb-prev,
  .lb-next {
    width: 42px;
    height: 42px;
  }
}
