:root {
  --bg: #121212;
  --bg-soft: #17171b;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f7f4fb;
  --muted: #c4bfd0;
  --soft: #e8dff7;
  --accent: #b96cff;
  --accent-2: #8c52ff;
  --accent-3: #52d3ff;
  --green: #25d366;
  --green-dark: #1fb457;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-space: clamp(84px, 9vw, 112px);
  --section-space-tight: clamp(56px, 6vw, 76px);
  --hero-title: clamp(2.2rem, 4.4vw, 3.55rem);
  --h2: clamp(1.95rem, 3.1vw, 2.7rem);
  --h3: clamp(1.25rem, 1.8vw, 1.55rem);
  --body: clamp(1rem, 0.32vw + 0.95rem, 1.125rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI Variable", "Aptos", "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(185, 108, 255, 0.18), transparent 28%),
    radial-gradient(circle at 18% 6%, rgba(82, 211, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #121212 0%, #101014 100%);
  color: var(--text);
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
summary {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(82, 211, 255, 0.8);
  outline-offset: 3px;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}

#bubble-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#bubble-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-shell {
  padding: 0 0 var(--section-space);
}

.section-tight {
  padding-bottom: var(--section-space-tight);
}

section[id] {
  scroll-margin-top: 112px;
}

#home {
  scroll-margin-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.84rem;
  line-height: 1.3;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #e8dcff;
}

.eyebrow-soft {
  color: #c7b4ea;
}

h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
}

h1 {
  font-size: var(--hero-title);
  line-height: 1.03;
  letter-spacing: -0.045em;
  max-width: 13.4ch;
}

h2 {
  font-size: var(--h2);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 18ch;
}

h3,
summary {
  font-size: var(--h3);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

p,
li,
a,
button {
  font-size: var(--body);
  line-height: 1.65;
}

.copy-col {
  display: grid;
  gap: 14px;
  max-width: 720px;
  color: var(--muted);
}

.single-copy {
  max-width: 680px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 16px 0 0;
}

.nav-shell {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(18, 18, 20, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.brand span {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.02rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.2;
  transition: color 0.28s var(--ease), transform 0.28s var(--ease), background 0.28s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-link:hover,
.footer-link:focus-visible,
.phone-link:hover,
.phone-link:focus-visible {
  color: var(--text);
}

.nav-links a:hover,
.footer-nav a:hover {
  transform: translateY(-1px);
}

.nav-cta,
.cta-primary,
.cta-secondary,
.floating-whatsapp,
.sticky-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease);
}

.nav-cta,
.cta-primary,
.floating-whatsapp,
.sticky-mobile-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.22);
}

.cta-primary,
.cta-secondary {
  padding: 0 22px;
}

.cta-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-cta {
  padding: 0 18px;
}

.nav-cta:hover,
.cta-primary:hover,
.cta-secondary:hover,
.floating-whatsapp:hover,
.sticky-mobile-cta:hover,
.nav-cta:focus-visible,
.cta-primary:focus-visible,
.cta-secondary:focus-visible,
.floating-whatsapp:focus-visible,
.sticky-mobile-cta:focus-visible {
  transform: translateY(-2px);
}

.nav-cta:active,
.cta-primary:active,
.cta-secondary:active,
.floating-whatsapp:active,
.sticky-mobile-cta:active {
  transform: translateY(0) scale(0.985);
}

.wa-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: white;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}

.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 30px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

.hero {
  padding-top: 38px;
}

.hero-grid,
.about-grid,
.price-grid,
.contact-grid {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  align-items: center;
}

