/* ============================================
   NAZARS.RU — MAIN CSS
   Photographer & Filmmaker Website
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #161616;
  --accent: #C8A96E;
  --accent-2: #E8C87A;
  --accent-dim: rgba(200, 169, 110, 0.15);
  --text: #F0EDE8;
  --text-muted: #8A8680;
  --border: #1E1E1E;
  --border-light: #2A2A2A;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1280px;
  --section-py: clamp(80px, 10vw, 140px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(200, 169, 110, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s linear, width 0.3s, height 0.3s, opacity 0.3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 20px; height: 20px; }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 48px; height: 48px; }

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(52px, 8vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(24px, 3vw, 40px); }
h4 { font-size: clamp(18px, 2.5vw, 28px); }

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.section-title { margin-bottom: clamp(40px, 6vw, 80px); }

p { line-height: 1.7; color: var(--text-muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-2);
  transform: translateX(-101%);
  transition: transform var(--transition);
  z-index: -1;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { color: var(--bg); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover { color: var(--bg); border-color: var(--accent-2); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover { color: var(--bg); border-color: var(--accent-2); }

/* ── Header / Nav ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}
.header.scrolled {
  padding: 14px 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-icon {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,169,110,0.45);
  border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1), border-color 0.4s ease;
}
.logo-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  transition: box-shadow 0.4s ease;
}
.logo:hover .logo-ring {
  transform: scale(1.15) rotate(90deg);
  border-color: rgba(200,169,110,0.85);
}
.logo:hover .logo-dot {
  box-shadow: 0 0 10px rgba(200,169,110,0.7);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--text);
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  cursor: none;
}
.burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 400;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1005 50%, #0a0a0a 100%);
  z-index: 0;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.9) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding-top: 120px;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--accent);
}
.hero h1 {
  margin-bottom: 24px;
  white-space: pre-line;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 60px;
  align-items: center;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  display: block;
}
.hero-stat-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-stat-divider {
  width: 1px; height: 40px;
  background: var(--border-light);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px; right: clamp(20px, 5vw, 80px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Urgency Bar ── */
.urgency-bar {
  background: var(--accent);
  padding: 14px 0;
  text-align: center;
}
.urgency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.urgency-bar p {
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.urgency-bar .btn-dark {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--bg);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: none;
}
.urgency-bar .btn-dark:hover { background: #1a1a1a; }

/* ── Services ── */
.services { padding: var(--section-py) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: transparent; }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-icon {
  background: rgba(200,169,110,0.1);
  border-color: rgba(200,169,110,0.8);
  transform: translateY(-4px);
}
.service-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 12px;
  color: var(--text);
}
.service-desc { font-size: 15px; margin-bottom: 24px; }
.service-price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 28px;
}
.service-price span { font-size: 14px; font-family: var(--font-body); color: var(--text-muted); }

/* ── Portfolio ── */
.portfolio { padding: var(--section-py) 0; }
.portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  transition: var(--transition);
  cursor: none;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: none;
}
.portfolio-item:nth-child(3n+2) { margin-top: 40px; }
.portfolio-placeholder {
  width: 100%;
  background: var(--bg-3);
  position: relative;
}
.portfolio-placeholder::after {
  content: '';
  display: block;
}
.aspect-45 .portfolio-placeholder { aspect-ratio: 4/5; }
.aspect-11 .portfolio-placeholder { aspect-ratio: 1/1; }
.aspect-32 .portfolio-placeholder { aspect-ratio: 3/2; }
.aspect-916 .portfolio-placeholder { aspect-ratio: 9/16; }

