/* ===== Home: Hero with Ken Burns background ===== */
.hero-home {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 4rem;
  overflow: hidden;
  margin: -120px 0 0; /* pull up under fixed header */
  padding-top: calc(120px + 2rem);
}

.hero-home__bg {
  position: absolute;
  inset: -5%;
  z-index: 0;
}
.hero-home__bg-image {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  left: -10%;
  top: -10%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  animation: hero-kenburns 28s ease-in-out infinite;
  will-change: transform;
}
@keyframes hero-kenburns {
  0%, 100% {
    transform: scale(1) translate(0, 0) rotate(0deg);
  }
  25% {
    transform: scale(1.08) translate(-2%, -1%) rotate(0.2deg);
  }
  50% {
    transform: scale(1.05) translate(1%, 1.5%) rotate(-0.1deg);
  }
  75% {
    transform: scale(1.1) translate(2%, -0.5%) rotate(0.1deg);
  }
}

.hero-home__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}

.hero-home__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero-home__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(4.6rem, 10.5vw, 8rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease-out, transform 0.85s ease-out;
}
.hero-home__title--visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-home__accent {
  color: #f4c430;
  display: block;
  font-size: 0.85em;
  margin-top: 0.15em;
}

.hero-home__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 2rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero-home__lead--visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-home__cta-wrap {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.hero-home__cta-wrap--visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-home__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  background: #f4c430;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hero-home__cta:hover {
  background: #e6b82a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.hero-home__phone {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.hero-home__phone--visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-home__phone:hover {
  color: #f4c430;
}

/* ===== About section ===== */
.about-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(160deg, #f8f7f5 0%, #eeece9 100%);
  scroll-margin-top: 120px;
}
.about-section__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.about-section__top {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.about-section__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c41e3a;
  margin-bottom: 0.5rem;
}
.about-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 2.85rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
}
.about-section__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 3.5rem;
  height: 4px;
  background: #c41e3a;
  border-radius: 2px;
}
.about-section__lead {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #2a2a2a;
  margin: 0 0 1rem;
  font-weight: 600;
}
.about-section__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
.about-section__visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
  max-height: 280px;
}
.about-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-section__visual:hover .about-section__img {
  transform: scale(1.03);
}
.about-section__features {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.about-section__feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-section__feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.about-section__feature::before {
  display: none;
}
.about-section__feature-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
  transition: transform 0.25s ease;
}
.about-section__feature:hover .about-section__feature-icon {
  transform: scale(1.08);
}
.about-section__feature--1 .about-section__feature-icon { background: linear-gradient(135deg, #2d5a4a 0%, #1e3d32 100%); }
.about-section__feature--2 .about-section__feature-icon { background: linear-gradient(135deg, #c41e3a 0%, #8a1528 100%); }
.about-section__feature--3 .about-section__feature-icon { background: linear-gradient(135deg, #2d5a4a 0%, #1e3d32 100%); }
.about-section__feature--4 .about-section__feature-icon { background: linear-gradient(135deg, #1e5a9e 0%, #143a6b 100%); }
.about-section__feature-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}
.about-section__bottom {
  text-align: center;
  padding-top: 0.5rem;
}
.about-section__outro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin: 0 auto 1.5rem;
  max-width: 32em;
}
.about-section__cta {
  display: inline-block;
  padding: 0.9rem 1.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #c41e3a;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
}
.about-section__cta:hover {
  background: #a01830;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
}

@media (max-width: 900px) {
  .about-section__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-section__visual {
    max-height: 240px;
    order: -1;
  }
  .about-section__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 3.5rem 1rem;
  }
  .about-section__features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  .about-section__feature {
    padding: 1.25rem 1rem;
  }
  .about-section__visual {
    max-height: 200px;
  }
}

/* ===== Services fan section ===== */
.services-fan {
  padding: 5rem 1.5rem;
  background: #fff;
  scroll-margin-top: 100px;
}
.services-fan__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.services-fan__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.5rem;
}
.services-fan__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  position: relative;
  display: inline-block;
}
.services-fan__title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.35rem;
  width: 3rem;
  height: 4px;
  background: #c41e3a;
  border-radius: 2px;
}
.services-fan__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #555;
  margin: 0 auto 3rem;
  max-width: 36em;
}
.services-fan__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  perspective: 1200px;
}
.services-fan__card {
  flex: 0 1 220px;
  transform-origin: center bottom;
  transition: transform 0.35s ease-out;
}
.services-fan__card--1 { transform: rotate(-5deg); }
.services-fan__card--2 { transform: rotate(-2deg); }
.services-fan__card--3 { transform: rotate(2deg); }
.services-fan__card--4 { transform: rotate(5deg); }
.services-fan__card:hover {
  z-index: 2;
}
.services-fan__card--1:hover { transform: rotate(-3deg) translateY(-8px) scale(1.02); }
.services-fan__card--2:hover { transform: rotate(0deg) translateY(-8px) scale(1.02); }
.services-fan__card--3:hover { transform: rotate(0deg) translateY(-8px) scale(1.02); }
.services-fan__card--4:hover { transform: rotate(3deg) translateY(-8px) scale(1.02); }
.services-fan__link {
  display: block;
  background: #f8f8f8;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
}
.services-fan__link:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.services-fan__img-wrap {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8e8e8;
}
.services-fan__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.services-fan__link:hover .services-fan__img {
  transform: scale(1.06);
}
.services-fan__name {
  display: block;
  padding: 1rem 1rem 0.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}
