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

:root {
  --bg: #ffffff;
  --bg2: #f5f5f5;
  --bg3: #eeeeee;
  --gold: #1a1a1a;
  --gold-light: #444444;
  --text: #1a1a1a;
  --text-muted: #777777;
  --border: #dcdcdc;
  --radius: 4px;
  --transition: 0.35s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  transition: background var(--transition), color var(--transition);
}
.btn:hover {
  background: var(--gold);
  color: #0d0d0d;
}
.btn.full-width { width: 100%; text-align: center; }

/* =====================
   NAVBAR
   ===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* =====================
   LANGUAGE SWITCHER
   ===================== */
.lang-switcher {
  display: flex;
  gap: 4px;
  margin-left: 24px;
}
.lang-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 5px 10px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #ffffff 0%, #f0f0f0 100%);
  overflow: hidden;
}

/* Animated radial glow */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
  animation: fadeUp 1.2s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 10px;
  background: var(--gold);
  opacity: 0;
  animation: scrollDots 1.8s ease infinite;
}
.hero-scroll span:nth-child(2) { animation-delay: 0.3s; }
.hero-scroll span:nth-child(3) { animation-delay: 0.6s; }

@keyframes scrollDots {
  0%, 100% { opacity: 0; transform: translateY(-4px); }
  50%       { opacity: 1; transform: translateY(4px); }
}

/* =====================
   SECTION SHARED
   ===================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-sub {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a1a1a;
}

/* =====================
   GALLERY
   ===================== */
.gallery-section {
  padding: 120px 60px;
  background: var(--bg);
}

