:root {
  --red: #c0392b;
  --red-dark: #96281b;
  --black: #111;
  --gray: #555;
  --gray-light: #f4f4f4;
  --white: #fff;
  --radius: 14px;
}

/* ─── Section base ─── */
section { padding: 50px 22px; }
.container { max-width: 1100px; margin: 0 auto; }

/* ─── ROW 1: Heading ─── */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-top: 15px;
}
.badge {
  padding: 6px 16px;
  border: 1px solid #fff;
  border-radius: 999px;
  font-size: clamp(12px, 2vw, 14px);
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ─── ROW 2: Description ─── */
.sec-desc {
  background: var(--gray-light);
}
.desc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.desc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  border-top: 3px solid var(--red);
}
.desc-card h3 { font-size: clamp(16px, 2vw, 18px); font-weight: 700; margin-bottom: 8px; }
.desc-card p { font-size: clamp(14px, 2vw, 16px); color: var(--gray); line-height: 1.7; }

/* ─── ROW 3: Slider left + text right ─── */
.sec-slider { background: var(--white); }
.row-flex {
  display: flex;
  gap: 48px;
  align-items: center;
}
.row-flex.reverse { flex-direction: row-reverse; }
.col-text { flex: 1; }
.col-text h2 {
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.col-text h2 span { color: var(--red); }
.col-text p { font-size: clamp(16px, 2vw, 18px); color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.col-text ul { padding-left: 0; list-style: none; }
.col-text ul li {
  padding: 12px 0;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--gray);
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}
.col-text ul li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* slider */
.col-slider { flex: 1; position: relative; }
.slider-track-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: grab;
}
.slider-track-wrap:active { cursor: grabbing; }
.slider-track {
  display: flex;
  gap: 12px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.slide-img {
  flex-shrink: 0;
  width: calc(85%);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 4/3;
}
.slide-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.slider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background .25s, width .25s;
}
.dot.active { background: var(--red); width: 22px; border-radius: 4px; }

/* ─── ROW 5: Horizontal gallery ─── */
.sec-gallery { background: var(--gray-light); padding-bottom: 80px; }
.gallery-title {
  text-align: center;
  margin-bottom: 36px;
}
.gallery-title h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.01em;
}
.gallery-scroll-wrap {
  overflow: hidden;
  cursor: grab;
}
.gallery-scroll-wrap:active { cursor: grabbing; }
.gallery-scroll {
  display: flex;
  gap: 16px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.gallery-item {
  flex-shrink: 0;
  width: 320px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ccc;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* CTA strip */
.cta-strip {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 60px 24px;
}
.cta-strip h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 8px; }
.cta-strip p { font-size: 1rem; opacity: .88; margin-bottom: 28px; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .desc-grid { grid-template-columns: 1fr; }
  .row-flex, .row-flex.reverse { flex-direction: column; gap: 28px; }
  .slide-img { width: 78%; }
  .gallery-item { width: 240px; }
  section { padding: 50px 18px; }
}