.services-fan__desc {
  display: block;
  padding: 0 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
}
@media (max-width: 768px) {
  .services-fan__list {
    gap: 1.25rem;
  }
  .services-fan__card {
    flex: 0 1 160px;
  }
  .services-fan__card--1,
  .services-fan__card--2,
  .services-fan__card--3,
  .services-fan__card--4 {
    transform: none;
  }
  .services-fan__card--1:hover,
  .services-fan__card--2:hover,
  .services-fan__card--3:hover,
  .services-fan__card--4:hover {
    transform: translateY(-6px);
  }
}
@media (max-width: 540px) {
  .services-fan__list {
    flex-direction: column;
    align-items: center;
    max-width: 280px;
    margin: 0 auto;
  }
  .services-fan__card {
    flex: 0 1 auto;
    width: 100%;
  }
}

/* ===== Work / Gallery section ===== */
.work-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #f2f2f2 0%, #eaeaea 100%);
  scroll-margin-top: 100px;
}
.work-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.work-section__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.5rem;
}
.work-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  position: relative;
  display: inline-block;
}
.work-section__title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.35rem;
  width: 3rem;
  height: 4px;
  background: #c41e3a;
  border-radius: 2px;
}
.work-section__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #555;
  margin: 0 auto 2.5rem;
  max-width: 36em;
}
.work-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.work-section__item {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-decoration: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow 0.3s;
}
.work-section__item--visible {
  opacity: 1;
  transform: translateY(0);
}
.work-section__item:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.work-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}
.work-section__item:hover .work-section__img {
  transform: scale(1.05);
}
.work-section__cta {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #c41e3a;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.work-section__cta:hover {
  background: #a01830;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .work-section {
    padding: 3.5rem 1rem;
  }
  .work-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .work-section__item {
    aspect-ratio: 1;
  }
}