.portfolio-gradient-1 { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); }
.portfolio-gradient-2 { background: linear-gradient(135deg, #2d1b0e, #4a2c11, #6b3f1a); }
.portfolio-gradient-3 { background: linear-gradient(135deg, #0d1b0d, #1a2e1a, #2a4a2a); }
.portfolio-gradient-4 { background: linear-gradient(135deg, #1a0d1a, #2e1a2e, #4a2a4a); }
.portfolio-gradient-5 { background: linear-gradient(135deg, #1a1205, #2e2010, #4a3218); }
.portfolio-gradient-6 { background: linear-gradient(135deg, #0d0d1a, #1a1a2e, #0a0a14); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover .portfolio-placeholder { transform: scale(1.05); transition: transform 0.8s ease; }
.portfolio-overlay-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  text-align: center;
  padding: 0 20px;
}
.portfolio-overlay-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}
.portfolio-view-btn {
  padding: 10px 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.portfolio-view-btn:hover { background: var(--accent); color: var(--bg); }

.portfolio-cta { text-align: center; margin-top: 60px; }

/* ── Process ── */
.process { padding: var(--section-py) 0; background: var(--bg-2); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.process-step { text-align: center; padding: 64px 16px 0; }
.process-step-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
}
.process-step-num::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.process-step-name {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 24px 0 8px;
  color: var(--text);
}
.process-step-desc { font-size: 14px; color: var(--text-muted); }

/* ── About ── */
.about { padding: var(--section-py) 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo-wrap {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1a1a, #2a2010, #1a1505);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.about-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-photo-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-label { margin-bottom: 16px; }
.about-title { margin-bottom: 24px; }
.about-text { margin-bottom: 32px; font-size: 16px; }
.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.about-list li::before {
  content: '✓';
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  flex-shrink: 0;
}
.about-quote {
  padding: 24px 32px;
  border-left: 2px solid var(--accent);
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: var(--text);
  background: var(--accent-dim);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* ── Reviews ── */
.reviews { padding: var(--section-py) 0; background: var(--bg-2); }
.reviews-carousel { margin-top: 60px; max-width: 820px; margin-left: auto; margin-right: auto; }
.reviews-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.reviews-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.review-card {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.reviews-nav-btn {
  flex-shrink: 0;
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--accent);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.reviews-nav-btn:hover { background: rgba(200,169,110,0.2); border-color: rgba(200,169,110,0.6); }
.review-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.review-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.review-name { font-family: var(--font-display); font-size: 20px; color: var(--text); }
.review-meta { display: flex; gap: 8px; align-items: center; margin-top: 2px; flex-wrap: wrap; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-type { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); }
.review-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text { font-size: 15px; line-height: 1.8; color: var(--text-secondary, var(--text-muted)); }
.review-source { display: inline-flex; align-items: center; gap: 4px; margin-top: 20px; font-size: 12px; font-family: var(--font-mono); color: var(--accent); text-decoration: none; opacity: 0.6; transition: opacity 0.2s; }
.review-source:hover { opacity: 1; }
.carousel-dots { display: flex; align-items: center; gap: 8px; }
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: var(--border-light);
  border: none; padding: 0;
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}
.carousel-dot.active { background: var(--accent); width: 24px; }

/* ── FAQ ── */
.faq { padding: var(--section-py) 0; }
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 60px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text);
  background: var(--bg-2);
  transition: background var(--transition);
  cursor: none;
  gap: 16px;
}
.faq-question:hover { background: var(--bg-3); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--accent);
  font-size: 18px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background: var(--bg-2);
  padding: 0 28px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 28px 24px; }
.faq-answer p { font-size: 15px; color: var(--text-muted); }

/* ── Contact ── */
.contact { padding: var(--section-py) 0; background: var(--bg-2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { cursor: none; }
.form-select option { background: var(--bg-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; }

.contact-info { padding-top: 20px; }
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 40px;
  margin-bottom: 16px;
}
.contact-info > p { margin-bottom: 40px; font-size: 16px; }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.contact-link:hover { border-color: var(--accent); transform: translateX(6px); }
.contact-link-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-link-text { font-weight: 500; font-size: 15px; }
.contact-link-sub { font-size: 12px; color: var(--text-muted); }

/* ── Footer ── */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 14px;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.footer-social:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-policy {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-policy:hover { color: var(--accent); }

/* ── Sticky Telegram Button ── */
.tg-sticky {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #229ED9;
  color: #fff;
  padding: 14px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(34, 158, 217, 0.4);
  transition: var(--transition);
  cursor: none;
}
.tg-sticky:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(34, 158, 217, 0.5); }
.tg-sticky.pulse { animation: tgPulse 1.5s ease-in-out 3; }
@keyframes tgPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-content { width: 100vw; height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; }
.lightbox-img { max-width: 100vw; max-height: 100vh; width: auto; height: auto; object-fit: contain; border-radius: 0; display: block; }
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 24px;
  cursor: none;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--accent); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  font-size: 20px;
  cursor: none;
  transition: var(--transition);
  background: rgba(10,10,10,0.8);
}
.lightbox-nav:hover { border-color: var(--accent); color: var(--accent); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ── Popups ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-card {
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  max-width: 480px;
  width: 90%;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 20px;
  cursor: none;
  transition: color var(--transition);
  background: transparent;
}
.popup-close:hover { color: var(--accent); }
.popup-label { margin-bottom: 12px; }
.popup-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}
.popup-sub { margin-bottom: 28px; }
.popup-form { display: flex; flex-direction: column; gap: 12px; }
.popup-success {
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.popup-success-icon { font-size: 48px; }
.popup-success p { color: var(--text); font-size: 16px; }
.popup-success a { color: var(--accent); text-decoration: underline; }

/* ── Page Header (for inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,110,0.06) 0%, transparent 70%);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: clamp(16px, 2vw, 20px); max-width: 560px; margin: 0 auto; }

/* ── Breadcrumbs ── */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumbs a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--accent); }

/* ── Packages (pricing) ── */
.packages { padding: var(--section-py) 0; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.package-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.package-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #111111, #1a1505);
}
.package-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.package-name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.package-price {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--text);
  margin-bottom: 4px;
}
.package-price-label { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.package-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.package-features li::before { content: '✓'; color: var(--accent); font-family: var(--font-mono); }

/* ── Utility ── */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Section Headers ── */
.section-header { margin-bottom: clamp(48px, 6vw, 80px); }
.section-header.centered { text-align: center; }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item:nth-child(3n+2) { margin-top: 0; }
  .portfolio-item:nth-child(2n+2) { margin-top: 32px; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .process-timeline::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header-inner .btn { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:nth-child(2n+2) { margin-top: 0; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .reviews-nav-prev { left: 0; }
  .reviews-nav-next { right: 0; }
  .tg-sticky { bottom: 20px; right: 20px; padding: 12px 16px; font-size: 13px; }
}

@media (max-width: 480px) {
  .process-timeline { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}

/* ── Print ── */
@media print {
  .header, .footer, .tg-sticky, .popup-overlay { display: none; }
}