/* Photo rights notice */
.photo-notice {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #f9f7f4;
  border: 1px solid #e8e0d4;
  border-left: 3px solid #1a1a1a;
  padding: 14px 20px;
  margin-bottom: 40px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.notice-icon { font-size: 1rem; flex-shrink: 0; }
.notice-telegram {
  white-space: nowrap;
  color: #0088cc;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #0088cc;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.notice-telegram:hover { opacity: 0.7; }

/* Date filter */
.date-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

/* Type filter */
.type-filter {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.type-btn {
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--text-muted);
  padding: 9px 24px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}
.type-btn:last-child { border-right: none; }
.type-btn:hover, .type-btn.active {
  background: var(--gold);
  color: #fff;
}

.filter-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 7px 18px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.no-photos, .loading {
  grid-column: 1/-1;
  text-align: center;
  color: var(--text-muted);
  padding: 60px 0;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg3);
  aspect-ratio: 4/3;
}
.gallery-item .photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: transform var(--transition);
}
.gallery-item .photo-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  opacity: 0.4;
}
.gallery-item:hover .photo-placeholder {
  transform: scale(1.04);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.overlay h3 {
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
  font-size: 1.1rem;
}
.overlay p {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
.overlay-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.overlay .zoom-icon,
.overlay .dl-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.overlay .zoom-icon:hover,
.overlay .dl-icon:hover {
  background: var(--gold);
  color: #0d0d0d;
}

/* =====================
   ABOUT
   ===================== */
.about-section {
  padding: 120px 60px;
  background: var(--bg2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.about-text .section-title { margin-bottom: 28px; }

.stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stat { text-align: center; flex: 1; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =====================
   CONTACT
   ===================== */
.contact-section {
  padding: 120px 60px;
  background: var(--bg);
  max-width: 1100px;
  margin: 0 auto;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: 2px;
}
.contact-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select {
  appearance: none;
  cursor: pointer;
  color: var(--text-muted);
}
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  color: var(--gold);
  font-size: 0.85rem;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 8px;
}
.form-success.show { display: block; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* =====================
   LIGHTBOX
   ===================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.97);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img-wrap {
  max-width: 85vw;
  max-height: 85vh;
  text-align: center;
}
.lb-img-wrap img,
#lb-canvas {
  max-height: 78vh;
  max-width: 85vw;
  object-fit: contain;
  border: 1px solid var(--border);
  display: block;
}
#lb-caption {
  margin-top: 14px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: #1a1a1a;
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition);
  z-index: 10000;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: #777; }
.lb-close { top: 24px; right: 36px; font-size: 2.5rem; }
.lb-prev  { left: 24px;  top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lb-download {
  position: absolute;
  top: 28px; left: 36px;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background var(--transition), color var(--transition);
  z-index: 10000;
  text-decoration: none;
  display: inline-block;
}
.lb-download:hover { background: var(--gold); color: #0d0d0d; }

/* =====================
   PHOTO BADGE (Free / Paid)
   ===================== */
.photo-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  z-index: 2;
  pointer-events: none;
}
.photo-badge.free {
  background: #1a1a1a;
  color: #fff;
}
.photo-badge.paid {
  background: #c9a96e;
  color: #fff;
}

/* =====================
   WATERMARK OVERLAY
   ===================== */
.watermark-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.watermark-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transform: rotate(-30deg);
  letter-spacing: 3px;
  white-space: nowrap;
  user-select: none;
  text-transform: uppercase;
}

.buy-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.buy-icon:hover { background: var(--gold); color: #fff; }

.photo-date {
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* =====================
   PAYMENT MODAL
   ===================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }

.modal-box {
  background: #fff;
  max-width: 420px;
  width: 100%;
  padding: 48px 40px;
  position: relative;
  text-align: center;
  border: 1px solid var(--border);
}
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.modal-filename {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.modal-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.kbzpay-box {
  background: #f7f9ff;
  border: 1px solid #d0d8f0;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 28px;
  text-align: left;
}
.kbzpay-logo {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3bc1;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-align: center;
}
.kbzpay-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #e8edf8;
  font-size: 0.88rem;
}
.kbzpay-row:last-child { border-bottom: none; }
.kbzpay-row span { color: var(--text-muted); }
.kbzpay-row strong { color: #1a1a1a; font-size: 0.95rem; }
.modal-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}
.step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.telegram-btn {
  background: #0088cc;
  border-color: #0088cc;
  color: #fff;
  display: block;
  text-align: center;
}
.telegram-btn:hover { background: #006aa3; border-color: #006aa3; color: #fff; }

/* =====================
   CART FAB
   ===================== */
.cart-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1a1a1a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform var(--transition), background var(--transition);
}
.cart-fab:hover { transform: scale(1.08); background: #333; }
.cart-icon { font-size: 1.4rem; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: #e53e3e;
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

/* =====================
   CART DRAWER
   ===================== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1100;
}
.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 400px; max-width: 95vw;
  height: 100vh;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
}
.cart-drawer.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}
.cart-close {
  background: none; border: none;
  font-size: 1.6rem; cursor: pointer;
  color: var(--text-muted); line-height: 1;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 28px;
}
.cart-empty {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
  padding: 40px 0;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-thumb {
  width: 64px; height: 48px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.cart-item-info { flex: 1; }
.cart-item-info p {
  font-size: 0.8rem;
  color: #1a1a1a;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.cart-item-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.cart-remove {
  background: none; border: none;
  font-size: 1.2rem; cursor: pointer;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--transition);
}
.cart-remove:hover { color: #e53e3e; }

.cart-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.cart-total strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a1a1a;
}

/* =====================
   COFFEE TIP BUTTON
   ===================== */
.coffee-btn {
  display: inline-block;
  margin-top: 20px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 24px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  border-radius: 999px;
}
.coffee-btn:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  #navbar { padding: 18px 28px; }
  #navbar.scrolled { padding: 12px 28px; }
  .nav-links { display: none; gap: 24px; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.97); padding: 24px 28px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .lang-switcher { margin-left: 12px; }
  .lang-btn { padding: 4px 7px; font-size: 0.65rem; }

  .gallery-section, .contact-section { padding: 80px 28px; }
  .about-section { grid-template-columns: 1fr; padding: 80px 28px; gap: 48px; }
  .about-image { max-width: 340px; margin: 0 auto; }

  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .footer { padding: 32px 28px; }
}

@media (max-width: 600px) {
  .stats { gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