@media (max-width: 480px) {
  .work-section__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .work-section__grid::-webkit-scrollbar {
    display: none;
  }
  .work-section__item {
    flex: 0 0 75%;
    max-width: 75%;
    aspect-ratio: 4/3;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* ===== FAQ section ===== */
.faq-section {
  padding: 5rem 1.5rem;
  background: #fff;
  scroll-margin-top: 100px;
}
.faq-section__inner {
  max-width: 640px;
  margin: 0 auto;
}
.faq-section__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.5rem;
}
.faq-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  position: relative;
  display: inline-block;
}
.faq-section__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 3rem;
  height: 4px;
  background: #c41e3a;
  border-radius: 2px;
}
.faq-section__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #555;
  margin: 0 0 2rem;
}
.faq-section__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq-section__item {
  border-bottom: 1px solid #e8e8e8;
}
.faq-section__item:first-child {
  border-top: 1px solid #e8e8e8;
}
.faq-section__question {
  margin: 0;
}
.faq-section__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.15rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-section__trigger:hover {
  color: #c41e3a;
}
.faq-section__trigger::after {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-left: 0.75rem;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
  transition: transform 0.35s ease-out;
}
.faq-section__item--open .faq-section__trigger::after {
  transform: rotate(-135deg);
}
.faq-section__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  margin: 0;
  transition: grid-template-rows 0.35s ease-out;
}
.faq-section__item--open .faq-section__answer-wrap {
  grid-template-rows: 1fr;
}
.faq-section__answer {
  overflow: hidden;
}
.faq-section__answer p {
  margin: 0 0 1.15rem;
  padding: 0 0 1.15rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #555;
}
.faq-section__answer p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 640px) {
  .faq-section {
    padding: 3.5rem 1rem;
  }
  .faq-section__trigger {
    font-size: 1rem;
    padding: 1rem 0;
  }
}

/* ===== CTA section ===== */
.cta-section {
  padding: 0;
  background: #1a1a1a;
  scroll-margin-top: 100px;
  overflow: hidden;
}
.cta-section__wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 420px;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-section__image {
  position: relative;
  min-height: 320px;
}
.cta-section__image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.cta-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.cta-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem 3rem 2.5rem;
  margin-left: -8%;
  background: #1a1a1a;
  position: relative;
  z-index: 1;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 0);
  border-left: 4px solid #c41e3a;
}
.cta-section__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c41e3a;
  margin-bottom: 0.5rem;
}
.cta-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.25;
}
.cta-section__text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 1.75rem;
  max-width: 28em;
}
.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cta-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.cta-section__btn--primary {
  color: #fff;
  background: #c41e3a;
}
.cta-section__btn--primary:hover {
  background: #a01830;
  transform: translateY(-2px);
}
.cta-section__btn--phone {
  color: #1a1a1a;
  background: #fff;
}
.cta-section__btn--phone:hover {
  background: #f4c430;
  color: #1a1a1a;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .cta-section__wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cta-section__image {
    min-height: 280px;
    order: 1;
  }
  .cta-section__image::after {
    width: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.6) 100%);
  }
  .cta-section__content {
    margin-left: 0;
    padding: 2.5rem 1.5rem;
    clip-path: none;
    order: 2;
    border-left: none;
    border-top: 4px solid #c41e3a;
  }
}

@media (max-width: 480px) {
  .cta-section__image {
    min-height: 220px;
  }
  .cta-section__content {
    padding: 2rem 1.25rem;
  }
  .cta-section__actions {
    flex-direction: column;
  }
  .cta-section__btn {
    justify-content: center;
  }
}

/* ===== Reviews / Testimonials section ===== */
.reviews-section {
  padding: 5.5rem 1.5rem;
  background: linear-gradient(165deg, #f5f3f0 0%, #ebe8e4 50%, #faf9f7 100%);
  scroll-margin-top: 100px;
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 45%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(196, 30, 58, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.reviews-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.reviews-section__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c41e3a;
  margin-bottom: 0.5rem;
}
.reviews-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  position: relative;
  display: inline-block;
}
.reviews-section__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 3rem;
  height: 4px;
  background: #c41e3a;
  border-radius: 2px;
}
.reviews-section__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #555;
  margin: 0 0 2.5rem;
  max-width: 28em;
}
.reviews-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.reviews-section__card {
  background: #fff;
  padding: 1.75rem 1.75rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.reviews-section__card:nth-child(1) {
  border-left: 4px solid #c41e3a;
}
.reviews-section__card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.reviews-section__quote-mark {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(196, 30, 58, 0.12);
  font-weight: 700;
}
.reviews-section__quote {
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}
.reviews-section__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.reviews-section__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8e8e8;
}
.reviews-section__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reviews-section__name {
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
  display: block;
}
.reviews-section__meta {
  font-size: 0.85rem;
  color: #666;
  display: block;
  margin-top: 0.15rem;
}
.reviews-section__stars {
  margin-top: 0.75rem;
  color: #f4c430;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .reviews-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 3.5rem 1rem;
  }
  .reviews-section__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .reviews-section__card {
    padding: 1.75rem 1.5rem;
  }
  .reviews-section__quote-mark {
    font-size: 3rem;
    top: 0.9rem;
    left: 1rem;
  }
}

