:root {
  --bg: #0a1014;
  --bg-2: #0e1820;
  --surface: #15242e;
  --surface-2: #1d3240;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --brand: #2e4c5e;
  --slate: #2e4c5e;
  --slate-light: #6f93a3;
  --accent: #7fb3c9;
  --accent-2: #a9d2de;
  --text: #eef4f6;
  --muted: #93a7b1;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --radius: 18px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.display {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
}
.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}
.accent {
  color: var(--accent);
}
.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.78rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #08191f;
  box-shadow: 0 14px 30px -12px rgba(127, 179, 201, 0.7);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -14px rgba(127, 179, 201, 0.85);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--accent);
  transform: translateY(-3px);
}

header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: 0.3s ease;
}
header.nav .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
header.nav.scrolled {
  background: rgba(10, 14, 17, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 42px;
  width: auto;
}
.brand b {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.brand span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 5px;
  color: var(--muted);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--muted);
  transition: 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.menu-btn span {
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 170px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 500px at 78% 8%, rgba(127, 179, 201, 0.16), transparent 60%),
    radial-gradient(700px 600px at 10% 100%, rgba(46, 76, 94, 0.45), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 60% 30%, #000, transparent 75%);
  mask-image: radial-gradient(circle at 60% 30%, #000, transparent 75%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  margin: 22px 0 20px;
}
.hero h1 .line2 {
  color: var(--accent);
}
.hero p.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 30px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-meta .stat b {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--text);
  display: block;
  line-height: 1;
}
.hero-meta .stat span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-badge {
  position: relative;
  justify-self: center;
  width: min(440px, 92%);
  display: grid;
  place-items: center;
}
.hero-badge::before {
  content: '';
  position: absolute;
  inset: -12% -12% -18% -12%;
  z-index: -1;
  background: radial-gradient(circle at 50% 42%, rgba(127, 179, 201, 0.16), transparent 62%);
}
.hero-badge img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.floating-tag {
  position: absolute;
  z-index: 3;
  background: rgba(20, 29, 36, 0.9);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.floating-tag.t1 {
  top: 8%;
  left: -6%;
  animation: float 5s ease-in-out infinite;
}
.floating-tag.t2 {
  bottom: 12%;
  right: -8%;
  animation: float 6s ease-in-out infinite 0.8s;
}
.floating-tag .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
}
@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 18px 0;
}
.marquee .track {
  display: flex;
  gap: 46px;
  white-space: nowrap;
  animation: slide 22s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 46px;
}
.marquee span::after {
  content: '◆';
  color: var(--accent);
  font-size: 0.6rem;
}
@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

section {
  padding: 96px 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 54px;
}
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin: 16px 0 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  overflow: hidden;
  transition: 0.3s ease;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.card:hover::before {
  transform: scaleX(1);
}
.card .ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(127, 179, 201, 0.12);
  border: 1px solid rgba(127, 179, 201, 0.25);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card .ic svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
}
.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 16px;
}
.card ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card li {
  font-size: 0.76rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 999px;
}

.process {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 18px;
}
.step .num {
  font-family: 'Oswald', sans-serif;
  font-size: 3.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--slate-light);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.step p {
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shot {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
  padding: 0;
  cursor: pointer;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shot::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(5, 10, 13, 0.72), transparent);
  pointer-events: none;
}
.shot:hover {
  border-color: var(--accent);
}
.shot:hover img {
  transform: scale(1.05);
}
.shot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.shot .label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}
.gallery-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

.ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.ba {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  user-select: none;
  box-shadow: var(--shadow);
}
.ba .pane {
  position: absolute;
  inset: 0;
}
.ba .pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba .after {
  clip-path: inset(0 0 0 50%);
}
.ba .tagb {
  position: absolute;
  top: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 2px;
  font-family: 'Oswald', sans-serif;
}
.ba .tagb.l {
  left: 14px;
  background: rgba(0, 0, 0, 0.5);
  color: #cbb;
}
.ba .tagb.r {
  right: 14px;
  background: rgba(127, 179, 201, 0.15);
  color: var(--accent);
}
.ba .handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent);
  z-index: 4;
  transform: translateX(-1px);
}
.ba .handle::after {
  content: '⇆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #08191f;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.ba input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 8, 11, 0.92);
  backdrop-filter: blur(4px);
}
.lightbox.open {
  display: flex;
}
body.lb-open {
  overflow: hidden;
}
.lb-figure {
  margin: 0;
  max-width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lb-figure img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.lb-caption {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: var(--text);
}
.lb-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.lb-btn:hover {
  background: rgba(127, 179, 201, 0.2);
  border-color: var(--accent);
}
.lb-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.lb-btn svg {
  width: 24px;
  height: 24px;
}
.lb-close {
  top: 20px;
  right: 20px;
}
.lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 540px) {
  .lb-prev {
    left: 10px;
  }
  .lb-next {
    right: 10px;
  }
  .lb-close {
    top: 12px;
    right: 12px;
  }
}

