/* ===================================
   HOLZWURM-LINDHEIM — Redesign 2026
   =================================== */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* DESIGN TOKENS */
:root {
  --bg:        #FAFAF8;
  --bg-warm:   #F0EBE1;
  --bg-white:  #FFFFFF;
  --dark:      #110C06;
  --dark-2:    #1C1410;

  --wood:      #BF8B52;
  --wood-dk:   #9B6E3A;
  --wood-lt:   #D9A86C;
  --sage:      #637358;
  --sage-dk:   #506047;
  --sage-lt:   #EEF2EA;
  --white:     #FFFFFF;

  --tx:        #130D04;
  --tx-mid:    #5A4535;
  --tx-muted:  #9A856F;
  --tx-inv:    #F5F0E8;

  --bd:        rgba(19,13,4,.09);
  --bd-inv:    rgba(245,240,232,.13);

  --sh-xs: 0 1px  6px rgba(19,13,4,.05);
  --sh-sm: 0 4px 18px rgba(19,13,4,.09);
  --sh-md: 0 10px 36px rgba(19,13,4,.12);
  --sh-lg: 0 24px 64px rgba(19,13,4,.17);
  --sh-xl: 0 40px 90px rgba(19,13,4,.22);

  --r-xs:  6px;
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  32px;
  --r-xl:  48px;
  --r-pill: 9999px;

  --ease:   cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
  --t:     .28s cubic-bezier(.4,0,.2,1);
  --ts:    .5s  cubic-bezier(.34,1.56,.64,1);

  /* Legacy aliases for legal pages */
  --cream: var(--bg);
  --cream-dark: var(--bg-warm);
  --brown-dark: var(--tx);
  --brown-mid: var(--tx-mid);
  --text-light: var(--tx-muted);
  --text-body: var(--tx-mid);
  --wood-light: var(--wood-lt);
  --sage-dark: var(--sage-dk);
  --shadow-sm: var(--sh-sm);
  --shadow-md: var(--sh-md);
  --shadow-lg: var(--sh-lg);
  --radius-sm: var(--r-sm);
  --radius-md: var(--r-md);
  --radius-lg: var(--r-lg);
  --transition: var(--t);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--tx);
  line-height: 1.65;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--tx);
  line-height: 1.07;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.9rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw,  1.5rem);  font-weight: 600; }
p  { color: var(--tx-mid); line-height: 1.78; }
em { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--wood); margin-bottom: 14px;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow { display: block; }
.section-divider {
  width: 36px; height: 2px;
  background: var(--wood);
  margin: 14px auto 0; border-radius: 2px;
  position: relative;
}
.section-divider::before, .section-divider::after {
  content: ''; position: absolute; top: -3px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--wood);
}
.section-divider::before { left: -9px; }
.section-divider::after  { right: -9px; }
.section-divider--left { margin-left: 0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-pill);
  font-family: 'Lato', sans-serif;
  font-size: .92rem; font-weight: 700; letter-spacing: .01em;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap; cursor: pointer;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--wood); color: var(--white);
  box-shadow: 0 4px 20px rgba(191,139,82,.3);
}
.btn-primary:hover { background: var(--wood-dk); box-shadow: 0 8px 28px rgba(191,139,82,.42); }

.btn-whatsapp {
  background: var(--sage); color: var(--white);
  box-shadow: 0 4px 20px rgba(99,115,88,.28);
}
.btn-whatsapp:hover { background: var(--sage-dk); box-shadow: 0 8px 28px rgba(99,115,88,.38); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

.btn-outline-dark {
  background: transparent; color: var(--tx);
  border: 1.5px solid var(--bd);
}
.btn-outline-dark:hover { border-color: var(--tx); background: var(--tx); color: var(--bg); }

.btn-full { width: 100%; justify-content: center; }

/* SEASONAL BANNER */
.season-banner {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 9px 48px 9px 16px;
  background: var(--sage); color: var(--white);
  font-size: .82rem; font-weight: 700; text-align: center;
  position: relative;
  transition: height .3s var(--ease), opacity .3s, padding .3s;
}
.season-banner.hidden { height: 0; opacity: 0; padding: 0; pointer-events: none; overflow: hidden; }
.season-banner__icon { font-size: 1.1rem; }
.season-banner__close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.65); font-size: .9rem; padding: 4px 6px;
  border-radius: 50%; transition: background var(--t), color var(--t);
}
.season-banner__close:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250,250,248,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  transition: box-shadow var(--t);
}
.navbar.scrolled { box-shadow: var(--sh-sm); }

