/* ============================================
   АБСОЛЮТ - Студия мебели
   Полный CSS-файл
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1a1a1a;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
}
.header-top {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
}
.header-content {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 60px; width: auto; }

.nav { display: flex; gap: 80px; }
.nav-link {
  padding: 8px 0; text-decoration: none; color: #ffffff;
  font-weight: 500; font-size: 14px; text-transform: uppercase;
  letter-spacing: 1px; transition: all 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: #D4A574;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 24px; }
.social-icons { display: flex; align-items: center; gap: 16px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; text-decoration: none;
}
.social-icon i { font-size: 16px; color: #ff8c42; transition: color 0.3s; }
.social-icon:hover { background: #ff8c42; transform: translateY(-2px); }
.social-icon:hover i { color: white; }

.phone { display: flex; align-items: center; gap: 8px; text-decoration: none; color: white; font-weight: 600; font-size: 15px; transition: color 0.3s ease; }
.phone:hover { color: #D4A574; }
.phone i { color: #ff8c42; font-size: 14px; }

.menu-toggle {
  display: none; width: 44px; height: 44px; border: none;
  background: rgba(255,255,255,0.1); border-radius: 10px;
  cursor: pointer; font-size: 18px; color: white;
  align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.menu-toggle:hover { background: #8B5A2B; }

.header-categories {
  background: white; border-radius: 0 0 35px 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  margin: -1px auto -60px; max-width: 900px; position: relative; z-index: 10;
}
.categories-nav { display: flex; justify-content: center; gap: 4px; padding: 6px 0; }
.category-link {
  display: flex; align-items: center; padding: 12px 24px;
  text-decoration: none; color: #000000; font-size: 13px;
  font-weight: 500; border-radius: 8px;
  transition: all 0.3s ease; white-space: nowrap;
}
.category-link:hover { background: #f8f6f4; color: #8B5A2B; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #1a1a1a; color: #fff; padding: 80px 0; }
.footer .container { max-width: 1200px; }
.footer-content { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 80px; align-items: end; }
.footer-logo { display: flex; align-items: center; margin-bottom: 24px; }
.footer-logo-img { height: 60px; width: auto; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: #fff; font-size: 18px; }
.contact-list i { color: #ff6b35; font-size: 18px; width: 20px; }
.contact-list a { color: #fff; text-decoration: none; transition: color 0.3s ease; }
.contact-list a:hover { color: #ff6b35; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 16px; }
.footer-links a { color: #fff; text-decoration: none; font-size: 16px; font-weight: 500; letter-spacing: 0.5px; transition: color 0.3s ease; }
.footer-links a:hover { color: #ff6b35; }
.footer-cta { display: flex; align-items: flex-end; justify-content: flex-end; }
.btn-telegram {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 36px; background: #ff6b35; color: #fff;
  font-size: 16px; font-weight: 600; letter-spacing: 1px;
  text-decoration: none; border-radius: 8px;
  transition: all 0.3s ease; white-space: nowrap;
}
.btn-telegram:hover { background: #e55a2b; transform: translateY(-2px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; padding-top: 70px; }
.hero-main { position: relative; flex: 1; display: flex; align-items: center; min-height: 75vh; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.6) 50%, rgba(26,26,26,0.4) 100%); }
.hero-content { color: white; padding: 40px 0 60px; }
.hero-brand { margin-bottom: 24px; }
.hero-title { font-size: 56px; font-weight: 700; line-height: 1.2; letter-spacing: 2px; }
.hero-tagline { font-size: 28px; font-weight: 300; line-height: 1.4; color: rgba(255,255,255,0.95); margin-bottom: 8px; max-width: 500px; }
.hero-description { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 400px; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 40px; border-radius: 12px; font-size: 16px;
  font-weight: 600; text-decoration: none; transition: all 0.3s ease;
  cursor: pointer; border: none; text-transform: uppercase; letter-spacing: 1px;
}
.btn-orange { background: #ff6b35; color: white; box-shadow: 0 4px 20px rgba(255,107,53,0.3); }
.btn-orange:hover { transform: translateY(-2px); background: #e85a2a; box-shadow: 0 8px 30px rgba(255,107,53,0.4); }
.hero-cta { display: flex; align-items: center; gap: 24px; }
.hero-offer { color: #ff6b35; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.4; }

/* ============================================
   DIRECTIONS SECTION
   ============================================ */
