/* ===== FONTS ===== */
@font-face {
  font-family: 'TT Commons Pro';
  src: url('fonts/TT_Commons_Pro/TT_Commons_Pro_Regular.woff2') format('woff2'),
       url('fonts/TT_Commons_Pro/TT_Commons_Pro_Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Ramillas';
  src: url('fonts/TT_Ramillas/TT_Ramillas_Light.woff2') format('woff2'),
       url('fonts/TT_Ramillas/TT_Ramillas_Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg: #101010;
  --bg-lighter: #1a1a1a;
  --primary: #cb3b25;
  --primary-hover: #e14c35;
  --orange: #ff673d;
  --amber: #ffa15e;
  --gold: #ffc535;
  --green: #93d200;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.6);
  --content_width: 1770px;
  --transparent_white_color: rgb(255 255 255 / 60%);
  --color_1: #ffa25f;
  --text-dim: rgba(255,255,255,0.4);
  --border: rgba(255,255,255,0.1);
  --border-light: rgba(255,255,255,0.15);
  --font-heading: 'TT Ramillas', 'TT Ramillas Trl', Georgia, serif;
  --font-body: 'TT Commons Pro', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1920px;
  --container: 1320px;
  --header-h: 88px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background-color: var(--bg);
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.section-title--center {
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(203, 59, 37, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-light);
}

.btn--outline:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
}

.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
}

.btn--large {
  padding: 18px 48px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(16, 16, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(16, 16, 16, 0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.header__nav-link:hover {
  color: var(--white);
}
/* Phone in mobile nav (below socials) */
.header__nav-phone-link {
  display: none;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  margin-top: 16px;
}
.header__nav-phone-link:hover {
  color: #fff;
}
/* Phone in desktop actions (after WA+IG) */
.header__phone-desktop {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 8px;
}
.header__phone-desktop:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .header__phone-desktop { display: none; }
}
@media (max-width: 960px) {
  .header__phone-desktop { display: none; }
}

.header__nav-link svg {
  transition: transform var(--transition);
}

.header__nav-dropdown {
  position: relative;
}

.header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 180px;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  margin-top: 16px;
}

.header__nav-dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__nav-dropdown:hover .header__nav-link svg {
  transform: rotate(180deg);
}

.header__dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-muted);
  transition: all var(--transition);
}

.header__dropdown-menu li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}

.header__action-btn:hover {
  background: rgba(255,255,255,0.1);
}

.header__whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #25D366;
  border-radius: 50%;
  transition: background 0.2s;
}
.header__whatsapp-btn:hover {
  background: #1ebe5d;
}
.header__ig-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background 0.2s;
}
.header__ig-btn:hover {
  background: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .header__ig-btn { display: none; }
}
.header__nav-socials {
  display: none;
}
/* Show socials in mobile nav */
.header__nav.open .header__nav-socials {
  display: flex;
  gap: 12px;
  padding: 20px 0 8px;
  justify-content: center;
}
.header__nav.open .header__nav-phone-link {
  display: block;
  text-align: center;
  padding-bottom: 12px;
}
.header__nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.header__nav-social--wa {
  background: #25D366;
}
.header__nav-social--wa svg {
  fill: #fff;
}
.header__nav-social--wa:hover {
  background: #1ebe5d;
}
.header__nav-social:hover {
  background: rgba(255,255,255,0.2);
}

/* Burger */
.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 960px;
  max-height: calc(100vh - var(--header-h));
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--header-h);
}



.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 768px) {
  .hero__bg img {
    object-position: 35% center;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(16,16,16,0.55) 0%, rgba(16,16,16,0.1) 55%, rgba(16,16,16,0.0) 100%),
    linear-gradient(to bottom, rgba(16,16,16,0.05) 0%, transparent 30%, rgba(16,16,16,0.35) 75%, var(--bg) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-bottom: 48px;
}

.hero__trust {
  max-width: 520px;
}

.hero__buttons {
  max-width: 520px;
}

.hero__subtitle {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 16px;
}

.hero__offer {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  max-width: 520px;
  line-height: 1.5;
  font-weight: 500;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 0;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.hero__trust-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
}

.hero__trust-text {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}

.hero__trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__buttons .btn--primary {
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 700;
}

.btn--whatsapp-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 28px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  background: #25D366;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn--whatsapp-sm:hover {
  background: #1ebe5d;
}

.hero__scroll-indicator {
  display: none;
}

.scroll-arrow-mobile {
  display: none;
}

