:root {
  --bg: #0a0a0c;
  --bg-2: #121216;
  --surface: #1a1a20;
  --border: rgba(255, 255, 255, 0.08);
  --text: #ededed;
  --muted: #8a8a94;
  --accent: #ff6b1a;
  --accent-2: #ffb800;
  --gradient: linear-gradient(135deg, #ff6b1a 0%, #ffb800 50%, #3b82f6 100%);
  --radius: 18px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --page-pad-x: 40px;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; color: inherit; font-family: inherit; cursor: none; }

.bg-noise,
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-noise {
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-grid {
  opacity: .35;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.cursor-ring { width: 36px; height: 36px; border: 1px solid #fff; border-radius: 50%; }
.cursor-ring.hover { width: 60px; height: 60px; background: rgba(255, 107, 26, .15); border-color: var(--accent); }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: max(18px, env(safe-area-inset-top, 0px));
  padding-bottom: 18px;
  padding-left: max(var(--page-pad-x), env(safe-area-inset-left, 0px));
  padding-right: max(var(--page-pad-x), env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(10, 10, 12, .94);
  border-bottom: 1px solid var(--border);
}

.nav.scrolled {
  padding-top: max(12px, env(safe-area-inset-top, 0px));
  padding-bottom: 12px;
}
body.nav-open .nav {
  z-index: 300;
  background: #0a0a0c;
}
.logo { font-weight: 900; font-size: 22px; display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  color: #000;
}

.logo span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.burger {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  font-size: 20px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  z-index: 110;
}
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-link { padding: 10px 18px; border-radius: 10px; color: var(--muted); font-size: 14px; transition: color .25s var(--ease), background .25s var(--ease); }
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text); background: rgba(255, 255, 255, .06); }

.nav-cta,
.btn-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 184, 0, .55);
  background: linear-gradient(135deg, #ff6b1a 0%, #ff9a1a 45%, #ffb800 100%);
  color: #0a0a0c;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow:
    0 0 0 1px rgba(255, 107, 26, .25),
    0 0 18px rgba(255, 107, 26, .45),
    0 0 36px rgba(255, 184, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .35);
  animation: neon-pulse 2.4s ease-in-out infinite;
  transition: transform .25s var(--ease), filter .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
}
.nav-cta::before,
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .45) 50%, transparent 70%);
  transform: translateX(-120%) rotate(8deg);
  transition: transform .7s var(--ease);
  z-index: -1;
  pointer-events: none;
}
.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 184, 0, .5),
    0 0 24px rgba(255, 107, 26, .7),
    0 0 48px rgba(255, 184, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .45);
  animation-duration: 1.4s;
}
.nav-cta:hover::before,
.btn-primary:hover::before { transform: translateX(120%) rotate(8deg); }
.nav-cta:active,
.btn-primary:active {
  transform: translateY(0);
  filter: brightness(.98);
}

@keyframes neon-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255, 107, 26, .25),
      0 0 14px rgba(255, 107, 26, .35),
      0 0 28px rgba(255, 184, 0, .16),
      inset 0 1px 0 rgba(255, 255, 255, .35);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 184, 0, .55),
      0 0 22px rgba(255, 107, 26, .75),
      0 0 48px rgba(255, 184, 0, .4),
      0 0 72px rgba(255, 107, 26, .2),
      inset 0 1px 0 rgba(255, 255, 255, .45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta,
  .btn-primary { animation: none; }
  .nav-cta::before,
  .btn-primary::before { display: none; }
}

main { padding-top: 90px; min-height: 100vh; position: relative; z-index: 1; }
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: max(var(--page-pad-x), env(safe-area-inset-left, 0px));
  padding-right: max(var(--page-pad-x), env(safe-area-inset-right, 0px));
}

.hero {
  padding-top: 80px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  gap: 8px;
  border-radius: 100px;
  padding: 8px 16px;
  background: rgba(255, 107, 26, .1);
  border: 1px solid rgba(255, 107, 26, .3);
  color: var(--accent-2);
  font-size: 13px;
  margin-bottom: 24px;
}