.navbar__inner { display: flex; align-items: center; gap: 28px; height: 66px; }

.navbar__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem; font-weight: 700; color: var(--tx);
  flex-shrink: 0; letter-spacing: -.01em;
}
.logo-badge {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(74,51,39,.18);
  padding: 3px;
  background: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t);
}
.navbar__logo:hover .logo-badge { border-color: var(--wood); }
.logo-image { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.logo-text-wrap { display: flex; flex-direction: column; gap: 1px; line-height: 1; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; color: var(--tx); }
.logo-sub { font-family: 'Lato', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--tx-mid); }
.logo-image--footer { height: 100%; filter: brightness(1.15); }

.navbar__nav { margin-left: auto; }
.navbar__nav ul { display: flex; gap: 2px; align-items: center; }
.nav-link {
  padding: 7px 13px; font-size: .82rem; font-weight: 700;
  color: var(--tx-mid); border-radius: var(--r-sm);
  transition: background var(--t), color var(--t); letter-spacing: .01em;
}
.nav-link:hover, .nav-link.active { background: var(--bg-warm); color: var(--tx); }

.navbar__phone { flex-shrink: 0; padding: 9px 18px; font-size: .8rem; }

.navbar__burger {
  display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto;
}
.navbar__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--tx); border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative;
  height: clamp(540px, 90vh, 880px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 120%; object-fit: cover; object-position: center 30%;
  will-change: transform;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(108deg,
      rgba(17,12,6,.88) 0%,
      rgba(17,12,6,.60) 42%,
      rgba(17,12,6,.12) 72%,
      transparent 100%);
}
.hero__content {
  position: relative; z-index: 2;
  display: flex; align-items: center; height: 100%;
}
.hero__text { max-width: 580px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(191,139,82,.16);
  border: 1px solid rgba(191,139,82,.38);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--wood-lt); margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero__text h1 {
  color: var(--white);
  text-shadow: 0 2px 40px rgba(17,12,6,.35);
  margin-bottom: 20px;
}
.hero__text h1 em { color: var(--wood-lt); font-style: italic; }
.hero__text p {
  color: rgba(245,240,232,.78);
  font-size: 1.06rem; max-width: 430px;
  margin-bottom: 38px; line-height: 1.72;
}
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(245,240,232,.45); font-size: .65rem;
  letter-spacing: .14em; text-transform: uppercase;
  animation: scrollHint 3s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(245,240,232,.4), transparent);
  animation: scrollLine 3s ease-in-out infinite;
}
@keyframes scrollHint { 0%,100%{opacity:.45;transform:translateX(-50%) translateY(0)} 50%{opacity:.8;transform:translateX(-50%) translateY(-5px)} }
@keyframes scrollLine { 0%,100%{scaleY:1;transform-origin:top} 50%{transform:scaleY(1.2)} }

/* ===================================
   FEATURES BAR
   =================================== */
.features {
  background: var(--bg-white);
  border-bottom: 1px solid var(--bd);
}
.features__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid var(--bd);
  transition: background var(--t);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--bg); }
.feature-icon { width: 30px; height: 30px; flex-shrink: 0; color: var(--wood); stroke: var(--wood); }
.feature-item div { display: flex; flex-direction: column; }
.feature-item strong { font-size: .86rem; font-weight: 700; color: var(--tx); }
.feature-item span   { font-size: .74rem; color: var(--tx-muted); }

/* ===================================
   STATISTIK ZÄHLER
   =================================== */
.stats {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 70% at 75% 50%, rgba(191,139,82,.07) 0%, transparent 68%);
  pointer-events: none;
}

.stats__inner {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 88px;
  align-items: center;
}

.stats__lead { display: flex; flex-direction: column; }
.stats__lead h2 {
  color: var(--tx-inv);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.08;
  margin: 10px 0 18px;
}
.stats__lead h2 em { color: var(--wood-lt); font-style: italic; }
.stats__lead-text {
  font-size: .88rem;
  color: rgba(245,240,232,.38);
  line-height: 1.75;
  max-width: 280px;
}
.stats__lead-line {
  width: 44px; height: 2px;
  background: linear-gradient(to right, var(--wood-lt), transparent);
  margin-top: 28px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  border: none;
}

