:root {
  --bg: #09090a;
  --bg-soft: #151518;
  --ink: #151515;
  --text: #f7f3ee;
  --muted: #c8c1ba;
  --paper: #f5f1ea;
  --paper-strong: #ffffff;
  --red: #d7192a;
  --red-dark: #8e101b;
  --steel: #343942;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
[id] {
  scroll-margin-top: 140px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--text);
  background: var(--red);
  border-radius: var(--radius);
  font-weight: 700;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #ff6b4a);
  box-shadow: 0 0 18px rgba(215, 25, 42, 0.7);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(9, 9, 10, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: var(--container);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 38px;
  padding: 8px 20px;
  color: var(--paper-strong);
  background: linear-gradient(135deg, var(--bg), var(--red-dark));
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.header-info span,
.hero-lead,
.section-heading,
.schedule-panel,
.schedule-panel strong,
.contact-list strong {
  overflow-wrap: anywhere;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .nav-social {
  justify-content: center;
  width: 42px;
  min-width: 42px;
  padding: 6px;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.nav-links .nav-social:hover {
  background: rgba(215, 25, 42, 0.18);
  border-color: rgba(215, 25, 42, 0.58);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

.section {
  padding: 96px 0;
}

.section-dark {
  color: var(--text);
  background: var(--bg);
}

.section-muted {
  background: #e8e1d8;
}

.hero {
  position: relative;
  min-height: 88svh;
  padding: 148px 0 94px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 9, 10, 0.97) 0%, rgba(9, 9, 10, 0.86) 38%, rgba(9, 9, 10, 0.58) 72%, rgba(9, 9, 10, 0.74) 100%),
    radial-gradient(circle at 80% 22%, rgba(215, 25, 42, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(9, 9, 10, 0.18), rgba(9, 9, 10, 0.74));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #0f0f11;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(215, 25, 42, 0.22), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.74), transparent 48%);
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  opacity: 0.9;
  filter: brightness(0.78) contrast(1.08) saturate(0.9) blur(1.4px);
  transform: scaleX(-1) scale(1.025);
}

.hero-content {
  position: relative;
  max-width: 760px;
  margin-inline: max(20px, calc((100vw - 1120px) / 2)) auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 16px;
  max-width: 100%;
  font-size: clamp(4.5rem, 18vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
  white-space: nowrap;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--paper-strong);
  font-size: clamp(1.14rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  font-weight: 800;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  color: var(--text);
  background: var(--red);
  box-shadow: 0 18px 40px rgba(215, 25, 42, 0.28);
}

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

.btn-dark {
  color: var(--text);
  background: var(--bg);
}

.btn-dark:hover {
  background: var(--steel);
}

.btn-instagram {
  width: 56px;
  min-width: 56px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-instagram.btn-dark {
  background: transparent;
}

.btn-instagram.btn-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(215, 25, 42, 0.58);
}

.instagram-logo-button {
  overflow: visible;
}

.instagram-logo-button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 0;
  filter: invert(1);
  opacity: 0.9;
  transition: opacity 180ms ease, transform 180ms ease;
}

.instagram-logo-button:hover img {
  opacity: 1;
  transform: scale(1.08);
}

.btn-instagram img {
  width: 32px;
  height: 32px;
}

.section-heading p:not(.eyebrow) {
  color: #514d49;
  font-size: 1.05rem;
}

.section-heading .eyebrow {
  color: #5b5550;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.section-dark .section-heading .eyebrow {
  color: #a9a19a;
}

.service-card,
.step,
.contact-panel {
  border-radius: var(--radius);
}

.service-card p,
.step p {
  margin-bottom: 0;
  color: #5b5550;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

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

.schedule-panel {
  display: grid;
  gap: 6px;
  margin: -10px 0 28px;
  padding: 22px 24px;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg), var(--red-dark));
  border: 1px solid rgba(215, 25, 42, 0.38);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(21, 21, 21, 0.12);
}

.schedule-panel span {
  color: #ff8b94;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-panel strong {
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.15;
}

.schedule-panel p {
  margin: 0;
  color: var(--muted);
}

.service-card {
  min-height: 228px;
  padding: 26px;
  background: var(--paper-strong);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 16px 34px rgba(21, 21, 21, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 25, 42, 0.38);
  box-shadow: 0 24px 48px rgba(21, 21, 21, 0.12);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg), var(--red-dark));
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
}

.gallery {
  background:
    linear-gradient(180deg, #080809, #151518 68%, #0b0b0d);
}

.gallery-frame {
  position: relative;
  overflow: visible;
  transition: max-height 260ms ease;
}

.gallery-frame.is-managed {
  max-height: clamp(540px, 74svh, 780px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: rgba(215, 25, 42, 0.78) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.gallery-frame.is-managed.is-expanded {
  max-height: min(1100px, 92svh);
}

.gallery-frame.is-managed.is-overflowing {
  padding-right: 8px;
  mask-image: linear-gradient(180deg, #000 calc(100% - 46px), transparent);
}

.gallery-frame.is-managed.is-expanded.is-overflowing {
  mask-image: linear-gradient(180deg, #000 calc(100% - 26px), transparent);
}

.gallery-frame::-webkit-scrollbar {
  width: 8px;
}

.gallery-frame::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.gallery-frame::-webkit-scrollbar-thumb {
  background: rgba(215, 25, 42, 0.78);
  border-radius: 999px;
}

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

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.48));
  opacity: 0;
  transition: opacity 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.gallery-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.gallery-toggle:hover {
  transform: translateY(-2px);
  background: rgba(215, 25, 42, 0.24);
  border-color: rgba(215, 25, 42, 0.64);
}

.gallery-toggle[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  padding: 76px 28px 34px;
  color: var(--text);
  background: rgba(5, 5, 6, 0.92);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-figure {
  margin: 0;
  min-width: 0;
}

.lightbox-figure img {
  width: min(100%, 1040px);
  max-height: calc(100svh - 190px);
  margin-inline: auto;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.lightbox-close,
.lightbox-nav {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  font-size: 3rem;
  line-height: 1;
}

.lightbox-prev {
  justify-self: end;
}

.lightbox-next {
  justify-self: start;
}

body.lightbox-open {
  overflow: hidden;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.training-start {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid rgba(21, 21, 21, 0.12);
}

.training-start .section-heading {
  margin-bottom: 28px;
}

.step {
  position: relative;
  padding: 28px 22px;
  background: var(--paper-strong);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--text);
  background: var(--red);
  border-radius: 6px;
  font-weight: 900;
}

.contact {
  background:
    linear-gradient(120deg, rgba(215, 25, 42, 0.08), transparent 36%),
    var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: stretch;
}

.contact-panel {
  padding: 36px;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg), #232328);
  box-shadow: var(--shadow);
}

.contact-panel p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  font-style: normal;
}

.contact-list a,
.contact-list p {
  display: block;
  margin: 0;
  padding: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: background 180ms ease, border-color 180ms ease;
}

.contact-list a:hover {
  background: rgba(215, 25, 42, 0.22);
  border-color: rgba(215, 25, 42, 0.58);
}

.contact-list span {
  display: block;
  color: #ff8b94;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-list strong {
  display: block;
  overflow-wrap: anywhere;
}

.map-wrap {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: var(--radius);
  background: var(--steel);
  box-shadow: 0 18px 44px rgba(21, 21, 21, 0.12);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: grayscale(0.82) contrast(1.08);
}

.site-footer {
  color: var(--muted);
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
}

.footer-content p {
  margin: 0;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-meta a {
  color: var(--text);
  transition: color 180ms ease;
}

.footer-meta a:hover {
  color: #ff6b4a;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

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

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

@media (max-width: 920px) {
  :root {
    --container: min(720px, calc(100% - 32px));
  }

  .menu-toggle {
    position: relative;
    z-index: 121;
    display: inline-block;
    flex: 0 0 46px;
    background: rgba(215, 25, 42, 0.2);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .nav-links {
    position: fixed;
    top: 114px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 2px;
    padding: 12px;
    background: rgba(9, 9, 10, 0.97);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    min-height: 48px;
    padding: 12px;
  }

  .nav-links .nav-social {
    width: 48px;
    justify-content: center;
    padding: 6px;
  }

  .hero {
    display: block;
    min-height: 86svh;
    padding-top: 132px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(9, 9, 10, 0.92) 0%, rgba(9, 9, 10, 0.82) 58%, rgba(9, 9, 10, 0.66) 100%),
      radial-gradient(circle at 80% 18%, rgba(215, 25, 42, 0.22), transparent 34%);
  }

  .hero-bg img {
    object-position: 58% center;
    filter: brightness(0.7) contrast(1.08) saturate(0.86) blur(1.2px);
  }

  .hero-content {
    width: var(--container);
    margin-inline: auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

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

@media (max-width: 640px) {
  :root {
    --container: min(520px, calc(100% - 28px));
  }

  .nav {
    min-height: 70px;
  }

  .header-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px 14px;
    padding: 8px 14px;
    font-size: 0.78rem;
    text-align: center;
  }

  .header-info span {
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 40px;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .nav-links {
    top: 154px;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding: 152px 0 44px;
  }

  .hero-actions {
    margin-bottom: 0;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.05rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .btn-instagram {
    width: 56px;
    justify-self: start;
  }

  .service-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .schedule-panel {
    padding: 20px;
  }

  .schedule-panel strong {
    font-size: clamp(1.12rem, 6vw, 1.35rem);
  }

  .gallery-frame,
  .gallery-frame.is-managed,
  .gallery-frame.is-managed.is-expanded {
    width: 100%;
    margin-right: 0;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 12px;
    mask-image: none;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-frame::-webkit-scrollbar {
    display: none;
  }

  .gallery-frame.is-managed.is-overflowing,
  .gallery-frame.is-managed.is-expanded.is-overflowing {
    padding-right: 0;
    mask-image: none;
  }

  .gallery-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
  }

  .gallery-item {
    flex: 0 0 min(76%, 300px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .gallery-item img {
    transform: none;
  }

  .gallery-actions {
    display: none;
  }

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

  .contact-panel {
    padding: 26px 20px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 380px;
  }

  .gallery-lightbox {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 76px 14px 24px;
  }

  .lightbox-figure img {
    max-height: calc(100svh - 180px);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    font-size: 2.4rem;
    transform: translateY(-50%);
  }

  .lightbox-nav:hover {
    transform: translateY(-52%);
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 0;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}