.contact {
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(127, 179, 201, 0.12), transparent 60%), var(--bg-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-card {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
}
.contact-card h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 14px;
}
.contact-card p.sub {
  color: var(--muted);
  margin-bottom: 28px;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.crow {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  transition: 0.25s;
}
.crow:hover {
  border-color: var(--accent);
  background: rgba(127, 179, 201, 0.05);
  transform: translateX(4px);
}
.crow .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(127, 179, 201, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.crow .ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}
.crow .lbl {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.crow .val {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}
.info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.info-block {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.info-block h3 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.hours {
  list-style: none;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.hours li:last-child {
  border: 0;
}
.hours span:last-child {
  color: var(--muted);
}
.map-pin {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
}
.map-pin svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  flex-shrink: 0;
}

footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 36px;
  background: var(--bg);
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.foot .brand img {
  height: 38px;
  width: auto;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--muted);
}
.foot-links a:hover {
  color: var(--accent);
}
.copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.made-by {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.made-by a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--accent);
  transition: 0.2s ease;
}
.made-by a:hover {
  color: var(--accent-2);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
  .nav-cta .btn {
    display: none;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 60;
    padding: 14px 26px 40px;
    background: linear-gradient(180deg, rgba(10, 16, 20, 0.985), rgba(14, 24, 32, 0.99));
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0.35s;
  }
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mm-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 4px;
  }
  .mm-brand {
    display: flex;
    align-items: center;
    gap: 11px;
  }
  .mm-brand img {
    height: 40px;
    width: auto;
  }
  .mm-brand b {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.05rem;
  }
  .mm-close {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
    transition: 0.2s ease;
  }
  .mm-close:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
  .mm-close svg {
    width: 22px;
    height: 22px;
  }
  .mm-links {
    flex: 1;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .mm-links a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: clamp(1.8rem, 9vw, 2.4rem);
    letter-spacing: 1px;
    color: var(--text);
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    transition: 0.2s ease;
  }
  .mm-links a span {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--accent);
    min-width: 24px;
  }
  .mm-links a:hover,
  .mm-links a:active {
    color: var(--accent);
    padding-left: 14px;
  }
  .mm-foot {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .mm-foot .btn {
    justify-content: center;
    width: 100%;
  }
  .mm-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--muted);
  }
  .mm-social a {
    color: var(--muted);
    transition: 0.2s ease;
  }
  .mm-social a:hover {
    color: var(--accent);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-badge {
    order: -1;
    width: min(300px, 72%);
  }
  .hero p.lead {
    margin-inline: auto;
  }
  .hero-actions,
  .hero-meta,
  .eyebrow {
    justify-content: center;
  }
  .hero-meta {
    justify-content: center;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .ba-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  section {
    padding: 70px 0;
  }
  .steps,
  .gallery {
    grid-template-columns: 1fr;
  }
  .floating-tag {
    display: none;
  }
  .foot {
    justify-content: center;
    text-align: center;
  }
  .foot-links {
    justify-content: center;
    gap: 14px 22px;
  }
  .copy {
    justify-content: center;
    text-align: center;
  }
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  background: var(--bg);

  animation: pl-out 0.4s ease 0.5s forwards;
}
@keyframes pl-out {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.pl-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.pl-inner img {
  width: 92px;
  height: auto;
  animation: pl-pulse 1.4s ease-in-out infinite;
}
.pl-bar {
  position: relative;
  width: 140px;
  height: 3px;
  border-radius: 999px;
  background: var(--line-strong);
  overflow: hidden;
}
.pl-bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  animation: pl-slide 1.1s ease-in-out infinite;
}
@keyframes pl-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.97);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pl-slide {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(360%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pl-inner img,
  .pl-bar span {
    animation: none;
  }
}

.consent {
  position: fixed;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 99998;
  width: min(360px, calc(100vw - 32px));
  background: rgba(20, 31, 38, 0.96);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 20px 20px 18px;
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.consent.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.consent .c-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.consent .c-text {
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
}
.consent .c-text a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent .c-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}
.consent button {
  flex: 1;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  transition: 0.25s ease;
}
.consent .c-reject {
  background: transparent;
  color: var(--text);
}
.consent .c-reject:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.consent .c-accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #08191f;
}
.consent .c-accept:hover {
  filter: brightness(1.08);
}
.cookie-settings[hidden] {
  display: none;
}
.cookie-settings {
  cursor: pointer;
}
@media (max-width: 480px) {
  .consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .consent {
    transition: opacity 0.2s linear;
    transform: none;
  }
  .consent.show {
    transform: none;
  }
}