.stat-item {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 36px 44px 36px 0;
  background: transparent;
  text-align: left;
  position: relative;
  border-bottom: 1px solid rgba(245,240,232,.07);
  transition: none;
}
.stat-item:nth-child(even) {
  padding-left: 44px;
  padding-right: 0;
  border-left: 1px solid rgba(245,240,232,.07);
}
.stat-item:nth-child(3),
.stat-item:nth-child(4) { border-bottom: none; }
.stat-item::after { display: none; }
.stat-item:hover { background: transparent; }

.stat-top {
  display: flex;
  align-items: baseline;
  gap: 1px;
  margin-bottom: 10px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 700; color: var(--wood-lt);
  line-height: 1; display: inline;
}
.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700; color: var(--wood);
  line-height: 1; display: inline; margin-left: 2px;
}
.stat-label {
  font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(245,240,232,.72); margin-top: 0;
}
.stat-desc {
  font-size: .76rem;
  color: rgba(245,240,232,.28);
  margin-top: 5px;
  letter-spacing: .02em;
  line-height: 1.4;
}

/* ===================================
   PRODUKTE
   =================================== */
.products { padding: 120px 0; background: var(--bg-white); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.product-card {
  cursor: pointer;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  border: 1px solid var(--bd);
  transition: transform var(--t), box-shadow var(--t);
  background: var(--bg-white);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); }
.product-card__img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.product-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.06); }
.product-card__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 14px 14px;
  background: linear-gradient(to top, rgba(17,12,6,.82) 0%, rgba(17,12,6,.32) 60%, transparent 100%);
  display: flex; align-items: flex-end;
}
.product-card__overlay span {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.products__cta { text-align: center; margin-top: 52px; }

/* ===================================
   ÜBER UNS
   =================================== */
.about { background: var(--bg-warm); overflow: hidden; }
.about__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; min-height: 560px;
}
.about__image { position: relative; overflow: hidden; }
.about__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about__content {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.about__content h2 { margin-bottom: 8px; }
.about__content .section-divider--left { margin-bottom: 28px; }
.about__content p { margin-bottom: 16px; font-size: 1.02rem; }
.about__content .btn-primary { align-self: flex-start; margin-top: 10px; }
.about__values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.about__value-item { display: flex; align-items: flex-start; gap: 12px; }
.about__value-item svg { color: var(--sage); flex-shrink: 0; margin-top: 3px; }
.about__value-item strong { display: block; font-size: .88rem; color: var(--tx); font-weight: 700; }
.about__value-item span  { font-size: .76rem; color: var(--tx-muted); }

/* ===================================
   GALERIE
   =================================== */
.gallery {
  padding: 96px 0 80px;
  background: var(--bg-white);
  overflow: hidden;
}

.gallery__header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery__header h2 {
  color: var(--tx);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1; margin: 10px 0 14px;
}
.gallery__header h2 em { color: var(--wood); font-style: italic; }
.gallery__sub { font-size: .88rem; color: var(--tx-mid); line-height: 1.7; }

/* 3D Stage */
.gallery__stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 440px; overflow: visible;
}

.gallery__scene {
  flex: 1;
  height: 100%;
  perspective: 1100px;
  perspective-origin: 50% 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}

.gallery__carousel {
  position: relative;
  width: 0; height: 380px;
  transform-style: preserve-3d;
}

/* Items — all stacked at origin, JS applies 3D transforms */
.gallery__item {
  position: absolute;
  width: 300px; height: 380px;
  left: -150px; top: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  will-change: transform, opacity, filter;
  transition: transform .62s cubic-bezier(.25,.46,.45,.94),
              opacity .62s ease, filter .62s ease, box-shadow .62s ease;
  box-shadow: 0 16px 48px rgba(17,12,6,.1);
}
.gallery__item--active {
  box-shadow: 0 28px 72px rgba(17,12,6,.2);
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s var(--ease);
  pointer-events: none; user-select: none;
}
.gallery__item--active:hover img { transform: scale(1.04); }

.gallery__cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 20px 18px;
  background: linear-gradient(to top, rgba(17,12,6,.78) 0%, transparent 100%);
  font-size: .64rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  opacity: 0; transition: opacity .3s ease;
}
.gallery__item--active .gallery__cap { opacity: 1; }