/* ===== CATEGORY TABS ===== */
.categories {
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.categories__scroll {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.categories__scroll::-webkit-scrollbar {
  display: none;
}

.categories__tab {
  padding: 20px 32px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.categories__tab:first-child {
  border-left: 1px solid var(--border);
}

.categories__tab:hover,
.categories__tab--active {
  color: var(--white);
  background: rgba(255,255,255,0.03);
}

.categories__tab--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

/* ===== CATEGORY CARDS ===== */
.cat-cards {
  padding: 60px 0 20px;
}

.cat-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  display: block;
}

.cat-card--wide {
  grid-column: 1 / -1;
  height: 320px;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

@media (min-width: 481px) {
  .cat-card--kaminy img {
    object-position: center 70%;
  }
  .cat-card--barbekyu img {
    object-position: center 60%;
  }
  .cat-card--wide img {
    object-position: center center;
  }
}

.cat-card:hover img {
  transform: scale(1.05);
}

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.cat-card__title {
  position: absolute;
  bottom: 68px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.cat-card__btn {
  position: absolute;
  bottom: 16px;
  left: 24px;
  display: inline-block;
  padding: 8px 22px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.cat-card:hover .cat-card__btn {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
}

@media (max-width: 480px) {
  .cat-cards {
    padding: 0 0 0;
  }

  .cat-card {
    height: 200px;
  }

  .cat-card--wide {
    height: 240px;
  }

  .hide-mobile {
    display: none;
  }

  .cat-card__title {
    font-size: 20px;
    bottom: 44px;
    left: 16px;
  }

  .cat-card__btn {
    bottom: 12px;
    left: 16px;
    font-size: 12px;
    padding: 5px 14px;
  }
}

/* ===== ABOUT CERAMICS ===== */
.about {
  padding: 0;
  position: relative;
  z-index: 1;
  background: var(--bg);
}

.about__heading {
  text-align: center;
  padding: 40px 0 80px 0;
  position: relative;
  background-image: url('images/top_highlight_1.webp');
  background-position: bottom;
  background-repeat: no-repeat;
}

.about__header {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mobile-br {
  display: none;
}

.desktop-br {
  display: block;
}

.about__heading h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.about__subheader {
  font-family: var(--font-body);
  font-size: 19px;
  color: rgba(255,255,255,0.6);
  margin: 20px 0 0 0;
  line-height: 1.65;
}

.about__banner {
  display: block;
  height: 420px;
  background-image: url('images/banner_1.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 90%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.about__banner::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
}

.about__blocks {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1470px;
  margin: 0 auto;
  padding: 50px 0 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about__one-block {
  width: 23%;
}

.about__block-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,162,95,0.1);
  margin-bottom: 14px;
}

.about__block-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 300;
  color: #fff;
}

.about__one-block ul {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
}

.about__one-block ul li {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin: 3px 0;
  line-height: 1.4;
}

.about__one-block ul li::before {
  content: '';
  display: inline-block;
  background-color: #ffa25f;
  width: 10px;
  min-width: 10px;
  height: 2px;
  margin: 10px 7px 0 0;
}

.about__one-block ul li span {
  display: inline-block;
}

@media (max-width: 1580px) {
  .about__blocks {
    padding: 50px 40px 80px 40px;
  }
}

@media (max-width: 1279px) {
  .about__blocks {
    border: 0;
    padding: 20px 20px 0 20px;
  }

  .about__one-block {
    width: 50%;
    margin: 0 0 30px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

@media (max-width: 960px) {
  .about__heading {
    padding: 18px 0 30px 0;
  }

  .about__heading h2 {
    font-size: 22px;
    line-height: 1.25;
  }

  .mobile-br {
    display: block;
  }

  .desktop-br {
    display: none;
  }

  .about__subheader {
    margin: 10px 0 0 0;
  }
}

@media (max-width: 768px) {
  .about__header {
    max-width: 415px;
    padding: 0 20px;
  }

  .about__banner {
    height: 236px;
    background-size: 125%;
    background-position: 50% 100%;
  }

  .about__block-title {
    font-size: 18px;
  }

  .about__one-block ul li {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .about__blocks {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 20px 0 20px 16px;
    border-bottom: none;
    scrollbar-width: none;
  }

  .about__blocks::-webkit-scrollbar {
    display: none;
  }

  .about__one-block {
    min-width: 75vw;
    width: 75vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    margin: 0;
    padding: 24px 20px;
    border: none;
    outline: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-right: 12px;
  }

  .about__one-block:last-child {
    margin-right: 16px;
  }
}

@media (max-width: 375px) {
  .about__banner {
    background-size: 270%;
  }
}

/* ===== WORK PROCESS ===== */
.work-process {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.work-process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}

.work-process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.work-process__step-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 16px;
}

.work-process__step-line {
  position: absolute;
  top: 30px;
  right: -20%;
  width: 40%;
  height: 1px;
  background: var(--border);
}

.work-process__step-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.work-process__step-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ===== QUALITY ===== */
.quality {
  padding: 100px 0;
}

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

.quality__heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.2;
  margin-bottom: 28px;
}

.quality__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quality__list li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.quality__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ===== OUR PRODUCTS (Наши камины и печи) ===== */
.our-products {
  position: relative;
  padding: 0 0 80px 0;
  overflow: visible;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.our-products__heading {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0 60px 0;
}

.our-products__heading h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.2;
  color: #fff;
}

.our-products__subheader {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255,255,255,0.6);
  margin: 12px 0 0 0;
  line-height: 1.5;
  padding: 0 20px;
}

.our-products__top-highlight {
  display: none;
  pointer-events: none;
}

.our-products__right-highlight {
  display: none;
}

.our-products__blocks {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.our-products__block {
  width: 49%;
  margin: 0 0 50px 0;
  position: relative;
  z-index: 2;
  text-decoration: none;
  display: block;
}

.our-products__block img {
  display: block;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.6s ease;
}

.our-products__block:hover img {
  transform: scale(1.02);
}

.our-products__block span {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  display: block;
  margin: 12px 0 0 0;
  line-height: 1.3;
}

.our-products__block:hover span {
  color: var(--primary);
}

.our-products__btn-wrap {
  text-align: center;
  padding: 10px 10px 0;
  position: relative;
  z-index: 2;
}

/* ===== SHOWCASE (PRODUCT GALLERY) ===== */
.showcase__item {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}

/* --- Decorative glows on product blocks --- */
.showcase__item::before {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(120px);
}

/* Альбион — warm red, top-left */
.showcase__item:nth-child(3)::before {
  width: 800px; height: 650px;
  top: -150px; left: -200px;
  background: radial-gradient(ellipse at center, rgba(203,59,37,0.22) 0%, rgba(203,59,37,0.08) 50%, transparent 70%);
}
/* Версаль — orange, top-right */
.showcase__item:nth-child(4)::before {
  width: 780px; height: 600px;
  top: -120px; right: -150px; left: auto;
  background: radial-gradient(ellipse at center, rgba(255,140,60,0.20) 0%, rgba(255,120,40,0.07) 50%, transparent 70%);
}
/* BBQ Альбион — amber, bottom-left */
.showcase__item:nth-child(5)::before {
  width: 780px; height: 620px;
  bottom: -130px; left: -170px; top: auto;
  background: radial-gradient(ellipse at center, rgba(255,162,95,0.20) 0%, rgba(255,140,60,0.07) 50%, transparent 70%);
}

.showcase__item + .showcase__item {
  margin-top: 80px;
}

/* Mid-section CTA */
.showcase__mid-cta-section {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.showcase__mid-cta {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(203,59,37,0.12) 0%, rgba(203,59,37,0.04) 100%);
  border: 1px solid rgba(203,59,37,0.2);
}

.showcase__mid-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
}

.showcase__mid-cta-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 28px;
}

.showcase__mid-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* Catalog CTA at bottom */
.showcase__catalog-cta {
  text-align: center;
  margin-top: 80px;
  padding: 0 40px;
}

.showcase__catalog-cta-text {
  font-family: var(--font-body);
  font-size: 19px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.showcase__catalog-cta .btn {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}

.showcase__catalog-cta .btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.showcase__item .showcase__gallery {
  flex: 0 0 58%;
  max-width: 58%;
}

.showcase__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.showcase__gallery {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  z-index: 2;
  width: 100%;
}

.showcase__track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.showcase__slide {
  width: 100%;
  min-width: 100%;
  flex: 0 0 100%;
}

.showcase__slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.showcase__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s ease, transform 0.3s ease;
}

.showcase__arrow:hover {
  background: rgba(0,0,0,0.3);
  transform: translateY(-50%) scale(1.05);
}

.showcase__arrow--left {
  left: 16px;
}

.showcase__arrow--right {
  right: 16px;
}

.showcase__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.showcase__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.showcase__dot.active {
  background: #fff;
  transform: scale(1.2);
}

.showcase__name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: left;
  margin-top: 0;
}

.showcase__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  text-align: left;
  margin-top: 6px;
}

.showcase__price-note {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.showcase__offer {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 12px;
}

.showcase__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}

.showcase__trust span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.showcase__trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.15);
}

