/* Стили для прозрачных кнопок перелистывания галереи */
.gallery__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.85);
  color: #333333;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__btn:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery__btn--prev {
  left: 10px;
}

.gallery__btn--next {
  right: 10px;
}



.gallery__viewport {
  position: relative;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  box-sizing: inherit;
}

:root {
  color: #2b2623;
  font-family: "Mulish", "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
  background-color: #f7f5f0;
}

body {
  background-color: #f7f5f0;
  color: #2b2623;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  padding: 80px 0;
}

@media (max-width: 968px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  section {
    padding: 40px 0;
  }
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
}

.logo {
  font-family: "Bricolage Grotesque", "Mulish", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  color: #2b2623;
  transition: color 0.3s ease;
}

.site-header .logo {
  position: relative;
  padding: 0.6rem 1.2rem 0.6rem 1.4rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2b2623;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 248, 245, 0.9));
  border-radius: 12px;
  border: 2px solid rgba(219, 167, 101, 0.3);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 2px 4px rgba(219, 167, 101, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.site-header .logo:hover {
  border-color: rgba(219, 167, 101, 0.5);
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.12),
    0 3px 8px rgba(219, 167, 101, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

.site-header .logo::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 40px;
  background: linear-gradient(180deg, #dba765, #c18145, #dba765);
  border-radius: 3px;
  box-shadow: 
    0 2px 8px rgba(219, 167, 101, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", "Mulish", sans-serif;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  background: linear-gradient(135deg, #f2d7ba, #dba765);
  color: #412b1a;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(219, 167, 101, 0.35);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.4);
  color: #2b2623;
  border: 2px solid rgba(193, 129, 69, 0.6);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  font-weight: 700;
  backdrop-filter: blur(15px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(193, 129, 69, 0.9);
  box-shadow: 0 8px 30px rgba(193, 129, 69, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transform: translateY(-3px);
}

.btn--outline {
  border: 1px solid rgba(65, 43, 26, 0.15);
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.95rem;
  color: #dba765;
  margin-bottom: 0.7rem;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(180deg, #f7f5f0 0%, #f2ede4 50%, #ede8df 100%);
  border-bottom: 3px solid rgba(219, 167, 101, 0.4);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(219, 167, 101, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(219, 167, 101, 0.6) 20%,
    rgba(219, 167, 101, 0.8) 50%,
    rgba(219, 167, 101, 0.6) 80%,
    transparent 100%);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(219, 167, 101, 0.4),
    transparent);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 0;
  position: relative;
  min-height: 80px;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav--open {
  display: flex !important;
  position: absolute;
  top: 70px;
  right: 5vw;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  animation: fadeInDown 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(20px);
}

.site-nav a {
  font-size: 0.95rem;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.site-nav a.is-active {
  opacity: 1;
  color: #c18145;
  font-weight: 600;
}

.site-nav a:hover {
  opacity: 1;
  color: #c18145;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: linear-gradient(135deg, rgba(242, 215, 186, 0.8), rgba(219, 167, 101, 0.6));
  border: 3px solid rgba(219, 167, 101, 0.5);
  cursor: pointer;
  padding: 1rem;
  border-radius: 14px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 101;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 2px 6px rgba(219, 167, 101, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.burger:hover {
  background: linear-gradient(135deg, rgba(242, 215, 186, 1), rgba(219, 167, 101, 0.8));
  border-color: rgba(219, 167, 101, 0.7);
  box-shadow: 
    0 6px 18px rgba(0, 0, 0, 0.2),
    0 3px 10px rgba(219, 167, 101, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: scale(1.08) translateY(-2px);
}

.burger span {
  width: 30px;
  height: 3.5px;
  background: linear-gradient(90deg, #2b2623, #c18145, #2b2623);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  border-radius: 4px;
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.burger--active {
  background: linear-gradient(135deg, rgba(219, 167, 101, 0.9), rgba(193, 129, 69, 0.7));
  border-color: rgba(219, 167, 101, 0.8);
  box-shadow: 
    0 6px 18px rgba(219, 167, 101, 0.4),
    0 3px 10px rgba(193, 129, 69, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.burger--active span {
  background: linear-gradient(90deg, #c18145, #dba765, #c18145);
  box-shadow: 
    0 3px 6px rgba(219, 167, 101, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.burger--active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger--active span:nth-child(2) {
  opacity: 0;
}

.burger--active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 200px;
  padding-bottom: 80px;
  background: radial-gradient(circle at top left, #fbe9d6 0, #f7f5f0 38%, #f2e6d6 80%);
  isolation: isolate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(219, 167, 101, 0.24), transparent 55%),
    radial-gradient(circle at 90% 90%, rgba(72, 49, 33, 0.35), transparent 65%);
  mix-blend-mode: multiply;
  z-index: -1;
}

.hero--split .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.7rem, 4.6vw, 4.6rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.hero p {
  color: rgba(43, 38, 35, 0.8);
}

.hero__primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  align-items: center;
}

.hero__secondary-actions {
  margin-bottom: 2rem;
}

.hero__scroll {
  background: transparent;
  border: none;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: rgba(43, 38, 35, 0.8);
  cursor: pointer;
  position: relative;
}

.hero__scroll::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 32px;
  height: 1px;
  background: rgba(65, 43, 26, 0.3);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.4rem;
}

.hero__stats span {
  font-size: 1.9rem;
  font-weight: 600;
  color: #c18145;
}

.hero__showcase {
  display: grid;
  grid-template-rows: auto auto;
  gap: 1.4rem;
}

.hero__card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(78, 54, 34, 0.35);
  background: #15100f;
  transform: translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__card-label {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(8, 6, 4, 0.85);
  color: #f7f5f0;
  font-size: 0.8rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero__card-label span {
  font-size: 0.85rem;
  font-weight: 600;
}

.hero__card-label p {
  font-size: 0.75rem;
  color: rgba(247, 245, 240, 0.8);
}

.hero__mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.hero__mini {
  border-radius: 22px;
  overflow: hidden;
  padding: 0.85rem;
  display: grid;
  gap: 0.6rem;
  align-content: space-between;
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero__mini img {
  border-radius: 18px;
  height: 160px;
  object-fit: cover;
}

.hero__mini--light {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.hero__mini--light img {
  border-radius: 22px;
  height: 180px;
  object-fit: cover;
}

.hero__mini--dark {
  background: radial-gradient(circle at top, #403127, #15110f);
  color: #f7f5f0;
}

.hero__mini p {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(60, 42, 28, 0.5);
}

.hero__mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(60, 42, 28, 0.35);
}

.hero__mini--dark p {
  color: #ffffff;
}

.trust {
  background: #fff;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.trust__card {
  padding: 2rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 18px 45px rgba(186, 156, 120, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 60px rgba(186, 156, 120, 0.24),
    0 0 0 1px rgba(255, 255, 255, 1);
  border-color: rgba(193, 129, 69, 0.35);
}

.home-highlight {
  background: #fff9f3;
  padding: 80px 0;
}

.home-highlight__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.home-highlight__media {
  position: relative;
}

.home-highlight__media--mosaic {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(200px, 0.8fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  align-items: stretch;
}

.home-highlight__tile {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 26px 60px rgba(132, 94, 63, 0.3);
}

.home-highlight__tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-highlight__tile--large {
  grid-row: span 2;
  min-height: 430px;
}

.home-highlight__tile--portrait {
  min-height: 320px;
}

.home-highlight__tile--wide {
  min-height: 200px;
}

.home-highlight__note {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.95rem;
  color: rgba(43, 38, 35, 0.8);
}

.home-highlight__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .home-highlight__grid {
    gap: 2.5rem;
  }

  .home-highlight__media--mosaic {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
  }

  .home-highlight__tile--large {
    min-height: 360px;
  }

  .home-highlight__tile--portrait {
    min-height: 260px;
  }

  .home-highlight__tile--wide {
    min-height: 200px;
  }
}

@media (max-width: 640px) {
  .home-highlight__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-highlight__media {
    order: -1;
  }

  .home-highlight__tile {
    border-radius: 24px;
  }

  .home-highlight__tile--large {
    min-height: 280px;
  }
}

.home-overview {
  background: #ffffff;
  padding: 80px 0;
}

.home-overview__intro {
  max-width: 720px;
  margin-bottom: 2.75rem;
}

.home-overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.home-overview__card {
  padding: 1.8rem;
  border-radius: 22px;
  border: 1px solid rgba(219, 167, 101, 0.12);
  background: #fff9f3;
  box-shadow:
    0 18px 45px rgba(186, 156, 120, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-overview__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 60px rgba(186, 156, 120, 0.22),
    0 0 0 1px rgba(255, 255, 255, 1);
  border-color: rgba(193, 129, 69, 0.3);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #c18145;
  transition: color 0.3s ease;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.3s ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.home-cta {
  background: linear-gradient(135deg, #f2d7ba, #f7f2eb);
  padding: 80px 0;
}

.home-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.home-cta__actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.home-cta .link-arrow {
  color: #2b2623;
}

.page-hero {
  padding: 180px 0 80px;
  background: linear-gradient(135deg, rgba(242, 215, 186, 0.3), #fff);
  margin-top: 0;
}

.page-hero__breadcrumbs {
  display: inline-flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(43, 38, 35, 0.7);
  margin-bottom: 1rem;
}

.page-hero__breadcrumbs a {
  color: #c18145;
}

.page-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta {
  background: linear-gradient(135deg, #f2d7ba, #f7f2eb);
  padding: 80px 0;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.cta__form input,
.cta__form textarea {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta__form input:focus,
.cta__form textarea:focus {
  outline: none;
  border-color: #c18145;
  box-shadow: 0 0 0 3px rgba(193, 129, 69, 0.1);
}

.cta__form textarea {
  resize: vertical;
  min-height: 100px;
}

.cta__map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(186, 156, 120, 0.25);
  height: 500px;
}

.cta__map-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.cta__map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cta__map-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta__map-card strong {
  font-size: 1.1rem;
  color: #2b2623;
  margin-bottom: 0.25rem;
}

.cta__map-card p {
  margin: 0;
  color: rgba(43, 38, 35, 0.8);
  font-size: 0.95rem;
}

.cta__map-card a {
  color: #c18145;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cta__map-card a:hover {
  color: #a86d35;
}

.contact-details {
  background: #fff;
  padding: 80px 0;
}

.contact-details__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-details__card {
  padding: 1.8rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: #fff9f3;
  box-shadow: 0 20px 40px rgba(186, 156, 120, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-details__card h3 {
  font-size: 1.1rem;
  color: #2b2623;
  margin: 0 0 0.5rem 0;
}

.contact-details__card p {
  margin: 0;
  font-size: 1rem;
}

.contact-details__card a {
  color: #c18145;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-details__card a:hover {
  color: #a86d35;
}

.contact-details__card span {
  font-size: 0.9rem;
  color: rgba(43, 38, 35, 0.7);
}

@media (max-width: 968px) {
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cta__map {
    height: 400px;
  }
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__carousel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(186, 156, 120, 0.25);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about__carousel img {
  width: 100%;
  display: block;
  height: 600px;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.8s ease;
}

.about__badge {
  align-self: flex-start;
  padding: 1rem 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 40px rgba(186, 156, 120, 0.2);
}

.about ul {
  list-style: none;
  margin: 1.5rem 0;
}

.about li {
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
  position: relative;
}

.about li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #dba765;
}

.about__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.about__cta span {
  margin-left: 0.5rem;
}

.gallery {
  background: #fff9f3;
  padding-bottom: 0;
}

.gallery__header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.gallery__controls {
  display: flex;
  gap: 1rem;
}

.gallery__viewport {
  margin-top: 2.5rem;
  overflow: hidden;
  padding-bottom: 1rem;
  position: relative;
}

.gallery__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none;
  cursor: default;
}

.gallery__track--furniture {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 25px 50px rgba(186, 156, 120, 0.18);
  min-width: 300px;
}

.gallery__card img {
  height: 360px;
  object-fit: cover;
  width: 100%;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.gallery__card-content {
  padding: 1.5rem;
}

.craft-note {
  background: #fff;
}

.craft-note__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.craft-note__copy h2 {
  margin-bottom: 1rem;
}

.craft-note__copy p + p {
  margin-top: 0.8rem;
  color: rgba(43, 38, 35, 0.75);
}

.craft-note__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vk-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vk-banner {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(186, 156, 120, 0.25);
  display: block;
  max-width: 450px;
  margin: 0 auto;
}

.vk-banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: auto;
}

.vk-banner__info {
  background: #fff;
  border-radius: 24px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 15px 35px rgba(186, 156, 120, 0.2);
  display: grid;
  gap: 0.6rem;
}

.vk-banner__info p {
  font-weight: 600;
  font-size: 1.15rem;
}

.vk-banner__info span {
  display: block;
  font-size: 0.95rem;
  color: rgba(43, 38, 35, 0.7);
}

.vk-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(135deg, #f2d7ba, #dba765);
  color: #2b2623;
  border: none;
  box-shadow: 0 10px 25px rgba(219, 167, 101, 0.35);
}

.craft-note__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1rem 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 40px rgba(186, 156, 120, 0.2);
}

.scroll-invite {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  margin-top: 2rem;
  background: #fff;
}

.scroll-invite__text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c18145;
  margin: 0;
  letter-spacing: 0.02em;
}

.scroll-invite__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(242, 215, 186, 0.3), rgba(219, 167, 101, 0.2));
  border: 2px solid rgba(193, 129, 69, 0.3);
  color: #c18145;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-invite__arrow:hover {
  background: linear-gradient(135deg, rgba(242, 215, 186, 0.5), rgba(219, 167, 101, 0.4));
  border-color: rgba(193, 129, 69, 0.5);
  transform: scale(1.1);
}

.scroll-invite__arrow svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 640px) {
  .scroll-invite {
    padding: 1rem 0;
    margin-top: -0.5rem;
  }
  
  .scroll-invite__text {
    font-size: 1rem;
  }
  
  .scroll-invite__arrow {
    width: 44px;
    height: 44px;
  }
}

.process {
  background: linear-gradient(180deg, #fffefd, #f6efe6);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.process__step {
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  box-shadow: 0 18px 40px rgba(186, 156, 120, 0.15);
}

.process__step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(219, 167, 101, 0.18);
  color: #c18145;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonials {
  background: #fff;
  padding: 100px 0;
}

.testimonials__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.testimonials__subtitle {
  color: rgba(43, 38, 35, 0.7);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.testimonials__wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slider {
  position: relative;
  min-height: 280px;
  margin-bottom: 2.5rem;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.testimonial-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.faq {
  background: #f7f5f0;
  padding: 100px 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq__item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item:hover {
  border-color: rgba(193, 129, 69, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  display: block;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::marker {
  display: none;
}

.faq__item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2b2623;
  padding: 1.5rem 2rem;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  padding-right: 4rem;
}

.faq__item summary:hover h3 {
  color: #c18145;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #c18145;
  font-weight: 300;
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__item > div {
  padding: 0 2rem 1.5rem;
  color: rgba(43, 38, 35, 0.8);
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq__item p {
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials__header {
    margin-bottom: 3rem;
  }

  .testimonial-slide__content {
    padding: 2rem 1.5rem;
  }

  .testimonial-slide__quote {
    font-size: 1.05rem;
  }

  .faq {
    padding: 60px 0;
  }

  .faq__item h3 {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    padding-right: 3rem;
  }

  .faq__item summary::after {
    right: 1.5rem;
  }

  .faq__item > div {
    padding: 0 1.5rem 1.25rem;
  }
}

.testimonial-slide__content {
  padding: 3rem;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.testimonial-slide.is-active .testimonial-slide__content {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-slide__quote {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #2b2623;
  margin: 0 0 2rem 0;
  font-style: italic;
}

.testimonial-slide__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-slide__author strong {
  font-size: 1rem;
  font-weight: 600;
  color: #2b2623;
  font-style: normal;
}

.testimonial-slide__author span {
  font-size: 0.9rem;
  color: rgba(43, 38, 35, 0.6);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.testimonials__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #2b2623;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonials__btn:hover {
  background: #f7f5f0;
  border-color: rgba(193, 129, 69, 0.3);
  transform: scale(1.05);
}

.testimonials__btn:active {
  transform: scale(0.95);
}

.testimonials__dots {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.testimonials__dot.is-active {
  background: #c18145;
  width: 10px;
  height: 10px;
}

.testimonials__dot:hover {
  background: rgba(193, 129, 69, 0.5);
}

/* Стили для нового футера */
.site-footer {
  background: linear-gradient(180deg, #2b2623 0%, #1a1715 100%);
  color: #ffffff;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-footer__brand .logo {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.site-footer__description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 90%;
}

.site-footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.site-footer__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.site-footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.site-footer__nav-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.site-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__contact-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.site-footer__contact-item strong {
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.site-footer__contact-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer__contact-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* Адаптивность для футера */
@media (max-width: 968px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .site-footer__description {
    max-width: 100%;
  }
  
  .site-footer {
    padding: 3rem 0 1.5rem;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    gap: 2rem;
  }
  
  .site-footer__title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .site-footer__contact-item {
    font-size: 0.85rem;
  }
  
  .site-footer__nav-links a {
    font-size: 0.9rem;
  }
}

/* Современный блок контактов */
.contacts-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7f5f0 0%, #fffefd 100%);
}

.contacts-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contacts-info h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #2b2623;
}

.contacts-subtitle {
  font-size: 1.1rem;
  color: rgba(43, 38, 35, 0.7);
  margin-bottom: 3rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(186, 156, 120, 0.08);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(186, 156, 120, 0.15);
  border-color: rgba(193, 129, 69, 0.2);
}

.contact-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4eee5 0%, #e8ddd0 100%);
  border-radius: 16px;
  color: #c18145;
}

.contact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2b2623;
  margin: 0 0 0.25rem 0;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-link {
  color: #c18145;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  color: #a86d35;
  transform: translateX(4px);
}

.contact-text {
  color: #2b2623;
  font-size: 1.05rem;
  margin: 0;
  font-weight: 500;
}

.contact-note {
  font-size: 0.9rem;
  color: rgba(43, 38, 35, 0.6);
  margin-top: 0.25rem;
}

.contacts-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(186, 156, 120, 0.2);
  height: 600px;
  background: #f4eee5;
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.85) 70%, transparent 100%);
  padding: 2rem;
  pointer-events: none;
}

.map-info {
  pointer-events: auto;
}

.map-info strong {
  display: block;
  font-size: 1.1rem;
  color: #2b2623;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.map-info p {
  margin: 0;
  color: rgba(43, 38, 35, 0.8);
  font-size: 1rem;
}

@media (max-width: 968px) {
  .contacts-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contacts-map {
    height: 450px;
    order: -1;
  }
  
  .contacts-info h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .contacts-section {
    padding: 60px 0;
  }
  
  .contact-item {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .contact-icon {
    width: 48px;
    height: 48px;
  }
  
  .contacts-map {
    height: 350px;
  }
  
  .map-overlay {
    padding: 1.5rem;
  }
}

/* ============================================
   КОМПЛЕКСНАЯ АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ
   ============================================ */

/* Основные адаптивные стили для всех экранов */
@media (max-width: 968px) {
  /* Контейнер */
  .container {
    width: min(1200px, 92vw);
  }

  /* Заголовки */
  h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }

  h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
  }

  /* Header и навигация */
  .site-header {
    background: linear-gradient(180deg, #f7f5f0 0%, #f2ede4 50%, #ede8df 100%);
    border-bottom: 3px solid rgba(219, 167, 101, 0.45);
    box-shadow: 
      0 10px 32px rgba(0, 0, 0, 0.15),
      0 4px 16px rgba(219, 167, 101, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .site-header__inner {
    padding: 1.8rem 0;
    min-height: 80px;
  }

  .site-header .logo {
    font-size: 1.4rem;
    padding: 0.55rem 1rem 0.55rem 1.3rem;
  }

  .site-header .logo::before {
    width: 5px;
    height: 38px;
    left: 0.4rem;
  }

  .burger {
    padding: 0.9rem;
    border-radius: 14px;
  }

  .burger span {
    width: 28px;
    height: 3.5px;
  }

  .site-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .site-nav--open {
    display: flex;
    top: 96px;
    right: 1rem;
    left: 1rem;
    width: auto;
    padding: 2rem;
    background: linear-gradient(180deg, #f7f5f0 0%, #f2ede4 50%, #ede8df 100%);
    border: 3px solid rgba(219, 167, 101, 0.4);
    box-shadow: 
      0 16px 48px rgba(0, 0, 0, 0.2),
      0 6px 20px rgba(219, 167, 101, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    gap: 0.5rem;
    backdrop-filter: blur(20px);
  }

  .site-nav--open a {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .site-nav--open a:hover {
    background: rgba(193, 129, 69, 0.08);
    color: #c18145;
  }

  .site-header .logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .site-header .logo::before {
    opacity: 1;
    height: 28px;
  }

  /* Hero секция */
  .hero {
    min-height: auto;
    padding-top: 180px;
    padding-bottom: 60px;
  }

  .hero--split .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__primary-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__primary-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero__showcase {
    gap: 1rem;
  }

  .hero__mini-grid {
    grid-template-columns: 1fr;
  }

  /* Page Hero */
  .page-hero {
    padding: 160px 0 60px;
    margin-top: 0;
  }

  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Кнопки */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn--outline {
    padding: 0.45rem 1.1rem;
  }

  /* Home CTA */
  .home-cta__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .home-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .home-cta__actions .btn,
  .home-cta__actions .link-arrow {
    width: 100%;
    justify-content: center;
  }

  /* About секция */
  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__carousel img {
    height: 400px;
  }

  .about__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Trust секция */
  .trust__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .trust__card {
    padding: 1.5rem;
  }

  /* Gallery */
  .gallery__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .gallery__card {
    min-width: 280px;
  }

  .gallery__card img {
    height: 300px;
  }

  /* Home Overview */
  .home-overview__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home-overview__card {
    padding: 1.5rem;
  }

  /* Home Highlight */
  .home-highlight__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* CTA секция */
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta__map {
    height: 400px;
    order: -1;
  }

  /* Contact Details */
  .contact-details__grid {
    grid-template-columns: 1fr;
  }

  .contact-details__card {
    padding: 1.5rem;
  }

  /* Process */
  .process__steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .process__step {
    padding: 1.5rem;
  }

  /* Craft Note */
  .craft-note__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* VK Banner */
  .vk-banner {
    max-width: 100%;
  }
}

/* Мобильные устройства (до 640px) */
@media (max-width: 640px) {
  /* Контейнер */
  .container {
    width: min(1200px, 95vw);
  }

  /* Заголовки */
  .eyebrow {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  /* Header */
  .site-header {
    background: linear-gradient(180deg, #f7f5f0 0%, #f2ede4 50%, #ede8df 100%);
    border-bottom: 3px solid rgba(219, 167, 101, 0.5);
    box-shadow: 
      0 8px 28px rgba(0, 0, 0, 0.15),
      0 3px 12px rgba(219, 167, 101, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .site-header__inner {
    padding: 1.6rem 0;
    min-height: 76px;
  }

  .site-header .logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    padding: 0.5rem 0.9rem 0.5rem 1.2rem;
  }

  .site-header .logo::before {
    height: 34px;
    width: 4.5px;
    left: 0.4rem;
    box-shadow: 
      0 2px 8px rgba(219, 167, 101, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .burger {
    padding: 0.85rem;
    border-radius: 12px;
    border-width: 3px;
  }

  .burger span {
    width: 26px;
    height: 3px;
  }

  .site-nav--open {
    top: 92px;
    right: 0.75rem;
    left: 0.75rem;
    padding: 1.75rem;
    border-radius: 18px;
    box-shadow: 
      0 16px 48px rgba(0, 0, 0, 0.22),
      0 6px 20px rgba(219, 167, 101, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 3px solid rgba(219, 167, 101, 0.45);
  }

  .site-nav--open a {
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    font-weight: 500;
  }

  .site-nav--open .btn {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero__stats span {
    font-size: 1.5rem;
  }

  .hero__card {
    border-radius: 20px;
  }

  .hero__mini {
    padding: 0.7rem;
  }

  .hero__mini img {
    height: 140px;
  }

  /* Page Hero */
  .page-hero {
    padding: 140px 0 40px;
    margin-top: 0;
  }

  .page-hero__breadcrumbs {
    font-size: 0.85rem;
  }

  /* Кнопки */
  .btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.9rem;
  }

  /* Home CTA */
  .home-cta {
    padding: 50px 0;
  }

  .home-cta h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* About */
  .about__carousel img {
    height: 300px;
  }

  .about__badge {
    padding: 0.85rem 1.2rem;
  }

  /* Trust */
  .trust__card {
    padding: 1.25rem;
  }

  .trust__card h3 {
    font-size: 1.1rem;
  }

  /* Gallery */
  .gallery__card {
    min-width: 260px;
  }

  .gallery__card img {
    height: 260px;
  }

  .gallery__card-content {
    padding: 1.25rem;
  }

  .gallery__btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .gallery__btn--prev {
    left: 8px;
  }

  .gallery__btn--next {
    right: 8px;
  }

  /* Home Overview */
  .home-overview__intro {
    margin-bottom: 2rem;
  }

  .home-overview__card {
    padding: 1.25rem;
  }

  /* Home Highlight */
  .home-highlight__tile {
    border-radius: 20px;
  }

  /* CTA */
  .cta__form input,
  .cta__form textarea {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }

  .cta__map {
    height: 300px;
    border-radius: 16px;
  }

  .cta__map-card {
    padding: 1.25rem;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  /* Contact Details */
  .contact-details__card {
    padding: 1.25rem;
  }

  .contact-details__card h3 {
    font-size: 1rem;
  }

  /* Process */
  .process__step {
    padding: 1.25rem;
  }

  .process__step span {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  /* Testimonials */
  .testimonials__header {
    margin-bottom: 2rem;
  }

  .testimonials__subtitle {
    font-size: 0.95rem;
  }

  .testimonial-slide__content {
    padding: 1.5rem;
  }

  .testimonial-slide__quote {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .testimonials__btn {
    width: 40px;
    height: 40px;
  }

  .testimonials__btn svg {
    width: 16px;
    height: 16px;
  }

  /* FAQ */
  .faq__list {
    gap: 0.75rem;
  }

  .faq__item h3 {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    padding-right: 2.5rem;
  }

  .faq__item summary::after {
    right: 1.25rem;
    font-size: 1.25rem;
  }

  .faq__item > div {
    padding: 0 1.25rem 1rem;
  }

  .faq__item p {
    font-size: 0.9rem;
  }

  /* Contacts */
  .contacts-info h2 {
    font-size: 1.75rem;
  }

  .contacts-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-item {
    padding: 1.25rem;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .contact-content h3 {
    font-size: 1rem;
  }

  .contact-link {
    font-size: 0.95rem;
  }

  /* Craft Note */
  .craft-note__badge {
    padding: 0.85rem 1.2rem;
  }

  .vk-banner__info {
    padding: 1rem 1.2rem;
  }

  .vk-banner__info p {
    font-size: 1rem;
  }

  .vk-banner__info span {
    font-size: 0.9rem;
  }

  /* Scroll Invite */
  .scroll-invite {
    padding: 1.5rem 0;
    margin-top: 1rem;
  }

  .scroll-invite__text {
    font-size: 0.95rem;
  }

  /* Link Arrow */
  .link-arrow {
    font-size: 0.9rem;
  }
}

/* Очень маленькие экраны (до 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  section {
    padding: 30px 0;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 30px;
  }

  .page-hero {
    padding: 90px 0 30px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
  }

  .gallery__card {
    min-width: 240px;
  }

  .testimonial-slide__content {
    padding: 1.25rem;
  }

  .testimonial-slide__quote {
    font-size: 0.95rem;
  }
}

/* Ландшафтная ориентация на мобильных */
@media (max-width: 968px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .page-hero {
    padding-top: 100px;
  }
}

/* Дополнительные улучшения для touch-устройств */
@media (hover: none) and (pointer: coarse) {
  /* Увеличиваем размер кликабельных элементов на touch-устройствах */
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  .testimonials__btn,
  .gallery__btn {
    min-width: 48px;
    min-height: 48px;
  }

  .testimonials__dot {
    min-width: 12px;
    min-height: 12px;
  }

  /* Убираем hover-эффекты на touch-устройствах */
  .btn:hover,
  .link-arrow:hover,
  .site-nav a:hover {
    transform: none;
  }
}

/* Улучшения для очень маленьких экранов */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .site-header .logo {
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    padding: 0.45rem 0.8rem 0.45rem 1.1rem;
  }

  .site-header .logo::before {
    height: 30px;
    width: 4px;
    left: 0.35rem;
  }

  .site-header__inner {
    padding: 1.4rem 0;
    min-height: 72px;
  }

  .burger {
    padding: 0.75rem;
    border-radius: 12px;
    border-width: 2.5px;
  }

  .burger span {
    width: 24px;
    height: 3px;
  }

  .testimonial-slide__content {
    padding: 1rem;
  }

  .faq__item h3 {
    padding: 0.9rem 1rem;
    padding-right: 2rem;
    font-size: 0.9rem;
  }

  .faq__item > div {
    padding: 0 1rem 0.9rem;
  }
}