/* Arrows */
.gallery__arrow {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; border: 1px solid var(--bd);
  color: var(--tx);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 20;
  box-shadow: 0 4px 16px rgba(17,12,6,.1);
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  margin: 0 clamp(8px, 3vw, 48px);
}
.gallery__arrow:hover {
  background: var(--wood); color: #fff;
  border-color: var(--wood); transform: scale(1.08);
}

/* Dots */
.gallery__dots {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; margin-top: 36px;
}
.gallery__dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(19,13,4,.16); border: none; cursor: pointer; padding: 0;
  transition: background var(--t), width var(--t);
}
.gallery__dot--active { width: 26px; background: var(--wood); }
.gallery__dot:hover:not(.gallery__dot--active) { background: rgba(19,13,4,.32); }

.gallery__cta { text-align: center; margin-top: 44px; }

/* ===================================
   FAQ
   =================================== */
.faq { padding: 120px 0; background: var(--bg-warm); }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  border: 1px solid var(--bd); border-radius: var(--r-md);
  overflow: hidden; transition: border-color var(--t), box-shadow var(--t);
}
.faq__item.open { border-color: var(--wood); box-shadow: var(--sh-xs); }
.faq__question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 28px; text-align: left;
  font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--tx); background: none; border: none; cursor: pointer;
  transition: color var(--t);
}
.faq__item.open .faq__question { color: var(--wood-dk); }
.faq__chevron { flex-shrink: 0; color: var(--wood); transition: transform var(--t); }
.faq__item.open .faq__chevron { transform: rotate(180deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq__item.open .faq__answer { max-height: 300px; }
.faq__answer p { padding: 0 28px 24px; font-size: .96rem; color: var(--tx-mid); line-height: 1.8; margin: 0; }

/* ===================================
   KUNDENBEWERTUNGEN
   =================================== */
.reviews { background: var(--bg-white); padding: 120px 0; }
.reviews__wrapper { display: flex; align-items: center; gap: 48px; position: relative; }
.reviews__slider-wrap { flex: 1; display: flex; align-items: center; gap: 20px; }
.reviews__slider { flex: 1; position: relative; min-height: 260px; overflow: hidden; }
.review-card {
  position: absolute; inset: 0;
  background: var(--bg-white); border-radius: var(--r-lg);
  padding: 40px 48px;
  box-shadow: var(--sh-sm); border: 1px solid var(--bd);
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateX(40px);
  transition: opacity .5s ease, transform .5s ease; pointer-events: none;
}
.review-card.active { opacity: 1; transform: translateX(0); pointer-events: auto; position: relative; }
.review-card__quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; color: var(--wood-lt);
  line-height: .6; margin-bottom: 18px;
}
.review-card p { font-size: 1.05rem; font-style: italic; color: var(--tx-mid); line-height: 1.8; margin: 0; }
.review-card__stars { color: #F5A623; font-size: 1.1rem; margin-top: 18px; letter-spacing: 2px; }
.review-card__author { font-size: .84rem; color: var(--tx-muted); margin-top: 8px; font-weight: 700; }

.reviews__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--bd); background: var(--bg-white);
  color: var(--tx); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-xs); flex-shrink: 0;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.reviews__arrow:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }

.reviews__badge { flex-shrink: 0; width: 160px; height: 160px; }
.badge-inner {
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--sage); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; padding: 24px;
  text-align: center; box-shadow: var(--sh-md);
  animation: badgePulse 3s ease-in-out infinite;
}
.badge-inner p { color: var(--white); font-size: .78rem; font-weight: 700; line-height: 1.4; }
@keyframes badgePulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }

.reviews__dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: transparent; border: 2px solid var(--wood);
  transition: background var(--t), transform var(--t);
}
.dot.active { background: var(--wood); transform: scale(1.25); }

/* ===================================
   COUNTDOWN
   =================================== */
