/* =========================================
   БЛАГОДІЙНА СПРАВА — Main Stylesheet
   ========================================= */

/* === VARIABLES === */
:root {
  --primary: #E8432D;
  --primary-dark: #c0321e;
  --primary-light: #fde8e5;
  --accent: #F7A825;
  --accent-dark: #d48c10;
  --dark: #1A1A2E;
  --dark-2: #2d2d4a;
  --text: #2C2C3E;
  --text-muted: #6b6b85;
  --bg: #FAFAF8;
  --bg-alt: #F3F1EE;
  --white: #FFFFFF;
  --border: #e2e0db;
  --success: #2e9e5b;
  --shadow-sm: 0 2px 8px rgba(26,26,46,0.08);
  --shadow-md: 0 6px 24px rgba(26,26,46,0.12);
  --shadow-lg: 0 16px 48px rgba(26,26,46,0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 28px;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 2rem; line-height: 1; }
.logo-text {
  font-family: var(--font-display);
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.logo-text strong { color: var(--primary); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.burger:hover { background: var(--bg-alt); }
.burger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,67,45,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,67,45,0.4);
}

.btn-tiktok {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,26,46,0.25);
}
.btn-tiktok:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,26,46,0.3);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-hero-apply {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-hero-apply:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-donate {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(247,168,37,0.5);
  font-size: 1.15rem;
  padding: 18px 40px;
  border: none;
  animation: pulse-glow 2.4s ease-in-out infinite;
}
.btn-donate:hover {
  background: var(--accent-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(247,168,37,0.6);
  animation: none;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(247,168,37,0.5); }
  50%       { box-shadow: 0 4px 32px rgba(247,168,37,0.8), 0 0 0 6px rgba(247,168,37,0.15); }
}

.btn-big {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 50px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-full { width: 100%; justify-content: center; }

/* === HERO === */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, #2a1a4e 40%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(247,168,37,0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(232,67,45,0.2) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.hero-title .accent { color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.hero-sub strong { color: var(--accent); }

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* === STATS === */
.stats-section {
  padding: 60px 0;
  background: var(--bg);
}

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

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-icon { font-size: 2.5rem; margin-bottom: 12px; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.4;
}

/* === SECTIONS === */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* === INFO CARDS === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.info-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* === TERRITORY === */
.territory-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.territory-intro {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 24px;
}

.territory-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.territory-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.territory-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.territory-notice {
  display: flex;
  gap: 14px;
  background: #FFF8E1;
  border: 1px solid #FFD54F;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}
.notice-icon { font-size: 1.4rem; flex-shrink: 0; }

.map-placeholder {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.map-pin { font-size: 4rem; margin-bottom: 20px; }
.map-placeholder p {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  opacity: 0.9;
}

/* === CTA === */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 480px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 48px 0 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer-brand .logo-icon { font-size: 2rem; }
.footer-nav {
  display: flex;
  gap: 20px;
}
.footer-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 72px 0 64px;
  color: var(--white);
  text-align: center;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === GALLERY === */
.gallery-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--primary-light);
  border: 1px solid rgba(232,67,45,0.2);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 36px;
  font-size: 0.95rem;
  color: var(--text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,26,46,0.75));
  color: var(--white);
  padding: 24px 16px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-empty {
  text-align: center;
  padding: 80px 40px;
  color: var(--text-muted);
}
.empty-icon { font-size: 4rem; margin-bottom: 20px; }
.gallery-empty h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--text); }
.gallery-empty code {
  background: var(--bg-alt);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.88rem;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,20,0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox-backdrop.active { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  backdrop-filter: blur(8px);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 24px; right: 24px; font-size: 1rem; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
}

/* === FORM === */
.form-container { max-width: 680px; }

.form-notice { margin-bottom: 32px; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 8px;
}
.required { color: var(--primary); }
.optional { color: var(--text-muted); font-weight: 500; font-size: 0.85rem; }

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232,67,45,0.1);
  background: var(--white);
}
.form-input::placeholder { color: #b0b0c0; }
.form-input.error { border-color: var(--primary); }

.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6b85' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }

.form-textarea { resize: vertical; min-height: 130px; }

.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.file-upload-area:hover { border-color: var(--primary); background: var(--primary-light); }
.file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-icon { font-size: 2.5rem; margin-bottom: 10px; }
.file-upload-content p { font-size: 0.95rem; color: var(--text); font-weight: 600; margin-bottom: 4px; }
.file-hint { font-size: 0.82rem !important; color: var(--text-muted) !important; font-weight: 400 !important; }

.file-preview {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  justify-content: center;
}
.file-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid var(--border);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-error {
  background: #FFEBEE;
  border: 1px solid #FFCDD2;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.92rem;
  color: #b71c1c;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* SUCCESS STATE */
.form-success {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.form-success h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--success);
  margin-bottom: 16px;
}
.form-success p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

/* LOADING state */
.btn.loading {
  opacity: 0.7;
  pointer-events: none;
}
.btn.loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp 0.55s cubic-bezier(0.4,0,0.2,1) forwards; }

/* === MOBILE MENU === */
@media (max-width: 768px) {
  .burger { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .nav-link { padding: 12px 16px; font-size: 1rem; }

  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .territory-layout { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; gap: 24px; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }

  .hero { padding: 72px 0 96px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .section { padding: 56px 0; }

  .form-card { padding: 28px 20px; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .btn-big { padding: 14px 24px; font-size: 0.95rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* territory single-column mode */
.territory-simple {
  grid-template-columns: 1fr;
  max-width: 680px;
}

/* Developer credit */
.dev-credit { opacity: 0.45; font-size: 0.8rem; }
.dev-credit a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.dev-credit a:hover { opacity: 1; }
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