.hero-grid,
.price-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.about-grid {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-text {
  max-width: 64ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.chips span,
.trust-list span,
.moment-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  font-size: 0.94rem;
  line-height: 1.35;
}

.price-list li::before,
.contact-list li::before {
  content: "✓";
  color: #90ffd1;
  font-weight: 900;
}

.hero-media,
.about-photo,
.moment-photo,
.gallery-item,
.price-card,
.contact-panel,
.feature-card,
.step-card,
.moment-card,
.faq-item,
.trust-list,
.trust-list span,
.chips span {
  min-width: 0;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame {
  aspect-ratio: 1.4 / 1;
}

.portrait-frame {
  aspect-ratio: 0.82 / 1;
}

.landscape-frame,
.ratio-landscape {
  aspect-ratio: 1.28 / 1;
}

.ratio-wide {
  aspect-ratio: 1.45 / 1;
}

.ratio-portrait {
  aspect-ratio: 0.82 / 1;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.feature-grid,
.steps-grid,
.moments-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.feature-grid,
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.step-card,
.moment-card,
.price-card,
.contact-panel,
.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-card,
.step-card,
.text-card,
.contact-panel,
.price-card,
.faq-item {
  padding: 24px;
}

.feature-card {
  display: grid;
  gap: 10px;
}

.feature-card h3,
.step-card h3,
.moment-card h3,
.price-card h3,
.contact-panel h3 {
  font-size: clamp(1.12rem, 1.5vw, 1.38rem);
}

.feature-card p,
.step-card p,
.text-card p,
.price-copy p,
.contact-panel p,
.faq-item p,
.moment-card p {
  color: var(--muted);
}

.step-card {
  display: grid;
  gap: 14px;
}

.step-index {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #dbcbff;
}

.moments-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.moment-card {
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 14px;
  align-content: start;
}

.moment-card h3 {
  padding: 0 8px 0;
}

.moment-card p {
  padding: 0 8px 8px;
  max-width: 28ch;
  font-size: 0.98rem;
  line-height: 1.55;
}

.text-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.moment-label {
  width: fit-content;
  padding-inline: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item.item-wide {
  grid-column: span 2;
}

.gallery-frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
}

.price-copy {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.price-card {
  display: grid;
  gap: 20px;
}

.price-amount {
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.price-list,
.contact-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.price-note {
  color: var(--soft);
}

.full-width {
  width: 100%;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-list {
  gap: 14px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: #d6c5ff;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 14px;
  max-width: 760px;
}

.contact-grid {
  align-items: stretch;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.social-link,
.footer-social {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-weight: 700;
}

.social-link:hover,
.social-link:focus-visible,
.footer-social:hover,
.footer-social:focus-visible {
  color: var(--text);
}

.social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.phone-link,
.footer-link {
  font-weight: 800;
  width: fit-content;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.cta-inline {
  width: fit-content;
}

.site-footer {
  padding: 0 0 96px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  padding-top: 30px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.footer-copy {
  color: var(--muted);
  margin-bottom: 10px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-content: start;
  justify-content: flex-start;
}

.footer-nav a,
.footer-link {
  color: var(--muted);
}

.footer-copyright {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 38;
  padding: 0 18px;
}

.sticky-mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 39;
  padding: 0 18px;
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1180px) {
  .moments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .nav-shell {
    border-radius: 26px;
    align-items: center;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: rgba(20, 20, 22, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease), transform 0.25s var(--ease);
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 8px;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero-grid,
  .about-grid,
  .price-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .moments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item.item-wide {
    grid-column: auto;
  }

  .hero {
    padding-top: 28px;
  }

  .site-footer {
    padding-bottom: 112px;
  }
}

@media (max-width: 767px) {
  .wrap {
    width: min(var(--max), calc(100% - 40px));
  }

  .section-shell {
    padding-bottom: clamp(72px, 12vw, 88px);
  }

  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    width: calc(100% - 16px);
    padding: 10px 12px;
  }

  .brand span {
    font-size: 0.94rem;
  }

  h1 {
    max-width: 13ch;
  }

  .hero-actions {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary,
  .nav-cta {
    width: 100%;
  }

  .feature-grid,
  .gallery-grid,
  .footer-grid,
  .steps-grid,
  .moments-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    display: none;
  }

  .sticky-mobile-cta {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: 136px;
  }
}

@media (max-width: 480px) {
  :root {
    --hero-title: clamp(2.1rem, 10vw, 2.45rem);
    --h2: clamp(1.72rem, 7vw, 2rem);
    --h3: clamp(1.12rem, 5.4vw, 1.28rem);
  }

  .feature-card,
  .step-card,
  .text-card,
  .contact-panel,
  .price-card,
  .faq-item {
    padding: 20px;
  }

  section[id] {
    scroll-margin-top: 96px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .why-lead {
    max-width: 24ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .nav-cta,
  .cta-primary,
  .cta-secondary,
  .floating-whatsapp,
  .sticky-mobile-cta,
  .nav-links a,
  .footer-nav a,
  .footer-link,
  .phone-link {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.focus-veliki-baloni {
  object-position: center 15%;
}

.why-grid {
  display: grid;
  gap: 22px;
}

.why-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.why-lead {
  max-width: 30ch;
  font-size: clamp(1.08rem, 0.9vw + 0.96rem, 1.36rem);
  line-height: 1.4;
  letter-spacing: -0.018em;
  color: var(--soft);
  font-weight: 800;
}

.why-copy {
  max-width: 780px;
  gap: 12px;
}

.faq-item summary {
  min-height: 44px;
}

@media (max-width: 1024px) {
  .focus-veliki-baloni {
    object-position: center 12%;
  }
}

@media (max-width: 767px) {
  .hero-copy {
    gap: 16px;
  }

  .why-card {
    padding: 22px;
  }

  .focus-veliki-baloni {
    object-position: center 10%;
  }

  .why-lead {
    max-width: 22ch;
    font-size: 1.08rem;
    line-height: 1.42;
  }
}


#snow-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.snowflake {
  position: absolute;
  top: -12vh;
  left: var(--left);
  width: var(--size);
  height: var(--size);
  opacity: var(--opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 2v16M2 10h16M4.3 4.3l11.4 11.4M15.7 4.3L4.3 15.7' stroke='rgba(240,245,255,0.92)' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 10px rgba(185, 108, 255, 0.16));
  animation: snow-fall var(--fall-duration) linear infinite;
  animation-delay: var(--fall-delay);
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
}

.hero-note {
  max-width: 38ch;
  color: var(--soft);
  font-size: 0.98rem;
  line-height: 1.52;
}

.indoor-grid {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: start;
}

.indoor-copy {
  display: grid;
  gap: 18px;
}

.indoor-lead {
  max-width: 30ch;
  color: var(--soft);
  font-size: clamp(1.12rem, 1vw + 0.92rem, 1.42rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.indoor-text {
  max-width: 720px;
}

.indoor-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.indoor-photo {
  overflow: hidden;
}

.indoor-photo-wide {
  grid-column: 1 / -1;
}

@keyframes snow-fall {
  0% {
    transform: translate3d(0, -8vh, 0) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: var(--opacity);
  }
  100% {
    transform: translate3d(var(--drift), 112vh, 0) rotate(210deg);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .indoor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero-note {
    max-width: 31ch;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .indoor-gallery {
    grid-template-columns: 1fr;
  }

  .indoor-photo-wide {
    grid-column: auto;
  }

  .indoor-lead {
    max-width: 24ch;
    font-size: 1.04rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #snow-layer {
    display: none;
  }

  .snowflake {
    animation: none;
  }
}


.focus-novoo-1 {
  object-position: center 38%;
}

.focus-novo {
  object-position: center 42%;
}

.family-moment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(26px, 4vw, 40px);
  align-items: center;
}

.family-copy {
  display: grid;
  gap: 14px;
  max-width: 36ch;
}

.family-frame {
  aspect-ratio: 1.31 / 1;
}

.focus-stariji-u-balonu {
  object-position: center 34%;
}

.social-link,
.footer-social {
  gap: 12px;
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease), color 0.22s var(--ease);
}

.social-link:hover,
.social-link:focus-visible,
.footer-social:hover,
.footer-social:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.social-icon-instagram {
  filter: drop-shadow(0 3px 12px rgba(214, 41, 118, 0.16));
}

.locations-section .single-copy {
  max-width: 760px;
}

@media (max-width: 1024px) {
  .family-moment-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .family-copy {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .focus-novoo-1 {
    object-position: center 40%;
  }

  .focus-novo {
    object-position: center 44%;
  }

  .focus-stariji-u-balonu {
    object-position: center 32%;
  }
}