@media (max-width: 480px) {
  .reviews-section__grid {
    gap: 1rem;
  }
  .reviews-section__card {
    padding: 1.5rem 1.25rem;
  }
  .reviews-section__avatar {
    width: 48px;
    height: 48px;
  }
}

/* ===== Stats section ===== */
.stats-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
  color: #fff;
  scroll-margin-top: 100px;
}
.stats-section__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.stats-section__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c41e3a;
  margin-bottom: 0.5rem;
}
.stats-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.stats-section__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin: 0 0 2.5rem;
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
}
.stats-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stats-section__item {
  padding: 1.75rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, transform 0.3s;
}
.stats-section__item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.stats-section__number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  color: #f4c430;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.stats-section__label-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
  .stats-section {
    padding: 3.5rem 1rem;
  }
  .stats-section__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stats-section__item {
    padding: 1.5rem 0.75rem;
  }
}

@media (max-width: 420px) {
  .stats-section__list {
    grid-template-columns: 1fr;
  }
}

/* ===== Steps section ===== */
.steps-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #faf9f7 0%, #f0eeea 100%);
  scroll-margin-top: 100px;
}
.steps-section__inner {
  max-width: 720px;
  margin: 0 auto;
}
.steps-section__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.5rem;
}
.steps-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  position: relative;
  display: inline-block;
}
.steps-section__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 3rem;
  height: 4px;
  background: #c41e3a;
  border-radius: 2px;
}
.steps-section__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #555;
  margin: 0 0 2.5rem;
}
.steps-section__timeline {
  position: relative;
  margin-bottom: 2.5rem;
}
.steps-section__timeline::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0,0,0,0.08);
  border-radius: 1px;
}
.steps-section__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  position: relative;
  margin-bottom: 0.5rem;
}
.steps-section__step:hover {
  background: rgba(255,255,255,0.8);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.steps-section__step--active {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-left: 4px solid #c41e3a;
  margin-left: -4px;
  padding-left: calc(1.25rem + 4px);
}
.steps-section__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s;
}
.steps-section__step--active .steps-section__num {
  background: #c41e3a;
  color: #fff;
}
.steps-section__content {
  flex: 1;
  min-width: 0;
}
.steps-section__heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}
.steps-section__text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}
.steps-section__text a {
  color: #c41e3a;
  font-weight: 600;
  text-decoration: none;
}
.steps-section__text a:hover {
  text-decoration: underline;
}
.steps-section__cta-wrap {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.steps-section__cta-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1rem;
}
.steps-section__cta {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #c41e3a;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: background 0.25s, transform 0.25s;
}
.steps-section__cta:hover {
  background: #a01830;
  transform: translateY(-2px);
}
.steps-section__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  margin-left: 0.5rem;
  transition: color 0.25s;
}
.steps-section__phone:hover {
  color: #c41e3a;
}

@media (max-width: 640px) {
  .steps-section {
    padding: 3.5rem 1rem;
  }
  .steps-section__step {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1rem;
  }
  .steps-section__timeline::before {
    left: 1rem;
  }
  .steps-section__num {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.75rem;
  }
  .steps-section__cta-wrap {
    padding-top: 1.5rem;
  }
  .steps-section__phone {
    display: inline-block;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .hero-home {
    min-height: 90vh;
    padding-top: calc(120px + 1.5rem);
  }
  .hero-home__title {
    font-size: clamp(2.2rem, 7.5vw, 4rem);
  }
  .hero-home__bg-image {
    animation-duration: 22s;
  }
}
