/* ============================================================
   GSS Gradačac — Gorska služba spašavanja
   ============================================================ */
:root {
  --navy: #16204d;
  --navy-deep: #0b1230;
  --navy-mid: #1e2a78;
  --red: #e02323;
  --red-dark: #b81a1a;
  --yellow: #ffdf00;
  --white: #ffffff;
  --off: #f5f7fc;
  --ink: #1a2240;
  --muted: #5b6484;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(11, 18, 48, 0.16);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Helvetica Neue", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy-deep);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
section { scroll-margin-top: 76px; }

.container { width: min(1180px, 92%); margin: 0 auto; }

.txt-red { color: var(--red); }
.txt-yellow { color: var(--yellow); }

/* ---------- dugmad ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 10px 30px rgba(224, 35, 35, 0.45);
}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(224, 35, 35, 0.6); }
.btn-ghost {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-3px); }
.btn-big { font-size: 1.45rem; padding: 1rem 2.8rem; }

/* ---------- reveal animacije ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   NAVIGACIJA
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: rgba(11, 18, 48, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
  padding: 8px 0;
}
.nav-inner {
  width: min(1280px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo { width: 52px; height: 52px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.nav-title { display: flex; flex-direction: column; line-height: 1.1; color: #fff; }
.nav-title strong { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.08em; }
.nav-title small { font-size: 0.68rem; opacity: 0.75; letter-spacing: 0.05em; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 4px 0;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(224, 35, 35, 0.4);
  transition: transform 0.25s ease;
}
.nav-cta:hover { transform: translateY(-2px); }
.nav-sos {
  display: flex; align-items: center; gap: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 4px 16px;
  border-radius: 999px;
}
.sos-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224, 35, 35, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(224, 35, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 35, 35, 0); }
}
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 85%, rgba(224,35,35,0.18), transparent 55%),
    linear-gradient(180deg, rgba(11,18,48,0.55) 0%, rgba(11,18,48,0.35) 45%, rgba(11,18,48,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 92%);
  padding: 120px 0 80px;
  color: #fff;
}
.hero-badge {
  width: 110px;
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.hero-eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 0.8rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}
.hero-sub {
  margin: 1.4rem auto 2.2rem;
  max-width: 620px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px; height: 46px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 16px;
  display: flex; justify-content: center;
}
.hero-scroll span {
  width: 4px; height: 10px;
  background: #fff;
  border-radius: 4px;
  margin-top: 8px;
  animation: scrollHint 1.8s infinite;
}
@keyframes scrollHint {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 0; }
}

/* ============================================================
   SOS STRIP
   ============================================================ */
.sos-strip {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  position: relative;
  z-index: 3;
}
.sos-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.sos-left { display: flex; align-items: center; gap: 14px; }
.sos-left p { font-size: 1.02rem; }
.sos-pulse {
  flex: none;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
.sos-numbers { display: flex; gap: 1rem; flex-wrap: wrap; }
.sos-num {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 18px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.15;
  transition: background 0.25s ease, transform 0.25s ease;
}
.sos-num small { font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; opacity: 0.85; }
.sos-num:hover { background: rgba(255,255,255,0.26); transform: translateY(-2px); }

/* ============================================================
   SEKCIJE — zajedničko
   ============================================================ */
.section { padding: 6.5rem 0; }
.section-light { background: var(--off); color: var(--ink); }
.section-dark {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(30,42,120,0.55), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(224,35,35,0.14), transparent 45%),
    var(--navy-deep);
  color: #fff;
}
.section-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.section-dark .section-label { color: var(--yellow); }
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.section-intro { max-width: 640px; margin: 0 auto 3rem; opacity: 0.85; }
.center { text-align: center; }
.center.section-title { margin-left: auto; margin-right: auto; }

/* ============================================================
   O NAMA
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}
.about-media { position: relative; }
.about-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/4.6;
  object-fit: cover;
  width: 88%;
}
.about-photo-small {
  position: absolute;
  right: 0; bottom: -34px;
  width: 46%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--off);
  box-shadow: var(--shadow);
}
.about-stamp {
  position: absolute;
  top: -24px; right: 6%;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  width: 118px; height: 118px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(224,35,35,0.45);
  transform: rotate(8deg);
}
.about-stamp strong { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.about-stamp span { font-size: 0.7rem; letter-spacing: 0.05em; }
.about-text p { margin-bottom: 1.1rem; color: var(--muted); }
.about-text p strong { color: var(--ink); }
.about-values {
  list-style: none;
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.6rem;
}
.about-values li {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 8px 26px rgba(11,18,48,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-values li:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(11,18,48,0.13); }
.about-values span { font-size: 1.5rem; line-height: 1.2; }
.about-values strong { display: block; font-size: 0.95rem; }
.about-values small { color: var(--muted); font-size: 0.8rem; line-height: 1.35; display: block; }

/* ============================================================
   AKTIVNOSTI — kartice
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 1rem;
}
.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,223,0,0.45);
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}
.card-img { overflow: hidden; aspect-ratio: 16/10; }
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 1.4rem 1.5rem 1.6rem; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.55rem;
}
.card-body h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 42px; height: 3px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.3s ease, background 0.3s ease;
}
.card:hover .card-body h3::after { width: 74px; background: var(--yellow); }
.card-body p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* ============================================================
   BROJKE
   ============================================================ */
.stats { background: linear-gradient(135deg, var(--red-dark), var(--red) 55%, #f04338); color: #fff; }
.stats-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 3.4rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  text-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.stat span { font-size: 0.9rem; opacity: 0.9; letter-spacing: 0.04em; }

/* ============================================================
   MISIJA / VIDEO
   ============================================================ */
.mission {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.mission-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.mission-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,18,48,0.82), rgba(11,18,48,0.45) 50%, rgba(11,18,48,0.85));
}
.mission-content { position: relative; z-index: 2; color: #fff; width: min(860px, 92%); padding: 5rem 0; }
.mission-content blockquote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.4vw, 3.8rem);
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.mission-note { margin-top: 1.4rem; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.85rem; opacity: 0.8; }

/* ============================================================
   AKCIJA — POV film
   ============================================================ */
.action-player {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 16/9;
  background: #000;
}
.action-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.action-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 96px;
  height: 96px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(224, 35, 35, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
}
.action-play svg { margin-left: 5px; }
.action-play:hover { transform: scale(1.08); box-shadow: 0 18px 55px rgba(224, 35, 35, 0.7); }
.action-play.hidden { opacity: 0; pointer-events: none; }
.action-play-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: playRing 2s ease-out infinite;
}
@keyframes playRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ============================================================
   GALERIJA
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 2.6rem;
}
.g-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 26px rgba(11,18,48,0.12);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}
.g-item:hover img { transform: scale(1.07); filter: brightness(1.06); }
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,18,48,0.45));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.g-item:hover::after { opacity: 1; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(5, 8, 22, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 88vw;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.6rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(224,35,35,0.8); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   POSTANI ČLAN
   ============================================================ */
.join { position: relative; overflow: hidden; color: #fff; }
.join-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
}
.join-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,18,48,0.96) 30%, rgba(11,18,48,0.82) 60%, rgba(22,32,77,0.6));
}
.join-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  padding: 6.5rem 0;
  align-items: center;
}
.join-text > p { color: rgba(255,255,255,0.82); margin-bottom: 1.4rem; }
.join-req { list-style: none; display: grid; gap: 0.55rem; }
.join-req li { font-weight: 600; color: var(--yellow); }
.join-steps {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 2.4rem 2.2rem;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.join-steps h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.join-steps ol { list-style: none; display: grid; gap: 1.2rem; margin-bottom: 1.8rem; }
.join-steps li { display: flex; gap: 16px; align-items: flex-start; }
.join-steps li span {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(224,35,35,0.4);
}
.join-steps li strong { display: block; font-size: 1.02rem; }
.join-steps li small { color: rgba(255,255,255,0.7); }
.join-steps .btn { width: 100%; text-align: center; }
.join-note { margin-top: 0.9rem; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.4rem;
  margin-top: 2.6rem;
  align-items: stretch;
}
.contact-cards { display: grid; gap: 1.1rem; align-content: start; }
.c-card {
  display: flex; gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 10px 30px rgba(11,18,48,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.c-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,18,48,0.14); }
.c-card > span { font-size: 1.7rem; line-height: 1.3; }
.c-card strong { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.03em; }
.c-card p { color: var(--muted); font-size: 0.92rem; }
.c-card a { color: var(--red); font-weight: 600; }
.c-card a:hover { text-decoration: underline; }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  min-height: 420px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #070c22; color: rgba(255,255,255,0.75); }
.footer-inner { padding: 3.6rem 0 2.4rem; text-align: center; }
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 1.6rem;
  text-align: left;
}
.footer-brand img { width: 64px; }
.footer-brand strong { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.08em; color: #fff; }
.footer-brand p { font-size: 0.85rem; max-width: 380px; }
.footer-links { display: flex; justify-content: center; gap: 1.8rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.footer-links a { font-size: 0.9rem; transition: color 0.25s ease; }
.footer-links a:hover { color: var(--yellow); }
.footer-copy { font-size: 0.8rem; opacity: 0.55; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .join-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-media { max-width: 520px; margin: 0 auto 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: rgba(11, 18, 48, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .nav-burger { display: flex; z-index: 110; }
  .nav-sos { margin-left: auto; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }
  .sos-inner { justify-content: center; text-align: center; }
  .about-photo { width: 100%; }
  .about-photo-small { display: none; }
  .about-stamp { width: 96px; height: 96px; top: -18px; right: 2%; }
  .about-stamp strong { font-size: 1.6rem; }
  .join-steps { padding: 1.8rem 1.4rem; }
  .lb-prev, .lb-next { display: none; }
}