.hero h1 { font-size: clamp(44px, 6vw, 88px); line-height: .95; letter-spacing: -2px; margin-bottom: 24px; font-weight: 900; }
.hero h1 .accent,
.accent { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero h1 .outline { -webkit-text-stroke: 1px var(--text); color: transparent; }
.hero p { color: var(--muted); font-size: 18px; max-width: 560px; margin-bottom: 34px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  padding: 16px 26px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-ghost {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 184, 0, .28);
  color: var(--text);
  box-shadow: 0 0 0 0 rgba(255, 107, 26, 0);
}
.btn-ghost:hover {
  border-color: rgba(255, 184, 0, .55);
  background: rgba(255, 107, 26, .1);
  box-shadow: 0 0 18px rgba(255, 107, 26, .25);
  transform: translateY(-2px);
}

.hero-stats { display: flex; gap: 34px; margin-top: 56px; padding-top: 34px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.stat-num { font-size: 34px; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.hero-visual { position: relative; aspect-ratio: 1/1; max-width: 560px; justify-self: end; }
.hero-img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}

.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  padding: 14px 18px;
  background: rgba(20, 20, 25, .88);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-float-card.c1 { top: 20px; left: -34px; }
.hero-float-card.c2 { bottom: 20px; right: -28px; }
.float-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--gradient); color: #000; }
.float-sub { color: var(--muted); font-size: 12px; }

.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: scroll 30s linear infinite; }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 60px; color: var(--muted); font-size: 36px; font-weight: 900; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-head { margin-bottom: 60px; display: flex; justify-content: space-between; align-items: end; gap: 40px; flex-wrap: wrap; }
.section-tag { color: var(--accent-2); text-transform: uppercase; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.section-title { font-size: clamp(34px, 5vw, 62px); line-height: 1; font-weight: 900; letter-spacing: -1.5px; max-width: 700px; }
.section-desc { color: var(--muted); max-width: 440px; font-size: 16px; }

.about-lead {
  max-width: 920px;
  margin: -20px 0 48px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.about-lead p + p { margin-top: 14px; }

.content-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin-top: 8px;
}
.content-list li {
  position: relative;
  padding: 14px 16px 14px 36px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
}
.content-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.numbered-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: montage;
}
.numbered-list > li {
  counter-increment: montage;
  padding: 18px 20px 18px 64px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}
.numbered-list > li::before {
  content: counter(montage);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 107, 26, .12);
  color: var(--accent-2);
}
.numbered-list .sub-list {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.numbered-list .sub-list li {
  padding-left: 14px;
  position: relative;
  color: var(--muted);
  font-size: 14px;
}
.numbered-list .sub-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.service-card {
  position: relative;
  min-height: 280px;
  height: 100%;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card.featured {
  grid-column: auto;
  background: linear-gradient(135deg, rgba(255, 107, 26, .08), rgba(59, 130, 246, .08));
}
.service-num { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.service-icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 24px; background: rgba(255, 107, 26, .1); border: 1px solid rgba(255, 107, 26, .2); margin-bottom: 20px; }
.service-title { font-size: 24px; margin-bottom: 10px; font-weight: 800; }
.service-desc { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-list li { font-size: 14px; display: flex; gap: 10px; align-items: center; }
.service-list li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255, 255, 255, .04);
}

.filter-btn.active { background: var(--text); color: #000; border-color: var(--text); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: none;
  aspect-ratio: 4 / 3;
}
.gallery-item--collapsed { display: none !important; }
.gallery-more {
  width: 100%;
  margin-top: 16px;
}
.gallery-hint {
  display: none;
  color: var(--muted);
  font-size: 13px;
  margin: -8px 0 16px;
}

.gallery-item.tall,
.gallery-item.wide {
  grid-column: auto;
  grid-row: auto;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, .9), transparent 60%);
}

.gallery-cat { color: var(--accent-2); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.gallery-title { font-size: 18px; font-weight: 700; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step { padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.process-num { font-size: 56px; opacity: .4; font-weight: 900; margin-bottom: 16px; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.process-step p { color: var(--muted); font-size: 14px; }

.form-group label { display: block; margin-bottom: 8px; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--bg-2);
  font-size: 15px;
  font-family: inherit;
}

.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-card { display: flex; gap: 18px; padding: 24px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(255, 107, 26, .1); border: 1px solid rgba(255, 107, 26, .2); }
.contact-label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.contact-value { font-size: 17px; font-weight: 600; }
.contact-sub { color: var(--muted); font-size: 13px; margin-top: 4px; }

.contact-form { padding: 34px; border-radius: 20px; border: 1px solid var(--border); background: var(--surface); }
.contact-form h3 { font-size: 28px; margin-bottom: 8px; }
.contact-form p { color: var(--muted); margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}

.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 34px; margin-bottom: 34px; }
.footer-col h4 { color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 14px; }
.footer-about { margin-top: 14px; color: var(--muted); max-width: 320px; font-size: 14px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .95);
  backdrop-filter: blur(20px);
  padding: 60px;
}

.lightbox.active { display: flex; }
.lightbox-content img { max-width: 90vw; max-height: 85vh; border-radius: 12px; object-fit: contain; }
.lightbox-close,
.lightbox-nav {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .1);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-nav.prev { top: 50%; left: 20px; transform: translateY(-50%); }
.lightbox-nav.next { top: 50%; right: 20px; transform: translateY(-50%); }
.lightbox-counter { position: fixed; top: 30px; left: 30px; color: var(--muted); }
.lightbox-info { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); text-align: center; }