.directions-section { padding: 60px 0; background: #ffffff; }
.directions-section .container { max-width: 1200px; padding: 0 20px; }
.section-title { font-size: 32px; font-weight: 700; color: #1a1a1a; margin-bottom: 40px; text-align: left; }
.directions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.direction-card { position: relative; height: 350px; width: 600px; overflow: hidden; transition: transform 0.3s ease; }
.direction-card:hover { transform: translateY(-4px); }
.card-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.card-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; }
.card-title { font-size: 14px; font-weight: 700; color: #1a1a1a; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.5px; max-width: 70%; }
.btn-details { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; background: #ff6b35; color: #fff; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; border: none; border-radius: 4px; cursor: pointer; transition: background 0.3s ease; align-self: flex-start; }
.btn-details:hover { background: #e55a2b; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { padding: 80px 0; background: white; }
.about-section .container { max-width: 1200px; }
.about-section .section-title { font-size: 36px; margin-bottom: 50px; }
.advantages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.advantage-item { display: flex; flex-direction: row; align-items: center; gap: 24px; }
.advantage-icon { width: 100px; height: 100px; min-width: 100px; border: 3px solid #e0e0e0; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: white; }
.advantage-icon i { font-size: 40px; color: #333; }
.advantage-icon.star i { color: #ff6b35; }
.advantage-icon.clock { background: #ff6b35; border-color: #ff6b35; }
.advantage-icon.clock i { color: white; }
.advantage-content { display: flex; flex-direction: column; gap: 6px; }
.advantage-title { font-size: 18px; font-weight: 700; color: #1a1a1a; letter-spacing: 0.5px; margin: 0 0 8px 0; }
.advantage-text { font-size: 16px; line-height: 1.5; color: #666; margin: 0; }
.cta-block { background: #f5f5f5; border-radius: 16px; padding: 40px; display: flex; align-items: center; justify-content: center; }
.cta-content { display: flex; align-items: center; gap: 40px; }
.cta-title { font-size: 22px; font-weight: 800; color: #1a1a1a; line-height: 1.3; margin: 0; letter-spacing: 0.5px; }

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio { background: #1a1a1a; color: white; }
.section-header { text-align: center; padding: 80px 0; background: #1a1a1a; max-width: 600px; margin: 0 auto; border-radius: 0 0 24px 24px; display: flex; align-items: center; justify-content: center; min-height: 200px; }
.portfolio .section-title { font-size: 36px; font-weight: 700; line-height: 1.2; color: white; }
.portfolio-content { background: white; padding: 40px 0 120px; color: #1a1a1a; }
.portfolio .container { width: 100%; padding: 0; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 320px); gap: 4px; }
.portfolio-item { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; display: block; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.portfolio-item:hover img { transform: scale(1.03); }
.portfolio-placeholder { width: 100%; height: 100%; background: #e5e5e5; display: flex; align-items: center; justify-content: center; font-size: 48px; color: #999; }
.section-footer { text-align: right; margin-top: 60px; padding: 0 24px; }
.btn-more { display: inline-flex; align-items: center; padding: 14px 28px; background: #ff6b35; border: none; border-radius: 8px; font-size: 15px; font-weight: 600; color: white; text-decoration: none; transition: all 0.3s ease; }
.btn-more:hover { background: #e55a2b; }

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section { background: white; }
.reviews-section .container { max-width: 1400px; }
.reviews-section .section-title { font-size: 42px; font-weight: 700; color: #1a1a1a; text-align: left; padding: 60px 0 40px 40px; margin: 0; letter-spacing: -0.5px; }
.reviews-slider-container { background: #1a1a1a; padding: 80px 0; }
.reviews-slider { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; }
.nav-arrow { width: 50px; height: 50px; background: transparent; border: none; color: #ff6b35; font-size: 36px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-arrow:hover { color: #ff8555; transform: scale(1.1); }
.review-slide { flex: 1; text-align: left; max-width: 900px; margin: 0; }
.review-text { font-size: 18px; line-height: 1.8; color: white; margin-bottom: 30px; font-style: normal; }
.review-author { font-size: 14px; font-weight: 600; color: white; letter-spacing: 1px; }
.reviews-dots { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.dot.active { background: #ff6b35; }
.dot:hover { background: rgba(255,107,53,0.7); }

/* ============================================
   CONSULTATION SECTION
   ============================================ */
.consultation { padding: 80px 0; background: white; }
.consultation .container { max-width: 1200px; }
.consultation-card { background: white; border-radius: 24px; box-shadow: 0 4px 40px rgba(0,0,0,0.08); overflow: visible; }
.consultation-content { display: grid; grid-template-columns: 1.5fr 0.4fr; min-height: 320px; }
.consultation-text { padding: 48px 50px; display: flex; flex-direction: column; justify-content: center; }
.consultation-title { font-size: 32px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; color: #1a1a1a; }
.consultation-desc { font-size: 15px; line-height: 1.5; color: #666; margin-bottom: 32px; font-weight: 700; }
.consultation-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; align-items: stretch; }
.form-group { position: relative; display: flex; align-items: center; }
.form-group i { position: absolute; left: 14px; color: #666; font-size: 14px; z-index: 1; }
.form-group input { width: 100%; padding: 10px 12px 10px 34px; border: none; border-radius: 8px; font-size: 13px; background: #e8e8e8; color: #333; transition: all 0.3s ease; }
.form-group input:focus { outline: none; background: #ddd; }
.form-group input::placeholder { color: #888; }
.btn-submit { padding: 10px 20px; background: #ff6b35; color: white; border: none; border-radius: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.3px; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; white-space: nowrap; }
.btn-submit:hover:not(:disabled) { background: #e55a2b; transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-success { text-align: left; color: #10B981; font-weight: 500; padding: 12px 16px; background: rgba(16,185,129,0.1); border-radius: 8px; font-size: 14px; }
.form-success i { margin-right: 8px; }
.consultation-image { background: #ff6b35; display: flex; align-items: center; justify-content: center; padding: 0; position: relative; overflow: visible; border-radius: 0 24px 24px 0; }
.consultation-image img { width: 144%; height: auto; max-width: none; object-fit: contain; margin: 0; position: relative; z-index: 2; }

/* ============================================
   PAGE HERO (shared for catalog, portfolio, prices, contacts)
   ============================================ */
.page-hero { padding: 140px 0 80px; position: relative; }
.page-hero .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: 1; }

/* Catalog page hero */
.page-hero--catalog { background: url('https://fs.chatium.ru/get/image_msk_ZKzcA6tRQO.8017x3213.png') center/cover no-repeat; color: white; }
.page-hero--catalog::before { background: rgba(0,0,0,0.5); }
.page-hero--catalog .page-title { font-size: 56px; font-weight: 700; margin-bottom: 16px; }
.page-hero--catalog .page-description { font-size: 18px; color: #888; max-width: 600px; }

/* Portfolio page hero */
.page-hero--portfolio { background: url('https://fs.chatium.ru/get/image_msk_AlwonsQJtC.8009x3191.png') center/cover no-repeat; color: white; min-height: calc(100vh - 200px); display: flex; align-items: center; }
.page-hero--portfolio .hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); z-index: 1; }
.page-hero--portfolio .container { max-width: 1400px; }
.page-hero--portfolio .page-title { font-size: 56px; font-weight: 700; margin-bottom: 16px; color: white; }
.page-hero--portfolio .page-description { font-size: 20px; color: white; max-width: 500px; margin-bottom: 8px; }
.page-hero--portfolio .page-description-secondary { font-size: 20px; color: white; max-width: 500px; margin-bottom: 32px; }
.cta-button { background: #e67e22; color: white; border: none; padding: 16px 40px; font-size: 16px; font-weight: 600; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; text-decoration: none; display: inline-block; }
.cta-button:hover { background: #d35400; transform: translateY(-2px); }

/* Prices page hero */
.page-hero--prices { min-height: 500px; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://fs.chatium.ru/get/image_msk_efEDeRJqsc.8017x3213.png'); background-size: cover; background-position: center; color: white; display: flex; align-items: center; }
.page-hero--prices .container { max-width: 1000px; }
.page-hero--prices .page-title { font-size: 56px; font-weight: 700; margin-bottom: 16px; }
.page-hero--prices .page-description { font-size: 18px; color: white; max-width: 500px; line-height: 1.6; margin-bottom: 32px; }
.btn-hero { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: #f97316; color: white; border: none; border-radius: 12px; font-size: 16px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s ease; }
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); background: #ea580c; }

/* Contacts page hero */
.page-hero--contacts { background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); color: white; }
.page-hero--contacts .page-title { font-size: 56px; font-weight: 700; margin-bottom: 16px; }
.page-hero--contacts .page-description { font-size: 18px; color: #888; max-width: 500px; }

/* Breadcrumbs */
.breadcrumbs { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #888; margin-bottom: 24px; }
.breadcrumbs a { color: #D4A574; text-decoration: none; }
.breadcrumbs i { font-size: 12px; }
.page-hero--prices .breadcrumbs { color: rgba(255,255,255,0.7); }
.page-hero--prices .breadcrumbs a { color: white; }
.page-hero--prices .breadcrumbs a:hover { color: #D4A574; }
.page-hero--portfolio .breadcrumbs { color: rgba(255,255,255,0.7); }
.page-hero--portfolio .breadcrumbs a { color: white; }

/* ============================================
   COMPLETED PROJECTS (catalog page)
   ============================================ */
.completed-projects { padding: 80px 0; background: #ffffff; }
.completed-projects .container { max-width: 1400px; }
.completed-projects .section-title { font-size: 42px; font-weight: 700; color: #1a1a1a; margin-bottom: 48px; text-align: left; padding-left: 60px; }
.slider-wrapper { position: relative; padding: 0 60px; }
.slider-container { flex: 1; overflow: hidden; }
.slider-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.project-card { flex: 0 0 calc((100% - 48px) / 3); background: white; overflow: hidden; }
.project-image { width: 100%; height: 280px; overflow: hidden; }
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-info { padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.project-title { font-size: 14px; font-weight: 600; color: #1a1a1a; line-height: 1.4; white-space: pre-line; }
.btn-price { padding: 10px 16px; background: #ff8c42; color: white; border: none; font-size: 12px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.btn-price:hover { background: #e67a32; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: #ff8c42; color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; z-index: 10; }
.slider-arrow-prev { left: 0; }
.slider-arrow-next { right: 0; }
.slider-arrow:hover { background: #e67a32; }

/* ============================================
   KITCHEN PROJECTS (prices page)
   ============================================ */
.kitchen-projects { padding: 80px 0; background: #ffffff; }
.kitchen-projects .container { max-width: 1400px; padding: 0 24px; }
.kitchen-projects .section-title { font-size: 42px; font-weight: 700; color: #1a1a1a; margin-bottom: 48px; text-align: left; padding-left: 60px; }
.kitchen-projects .project-image { width: 100%; height: 280px; overflow: hidden; }
.kitchen-projects .project-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-section { padding: 80px 0; background: #ffffff; }
.why-us-section .container { max-width: 1400px; padding: 0 60px; }
.why-us-section .section-title { font-size: 42px; font-weight: 700; color: #1a1a1a; margin-bottom: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 48px; margin-bottom: 48px; }
.feature-item { display: flex; align-items: flex-start; gap: 20px; }
.feature-icon { flex-shrink: 0; width: 84px; height: 84px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.feature-icon i { font-size: 36px; color: #ff8c42; }
.feature-content { flex: 1; }
.feature-title { font-size: 16px; font-weight: 700; color: #1a1a1a; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.feature-text { font-size: 15px; color: #666; line-height: 1.6; }
.cta-wrapper { display: flex; justify-content: flex-end; }
.btn-consultation { display: inline-block; padding: 16px 32px; background: #ff8c42; color: white; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; cursor: pointer; transition: all 0.3s ease; }
.btn-consultation:hover { background: #e67a32; transform: translateY(-2px); }

/* ============================================
   WORK STAGES SECTION (catalog)
   ============================================ */
.work-stages-section { padding: 80px 0; background: white; }
.work-stages-section .container { max-width: 1400px; padding: 0 60px; padding-left: 0; }
.work-stages-section .section-title { font-size: 42px; font-weight: 700; color: #1a1a1a; margin-bottom: 48px; margin-left: 50px; }
.stages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding-bottom: 30px; margin-left: 0; }
.stage-card { position: relative; border-radius: 20px; aspect-ratio: 1 / 1.2; margin-right: -30px; overflow: hidden; }
.stage-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.stage-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; padding: 24px; padding-bottom: 24px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; text-align: left; background: linear-gradient(to bottom, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.7) 50%, transparent 100%); }
.stage-title { font-size: 16px; font-weight: 700; color: #1a1a1a; letter-spacing: 0.5px; margin-bottom: 8px; line-height: 1.3; }
.stage-description { font-size: 12px; color: #444; line-height: 1.4; margin-bottom: 12px; }
.stage-btn { display: inline-block; padding: 10px 18px; background: #ff6b35; color: white; border: none; border-radius: 6px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; cursor: pointer; transition: all 0.3s ease; text-align: center; width: fit-content; }
.stage-btn:hover { background: #e55a2b; transform: translateY(-2px); }
.stage-number { position: absolute; top: 50%; right: -5px; transform: translateY(-50%); width: 44px; height: 44px; background: #4a4a4a; color: #ff6b35; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; box-shadow: 0 2px 8px rgba(0,0,0,0.3); gap: 2px; z-index: 100; }
.stage-arrow { font-size: 10px; color: #ff6b35; margin-left: 2px; }

/* ============================================
   FURNITURE PROJECTS (portfolio page)
   ============================================ */
.furniture-projects { padding: 80px 0; background: #ffffff; }
.furniture-projects .container { max-width: 1400px; padding: 0 24px; }
.furniture-projects .section-title { font-size: 42px; font-weight: 700; color: #1a1a1a; margin-bottom: 48px; text-align: left; padding-left: 60px; }
.furniture-projects .project-image { width: 100%; max-height: 600px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #f5f5f5; }
.furniture-projects .project-image img { width: 100%; height: 100%; object-fit: contain; }

/* ============================================
   MATERIALS SECTION
   ============================================ */
.materials-section { padding: 80px 0; background: #ffffff; }
.materials-section .container { max-width: 1200px; padding: 0 40px; }
.header-row { display: flex; justify-content: flex-start; align-items: center; margin-bottom: 48px; }
.materials-section .section-title { font-size: 42px; font-weight: 700; color: #1a1a1a; text-align: left; }
.materials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.material-card { display: flex; flex-direction: column; }
.material-image-wrapper { width: 100%; aspect-ratio: 3 / 4; overflow: hidden; margin-bottom: 24px; }
.material-image { width: 100%; height: 100%; object-fit: cover; }
.material-image--contain { object-fit: contain; }
.material-info { text-align: center; }
.material-title { font-size: 16px; font-weight: 700; color: #1a1a1a; letter-spacing: 0.5px; margin-bottom: 12px; }
.material-description { font-size: 14px; color: #666; line-height: 1.5; }
.cta-btn { display: inline-block; padding: 16px 40px; background: #f97316; color: white; border: none; border-radius: 8px; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; cursor: pointer; transition: all 0.3s ease; }
.cta-btn:hover { background: #ea580c; transform: translateY(-2px); }

/* ============================================
   FURNITURE FEATURES (portfolio page)
   ============================================ */
.furniture-features { padding: 100px 0; background: #ffffff; }
.furniture-features .container { max-width: 1200px; padding: 0 24px; }
.furniture-features .section-title { font-size: 48px; font-weight: 700; color: #1a1a1a; text-align: left; margin-bottom: 60px; }
.furniture-features .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 60px; margin-bottom: 60px; }
.feature-card { display: flex; align-items: flex-start; gap: 24px; }
.feature-card .feature-icon { flex-shrink: 0; width: 80px; height: 80px; background: white; border-radius: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 12px rgba(0,0,0,0.08); overflow: hidden; padding: 12px; }
.feature-card .feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-card .feature-content { flex: 1; padding-top: 8px; }
.feature-card .feature-title { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; letter-spacing: 0.5px; text-transform: none; }
.feature-line { display: block; width: 100%; max-width: 400px; height: 2px; background: #f97316; margin-top: 20px; }
.feature-card .feature-description { font-size: 16px; color: #666; line-height: 1.5; max-width: 320px; }
.features-cta { display: flex; justify-content: flex-end; margin-top: 20px; }
.btn-primary { display: inline-flex; align-items: center; gap: 12px; padding: 16px 40px; background: #f97316; color: white; border: none; border-radius: 12px; font-size: 16px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(249,115,22,0.3); background: #ea580c; }

/* ============================================
   DESIGN STAGES (portfolio page)
   ============================================ */
.design-stages-section { padding: 80px 0; background: white; }
.design-stages-section .container { max-width: 1400px; padding: 0 60px; }
.design-stages-section .section-title { font-size: 42px; font-weight: 700; color: #1a1a1a; margin-bottom: 48px; line-height: 1.2; }
.design-stages-section .stages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding-bottom: 30px; }
.design-stages-section .stage-card { position: relative; border-radius: 20px; aspect-ratio: 1 / 0.68; margin-right: -30px; overflow: hidden; }
.design-stages-section .stage-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.design-stages-section .stage-number { position: absolute; top: 50%; right: -5px; transform: translateY(-50%); width: 44px; height: 44px; background: #4a4a4a; color: #ff6b35; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; box-shadow: 0 2px 8px rgba(0,0,0,0.3); gap: 2px; z-index: 100; }
.design-stages-section .stage-arrow { font-size: 10px; color: #ff6b35; margin-left: 2px; }
.button-wrapper { display: flex; justify-content: flex-end; margin-top: 20px; }
.design-stages-section .stage-btn { display: inline-block; padding: 14px 28px; background: #ff6b35; color: white; border: none; border-radius: 6px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; cursor: pointer; transition: all 0.3s ease; }
.design-stages-section .stage-btn:hover { background: #e55a2b; transform: translateY(-2px); }

/* ============================================
   KITCHEN FEATURES (prices page)
   ============================================ */
.kitchen-features { padding: 100px 0; background: #ffffff; }
.kitchen-features .container { max-width: 1200px; padding: 0 24px; }
.kitchen-features .section-title { font-size: 48px; font-weight: 700; color: #1a1a1a; text-align: left; margin-bottom: 60px; }
.kitchen-features .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 60px; margin-bottom: 60px; }
.kitchen-features .feature-card { display: flex; align-items: flex-start; gap: 30px; }
.kitchen-features .feature-icon { flex-shrink: 0; width: 100px; height: 100px; background: white; border-radius: 24px; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 12px rgba(0,0,0,0.05); overflow: hidden; }
.kitchen-features .feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.kitchen-features .feature-content { flex: 1; padding-top: 12px; }
.kitchen-features .feature-title { font-size: 19px; font-weight: 600; color: #1a1a1a; margin-bottom: 10px; letter-spacing: 0.5px; text-transform: none; }
.kitchen-features .feature-line { display: block; width: 500px; height: 3px; background: #f97316; margin-top: 60px; margin-bottom: 10px; }
.kitchen-features .feature-description { font-size: 19px; color: #666; line-height: 1.5; }
.kitchen-features .features-cta { display: flex; justify-content: flex-end; margin-top: 40px; }
.kitchen-features .btn-primary { display: inline-flex; align-items: center; gap: 12px; padding: 20px 50px; background: #f97316; color: white; border: none; border-radius: 16px; font-size: 19px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px; }
.kitchen-features .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(249,115,22,0.3); background: #ea580c; }

/* ============================================
   KITCHEN WORK STAGES (prices page)
   ============================================ */
.kitchen-work-stages { padding: 80px 0; background: #ffffff; }
.kitchen-work-stages .container { max-width: 1400px; padding: 0 40px; }
.kitchen-work-stages .section-title { font-size: 42px; font-weight: 700; color: #1a1a1a; margin-bottom: 48px; text-align: left; }
.kitchen-work-stages .stages-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.kitchen-work-stages .stage-card { position: relative; border-radius: 20px; aspect-ratio: 1 / 1.3; margin-right: -20px; overflow: hidden; }
.kitchen-work-stages .stage-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.kitchen-work-stages .stage-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; }
.kitchen-work-stages .stage-title { font-size: 18px; font-weight: 700; color: #1a1a1a; letter-spacing: 0.5px; margin-bottom: 8px; margin-top: 40px; margin-left: 10px; }
.kitchen-work-stages .stage-description { font-size: 18px; color: #444; line-height: 1.4; margin-bottom: 12px; margin-left: 10px; }
.kitchen-work-stages .stage-btn { display: inline-block; padding: 10px 16px; background: #ff6b35; color: white; border: none; border-radius: 6px; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; cursor: pointer; transition: all 0.3s ease; text-align: center; width: fit-content; margin-top: 120px; margin-left: 10px; }
.kitchen-work-stages .stage-btn:hover { background: #e55a2b; transform: translateY(-2px); }
.kitchen-work-stages .stage-number { position: absolute; top: 50%; right: 0; transform: translateY(-50%); width: 36px; height: 36px; background: #4a4a4a; color: #ff6b35; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; gap: 2px; z-index: 10; }
.kitchen-work-stages .stage-arrow { font-size: 8px; color: #ff6b35; margin-left: 2px; }
.result-section { margin-top: 40px; }
.result-image-wrapper { position: relative; border-radius: 20px; overflow: hidden; }
.result-image { width: 100%; height: auto; display: block; }
.result-overlay { position: absolute; left: 0; top: 0; bottom: 0; width: 45%; background: rgba(255,255,255,0.1); display: flex; align-items: flex-start; padding: 50px 40px; gap: 20px; }
.result-number { width: 44px; height: 44px; background: #4a4a4a; color: #ff6b35; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; margin-top: 35px; margin-left: 50px; }
.result-text { text-align: left; }
.result-title { font-size: 18px; font-weight: 700; color: #1a1a1a; letter-spacing: 0.5px; margin-bottom: 8px; }
.result-description { font-size: 14px; color: #666; line-height: 1.4; }

/* ============================================
   CONTACTS PAGE
   ============================================ */
.contacts-content { padding: 80px 0 120px; background: #f8f6f4; }
.contacts-content .container { max-width: 1200px; }
.contacts-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.info-block { display: flex; gap: 20px; }
.info-icon { width: 56px; height: 56px; background: linear-gradient(135deg, #8B5A2B 0%, #D4A574 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: white; flex-shrink: 0; }
.info-content h3 { font-size: 18px; font-weight: 600; color: #1a1a1a; margin-bottom: 8px; }
.info-content p { font-size: 16px; color: #555; margin-bottom: 4px; }
.info-link { font-size: 18px; font-weight: 600; color: #8B5A2B; text-decoration: none; transition: color 0.3s ease; }
.info-link:hover { color: #6B4423; }
.info-note { font-size: 14px !important; color: #888 !important; }
.contact-form-wrapper { background: white; padding: 48px; border-radius: 24px; box-shadow: 0 10px 60px rgba(0,0,0,0.1); }
.form-header { margin-bottom: 32px; }
.form-header h2 { font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.form-header p { font-size: 16px; color: #666; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 8px; }
.contact-form .form-group i { display: none; }
.contact-form .form-group label { font-size: 14px; font-weight: 600; color: #1a1a1a; }
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea { padding: 14px 18px; border: 2px solid #e5e5e5; border-radius: 12px; font-size: 15px; transition: border-color 0.3s ease; background: white; }
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus { outline: none; border-color: #8B5A2B; }
.contact-form .form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-submit { padding: 18px 32px; background: linear-gradient(135deg, #8B5A2B 0%, #D4A574 100%); color: white; border: none; border-radius: 12px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; }
.contact-form .btn-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,90,43,0.4); }
.contact-form .btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.contact-form .form-success { text-align: center; color: #10B981; font-weight: 500; padding: 16px; background: rgba(16,185,129,0.1); border-radius: 8px; margin-top: 0; }
.contact-form .form-success i { margin-right: 8px; }
.form-note { text-align: center; font-size: 13px; color: #888; margin-top: 8px; }
.form-note a { color: #8B5A2B; text-decoration: underline; }

/* ============================================
   SERVICES SECTION (not on main pages but kept)
   ============================================ */
.services-section { padding: 120px 0; background: #f8f6f4; }
.services-section .container { max-width: 1400px; }
.services-section .section-header { text-align: center; margin-bottom: 60px; }
.section-badge { display: inline-block; background: rgba(139,90,43,0.1); color: #8B5A2B; padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.services-section .section-title { font-size: 48px; font-weight: 700; color: #1a1a1a; line-height: 1.2; margin-bottom: 16px; }
.services-section .section-description { font-size: 18px; color: #666; max-width: 500px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: white; padding: 40px 32px; border-radius: 20px; text-align: center; transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.05); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.service-icon { width: 72px; height: 72px; background: linear-gradient(135deg, #8B5A2B 0%, #D4A574 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 28px; color: white; }
.service-title { font-size: 20px; font-weight: 600; color: #1a1a1a; margin-bottom: 12px; }
.service-desc { font-size: 15px; color: #666; line-height: 1.6; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet / 1024px */
@media (max-width: 1024px) {
  .hero-title { font-size: 48px; }
  .hero-tagline { font-size: 24px; }
  .project-card { flex: 0 0 calc((100% - 24px) / 2); }
  .furniture-projects .section-title { font-size: 36px; }
  .furniture-projects .project-image { max-height: 450px; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 260px); }
  .section-title { font-size: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-section .section-title { font-size: 36px; }
  .why-us-section .container { padding: 0 40px; }
  .why-us-section .features-grid { gap: 24px 32px; }
  .page-hero--portfolio .page-title { font-size: 40px; }
  .contacts-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { order: 2; }
  .contact-form-wrapper { order: 1; }
}

/* Small tablet / 992px */
@media (max-width: 992px) {
  .consultation-content { grid-template-columns: 1fr; }
  .consultation-image { display: none; }
  .consultation-text { padding: 40px 32px; }
  .consultation-title { font-size: 28px; }
  .work-stages-section .container { padding: 0 40px; }
  .work-stages-section .stages-grid { gap: 16px; }
  .stage-overlay { padding: 20px; }
  .stage-title { font-size: 13px; }
  .stage-description { font-size: 11px; }
  .stage-btn { padding: 8px 12px; font-size: 9px; }
  .kitchen-work-stages .stages-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .kitchen-work-stages .stage-card { margin-right: 0; }
  .result-overlay { width: 60%; padding: 30px; }
  .result-title { font-size: 16px; }
  .result-description { font-size: 12px; }
  .cabinet-work-stages .stages-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cabinet-work-stages .stage-card { margin-right: 0; }
  .cabinet-work-stages .stage-number { right: 10px; }
  .materials-grid { gap: 24px; }
  .material-title { font-size: 14px; }
  .material-description { font-size: 13px; }
}

/* Mobile / 768px */
@media (max-width: 768px) {
  .hero-title { font-size: 36px; letter-spacing: 1px; }
  .hero-tagline { font-size: 20px; }
  .hero { min-height: 80vh; }

  .nav { position: fixed; top: 120px; left: 0; right: 0; background: #1a1a1a; flex-direction: column; padding: 20px; gap: 0; box-shadow: 0 10px 40px rgba(0,0,0,0.3); transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 999; }
  .nav.nav-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-link::after { display: none; }
  .categories-nav { flex-wrap: wrap; justify-content: center; gap: 4px; padding: 8px 0; }
  .category-link { padding: 8px 12px; font-size: 12px; }
  .social-link span, .phone span { display: none; }
  .menu-toggle { display: flex; }

  .direction-card { height: 240px; }
  .card-title { font-size: 12px; }
  .btn-details { padding: 8px 16px; font-size: 10px; }
  .card-overlay { padding: 16px; }

  .about-section { padding: 60px 0; }
  .about-section .section-title { font-size: 28px; margin-bottom: 30px; }
  .advantages-grid { grid-template-columns: 1fr; gap: 30px; }
  .advantage-item { gap: 20px; }
  .advantage-icon { width: 70px; height: 70px; min-width: 70px; }
  .advantage-icon i { font-size: 28px; }
  .advantage-title { font-size: 16px; }
  .advantage-text { font-size: 14px; }
  .cta-block { padding: 30px; }
  .cta-content { flex-direction: column; text-align: center; gap: 20px; }
  .cta-title { font-size: 18px; }
  .btn { padding: 14px 24px; font-size: 13px; }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(5, 220px); gap: 4px; }

  .reviews-section .section-title { font-size: 32px; padding: 40px 0 30px; }
  .reviews-slider-container { padding: 50px 0; }
  .reviews-slider { gap: 20px; }
  .nav-arrow { width: 40px; height: 40px; font-size: 24px; }
  .review-text { font-size: 16px; }
  .review-author { font-size: 12px; }

  .directions-grid { grid-template-columns: 1fr; }
  .direction-card { height: 240px; width: 100%; }

  .page-title { font-size: 36px; }
  .page-hero { padding: 120px 0 60px; }

  .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-cta { grid-column: 1 / -1; justify-content: flex-start; }

  .project-card { flex: 0 0 100%; }
  .completed-projects .section-title { font-size: 28px; }
  .slider-wrapper { padding: 0 44px; }
  .slider-arrow { width: 36px; height: 36px; font-size: 14px; }
  .project-info { flex-direction: column; align-items: flex-start; }
  .btn-price { width: 100%; text-align: center; }

  .why-us-section { padding: 60px 0; }
  .why-us-section .container { padding: 0 24px; }
  .why-us-section .section-title { font-size: 28px; margin-bottom: 36px; }
  .why-us-section .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-wrapper { justify-content: center; }

  .work-stages-section { padding: 60px 0; }
  .work-stages-section .container { padding: 0 24px; }
  .work-stages-section .section-title { font-size: 28px; margin-bottom: 36px; margin-left: 0; }
  .work-stages-section .stages-grid { gap: 16px; padding-bottom: 25px; }
  .stage-overlay { padding: 12px; }
  .stage-title { font-size: 12px; margin-bottom: 6px; }
  .stage-description { font-size: 10px; margin-bottom: 10px; }
  .stage-btn { padding: 6px 10px; font-size: 8px; }
  .stage-number { width: 36px; height: 36px; font-size: 12px; right: -5px; }
  .stage-arrow { font-size: 8px; }

  .furniture-projects .section-title { font-size: 28px; padding-left: 44px; }
  .furniture-projects .project-image { max-height: 500px; }

  .furniture-features { padding: 75px 0; }
  .furniture-features .section-title { font-size: 36px; margin-bottom: 42px; }
  .furniture-features .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .furniture-features .feature-icon { width: 70px; height: 70px; padding: 10px; }
  .furniture-features .feature-title { font-size: 17px; }
  .furniture-features .feature-description { font-size: 15px; }
  .btn-primary { padding: 14px 32px; font-size: 15px; }
  .features-cta { justify-content: center; }

  .kitchen-features { padding: 75px 0; }
  .kitchen-features .section-title { font-size: 36px; margin-bottom: 42px; }
  .kitchen-features .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .kitchen-features .feature-icon { width: 84px; height: 84px; }
  .kitchen-features .feature-title { font-size: 17px; }
  .kitchen-features .feature-description { font-size: 17px; }
  .kitchen-features .btn-primary { padding: 16px 40px; font-size: 17px; }

  .kitchen-work-stages { padding: 60px 0; }
  .kitchen-work-stages .container { padding: 0 24px; }
  .kitchen-work-stages .section-title { font-size: 28px; margin-bottom: 36px; }
  .kitchen-work-stages .stages-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto 30px; }
  .kitchen-work-stages .stage-card { aspect-ratio: 1 / 1.1; }
  .result-overlay { width: 80%; padding: 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .result-number { width: 36px; height: 36px; font-size: 12px; }
  .result-title { font-size: 14px; }
  .result-description { font-size: 11px; }

  .materials-section { padding: 60px 0; }
  .materials-section .container { padding: 0 24px; }
  .header-row { flex-direction: column; gap: 24px; margin-bottom: 36px; }
  .materials-section .section-title { font-size: 28px; text-align: center; }
  .materials-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto 36px; gap: 32px; }
  .material-image-wrapper { aspect-ratio: 1 / 1.2; }
  .cta-wrapper { justify-content: center; }

  .consultation { padding: 40px 0; background: #f8f6f4; }
  .consultation-card { box-shadow: none; border-radius: 0; }
  .consultation-text { padding: 32px 24px; }
  .consultation-title { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .btn-submit { width: 100%; }

  .design-stages-section { padding: 60px 0; }
  .design-stages-section .container { padding: 0 24px; }
  .design-stages-section .section-title { font-size: 28px; margin-bottom: 36px; }
  .design-stages-section .stages-grid { grid-template-columns: 1fr; gap: 16px; padding-bottom: 25px; }
  .design-stages-section .stage-card { aspect-ratio: 1 / 0.57; margin-right: 0; }
  .design-stages-section .stage-number { right: 15px; }
  .button-wrapper { justify-content: center; }

  .contacts-content { padding: 60px 0 80px; }
  .page-hero--contacts .page-title { font-size: 32px; }
  .contact-form-wrapper { padding: 32px 24px; }
  .form-header h2 { font-size: 24px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .form-note { margin-top: 8px; }
}

/* Small mobile / 640px */
@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(5, 180px); gap: 4px; }
  .section-title { font-size: 24px; }
  .section-header { padding: 80px 0 30px; }
  .portfolio-content { padding: 30px 0 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-section .section-title { font-size: 28px; }
  .services-section { padding: 80px 0; }
  .kitchen-features .feature-line { width: 100%; }
  .furniture-features .feature-line { width: 100%; }
  .page-hero--portfolio .page-title { font-size: 32px; }
  .page-hero--portfolio .page-description,
  .page-hero--portfolio .page-description-secondary { font-size: 18px; }
  .page-hero--catalog .page-title { font-size: 36px; }
  .page-hero--prices .page-title { font-size: 36px; }
  .page-hero--catalog .page-hero { padding: 120px 0 60px; }
}

/* Extra small / 480px */
@media (max-width: 480px) {
  .header-content { height: 80px; }
  .nav { top: 110px; }
  .category-link span { display: none; }
  .category-link { padding: 10px 14px; }
  .category-link i { font-size: 16px; }

  .footer-content { grid-template-columns: 1fr; gap: 30px; align-items: start; }
  .footer-cta { grid-column: auto; }

  .feature-icon { width: 64px; height: 64px; }
  .feature-icon i { font-size: 28px; }
  .feature-title { font-size: 14px; }
  .feature-text { font-size: 14px; }

  .work-stages-section .stages-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .work-stages-section .stage-card { aspect-ratio: 1 / 1.2; }

  .kitchen-work-stages .stage-title { font-size: 12px; }
  .kitchen-work-stages .stage-description { font-size: 11px; }
  .kitchen-work-stages .stage-btn { padding: 8px 12px; font-size: 9px; }
  .result-overlay { width: 100%; background: rgba(255,255,255,0.1); }

  .design-stages-section .stage-card { aspect-ratio: 1 / 0.65; }
  .page-hero--portfolio .page-title { font-size: 32px; }
}
