    *, *::before, *::after { box-sizing: border-box; }
    :root {
      --ink: #15171a;
      --muted: #626973;
      --paper: #f7f4ee;
      --panel: #ffffff;
      --line: rgba(21, 23, 26, .12);
      --teal: #0f766e;
      --teal-dark: #0b4f4a;
      --amber: #d79521;
      --clay: #b75b3d;
      --shadow: 0 22px 70px rgba(21, 23, 26, .14);
      --radius: 8px;
      --ease: .22s ease;
    }

    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.55;
    }

    body.nav-open { overflow: hidden; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }
    .container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

    .topbar {
      position: fixed;
      inset: 0 0 auto;
      z-index: 20;
      border-bottom: 1px solid rgba(255, 255, 255, .18);
      background: rgba(21, 23, 26, .72);
      color: #fff;
      backdrop-filter: blur(18px);
    }

    .nav {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 850;
      letter-spacing: .02em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .brand-mark,
    .footer-mark {
      width: 44px;
      height: 44px;
      display: block;
      border-radius: 12px;
      object-fit: contain;
      box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-links a {
      padding: 10px 12px;
      border-radius: 999px;
      color: rgba(255, 255, 255, .82);
      font-size: 14px;
      transition: background .2s, color .2s;
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, .12);
      color: #fff;
    }

    .menu-btn {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 50%;
      background: rgba(255, 255, 255, .12);
      color: #fff;
      cursor: pointer;
    }

    .hero {
      min-height: 82vh;
      position: relative;
      display: grid;
      align-items: end;
      overflow: hidden;
      color: #fff;
      background: #15171a;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .48) 43%, rgba(0, 0, 0, .16) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .70)),
        url("hero.jpg") center / cover no-repeat;
      transform: scale(1.02);
    }

    .hero .container {
      position: relative;
      padding: 108px 0 52px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: 999px;
      background: rgba(255, 255, 255, .11);
      color: rgba(255, 255, 255, .88);
      font-size: 13px;
      font-weight: 750;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 0 5px rgba(215, 149, 33, .22);
    }

    h1 {
      max-width: 820px;
      margin: 0;
      font-size: clamp(38px, 5vw, 64px);
      line-height: .95;
      letter-spacing: 0;
    }

    .lead {
      max-width: 660px;
      margin: 24px 0 0;
      color: rgba(255, 255, 255, .82);
      font-size: clamp(18px, 2.2vw, 23px);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 18px;
      border: 1px solid transparent;
      border-radius: 999px;
      background: var(--amber);
      color: #15171a;
      font-weight: 800;
      transition: transform .2s, box-shadow .2s, background .2s;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
    }

    .btn.pulse {
      animation: ctaPulse 2.3s ease-in-out infinite;
      box-shadow: 0 0 0 0 rgba(215, 149, 33, .55);
    }

    @keyframes ctaPulse {
      0%, 100% {
        transform: translateY(0);
        box-shadow: 0 0 0 0 rgba(215, 149, 33, .48), 0 12px 28px rgba(215, 149, 33, .18);
      }
      50% {
        transform: translateY(-2px);
        box-shadow: 0 0 0 10px rgba(215, 149, 33, 0), 0 18px 34px rgba(215, 149, 33, .35);
      }
    }

    .btn.secondary {
      border-color: rgba(255, 255, 255, .28);
      background: rgba(255, 255, 255, .12);
      color: #fff;
      backdrop-filter: blur(12px);
    }

    .hero-strip {
      width: min(1160px, calc(100% - 32px));
      position: relative;
      z-index: 2;
      margin: -52px auto 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .24);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .92);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

    .strip-item {
      padding: 22px;
      border-right: 1px solid var(--line);
    }

    .strip-item:last-child { border-right: 0; }
    .strip-item strong { display: block; font-size: 25px; line-height: 1; }
    .strip-item span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; }

    section { padding: 92px 0; scroll-margin-top: 96px; }
    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(280px, .55fr);
      gap: 42px;
      align-items: end;
      margin-bottom: 34px;
    }

    .kicker {
      margin: 0 0 10px;
      color: var(--teal);
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: .10em;
      font-size: 12px;
    }

    h2 {
      margin: 0;
      font-size: clamp(32px, 4vw, 54px);
      line-height: 1;
      letter-spacing: 0;
    }

    .copy h2 {
      max-width: 720px;
      font-size: clamp(30px, 3.4vw, 48px);
      line-height: 1.04;
      overflow-wrap: anywhere;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
    }

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

    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: 0 14px 40px rgba(21, 23, 26, .06);
    }

    .service {
      min-height: 315px;
      padding: 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #e7f2ef;
      color: var(--teal);
      font-weight: 900;
    }

    h3 {
      margin: 22px 0 10px;
      font-size: 23px;
      line-height: 1.14;
      letter-spacing: 0;
    }

    .service p, .copy p, .price p { color: var(--muted); margin: 0; }
    .service ul, .price ul {
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
      color: var(--muted);
      font-size: 15px;
    }

    .service li, .price li {
      padding: 8px 0;
      border-top: 1px solid rgba(21, 23, 26, .08);
    }

    .portfolio {
      background: #e8ece6;
      border-block: 1px solid rgba(21, 23, 26, .08);
    }

    .portfolio-grid {
      display: flex;
      overflow-x: auto;
      gap: 10px;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scrollbar-width: none;
      padding: 8px 0;
      -webkit-overflow-scrolling: touch;
      position: relative;
    }

    .portfolio-grid::-webkit-scrollbar {
      display: none;
    }

    .shot {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid rgba(21, 23, 26, .12);
      background: linear-gradient(135deg, #1b4d47, #b75b3d);
      color: #fff;
      cursor: pointer;
      transition: transform .3s ease, box-shadow .3s ease;
      flex: 0 0 min(300px, 75vw);
      scroll-snap-align: start;
      scroll-snap-stop: always;
    }

    .shot:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
    }

    .shot {
      aspect-ratio: 16 / 9;
    }

    .shot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      user-select: none;
      -webkit-user-drag: none;
      transition: transform .3s ease;
    }

    .shot:hover img {
      transform: scale(1.04);
    }

    .shot .fallback {
      width: 100%;
      height: 100%;
      display: grid;
      align-content: end;
      gap: 10px;
      padding: 20px;
      background:
        linear-gradient(180deg, transparent, rgba(0, 0, 0, .62)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .22), transparent 28%),
        linear-gradient(135deg, #0f766e, #b75b3d);
    }

    .shot strong { font-size: 19px; }
    .shot span { color: rgba(255, 255, 255, .78); font-size: 14px; }

    .shot::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 44%;
      background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .54));
      pointer-events: none;
      opacity: 0;
      transition: opacity .3s ease;
    }

    .shot:hover::after {
      opacity: 1;
    }

    .shot-caption,
    .media-type,
    .play-icon {
      position: absolute;
      z-index: 2;
    }

    .shot-caption {
      display: none;
    }

    .media-type {
      top: 12px;
      left: 12px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .95);
      color: var(--ink);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .05em;
      backdrop-filter: blur(8px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
    }

    .video-shot {
      display: grid;
      place-items: center;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .video-shot.vertical {
      aspect-ratio: 9 / 16;
    }

    .video-shot.wide {
      aspect-ratio: 16 / 9;
    }

    .play-icon {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, .92);
      color: var(--ink);
      box-shadow: 0 14px 38px rgba(0, 0, 0, .24);
      transition: transform .2s ease, background .2s ease;
    }

    .shot:hover .play-icon {
      transform: scale(1.12);
      background: #fff;
    }

    .play-icon svg {
      width: 24px;
      height: 24px;
      margin-left: 3px;
      fill: currentColor;
    }

    .service-area {
      margin-top: 18px;
      padding: 22px;
      display: grid;
      grid-template-columns: .35fr 1fr;
      gap: 22px;
      align-items: start;
    }

    .city-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .city-list span {
      padding: 7px 10px;
      border: 1px solid rgba(21, 23, 26, .12);
      border-radius: 999px;
      background: #fff;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .about {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 50px;
      align-items: center;
    }

    .device {
      min-height: 500px;
      padding: 28px;
      display: grid;
      align-content: end;
      color: #fff;
      background:
        linear-gradient(180deg, rgba(21, 23, 26, .16), rgba(21, 23, 26, .86)),
        url("hero.jpg") center / cover no-repeat;
    }

    .device h3 { font-size: 34px; margin: 0 0 10px; }
    .device p { margin: 0; color: rgba(255, 255, 255, .78); }

    .specs {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 26px;
    }

    .spec {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .spec small {
      display: block;
      color: var(--teal);
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .spec strong {
      display: block;
      margin-top: 7px;
      font-size: 18px;
    }

    .prices {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      align-items: stretch;
    }

    .price {
      padding: 28px;
      position: relative;
    }

    .price.featured {
      border-color: rgba(215, 149, 33, .95);
      box-shadow: 0 0 0 3px rgba(215, 149, 33, .55), 0 0 48px rgba(215, 149, 33, .55), var(--shadow);
      animation: featuredPulse 3.4s ease-in-out infinite;
    }

    @keyframes featuredPulse {
      0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 0 3px rgba(215, 149, 33, .62), 0 0 42px rgba(215, 149, 33, .48), var(--shadow);
      }
      50% {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 0 0 7px rgba(215, 149, 33, .20), 0 0 62px rgba(215, 149, 33, .55), var(--shadow);
      }
    }

    .badge {
      display: inline-flex;
      margin-bottom: 18px;
      padding: 7px 10px;
      border-radius: 999px;
      background: #e7f2ef;
      color: var(--teal-dark);
      font-size: 12px;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .amount {
      margin: 22px 0 10px;
      font-size: 43px;
      line-height: 1;
      font-weight: 900;
    }

    .amount small { font-size: 15px; color: var(--muted); font-weight: 650; }

    .contact {
      display: grid;
      grid-template-columns: .75fr 1fr;
      gap: 16px;
    }

    .contact-card {
      padding: 28px;
    }

    .contact-list {
      display: grid;
      gap: 12px;
      margin-top: 22px;
    }

    .contact-row {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 13px;
      align-items: center;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .contact-row.phone {
      border-color: rgba(215, 149, 33, .55);
      background: linear-gradient(135deg, #fff8e7, #ffffff);
      box-shadow: 0 14px 34px rgba(215, 149, 33, .18);
    }

    .contact-row.phone b {
      background: var(--amber);
      color: var(--ink);
    }

    .contact-row.phone strong {
      color: var(--ink);
      font-size: 18px;
    }

    .contact-row b {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #e7f2ef;
      color: var(--teal);
      font-size: 13px;
    }

    .contact-row small {
      display: block;
      color: var(--muted);
      font-size: 13px;
    }

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

    .contact-row.social {
      color: var(--ink);
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 18px;
    }

    .social-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: #fff;
      color: var(--teal);
      font-weight: 900;
      transition: transform .2s, border-color .2s, color .2s;
    }

    .social-icon svg {
      width: 23px;
      height: 23px;
    }

    .social-icon:hover {
      transform: translateY(-2px);
      border-color: rgba(21, 23, 26, .22);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .faq-item {
      padding: 24px;
    }

    .faq-item h3 {
      margin: 0 0 10px;
      font-size: 21px;
    }

    .faq-item p {
      margin: 0;
      color: var(--muted);
    }

    .map {
      position: relative;
      min-height: 430px;
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: #101820;
    }

    .map iframe,
    .map-consent {
      width: 100%;
      height: 100%;
      min-height: 430px;
      border: 0;
    }

    .map-consent {
      display: grid;
      place-items: center;
      padding: 28px;
      color: #fff;
      text-align: center;
      background:
        linear-gradient(180deg, rgba(16, 24, 32, .58), rgba(16, 24, 32, .92)),
        url("kielce-miasto-z-drona-thumb.jpg") center / cover no-repeat;
    }

    .map-consent p {
      max-width: 430px;
      margin: 0 0 18px;
      color: rgba(255, 255, 255, .78);
    }

    .map-consent button {
      min-height: 46px;
      border: 0;
      border-radius: 999px;
      padding: 12px 18px;
      background: var(--amber);
      color: var(--ink);
      font-weight: 850;
      cursor: pointer;
    }

    .privacy-note {
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .map-profile-link {
      position: absolute;
      right: 14px;
      bottom: 14px;
      z-index: 2;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 15px;
      border-radius: 999px;
      background: #fff;
      color: var(--ink);
      font-weight: 850;
      box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
    }

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

    .lightbox.is-open { display: flex; }

    .lightbox-panel {
      width: min(1000px, 95vw);
      max-height: 88vh;
      position: relative;
      display: grid;
      gap: 12px;
    }

    .lightbox-media {
      width: 100%;
    }

    .lightbox-media img {
      width: 100%;
      height: auto;
      max-height: 78vh;
      object-fit: contain;
      border-radius: var(--radius);
      background: #000;
      box-shadow: 0 26px 90px rgba(0, 0, 0, .42);
      display: block;
      transition: transform .15s ease;
    }

    .lightbox-media iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
      border: 0;
      border-radius: var(--radius);
      display: block;
    }

    .lightbox-caption {
      margin: 0;
      color: rgba(255, 255, 255, .82);
      font-weight: 750;
      text-align: center;
      display: none;
    }

    .lightbox-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, .95);
      color: var(--ink);
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
      transition: background .2s, transform .2s;
      z-index: 70;
    }

    .lightbox-close:hover {
      background: #fff;
      transform: scale(1.08);
    }

    footer {
      background: #060d14;
      color: rgba(255,255,255,.52);
      font-size: .82rem;
      line-height: 1.9;
    }

    .footer-top {
      max-width: 1160px;
      margin: 0 auto;
      padding: 3rem 16px 2rem;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 2.5rem;
    }

    .footer-brand { display: flex; flex-direction: column; gap: .4rem; }
    .footer-logo { display: flex; align-items: center; gap: 12px; font-size: 1.15rem; font-weight: 850; color: #fff; margin-bottom: .25rem; }
    .footer-logo span { color: var(--amber); }
    .footer-desc { font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 320px; }
    .footer-col h4 { font-size: .73rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.38); margin: 0 0 .75rem; }
    .footer-col a, .footer-col p { color: rgba(255,255,255,.55); font-size: .82rem; display: block; margin: 0 0 .25rem; transition: color var(--ease); }
    .footer-col a:hover { color: var(--amber); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.07);
      padding: 1.2rem max(16px, calc((100% - 1160px) / 2));
      display: flex;
      flex-wrap: wrap;
      gap: .5rem 1rem;
      align-items: center;
      justify-content: space-between;
      font-size: .78rem;
      color: rgba(255,255,255,.38);
    }

    .footer-bottom a { color: rgba(255,255,255,.46); transition: color var(--ease); }
    .footer-bottom a:hover { color: var(--amber); }
    .designer { color: rgba(255,255,255,.5); }
    .designer a { color: var(--amber); font-weight: 650; }
    .designer a:hover { color: #fff; }

    @media (max-width: 900px) {
      .menu-btn { display: grid; place-items: center; }
      .nav-links {
        position: fixed;
        inset: 72px 0 auto;
        display: none;
        padding: 12px 16px 20px;
        background: rgba(21, 23, 26, .96);
        border-bottom: 1px solid rgba(255, 255, 255, .12);
      }

      body.nav-open .nav-links { display: grid; }
      .nav-links a { padding: 14px 12px; }
      .hero-strip, .grid-3, .prices, .about, .contact, .section-head, .service-area, .faq-grid, .footer-top {
        grid-template-columns: 1fr;
      }

      .hero-strip { margin-top: 0; border-radius: 0; width: 100%; }
      .strip-item { border-right: 0; border-bottom: 1px solid var(--line); }
      .portfolio-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
      }

      .portfolio-grid::-webkit-scrollbar { display: none; }

      .portfolio-grid.is-touching {
        scroll-snap-type: none;
        scroll-behavior: auto;
      }

      .shot {
        flex: 0 0 min(calc(100vw - 48px), 300px);
        min-width: min(calc(100vw - 48px), 300px);
      }

      .shot.vertical {
        flex: 0 0 min(calc(100vw - 32px), 280px);
      }
      section { padding: 70px 0; }
    }

    @media (max-width: 560px) {
      .brand span { max-width: 190px; white-space: normal; line-height: 1.05; }
      .hero { min-height: 82vh; }
      .hero .container { padding-top: 116px; }
      .hero-actions .btn { width: 100%; }
      .specs { grid-template-columns: 1fr; }
      .device { min-height: 420px; }
      .contact-card, .price, .service { padding: 22px; }
      .copy h2 { font-size: 31px; }
      .footer-top { gap: 2rem; }
    }

/* ─── Hamburger bars animation ─── */
.menu-btn {
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  transform-origin: center;
}

body.nav-open .menu-btn .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-btn .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.nav-open .menu-btn .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Gallery navigation dots ─── */
.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.gallery-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 4px;
  background: rgba(21, 23, 26, .22);
  cursor: pointer;
  transition: background .2s, width .2s;
  padding: 0;
  flex-shrink: 0;
}

.gallery-dot.is-active {
  width: 24px;
  background: var(--teal);
}

.gallery-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 23, 26, .18);
  border-radius: 50%;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}

.gallery-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* ─── Responsive gallery overrides ─── */
@media (min-width: 601px) and (max-width: 900px) {
  .shot {
    flex: 0 0 min(320px, calc(55vw - 20px));
    min-width: min(320px, calc(55vw - 20px));
  }
  .shot.vertical {
    flex: 0 0 min(220px, calc(40vw - 20px));
    min-width: min(220px, calc(40vw - 20px));
  }
}

@media (max-width: 900px) {
  .gallery-btn { display: none; }
  .menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
  }
}
/* ─── Lightbox arrows + swipe ─── */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  cursor: pointer;
  z-index: 70;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .32);
  transition: background .2s, transform .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.lightbox {
  touch-action: none;
}

/* Inline video card */
.shot.video-playing {
  cursor: default;
}