.countdown-section {
  background: var(--dark-2); padding: 28px 0;
  border-top: 1px solid var(--bd-inv); border-bottom: 1px solid var(--bd-inv);
}
.countdown-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.countdown-label { color: rgba(245,240,232,.7); font-size: .9rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.countdown-timer { display: flex; align-items: center; gap: 6px; }
.countdown-unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.06); border-radius: var(--r-sm);
  padding: 10px 16px; min-width: 62px;
  border: 1px solid var(--bd-inv);
}
.countdown-unit span { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.countdown-unit small { font-size: .6rem; color: rgba(245,240,232,.45); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.countdown-sep { font-size: 1.5rem; color: var(--wood); font-weight: 700; margin-bottom: 14px; }
.countdown-cta { flex-shrink: 0; }

/* ===================================
   KONTAKT
   =================================== */
.contact {
  background: var(--dark);
  color: var(--tx-inv);
  padding: 80px 0 72px;
}

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

/* Info column */
.contact__info { display: flex; flex-direction: column; }
.contact__info h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  color: var(--tx-inv); line-height: 1.1;
  letter-spacing: -.02em;
  margin: 8px 0 28px;
}
.contact__info h2 em { color: var(--wood-lt); font-style: italic; }

.contact__details { display: flex; flex-direction: column; gap: 18px; }
.contact__detail-row { display: flex; align-items: flex-start; gap: 14px; }

.contact__icon-circle {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(245,240,232,.07);
  border: 1px solid rgba(245,240,232,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--wood-lt);
}
.contact__icon-circle--wa {
  background: rgba(37,211,102,.1);
  border-color: rgba(37,211,102,.2);
  color: #52d97e;
}

.contact__detail-text { display: flex; flex-direction: column; gap: 3px; padding-top: 2px; }
.contact__detail-label {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,240,232,.3);
}
.contact__detail-val {
  font-size: .95rem; color: rgba(245,240,232,.78); line-height: 1.55;
}
.contact__detail-link { transition: color var(--t); }
.contact__detail-link:hover { color: var(--tx-inv); }

/* Form column */
.contact__form-wrap { }
.contact__form-wrap .eyebrow { display: block; margin-bottom: 16px; }
.contact__form { display: flex; flex-direction: column; gap: 12px; }

.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cform-field { display: flex; flex-direction: column; gap: 4px; }
.cform-field input,
.cform-field textarea {
  width: 100%;
  background: rgba(245,240,232,.07);
  border: 1px solid rgba(245,240,232,.12);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: 'Lato', sans-serif; font-size: .93rem;
  color: var(--tx-inv); outline: none; resize: none;
  transition: border-color var(--t), background var(--t);
  -webkit-appearance: none;
}
.cform-field input::placeholder,
.cform-field textarea::placeholder { color: rgba(245,240,232,.3); }
.cform-field input:focus,
.cform-field textarea:focus {
  border-color: var(--wood-lt);
  background: rgba(245,240,232,.1);
}
.cform-field input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 100px #1E1208 inset;
  -webkit-text-fill-color: var(--tx-inv);
}

.form-error { font-size: .74rem; color: #E09090; min-height: 14px; }
.cform-field.error input,
.cform-field.error textarea { border-color: #E07070; }

.contact__submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--wood); color: #fff;
  font-family: 'Lato', sans-serif; font-size: .92rem; font-weight: 700;
  padding: 15px 24px; border-radius: var(--r-sm); border: none; cursor: pointer;
  margin-top: 4px;
  transition: background var(--t), transform var(--t);
}
.contact__submit:hover { background: var(--wood-lt); transform: translateY(-1px); }

.form-success {
  display: none; align-items: center; gap: 10px;
  color: #7dd88a; font-size: .86rem; margin-top: 4px;
}
.form-success.visible { display: flex; }
.form-success svg { color: #7dd88a; flex-shrink: 0; }

.contact__trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(245,240,232,.07);
  margin-top: 4px;
}
.trust-item { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 120px; }
.trust-item__icon {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(191,139,82,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--wood-lt);
}
.trust-item__text { display: flex; flex-direction: column; gap: 1px; }
.trust-item__text span { font-size: .78rem; font-weight: 700; color: rgba(245,240,232,.75); }
.trust-item__text small { font-size: .68rem; color: rgba(245,240,232,.35); }

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--bg-warm);
  color: var(--tx);
  border-top: 1px solid var(--bd);
}

.footer__cols {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 52px 0 48px;
  align-items: start;
}

.footer__brand-col { display: flex; flex-direction: column; gap: 12px; }