.reveal { opacity: 0; transform: translateY(30px); transition: all .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  :root { --page-pad-x: 28px; }
  .nav {
    padding-left: var(--page-pad-x);
    padding-right: var(--page-pad-x);
  }
  .nav.scrolled {
    padding-left: var(--page-pad-x);
    padding-right: var(--page-pad-x);
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 80px;
  }
  .hero-visual { justify-self: center; max-width: 420px; width: 100%; }
  .hero-float-card.c1 { left: 8px; top: 12px; }
  .hero-float-card.c2 { right: 8px; bottom: 12px; }
  .services-grid,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .marquee-item { font-size: 28px; }
}

@media (max-width: 640px) {
  :root { --page-pad-x: 20px; }
  body { cursor: auto; }
  body.nav-open { overflow: hidden; touch-action: none; }
  .cursor-dot,
  .cursor-ring { display: none; }
  button,
  a,
  .gallery-item,
  .service-card { cursor: pointer; }

  .nav {
    padding-top: max(12px, env(safe-area-inset-top));
    padding-bottom: 12px;
    padding-left: max(var(--page-pad-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--page-pad-x), env(safe-area-inset-right, 0px));
  }
  .nav.scrolled {
    padding-top: max(12px, env(safe-area-inset-top));
    padding-bottom: 12px;
    padding-left: max(var(--page-pad-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--page-pad-x), env(safe-area-inset-right, 0px));
  }
  .burger {
    display: inline-flex;
    position: relative;
    z-index: 320;
  }
  .logo { position: relative; z-index: 320; font-size: 18px; }

  .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
    position: fixed;
    inset: 0;
    z-index: 310;
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
    padding-bottom: max(28px, env(safe-area-inset-bottom, 0px));
    padding-left: max(var(--page-pad-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--page-pad-x), env(safe-area-inset-right, 0px));
    background: #0a0a0c;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-link,
  .nav-cta {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    border-radius: 14px;
  }
  .nav-link {
    color: var(--text);
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
  }
  .nav-link.active {
    border-color: rgba(255, 184, 0, .45);
    background: rgba(255, 107, 26, .12);
  }

  main { padding-top: 76px; }
  .hero {
    padding-top: 28px;
    padding-bottom: 56px;
    gap: 28px;
  }
  .hero h1 { font-size: clamp(34px, 11vw, 48px); letter-spacing: -1px; }
  .hero p { font-size: 16px; margin-bottom: 24px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-float-card { display: none; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    margin-top: 28px;
    padding-top: 24px;
  }
  .stat-num { font-size: 22px; }
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section-head { margin-bottom: 28px; gap: 12px; }
  .section-title { letter-spacing: -1px; }
  .services-grid,
  .process-grid { grid-template-columns: 1fr; }
  .service-card {
    min-height: 0;
    padding: 20px;
  }
  .service-title { font-size: 20px; }

  .gallery-hint { display: block; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }
  .gallery-overlay { padding: 12px; }
  .gallery-title { font-size: 14px; }
  .gallery-cat { font-size: 10px; }

  .lightbox { padding: 20px; }
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
  .lightbox-close,
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
  .footer {
    padding-top: 40px;
    padding-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
  }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 20px; }
  .contact-card { padding: 18px; }
  .marquee-item { font-size: 20px; gap: 24px; }
  .marquee-track { gap: 24px; }
  .content-list { grid-template-columns: 1fr; gap: 10px; }
  .numbered-list > li { padding: 16px 16px 16px 56px; font-size: 14px; }
  .about-lead { margin: -4px 0 28px; font-size: 15px; }
}