.showcase__offer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255,197,53,0.1);
  border: 1px solid rgba(255,197,53,0.25);
  margin-bottom: 14px;
}

.showcase__offer-badge span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #ffc535;
}

.showcase__cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn--outline-light:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.showcase__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 24px;
  gap: 24px;
}

.showcase__prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.showcase__price {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.showcase__price strong {
  color: #fff;
  font-weight: 600;
}

.showcase__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close svg {
  width: 28px;
  height: 28px;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.lightbox__arrow:hover {
  opacity: 1;
}

.lightbox__arrow--left {
  left: 16px;
}

.lightbox__arrow--right {
  right: 16px;
}

/* ===== CATALOG PREVIEW ===== */
.catalog-preview {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.catalog-preview__header {
  margin-bottom: 48px;
}

.catalog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.catalog-preview__card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  display: block;
}

.catalog-preview__card--large {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.catalog-preview__card--wide {
  grid-column: 2 / 4;
  aspect-ratio: 2 / 1;
}

.catalog-preview__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalog-preview__card:hover img {
  transform: scale(1.05);
}

.catalog-preview__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,16,16,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.catalog-preview__card-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 24px;
}

.catalog-preview__footer {
  text-align: center;
  margin-top: 48px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 800px;
  background:
    radial-gradient(ellipse at 40% 60%, rgba(203,59,37,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 40%, rgba(255,161,94,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255,103,61,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 20px;
}

.cta-section__text {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.process-steps__header {
  margin-bottom: 64px;
}

.process-steps__grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.process-steps__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.process-steps__item--reverse {
  direction: rtl;
}

.process-steps__item--reverse > * {
  direction: ltr;
}

.process-steps__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
}

.process-steps__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-steps__num {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.process-steps__name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(24px, 2.5vw, 32px);
  margin-bottom: 16px;
}

.process-steps__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
}

/* ===== STATS ===== */
.stats {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  margin-top: 64px;
}

.stats__item {
  text-align: center;
}

.stats__number {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--white) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats__label {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 200px;
  display: block;
  margin: 0 auto;
}

.stats__divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* ===== TEAM ===== */
.team {
  padding: 100px 0;
}

.team__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.team__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.team__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 32px;
}

/* ===== VIDEO REVIEWS ===== */
.video-reviews {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.video-reviews__header {
  margin-bottom: 48px;
}

.video-reviews__slider {
  overflow: hidden;
}

.video-reviews__track {
  display: flex;
  gap: 24px;
}

.video-reviews__card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
}

.video-reviews__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.video-reviews__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-reviews__thumb:hover img {
  transform: scale(1.05);
}

.video-reviews__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  transition: all var(--transition);
}

.video-reviews__thumb:hover .video-reviews__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.contact__glow {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 900px;
  height: 900px;
  background:
    radial-gradient(circle at 40% 60%, rgba(203,59,37,0.18) 0%, transparent 40%),
    radial-gradient(circle at 30% 50%, rgba(255,161,94,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.contact__input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}

.contact__input::placeholder {
  color: var(--text-dim);
}

.contact__input:focus {
  border-color: var(--primary);
}

.contact__phone-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.contact__phone-wrap:focus-within {
  border-color: var(--primary);
}

.contact__phone-prefix {
  padding: 16px;
  padding-right: 8px;
  font-size: 15px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.contact__input--phone {
  border: none;
  background: none;
  border-radius: 0;
  padding-left: 4px;
}

.contact__input--phone:focus {
  border-color: transparent;
}

.contact__privacy {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

.contact__privacy a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact__privacy a:hover {
  color: var(--white);
}

.contact__info-side {
  padding-top: 60px;
}

.contact__info-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact__info-phone {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  display: block;
  margin-bottom: 32px;
  transition: color var(--transition);
}

.contact__info-phone:hover {
  color: var(--primary);
}

.contact__socials {
  display: flex;
  gap: 16px;
}

.contact__social {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.contact__social:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.faq__list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--text-muted);
}

.faq__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq__footer {
  text-align: center;
  margin-top: 48px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  position: relative;
  border-top: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}

.footer__glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 400px;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(203,59,37,0.12) 0%, rgba(255,125,11,0.06) 40%, transparent 70%);
  pointer-events: none;
  pointer-events: none;
}

.footer__top {
  display: flex;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  flex: 0 0 280px;
}

.footer__logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer__tagline {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer__columns {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--white);
}

.footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-list a {
  font-size: 15px;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer__col-list a:hover {
  color: var(--white);
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__socials a:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 14px;
  color: var(--text-dim);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--white);
}


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

/* Tablet */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .about__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .our-products__blocks {
    padding: 0 24px;
  }

  .catalog-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-preview__card--large {
    grid-row: auto;
  }

  .catalog-preview__card--wide {
    grid-column: 1 / 3;
  }

  .process-steps__item {
    gap: 32px;
  }

  .stats__grid {
    gap: 40px;
  }

  .team__inner {
    gap: 40px;
  }

  .contact__inner {
    gap: 48px;
  }

  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__brand {
    flex: auto;
  }

  .footer__columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile nav trigger */
@media (max-width: 900px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(16, 16, 16, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 32px 32px;
    transition: right 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 999;
    border-left: 1px solid var(--border);
    overflow-y: auto;
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .header__nav-list li {
    width: 100%;
  }

  .header__nav-link {
    padding: 16px 0;
    font-size: 18px;
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .header__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0;
    background: transparent;
    border: none;
    padding: 0 0 8px 16px;
  }

  .header__burger {
    display: flex;
  }

  .header__search-btn,
  .header__fav-btn {
    display: none;
  }

}

/* Tablet portrait & mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__bg {
    position: relative;
    width: 100%;
    height: 70svh;
    min-height: 320px;
    -webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
  }

  .hero__bg img {
    object-position: center center;
    transform: scale(1.1);
  }

  .hero__overlay {
    display: none;
  }

  .hero__content {
    position: relative;
    padding: 24px 16px 30px;
    width: 100%;
    margin-top: -20px;
    padding-top: 24px;
    background: linear-gradient(180deg, transparent 0%, #1a1008 30px, #111111 100%);
  }

  .hero__subtitle {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero__offer {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .hero__trust {
    margin-bottom: 20px;
    padding: 12px 0;
    max-width: none;
  }

  .hero__trust-num {
    font-size: 22px;
  }

  .hero__trust-text {
    font-size: 10px;
  }

  .hero__trust-divider {
    height: 28px;
    margin: 0 4px;
  }

  .hero__trust-item {
    gap: 6px;
  }

  .hero__buttons {
    flex-direction: row;
    gap: 10px;
    align-items: center;
    max-width: none;
  }

  .hero__buttons .btn--primary {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 14px 10px;
    font-size: 15px;
    font-weight: 700;
  }

  .hero__buttons .btn--whatsapp-sm {
    padding: 0;
    width: 56px;
    align-self: stretch;
    font-size: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero__buttons .btn--whatsapp-sm svg {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    display: block;
  }

  .cat-card--kaminy img {
    object-position: center 100%;
    transform: scale(1.15);
    transform-origin: center bottom;
  }

  .cat-card--barbekyu img {
    transform: scale(1.15);
    object-position: center 100%;
  }

  .cat-card--kaminy:hover img {
    transform: scale(1.2);
    transform-origin: center bottom;
  }

  .cat-card--barbekyu:hover img {
    transform: scale(1.2);
  }

  .hero__glow {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
  }

  /* Category tabs: wrap on mobile */
  .categories {
    position: relative;
  }

  .categories::after {
    display: none;
  }

  .categories__scroll {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .categories__tab {
    flex: 0 0 25%;
    box-sizing: border-box;
    padding: 12px 0;
    font-size: 13px;
    white-space: normal;
    text-align: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
  }

  .about {
    padding: 48px 0 24px 0;
  }

  .about__header {
    margin-bottom: 32px;
  }

  .about__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about__card {
    padding: 24px 20px;
  }

  .work-process {
    padding: 48px 0;
  }

  .work-process__steps {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .work-process__step {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 0;
  }

  .work-process__step-num {
    font-size: 36px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .work-process__step-line {
    display: none;
  }

  .our-products {
    padding: 0 0 48px 0;
    border-top: none;
  }

  .our-products__heading {
    padding: 0 0 36px 0;
  }

  .our-products__heading h2 {
    font-size: 22px;
    line-height: 1.25;
  }

  .our-products__top-highlight {
    display: block;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 300px;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, #7a2f1f 0%, #6a281a 25%, #5a2216 45%, #42180f 65%, #2a0f0a 80%, transparent 100%);
    opacity: 0.4;
    pointer-events: none;
  }

  .our-products__right-highlight {
    display: none;
  }

  .our-products__blocks {
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
    padding: 0 20px 20px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .our-products__blocks::-webkit-scrollbar {
    display: none;
  }

  .our-products__block {
    width: 280px;
    min-width: 280px;
    margin: 0 20px 0 0;
  }

  .our-products__block span {
    font-size: 17px;
  }

  .showcase__item {
    padding: 0 20px;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }
  .showcase__item::before {
    filter: blur(50px);
    transform: scale(0.5);
    opacity: 0.7;
  }

  .showcase__item .showcase__gallery {
    flex: none;
    max-width: 100%;
  }

  .showcase__content {
    padding-top: 0;
    width: 100%;
  }

  .showcase__name {
    text-align: center;
    font-size: 18px;
    margin-top: 16px;
  }

  .showcase__desc {
    text-align: center;
    font-size: 14px;
    padding: 0 10px;
  }

  .showcase__slide img {
    height: 320px;
    border-radius: 12px;
  }

  .showcase__gallery {
    border-radius: 12px;
  }

  .showcase__arrow {
    width: 36px;
    height: 36px;
  }

  .showcase__arrow--left {
    left: 8px;
  }

  .showcase__arrow--right {
    right: 8px;
  }

  .showcase__arrow svg {
    width: 18px;
    height: 18px;
  }

  .showcase__bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
    gap: 20px;
  }

  .showcase__price {
    font-size: 15px;
  }

  .showcase__price-note {
    display: block;
    font-size: 13px;
    margin-top: 2px;
  }

  .showcase__cta-block {
    width: 100%;
    align-items: stretch;
  }

  .showcase__offer-badge {
    width: auto;
    align-self: flex-start;
  }

  .showcase__bottom {
    width: 100%;
  }

  .showcase__offer {
    font-size: 13px;
  }

  .showcase__trust {
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 12px 16px;
    justify-content: center;
  }

  .showcase__trust span {
    font-size: 13px;
  }

  .showcase__offer-badge {
    padding: 8px 12px;
  }

  .showcase__offer-badge span {
    font-size: 13px;
  }

  .showcase__mid-cta-section {
    padding: 0 0 56px 0;
    border-top: none;
  }

  .showcase__mid-cta {
    margin: 0 20px;
    padding: 32px 20px;
  }

  .showcase__mid-cta-buttons {
    flex-direction: column;
  }

  .showcase__mid-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .showcase__catalog-cta {
    margin-top: 48px;
    padding: 0 20px;
  }

  .showcase__buttons {
    width: 100%;
    flex-direction: column;
  }

  .showcase__buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 10px;
    font-size: 14px;
  }

  .catalog-preview {
    padding: 48px 0;
  }

  .catalog-preview__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .catalog-preview__card {
    aspect-ratio: 1;
  }

  .catalog-preview__card--large {
    grid-column: 1 / 3;
    aspect-ratio: 16/9;
  }

  .catalog-preview__card--wide {
    grid-column: 1 / 3;
    aspect-ratio: 16/9;
  }

  .catalog-preview__card-name {
    font-size: 18px;
  }

  .cta-section {
    padding: 64px 0;
  }

  .cta-section__title {
    font-size: 26px;
  }

  .cta-section__text {
    font-size: 15px;
  }

  .process-steps {
    padding: 48px 0;
  }

  .process-steps__item,
  .process-steps__item--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    direction: ltr;
  }

  .process-steps__img {
    aspect-ratio: 4/3;
    border-radius: 8px;
    width: 100%;
  }

  .process-steps__num {
    font-size: 48px;
  }

  .process-steps__name {
    font-size: 20px;
  }

  .process-steps__desc {
    font-size: 14px;
  }

  .stats {
    padding: 48px 0;
  }

  .stats__grid {
    flex-direction: column;
    gap: 24px;
  }

  .stats__number {
    font-size: 48px;
  }

  .stats__divider {
    width: 60px;
    height: 1px;
  }

  .team {
    padding: 48px 0;
  }

  .team__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team__img {
    aspect-ratio: 16/9;
    border-radius: 8px;
  }

  .video-reviews {
    padding: 48px 0;
  }

  .video-reviews__slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -16px;
    padding: 0 16px;
  }

  .video-reviews__slider::-webkit-scrollbar {
    display: none;
  }

  .video-reviews__card {
    flex: 0 0 75vw;
    min-width: 0;
  }

  .contact {
    padding: 48px 0;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__subtitle {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .contact__input {
    font-size: 16px;
    padding: 14px 16px;
  }

  .contact__info-side {
    padding-top: 0;
  }

  .contact__info-phone {
    font-size: 28px;
  }

  .faq {
    padding: 48px 0;
  }

  .faq__list {
    margin-top: 32px;
  }

  .faq__question {
    font-size: 15px;
    padding: 18px 0;
    gap: 12px;
  }

  .faq__answer p {
    font-size: 14px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer__legal {
    flex-direction: column;
    gap: 8px;
  }
}

/* Mobile improvements */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 85vh;
    padding: 60px 0 40px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero__title br {
    display: none;
  }

  .hero__subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .hero__buttons {
    flex-direction: row;
    gap: 10px;
  }

  .hero__buttons .btn--primary {
    flex: 1;
    justify-content: center;
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 700;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn--large {
    padding: 14px 32px;
    font-size: 15px;
  }

  .btn--full {
    padding: 16px;
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 14px;
  }

  /* Categories: wrap on mobile */
  .categories__tab {
    padding: 12px 16px;
    font-size: 13px;
  }

  /* About cards */
  .about__card {
    padding: 24px 20px;
  }

  .about__card-title {
    font-size: 18px;
  }

  .about__card-text {
    font-size: 13px;
  }

  /* Work process */
  .work-process__step-num {
    font-size: 28px;
    min-width: 50px;
  }

  .work-process__step-title {
    font-size: 14px;
  }

  /* Quality */
  .quality__heading {
    font-size: 22px;
  }

  .quality__list li {
    font-size: 14px;
  }

  /* Our Products */
  .our-products__block {
    width: 260px;
    min-width: 260px;
  }

  .our-products__block span {
    font-size: 16px;
  }

  /* Catalog preview */
  .catalog-preview__card-name {
    font-size: 20px;
  }

  /* CTA */
  .cta-section {
    padding: 60px 0;
  }

  .cta-section__title {
    font-size: 28px;
  }

  .cta-section__text {
    font-size: 15px;
  }

  /* Process steps */
  .process-steps__num {
    font-size: 48px;
  }

  .process-steps__name {
    font-size: 20px;
  }

  .process-steps__desc {
    font-size: 14px;
  }

  /* Stats */
  .stats {
    padding: 64px 0;
  }

  .stats__number {
    font-size: 42px;
  }

  .stats__label {
    font-size: 13px;
  }

  /* Team */
  .team__text {
    font-size: 14px;
  }

  /* Video reviews */
  .video-reviews__card {
    flex: 0 0 260px;
  }

  /* Contact form */
  .contact__inner {
    gap: 32px;
  }

  .contact__subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .contact__input {
    padding: 14px 16px;
    font-size: 16px; /* prevent iOS zoom on focus */
  }

  .contact__info-phone {
    font-size: 28px;
  }

  .contact__social {
    width: 44px;
    height: 44px;
  }

  /* FAQ */
  .faq__question {
    font-size: 15px;
    padding: 18px 0;
  }

  .faq__answer p {
    font-size: 14px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__col-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer__bottom {
    padding-top: 20px;
  }

  .footer__copy,
  .footer__legal a {
    font-size: 12px;
  }
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
  .categories__scroll {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .categories__tab {
    flex: 0 0 25%;
    box-sizing: border-box;
    white-space: normal;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }

  .header__nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .header__dropdown-menu li a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Horizontal sliders: allow both vertical page scroll and horizontal slider scroll */
  .our-products__blocks,
  .video-reviews__slider {
    touch-action: pan-x pan-y;
  }

  .footer__socials a {
    width: 44px;
    height: 44px;
  }
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up[data-delay="1"] { transition-delay: 0.1s; }
.fade-up[data-delay="2"] { transition-delay: 0.2s; }
.fade-up[data-delay="3"] { transition-delay: 0.3s; }
.fade-up[data-delay="4"] { transition-delay: 0.4s; }
.fade-up[data-delay="5"] { transition-delay: 0.5s; }
.fade-up[data-delay="6"] { transition-delay: 0.6s; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.25);
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(203, 59, 37, 0.4);
  color: var(--white);
}

/* ===== Section Divider ===== */
.section-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  margin: 0 auto;
}

/* ===== ARCHIVE BLOCKS — base ===== */
.archive-wrapper {
  width: 100%;
}
.archive-heading {
  text-align: center;
  padding: 140px 0 80px 0;
  position: relative;
}
.archive-heading h2 {
  font-family: 'TT Ramillas', serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
}
.archive-heading p.subheader {
  font-size: 18px;
  color: var(--transparent_white_color);
  margin: 20px 0 0 0;
}
@media (max-width: 960px) {
  .archive-heading {
    padding: 80px 0 50px 0;
  }
  .archive-heading h2 {
    font-size: 22px;
    line-height: 1.1;
  }
  .archive-heading p.subheader {
    margin: 10px 0 0 0;
    font-size: 14px;
  }
}

/* ===== Block 1: Как мы создаём камины и печи ===== */
.square_blocks_3 {
  position: relative;
  z-index: 2;
}
.square_blocks_3::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(203, 59, 37, 0.15) 0%, rgba(203, 59, 37, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.square_blocks_3 .archive-heading {
  max-width: 460px;
  margin: 0px auto;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .square_blocks_3 .archive-heading {
    padding-top: 50px;
  }
}
.square_blocks_3 .blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: var(--content_width);
  margin: 0px auto;
}
.square_blocks_3 .blocks .one_block {
  display: flex;
  flex-wrap: wrap;
  width: calc(50% - 10px);
  margin: 0 0 60px 0;
}
.square_blocks_3 .blocks .one_block .image {
  width: 50%;
  position: relative;
}
.square_blocks_3 .blocks .one_block .image img {
  display: block;
  max-width: 100%;
  margin: 0px auto;
  position: relative;
  z-index: 1;
}
.square_blocks_3 .blocks .one_block .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 10px 0 10px;
}
.square_blocks_3 .blocks .one_block .text .top p {
  font-size: 16px;
  color: var(--transparent_white_color);
  line-height: 1.4;
}
.square_blocks_3 .blocks .one_block .text .top p.title {
  font-family: 'TT Ramillas', serif;
  font-size: 24px;
  line-height: 1;
  color: #FFFFFF;
  margin: 0px 0 15px 0;
}
.square_blocks_3 .blocks .one_block .text .bottom {
  color: rgba(226, 77, 54, 1);
  border-bottom: 1px solid rgba(226, 77, 54, 0.4);
  padding: 0 0 5px 0;
}
@media (max-width: 1860px) {
  .square_blocks_3 .blocks {
    padding: 0 40px;
  }
}
@media (max-width: 1279px) {
  .square_blocks_3 .archive-heading {
    max-width: 90%;
  }
  .square_blocks_3 .blocks {
    padding: 0 20px 20px 20px;
    flex-wrap: nowrap;
    align-items: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .square_blocks_3 .blocks .one_block {
    flex-direction: column;
    justify-content: flex-start;
    width: 240px;
    min-width: 240px;
    height: auto;
    margin: 0 5px 0 0;
  }
  .square_blocks_3 .blocks .one_block .image {
    width: 100%;
    padding: 0;
    margin-bottom: 12px;
  }
  .square_blocks_3 .blocks .one_block .image img {
    max-width: 180px;
    margin: 0;
    border-radius: 8px;
  }
  .square_blocks_3 .blocks .one_block .text {
    width: 100%;
    height: auto;
    padding: 0 10px 0 0;
  }
  .square_blocks_3 .blocks .one_block .text .top p {
    font-size: 14px;
  }
  .square_blocks_3 .blocks .one_block .text .top p.title {
    font-size: 18px;
  }
  .square_blocks_3 .blocks .one_block .text .bottom {
    padding: 5px 0 5px 0;
  }
  .square_blocks_3 .blocks::-webkit-scrollbar {
    display: none;
  }
}

/* ===== Block 2: Опыт, подтверждённый проектами ===== */
.projects_experience_block {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 30px 0 0 0;
  background-image: url('images/homepage/project_experience.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.projects_experience_block:after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.6) 100%);
}
.projects_experience_block .block_content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  max-width: var(--content_width);
  height: 100%;
  margin: 0px auto;
  z-index: 2;
}
.projects_experience_block .block_content .top_text {
  text-align: center;
  width: 100%;
  margin: 150px 0 0 0;
}
.projects_experience_block .block_content .top_text h2 {
  font-family: 'TT Ramillas', serif;
  font-size: 46px;
  line-height: 1.2;
  color: #FFFFFF;
  max-width: 600px;
  margin: 0px auto 20px auto;
}
.projects_experience_block .block_content .top_text p {
  font-size: 18px;
  line-height: 1.4;
  color: #FFFFFF;
  max-width: 500px;
  margin: 0px auto;
}
.projects_experience_block .block_content .bottom_blocks {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 83%;
  margin: 0px auto;
}
.projects_experience_block .block_content .bottom_blocks .one_block {
  padding: 20px 0 60px 0;
  width: calc(33% - 15px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.projects_experience_block .block_content .bottom_blocks .one_block span:nth-child(1) {
  font-family: 'TT Ramillas', serif;
  font-size: 40px;
  line-height: 1.2;
  color: #FFFFFF;
  display: block;
}
.projects_experience_block .block_content .bottom_blocks .one_block span:nth-child(2) {
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
  display: block;
}
@media (max-width: 1279px) {
  .projects_experience_block {
    background-size: cover;
  }
}
@media (max-width: 960px) {
  .projects_experience_block {
    background-image: none;
    height: auto;
  }
  .projects_experience_block .block_content .top_text {
    position: relative;
    background-image: url('images/homepage/project_experience.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 440px;
    margin: 0;
    padding: 30px 0;
  }
  .projects_experience_block .block_content .top_text h2 {
    font-size: 22px;
    position: relative;
    z-index: 2;
    width: 95%;
    margin: 0px auto 10px auto;
  }
  .projects_experience_block .block_content .top_text p {
    font-size: 14px;
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 400px;
  }
  .projects_experience_block .block_content .top_text:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.6) 100%);
  }
  .projects_experience_block .block_content .bottom_blocks {
    max-width: calc(100% - 30px);
    margin: 20px auto 0 auto;
  }
  .projects_experience_block .block_content .bottom_blocks .one_block {
    width: calc(100% / 3);
  }
  .projects_experience_block .block_content .bottom_blocks .one_block span:nth-child(1) {
    font-size: 22px;
  }
  .projects_experience_block .block_content .bottom_blocks .one_block span:nth-child(2) {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .projects_experience_block .block_content .bottom_blocks .one_block {
    width: 100%;
    padding: 15px 0;
  }
}

/* ===== Block 3: Наша команда ===== */
.our_team_wrapper {
  position: relative;
}
.our_team_wrapper:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 25% 40% at 50% 50%, #7a2f1f 0%, #6a281a 25%, #5a2216 45%, #42180f 65%, #2a0f0a 80%, #111111 100%);
  opacity: 0.7;
}
.our_team_content {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
  height: 820px;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.our_team_content .archive-heading {
  padding: 0;
}
.our_team_content .archive-heading h2 {
  margin-bottom: 20px;
}
.our_team_content .archive-heading p {
  max-width: 550px;
  margin: 0px auto 30px auto;
  font-size: 18px;
}
.our_team_content .empty_photo {
  display: block;
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 35.84%, rgba(255, 255, 255, 0.1) 99.73%);
}
.our_team_content .empty_photo.photo_1 { width: 88px; height: 114px; top: 50px; left: 110px; }
.our_team_content .empty_photo.photo_2 { width: 88px; height: 114px; top: -20px; left: 420px; }
.our_team_content .empty_photo.photo_3 { width: 60px; height: 78px; top: -20px; left: 710px; }
.our_team_content .empty_photo.photo_4 { width: 88px; height: 114px; top: 60px; left: 870px; }
.our_team_content .empty_photo.photo_5 { width: 88px; height: 114px; top: 55px; left: 1160px; }
.our_team_content .empty_photo.photo_6 { width: 60px; height: 78px; top: 410px; left: 400px; }
.our_team_content .empty_photo.photo_7 { width: 88px; height: 114px; top: 540px; left: 250px; }
.our_team_content .empty_photo.photo_8 { width: 88px; height: 114px; top: 630px; left: 590px; }
.our_team_content .empty_photo.photo_9 { width: 60px; height: 78px; top: 540px; left: 865px; }
.our_team_content .empty_photo.photo_10 { width: 88px; height: 114px; top: 550px; left: 1060px; }
.user_photos {
  position: absolute;
  inset: 0;
}
.our_team_content .user_photo {
  display: block;
  position: absolute;
  width: 140px;
  height: 180px;
  overflow: hidden;
}
.our_team_content .user_photo img {
  display: block;
  max-width: 100%;
  margin: 0px auto;
  position: relative;
  z-index: 1;
}
.our_team_content .user_photo.photo_1 { left: 170px; top: 400px; }
.our_team_content .user_photo.photo_2 { left: 280px; top: 140px; }
.our_team_content .user_photo.photo_3 { left: 990px; top: 180px; }
.our_team_content .user_photo.photo_4 { left: 330px; top: 610px; }
.our_team_content .user_photo.photo_5 { left: 1100px; top: 380px; }
.our_team_content .user_photo.photo_6 { left: 940px; top: 640px; }
@media (max-width: 1400px) {
  .our_team_content { max-width: 100%; }
}
@media (max-width: 1279px) {
  .our_team_wrapper { padding: 70px 0 0px 0; }
  .our_team_wrapper:after {
    background: radial-gradient(ellipse 30% 60% at 50% 50%, #7a2f1f 0%, #6a281a 25%, #5a2216 45%, #42180f 65%, #2a0f0a 80%, #111111 100%);
    opacity: 0.5;
  }
  .our_team_content { height: 462px; }
  .our_team_content .archive-heading { margin-top: 150px; }
  .our_team_content .archive-heading p { max-width: 100%; }
  .our_team_content .empty_photo { display: none; }
  .user_photos { width: 350px; height: 210px; left: calc(50% - (350px / 2)); top: 0; }
  .our_team_content .user_photo { width: 69px; height: auto; aspect-ratio: calc(140 / 180); }
  .our_team_content .user_photo.photo_1 { left: 0px; top: 105px; }
  .our_team_content .user_photo.photo_2 { left: 20px; top: 1px; }
  .our_team_content .user_photo.photo_3 { left: 194px; top: 10px; }
  .our_team_content .user_photo.photo_4 { left: 101px; top: 80px; }
  .our_team_content .user_photo.photo_5 { left: 277px; top: 70px; }
  .our_team_content .user_photo.photo_6 { left: 184px; top: 113px; }
}
@media (max-width: 960px) {
  .our_team_content .archive-heading h2 { margin-bottom: 10px; }
  .our_team_content .archive-heading p.subheader { font-size: 14px; max-width: 95%; }
}

/* ===== Block 4: Как наши камины живут в интерьерах ===== */
.stories_wrapper {
  position: relative;
  z-index: 2;
  max-width: 2300px;
  margin: 0px auto;
}
.stories_wrapper .archive-heading {
  max-width: 850px;
  margin: 0px auto;
  padding-top: 60px;
  padding-bottom: 30px;
}
@media (max-width: 960px) {
  .stories_wrapper .archive-heading {
    padding: 16px 16px 8px !important;
  }
  .stories_wrapper .archive-heading h2 {
    font-size: 20px;
  }
  .stories_wrapper .archive-heading p.subheader {
    font-size: 13px;
    margin-top: 4px !important;
  }
}
.stories_wrapper .archive-heading p.subheader {
  font-size: 18px;
}
.stories_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 16px;
}
.stories_counter {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
}
.stories_arrows {
  display: flex;
  gap: 8px;
}
.stories_arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.stories_arrow:hover {
  background: rgba(255,255,255,0.15);
}
@media (max-width: 960px) {
  .stories_nav {
    padding: 0 16px 8px;
  }
  .stories_arrow {
    width: 34px;
    height: 34px;
  }
  .stories_arrow svg {
    width: 18px;
    height: 18px;
  }
}
.stories_slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 15px;
  padding: 0 40px 20px 40px;
  scrollbar-width: none;
}
.stories_slider::-webkit-scrollbar {
  display: none;
}
.stories_slider .one_story {
  min-width: 300px;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  flex-shrink: 0;
  text-decoration: none;
  display: block;
  color: inherit;
}
.stories_slider .one_story .image {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
}
.stories_slider .one_story .image:after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.3);
  z-index: 2;
  pointer-events: none;
}
.stories_slider .one_story .image img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.stories_slider .one_story .image span.play_btn {
  position: absolute;
  left: 15px;
  bottom: 15px;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 3;
}
.stories_slider .one_story .image span.play_btn:after {
  content: '';
  display: block;
  width: 15px;
  height: 18px;
  background-image: url('images/icons/play_white.svg');
  background-repeat: no-repeat;
}
.stories_slider .one_story span.name {
  font-size: 16px;
  line-height: 1.4;
  color: var(--transparent_white_color);
  display: block;
  max-width: none;
  text-align: center;
  margin: 10px 0 0 0;
}
.stories_slider .one_story:hover .image:before {
  content: '';
  display: block;
  position: absolute;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle at 30% 30%, #E24D36, #FF8C00);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
  transition: all 0.1s;
}
.stories_slider .one_story:hover .image:after {
  background: none;
}
.stories_slider .one_story:hover span.name {
  color: var(--color_1);
}
@media (max-width: 960px) {
  .stories_slider {
    padding: 0 16px 15px 16px;
    gap: 10px;
    scroll-padding-left: 16px;
  }
  .stories_slider .one_story {
    min-width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    width: calc(100vw - 48px);
  }
  .stories_slider .one_story .image {
    aspect-ratio: 4/3;
    max-height: calc(100svh - 350px);
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
  }
  .stories_slider .one_story .image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }
  .stories_slider .one_story span.name {
    font-size: 13px;
    margin: 6px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .stories_slider .one_story .image span.play_btn {
    width: 44px;
    height: 44px;
    left: 10px;
    bottom: 10px;
  }
}
@media (max-width: 460px) {
  .stories_wrapper .archive-heading {
    max-width: 90%;
  }
}

/* ===== Block 5: Напишите нам ===== */
.form_1_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 80px 0;
  margin: 40px 0 0 0;
  position: relative;
  background: conic-gradient(from 90deg at 50% 99.94%, rgba(124, 42, 29, 0) 0deg, rgba(226, 77, 54, 0.6) 263.08deg, #FF7D0B 304.62deg, #FFFFFF 360deg);
}
.form_1_wrapper:after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #111111;
  opacity: 0.6;
  z-index: 1;
}
.form_1_wrapper .left {
  width: 50%;
  max-width: 700px;
  padding: 0 40px 0 0;
  position: relative;
  z-index: 2;
  border-right: 2px solid rgba(255, 255, 255, 0.1);
}
.form_1_wrapper .left h2 {
  font-family: 'TT Ramillas', serif;
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 20px auto;
}
.form_1_wrapper .left p.subheader {
  color: var(--transparent_white_color);
  text-align: center;
  max-width: 520px;
  margin: 20px auto 40px auto;
}
.form_1_wrapper .left form {
  max-width: 420px;
  margin: 0 auto;
}
.form_1_wrapper .right {
  width: 50%;
  max-width: 620px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.form_1_wrapper .right > p.text {
  font-size: 16px;
  line-height: 1.4;
  color: var(--transparent_white_color);
  max-width: 300px;
  margin: 0 auto 20px auto;
  text-align: center;
}
.form_1_wrapper .right > a.phone {
  font-family: 'TT Ramillas', serif;
  font-size: 40px;
  line-height: 1.2;
  color: #FFFFFF;
}
.form_1_wrapper .right .messengers_block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 0 0;
}
.form_1_wrapper .right .messengers_block {
  flex-direction: column;
  gap: 12px;
}
.messenger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.messenger-btn--wa {
  background-color: #25D366;
  border-color: #25D366;
}
.messenger-btn--wa:hover {
  background-color: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-1px);
  color: #fff;
}
.messenger-btn--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
}
.messenger-btn--ig:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
}
.input-form-1 .input-group {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin: 15px 0;
  padding: 5px 10px;
}
.input-form-1 .input-group label {
  display: block;
  color: var(--transparent_white_color);
  font-size: 12px;
  line-height: 1.4;
}
.input-form-1 .input-group input[type="text"],
.input-form-1 .input-group input[type="email"],
.input-form-1 .input-group input[type="tel"] {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.4;
  font-family: 'TT Commons Pro', sans-serif;
  background: none;
  outline: none;
  border: 0;
  padding: 0;
  width: 100%;
}
.input-form-1 .privacy-text {
  text-align: center;
  max-width: 340px;
  margin: 15px auto;
}
.input-form-1 .privacy-text,
.input-form-1 .privacy-text a {
  color: var(--transparent_white_color);
  font-size: 12px;
  line-height: 1.4;
}
.input-form-1 .privacy-text a {
  text-decoration: underline;
}
.input-form-1 .btn-wrap {
  text-align: center;
  margin: 40px auto 0 auto;
}
@media (max-width: 1279px) {
  .form_1_wrapper {
    padding: 60px 20px;
  }
  .form_1_wrapper .left {
    width: 100%;
    max-width: 100%;
    padding: 0 0 20px 0;
    border-right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  }
  .form_1_wrapper .left h2 {
    font-size: 22px;
    max-width: 375px;
  }
  .form_1_wrapper .left p.subheader {
    font-size: 14px;
    max-width: 375px;
  }
  .form_1_wrapper .right {
    width: 100%;
    max-width: 100%;
    padding: 20px 0 0 0;
  }
  .form_1_wrapper .right > p.text {
    font-size: 14px;
    max-width: 265px;
    margin: 0 auto 10px auto;
  }
  .form_1_wrapper .right > a.phone {
    font-size: 22px;
  }
  .form_1_wrapper .right .messengers_block {
    margin: 20px 0 0 0;
  }
  .input-form-1 .input-group label {
    font-size: 11px;
  }
  .input-form-1 .input-group input[type="text"],
  .input-form-1 .input-group input[type="email"],
  .input-form-1 .input-group input[type="tel"] {
    font-size: 18px;
  }
  .input-form-1 .btn-wrap {
    margin: 20px auto 0 auto;
  }
}