.footer__brand-link {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; width: fit-content;
  transition: opacity var(--t);
}
.footer__brand-link:hover { opacity: .8; }
.footer__brand-link .logo-badge {
  width: 44px; height: 44px;
  border-color: rgba(191,139,82,.3);
}
.footer__brand-link .logo-text-wrap .logo-main { font-size: 1rem; }
.footer__brand-link .logo-text-wrap .logo-sub { font-size: .6rem; }

.footer__brand-desc {
  font-size: .84rem; color: var(--tx-mid); line-height: 1.65;
  margin-top: 4px;
}
.footer__tagline {
  font-size: .78rem; font-weight: 700;
  color: var(--wood); letter-spacing: .04em;
}

.footer__socials { display: flex; gap: 8px; margin-top: 4px; }
.footer__social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(19,13,4,.06);
  border: 1px solid var(--bd);
  display: flex; align-items: center; justify-content: center;
  color: var(--tx-mid);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.footer__social-btn:hover {
  background: var(--wood);
  color: #fff;
  border-color: var(--wood);
}

.footer__nav-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--tx); margin-bottom: 14px;
}
.footer__nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__nav-col ul li a {
  font-size: .86rem; color: var(--tx-mid);
  transition: color var(--t);
}
.footer__nav-col ul li a:hover { color: var(--wood); }

.footer__contact-items { display: flex; flex-direction: column; gap: 11px; }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .84rem; color: var(--tx-mid); line-height: 1.5;
}
.footer__contact-item svg { flex-shrink: 0; color: var(--wood); margin-top: 2px; }
.footer__contact-item a { color: var(--tx-mid); transition: color var(--t); }
.footer__contact-item a:hover { color: var(--wood); }

.footer__bottom {
  background: var(--dark);
  padding: 18px 0;
}
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer__bottom-inner p { font-size: .72rem; color: rgba(245,240,232,.25); }
.footer__bottom-tagline {
  font-size: .72rem; color: rgba(245,240,232,.45);
  font-style: italic;
}

/* Footer on legal pages (simple dark bar) */
.footer--simple {
  background: var(--dark);
  color: var(--tx-inv);
  border-top: none;
}

.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding: 20px 0;
}
.footer__brand p { font-size: .78rem; color: rgba(245,240,232,.3); }
.footer__links { display: flex; align-items: center; gap: 10px; }
.footer__link { font-size: .78rem; color: rgba(245,240,232,.35); transition: color var(--t); }
.footer__link:hover { color: rgba(245,240,232,.7); }

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8,5,2,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__content { max-width: 90vw; max-height: 88vh; border-radius: var(--r-sm); overflow: hidden; }
.lightbox__content img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 20px; right: 20px; color: var(--white); opacity: .7;
  transition: opacity var(--t), transform var(--t);
}
.lightbox__close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white); background: rgba(255,255,255,.1); border-radius: 50%;
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.22); }

/* ===================================
   WHATSAPP FLOAT
   =================================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  background: var(--sage); color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md);
  transition: transform var(--t), box-shadow var(--t), bottom .4s var(--ease);
  animation: floatIn .5s .8s both;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: var(--sh-lg); }
@keyframes floatIn { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }

/* ===================================
   KONFIGURATOR
   =================================== */
.konfig-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(8,5,2,.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .28s ease;
  padding: 16px; backdrop-filter: blur(4px);
}
.konfig-overlay.open { opacity: 1; pointer-events: all; }
.konfig-modal {
  background: var(--bg); border-radius: var(--r-xl);
  padding: 40px 44px 36px;
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; box-shadow: var(--sh-xl);
  transform: translateY(24px); transition: transform .3s var(--ease);
  border: 1px solid var(--bd);
}
.konfig-overlay.open .konfig-modal { transform: translateY(0); }
.konfig-close {
  position: absolute; top: 18px; right: 18px; color: var(--tx-muted);
  padding: 6px; border-radius: 50%; transition: background var(--t), color var(--t);
}
.konfig-close:hover { background: var(--bg-warm); color: var(--tx); }
.konfig-modal h3 { color: var(--tx); margin-bottom: 6px; }
.konfig-sub { font-size: .86rem; color: var(--tx-muted); margin-bottom: 28px; }
.konfig-step { margin-bottom: 22px; }
.konfig-step label {
  display: block; font-size: .72rem; font-weight: 700;
  color: var(--tx); margin-bottom: 10px;
  letter-spacing: .1em; text-transform: uppercase;
}
.konfig-step label small { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--tx-muted); }
.konfig-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 8px 18px; border-radius: var(--r-pill);
  border: 1px solid var(--bd); background: var(--bg-white);
  color: var(--tx-mid); font-size: .82rem; font-weight: 700;
  cursor: pointer; transition: all var(--t);
}
.pill:hover { border-color: var(--sage); color: var(--sage-dk); }
.pill.active { background: var(--sage); color: var(--white); border-color: var(--sage); }
.konfig-step textarea {
  width: 100%; padding: 11px 14px; background: var(--bg-white);
  border: 1px solid var(--bd); border-radius: var(--r-sm);
  color: var(--tx); font-family: 'Lato', sans-serif; font-size: .88rem;
  resize: vertical; outline: none; transition: border-color var(--t);
}
.konfig-step textarea:focus { border-color: var(--sage); }
.konfig-step textarea::placeholder { color: var(--tx-muted); }

/* ===================================
   FLOAT CTA
   =================================== */
.float-cta {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 800; background: var(--bg-white);
  border-radius: var(--r-pill); box-shadow: var(--sh-lg);
  padding: 10px 12px 10px 24px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; transition: transform var(--ts), opacity var(--t);
  white-space: nowrap; border: 1px solid var(--bd);
}
.float-cta.visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.float-cta__text { font-size: .86rem; font-weight: 700; color: var(--tx); }
.float-cta__btn { padding: 9px 20px; font-size: .82rem; }
.float-cta__dismiss {
  color: var(--tx-muted); font-size: .8rem; padding: 4px 7px;
  border-radius: 50%; transition: background var(--t); line-height: 1;
}
.float-cta__dismiss:hover { background: var(--bg-warm); }

/* ===================================
   SCROLL REVEAL
   =================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-page { max-width: 760px; margin: 0 auto; padding: 60px 24px 96px; }
.legal-page h1 { margin-bottom: 12px; }
.legal-page h2 { font-size: 1.2rem; margin: 36px 0 10px; color: var(--tx-mid); }
.legal-page h3 { font-size: 1rem; margin: 24px 0 8px; }
.legal-page p, .legal-page address { font-size: .96rem; line-height: 1.85; font-style: normal; margin-bottom: 10px; }
.legal-page a { color: var(--sage); text-decoration: underline; }
.legal-page ul { margin: 8px 0 10px 20px; }
.legal-page ul li { font-size: .96rem; line-height: 1.85; list-style: disc; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 40px; font-weight: 700; font-size: .88rem; }
.back-link:hover { color: var(--sage); }

/* ===================================
   RESPONSIVE — TABLET (≤1024px)
   =================================== */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-right: 1px solid var(--bd); }
  .feature-item:nth-child(4) { border-right: none; }
  .stats__inner { grid-template-columns: 1fr 1.4fr; gap: 56px; }
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .about__inner { grid-template-columns: 1fr; }
  .about__image { min-height: 360px; }
  .about__content { padding: 60px 48px; }
  .gallery__stage { height: 400px; }
  .gallery__item { width: 260px; height: 330px; left: -130px; }
  .reviews__badge { width: 130px; height: 130px; }
  .badge-inner { width: 130px; height: 130px; }
  .contact__inner { gap: 48px; }
  .footer__cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
}

/* ===================================
   RESPONSIVE — MOBILE (≤768px)
   =================================== */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* Season banner */
  .season-banner { font-size: .74rem; padding: 8px 44px 8px 14px; }

  /* Navbar */
  .navbar__nav {
    display: none; position: absolute; top: 66px; left: 0; right: 0;
    background: rgba(250,250,248,.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bd);
    padding: 12px 18px 20px; box-shadow: var(--sh-md); z-index: 999;
  }
  .navbar__nav.open { display: block; }
  .navbar__nav ul { flex-direction: column; gap: 0; }
  .nav-link { display: block; padding: 13px 16px; font-size: .96rem; border-radius: var(--r-sm); }
  .navbar__phone { display: none; }
  .navbar__burger { display: flex; }

  /* Hero */
  .hero { height: 100svh; min-height: 560px; max-height: 820px; }
  .hero__text { max-width: 100%; }
  .hero__text h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero__text p { font-size: .94rem; margin-bottom: 28px; max-width: 100%; }
  .hero__buttons { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero__buttons .btn { width: 100%; text-align: center; justify-content: center; }
  .hero__scroll { display: none; }
  .hero__eyebrow { font-size: .64rem; padding: 5px 12px; margin-bottom: 20px; }

  /* Features strip */
  .features { padding: 0; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item { padding: 14px 12px; }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-right: 1px solid var(--bd); }
  .feature-item strong { font-size: .78rem; }
  .feature-item span { font-size: .68rem; }

  /* Stats */
  .stats { padding: 56px 0 48px; }
  .stats__inner { grid-template-columns: 1fr; gap: 36px; }
  .stats__lead h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .stats__lead-text { max-width: 100%; font-size: .84rem; }
  .stats__lead-line { margin-top: 20px; }
  .stat-item { padding: 24px 28px 24px 0; }
  .stat-item:nth-child(even) { padding-left: 28px; }
  .stat-number { font-size: 2.6rem; }
  .stat-suffix { font-size: 1.6rem; }

  /* Products */
  .products { padding: 64px 0; }
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card__body { padding: 16px 14px 14px; }

  /* About */
  .about { padding: 0; }
  .about__inner { grid-template-columns: 1fr; }
  .about__image { min-height: 260px; }
  .about__content { padding: 44px 22px; }
  .about__values { grid-template-columns: 1fr; gap: 12px; }

  /* Gallery 3D carousel */
  .gallery { padding: 56px 0 44px; }
  .gallery__header { margin-bottom: 40px; }
  .gallery__header h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .gallery__stage { height: 360px; }
  .gallery__item { width: 220px; height: 280px; left: -110px; }
  .gallery__arrow { width: 44px; height: 44px; margin: 0 6px; }
  .gallery__dots { margin-top: 24px; }

  /* Reviews */
  .reviews { padding: 64px 0; }
  .reviews__wrapper { flex-direction: column; gap: 24px; }
  .reviews__slider-wrap { width: 100%; }
  .review-card { padding: 24px 20px; }
  .reviews__badge { align-self: center; width: 120px; height: 120px; }
  .badge-inner { width: 120px; height: 120px; }

  /* FAQ */
  .faq { padding: 64px 0; }
  .faq__question { font-size: .9rem; padding: 16px 18px; }
  .faq__answer p { padding: 0 18px 16px; font-size: .86rem; }

  /* Contact */
  .contact { padding: 56px 0 48px; }
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .contact__info h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); margin-bottom: 20px; }
  .cform-row { grid-template-columns: 1fr; }
  .contact__trust { flex-direction: column; gap: 10px; }
  .trust-item { min-width: unset; }

  /* Footer */
  .footer__cols {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0 32px;
  }
  .footer__brand-col { grid-column: span 1; }
  .footer__nav-col h4 { margin-bottom: 10px; }
  .footer__nav-col ul { gap: 8px; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 3px; }
  .footer__bottom-tagline { display: none; }

  /* Float CTA */
  .float-cta {
    bottom: 0; left: 0; right: 0;
    transform: translateY(100%);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    padding: 14px 16px 24px;
    justify-content: space-between;
    white-space: normal; gap: 10px; max-width: 100%;
  }
  .float-cta.visible { transform: translateY(0); }
  .float-cta__text { font-size: .82rem; flex: 1; }
  .float-cta__btn { font-size: .78rem; padding: 8px 14px; flex-shrink: 0; }

  .whatsapp-float { bottom: 18px; right: 16px; width: 50px; height: 50px; }
  body.float-cta-visible .whatsapp-float { bottom: 90px; }

  .konfig-modal { padding: 28px 20px 24px; border-radius: var(--r-xl) var(--r-xl) 0 0; }

  /* Countdown */
  .countdown-inner { gap: 16px; }
  .countdown-unit { min-width: 48px; padding: 8px 10px; }
  .countdown-unit span { font-size: 1.4rem; }
  .countdown-label { font-size: .78rem; }
}

/* ===================================
   RESPONSIVE — KLEIN (≤480px)
   =================================== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero__text h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); }

  .products__grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .gallery__stage { height: 320px; }
  .gallery__item { width: 190px; height: 240px; left: -95px; }
  .gallery__arrow { width: 38px; height: 38px; margin: 0 4px; }

  .review-card { padding: 20px 18px; }

  .stat-number { font-size: 2.2rem; }
  .stat-suffix { font-size: 1.4rem; }

  .footer__cols { gap: 20px; }
}
