/* ===== Variables ===== */
:root {
  --green: #007A33;
  --yellow: #FFC72C;
  --orange: #E37222;
  --brown: #332421;
  --white: #ffffff;
  --cream: #FFF8EE;
  --gray-light: #f5f5f5;
  --gray: #888;
  --font-main: 'Comfortaa', sans-serif;
  --font-hero: 'Fredoka', sans-serif;
  --hero-brown: #4a3f35;
  --hero-accent: #5f8f4e;
  --font-script: 'Pacifico', cursive;
  --shadow: 0 4px 20px rgba(51, 36, 33, 0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--brown);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

.text-center { text-align: center; }

/* ===== Typography ===== */
.script-title {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.script-title--green { color: var(--green); }
.script-title--white { color: var(--white); }
.script-title--orange { color: var(--orange); }

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-title--white { color: var(--white); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--sm { padding: 8px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: #006628; }
.btn--yellow { background: var(--yellow); color: var(--brown); }
.btn--yellow:hover { background: #e6b328; }
.btn--orange { background: var(--orange); color: var(--white); }
.btn--orange:hover { background: #c9631c; }

/* ===== Header ===== */
.header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: none;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
}

.header__logo img {
  height: 60px;
  width: auto;
}

.nav__list {
  display: flex;
  gap: 28px;
}

.nav__link {
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.nav__link:hover,
.nav__link.active { color: var(--green); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform var(--transition);
}

.social-icon:hover { transform: scale(1.1); }
.social-icon--fb { background: #3b5998; }
.social-icon--ig { background: #e1306c; }
.social-icon--wa { background: #25d366; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--cream);
  background-image: url("img/Background hero.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 74px;
}

.hero__content {
  max-width: 560px;
  color: var(--brown);
}

.hero__title {
  font-family: var(--font-hero);
  font-size: clamp(3.1rem, 8.5vw, 5.25rem);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 32px;
  letter-spacing: 0;
}

.hero__title-line {
  display: block;
  color: var(--hero-brown);
  opacity: 0;
  animation: heroFadeUp 0.65s ease forwards;
}

.hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.hero__title-line:nth-child(2) { animation-delay: 0.25s; }
.hero__title-line:nth-child(3) { animation-delay: 0.4s; }

.hero__title-line--accent {
  display: inline-block;
  position: relative;
  color: var(--hero-accent);
  padding-bottom: 0;
  margin-top: 2px;
  margin-bottom: 14px;
}

.hero__title-bold {
  font-family: inherit;
  font-weight: 600;
}

.hero__underline {
  position: absolute;
  left: -6px;
  right: -10px;
  top: calc(100% + 10px);
  bottom: auto;
  width: calc(100% + 16px);
  height: 16px;
  color: var(--hero-accent);
}

.hero__text {
  font-family: var(--font-main);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
  color: var(--brown);
  opacity: 0;
  animation: heroFadeUp 0.65s ease 0.55s forwards;
}

.hero__text-line {
  display: inline;
}

.hero__text-line + .hero__text-line::before {
  content: ' ';
}

.hero__content .btn {
  padding: 16px 52px;
  font-size: 1.05rem;
  min-width: 240px;
  text-align: center;
  opacity: 0;
  animation: heroFadeUp 0.65s ease 0.7s forwards;
}

.hero--cel-only {
  display: none !important;
}

@media (min-width: 481px) {
  .hero--desktop-only.hero__title-line {
    display: block;
  }

  .hero--desktop-only.hero__text {
    display: block;
  }

  .hero--desktop-only.btn {
    display: inline-block;
  }
}

.wave-divider {
  position: relative;
  width: 100%;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.wave-divider--white { margin-top: -1px; }

/* ===== About ===== */
.about {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: #FFFDF5;
  font-family: 'Nunito', sans-serif;
  color: #2D2D2D;
}

.about__paw-deco {
  position: absolute;
  top: 24px;
  right: 24px;
  width: min(180px, 28vw);
  height: min(180px, 28vw);
  pointer-events: none;
  z-index: 0;
}

.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about__label {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #4CAF50;
  margin-bottom: 12px;
}

.about__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #2D2D2D;
}

.about__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
  color: #2D2D2D;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.about__btn:hover {
  transform: scale(1.05);
}

.about__btn--primary {
  background: #F6C84A;
  color: #2D2D2D;
}

.about__btn--primary:hover {
  background: #e6b840;
}

.about__btn--outline {
  background: transparent;
  color: #4CAF50;
  border: 2px solid #4CAF50;
}

.about__btn--outline:hover {
  background: #4CAF50;
  color: #fff;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about__stat-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.6s ease;
}

.about__stat-card.fade-up.visible:hover,
.about__stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.about__stat-number {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #4CAF50;
  margin-bottom: 8px;
  line-height: 1.1;
}

.about__stat-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  color: #555;
  line-height: 1.4;
}

/* ===== Services ===== */
.services {
  background: var(--green);
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
}

.services__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.services__deco svg {
  position: absolute;
  opacity: 0.22;
}

.services__deco-leaf {
  top: 8%;
  left: 3%;
  width: 70px;
  height: 70px;
}

.services__deco-heart--1 {
  top: 12%;
  left: 18%;
  width: 28px;
  height: 28px;
}

.services__deco-paw {
  top: 45%;
  right: 6%;
  width: 48px;
  height: 48px;
}

.services__deco-heart--2 {
  bottom: 18%;
  right: 10%;
  width: 40px;
  height: 40px;
}

.services__container {
  position: relative;
  z-index: 1;
}

.services__header {
  text-align: center;
  margin-bottom: 48px;
}

.services__eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #A8C686;
  margin-bottom: 12px;
}

.services__title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.service-card__photo {
  height: 210px;
  overflow: hidden;
}

.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__photo img {
  transform: scale(1.05);
}

.service-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -8px auto 0;
  position: relative;
  z-index: 2;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card__icon-wrap svg {
  width: 24px;
  height: 24px;
}

.service-card__icon-wrap--yellow {
  background: #F4C542;
  color: #3E2723;
}

.service-card__icon-wrap--sage {
  background: #A8C686;
  color: #fff;
}

.service-card__icon-wrap--peach {
  background: #E8A87C;
  color: #fff;
}

.service-card__icon-wrap--brown {
  background: #3E2723;
  color: #fff;
}

.service-card__body {
  padding: 48px 18px 24px;
  margin-top: -44px;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-card--consulta .service-card__body { background: #FFF8E7; }
.service-card--controles .service-card__body { background: #F0F7ED; }
.service-card--bano .service-card__body { background: #FBF0E8; }
.service-card--grooming .service-card__photo img {
  object-position: center 25%;
}

.service-card--grooming .service-card__body { background: #EFE6D3; }
.service-card--cirugia .service-card__body { background: #FFF8E7; }

.service-card__body h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #3E2723;
  margin-bottom: 8px;
}

.service-card__body p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.55;
  color: #5a5248;
}

.wave-divider--top,
.wave-divider--bottom {
  position: absolute;
  left: 0;
  right: 0;
}

.wave-divider--top { top: 0; }
.wave-divider--bottom { bottom: 0; }

/* ===== Por Qué Elegirnos (cards) ===== */
.why-choose__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card--productos .service-card__body { background: #FFF8E7; }
.why-card--horario .service-card__body { background: #EFE6D3; }
.why-card--equipo .service-card__body { background: #FBF0E8; }

/* ===== Por Qué Elegirnos ===== */
.services-highlight {
  background: var(--white);
}

.services-highlight__intro {
  max-width: 560px;
  margin: 0 auto;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

.services-highlight__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  margin-top: 48px;
}

.services-highlight__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}

.services-highlight__col--left {
  align-items: flex-end;
}

.services-highlight__col--right {
  align-items: flex-start;
}

.service-highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 280px;
}

.services-highlight__col--left .service-highlight-item {
  flex-direction: row-reverse;
}

.service-highlight-item__text h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}

.services-highlight__col--left .service-highlight-item__text {
  text-align: right;
}

.services-highlight__col--right .service-highlight-item__text {
  text-align: left;
}

.service-highlight-item__text p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #666;
}

.service-highlight-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-highlight-item__icon svg {
  width: 24px;
  height: 24px;
}

.service-highlight-item__icon--yellow {
  background: #F4C542;
  color: #3E2723;
}

.service-highlight-item__icon--sage {
  background: #A8C686;
  color: #fff;
}

.service-highlight-item__icon--peach {
  background: #E8A87C;
  color: #fff;
}

.service-highlight-item__icon--brown {
  background: #3E2723;
  color: #fff;
}

.services-highlight__center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  max-width: 540px;
  flex-shrink: 0;
}

.services-highlight__center img {
  width: 100%;
  max-height: 500px;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.services-highlight--catalog .services-highlight__col {
  gap: 22px;
}

.services-highlight--catalog .service-highlight-item {
  max-width: 300px;
}

/* ===== Guide ===== */
.guide { background: var(--cream); }

.guide__card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.guide__image {
  overflow: hidden;
  background: #f8f4ee;
}

.guide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.guide__content { padding: 40px 40px 40px 0; }

.guide__desc {
  color: #555;
  margin-bottom: 20px;
}

.guide__features {
  margin-bottom: 24px;
}

.guide__features li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--green);
  font-weight: 600;
}

.guide__pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.guide__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}

.guide__price-old {
  font-size: 1.1rem;
  color: var(--gray);
  text-decoration: line-through;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--orange);
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.wave-divider--top-orange {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-banner__content {
  color: var(--white);
}

.cta-banner__content p {
  margin-bottom: 24px;
  opacity: 0.95;
}

.cta-banner__photos {
  position: relative;
  height: 320px;
}

.polaroid {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 4px solid var(--white);
  object-fit: cover;
}

.polaroid--1 {
  width: 180px;
  height: 220px;
  top: 20px;
  left: 10%;
  transform: rotate(-8deg);
}

.polaroid--2 {
  width: 180px;
  height: 220px;
  top: 0;
  left: 40%;
  transform: rotate(5deg);
  z-index: 2;
}

.polaroid--3 {
  width: 180px;
  height: 220px;
  top: 30px;
  right: 5%;
  transform: rotate(-3deg);
}

/* ===== Gallery ===== */
.gallery { background: var(--white); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img { transform: scale(1.08); }

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ===== Testimonial ===== */
.testimonial {
  position: relative;
  background: var(--green);
  padding: 100px 0 90px;
  overflow: hidden;
}

.testimonial__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.testimonial__deco svg {
  position: absolute;
  opacity: 0.12;
}

.testimonial__deco-paw--1 {
  top: 14%;
  left: 4%;
  width: 72px;
  height: 72px;
}

.testimonial__deco-paw--2 {
  bottom: 12%;
  right: 5%;
  width: 64px;
  height: 64px;
}

.testimonial__deco-heart {
  bottom: 18%;
  left: 8%;
  width: 40px;
  height: 40px;
}

.testimonial__deco-heart--2 {
  top: 20%;
  right: 3%;
  bottom: auto;
  left: auto;
  width: 52px;
  height: 52px;
}

.testimonial__deco-scribble {
  top: 28%;
  left: 42%;
  width: 90px;
  height: 28px;
  opacity: 0.1;
}

.testimonial__container {
  position: relative;
  z-index: 1;
}

.testimonial__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.testimonial__label {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.10em;
  color: #F6C84A;
  margin-bottom: 14px;
}

.testimonial__title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.testimonial__subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.testimonial__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.testimonial__card {
  position: relative;
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 2rem;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.6s ease;
  cursor: default;
}

.testimonial__card--center {
  margin-top: -16px;
}

.testimonial__card.fade-up.visible:hover,
.testimonial__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testimonial__quote-badge {
  position: absolute;
  top: -20px;
  left: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F6C84A;
  border: 4px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.testimonial__stars {
  color: #F6C84A;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.testimonial__card blockquote {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  color: rgba(45, 45, 45, 0.85);
  line-height: 1.6;
  margin: 0 0 20px;
}

.testimonial__divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 0 0 20px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #B8E0BE;
  border: 1px solid rgba(0, 122, 51, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.testimonial__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial__author-info strong {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

/* ===== Site Footer Bar ===== */
.site-bar {
  background: #fff;
  border-top: 3px solid #0E8A43;
  padding: 22px 0;
  font-family: 'Nunito', sans-serif;
}

.site-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.site-bar__social {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.site-bar__label {
  font-size: 0.82rem;
  color: #888;
  font-weight: 500;
}

.site-bar__icons {
  display: flex;
  gap: 8px;
}

.site-bar__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0E8A43;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.site-bar__icon:hover {
  transform: scale(1.08);
  background: #0c7a3b;
}

.site-bar__logo {
  justify-self: center;
  display: block;
}

.site-bar__logo img {
  height: 58px;
  width: auto;
  display: block;
}

.site-bar__copy {
  justify-self: end;
  font-size: 0.78rem;
  color: #999;
  text-align: right;
  line-height: 1.4;
}

/* ===== Reach Out / WhatsApp ===== */
.reach-out {
  --reach-green: #0E8A43;
  --reach-cream: #F7F4EE;
  --reach-brown: #2E1F1A;
  --reach-yellow: #E8C547;
  position: relative;
  background: var(--reach-cream);
  padding: 88px 0 0;
  font-family: 'Nunito', sans-serif;
  overflow: hidden;
}

.reach-out__deco {
  position: absolute;
  pointer-events: none;
}

.reach-out__deco--paw {
  top: 48px;
  right: 4%;
  width: 140px;
  height: 140px;
}

.reach-out__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 80px;
}

.reach-out__script {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--reach-green);
  margin-bottom: 18px;
}

.reach-out__title {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 500;
  color: var(--hero-brown);
  line-height: 1.12;
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.reach-out__heart {
  width: 28px;
  height: 28px;
  color: var(--reach-green);
  flex-shrink: 0;
  margin-top: 8px;
}

.reach-out__lead {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #5e534c;
  max-width: 480px;
  margin-bottom: 32px;
}

.reach-out__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reach-out__benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--reach-brown);
}

.reach-out__benefit-icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  color: var(--reach-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reach-out__benefit-icon svg {
  width: 24px;
  height: 24px;
}

.reach-out__card {
  background: #fff;
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(46, 31, 26, 0.07);
  text-align: center;
  border: 1px solid rgba(46, 31, 26, 0.04);
}

.reach-out__card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--reach-green);
}

.reach-out__card-icon svg {
  width: 100%;
  height: 100%;
}

.reach-out__card-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--reach-brown);
  margin-bottom: 10px;
}

.reach-out__card-sub {
  font-size: 0.92rem;
  color: #7a7068;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.reach-out__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  padding: 16px 28px;
  border-radius: 50px;
  background: var(--reach-green);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.reach-out__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 138, 67, 0.28);
  background: #0c7a3b;
}

.reach-out__card-label {
  margin: 32px 0 16px;
  font-size: 0.82rem;
  color: #9a9088;
}

.reach-out__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.reach-out__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border: 1.5px solid #ebe6df;
  border-radius: 18px;
  background: #faf9f7;
  color: var(--reach-brown);
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.reach-out__option:hover,
.reach-out__option.is-active {
  border-color: rgba(14, 138, 67, 0.35);
  background: rgba(14, 138, 67, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 31, 26, 0.06);
}

.reach-out__option-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  border: none;
  color: var(--reach-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reach-out__option-icon svg {
  width: 26px;
  height: 26px;
}

.reach-out__card-note {
  margin-top: 22px;
  font-size: 0.76rem;
  color: #a39a92;
  line-height: 1.55;
}

.reach-out__band {
  position: relative;
  background-color: #F7F4EE;
  background-image: url("img/footer background.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  padding: 0 0 72px;
  min-height: 400px;
}

.reach-out__wave {
  display: block;
  width: 100%;
  height: 48px;
  margin-bottom: -1px;
}

.reach-out__band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  justify-content: flex-start;
  padding: 56px 0 24px;
  margin-left: clamp(200px, 32vw, 420px);
  width: fit-content;
  max-width: calc(100% - clamp(160px, 28vw, 380px));
}

.reach-out__family {
  text-align: left;
  flex: 0 1 auto;
}

.reach-out__family-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 32px;
}

.reach-out__family-script {
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--reach-green);
  line-height: 1.3;
  font-weight: 400;
}

.reach-out__family-bold {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 800;
  color: var(--reach-brown);
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.reach-out__family-heart {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.reach-out__values {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px 36px;
  justify-content: flex-start;
  align-items: flex-start;
}

.reach-out__value {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.reach-out__value-text {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--reach-brown);
  line-height: 1.35;
  max-width: 110px;
}

.reach-out__value-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--reach-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reach-out__value-icon svg {
  width: 26px;
  height: 26px;
}

.reach-out__hours {
  background: #e8efe6;
  border-radius: 18px;
  padding: 22px 28px;
  box-shadow: 0 4px 20px rgba(46, 31, 26, 0.05);
  border: 1px solid rgba(14, 138, 67, 0.08);
  text-align: left;
  width: 300px;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.reach-out__hours h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--reach-brown);
  margin-bottom: 10px;
}

.reach-out__hours ul {
  list-style: none;
  margin-bottom: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reach-out__hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(46, 31, 26, 0.08);
  font-size: 0.78rem;
  color: #6a615a;
  gap: 12px;
}

.reach-out__hours li:last-child {
  border-bottom: none;
}

.reach-out__hours li strong {
  color: var(--reach-brown);
  font-weight: 700;
  text-align: right;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(51, 36, 33, 0.6);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: transform var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal.active .modal__content { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
}

.modal__icon { font-size: 3rem; margin-bottom: 12px; }

.modal__content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.modal__content > p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal__form input {
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.modal__form input:focus { border-color: var(--green); }

.modal__form .btn { width: 100%; }

.modal__note {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 12px;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 3000;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: var(--shadow);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== Animations ===== */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero__title-line,
  .hero__text,
  .hero__content .btn,
  .hero__intro,
  .hero__perks {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-highlight__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-highlight__center {
    order: -1;
    max-width: 100%;
    min-height: 280px;
  }

  .services-highlight__center img {
    max-height: 400px;
    height: auto;
    margin: 0 auto;
  }

  .services-highlight__col--left,
  .services-highlight__col--right {
    align-items: center;
  }

  .services-highlight__col--left .service-highlight-item {
    flex-direction: row;
  }

  .services-highlight__col--left .service-highlight-item__text,
  .services-highlight__col--right .service-highlight-item__text {
    text-align: left;
  }

  .reach-out__hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 64px;
  }

  .reach-out__lead {
    max-width: none;
  }

  .reach-out__band-inner {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    padding-top: 48px;
  }

  .reach-out__hours {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1002;
  }

  .header__actions .btn {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1001;
    padding: 40px 24px;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .nav__link {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 700;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  .header .header__inner {
    padding-top: 10px;
    padding-bottom: 14px;
    padding-left: 6px;
    padding-right: 20px;
  }

  .header__logo {
    margin-top: 1px;
  }

  .header__logo img {
    height: 62px;
  }

  .hero {
    min-height: 100vh;
    height: 100vh;
    align-items: stretch;
  }

  .hero__inner {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 0;
    text-align: left;
  }

  .hero__content {
    max-width: 70%;
  }

  .hero__title {
    font-size: clamp(2.35rem, 10vw, 2.95rem);
    margin-bottom: 14px;
  }

  .hero__underline {
    height: 14px;
  }

  .hero__text {
    font-size: 0.8rem;
    line-height: 1.7;
    margin: 0 0 16px;
    max-width: 92%;
  }

  .hero__content .btn {
    width: auto;
    max-width: none;
    min-width: 190px;
    padding: 11px 36px;
    font-size: 0.84rem;
    display: inline-block;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__content {
    text-align: center;
  }

  .about__text {
    margin-left: auto;
    margin-right: auto;
  }

  .about__actions {
    justify-content: center;
  }

  .about__paw-deco {
    top: 12px;
    right: 12px;
    width: 120px;
    height: 120px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .guide__card {
    grid-template-columns: 1fr;
  }

  .guide__image {
    min-height: 340px;
  }

  .guide__content { padding: 30px; }

  .cta-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-banner__photos { height: 260px; }

  .polaroid { width: 130px !important; height: 160px !important; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }

  .testimonial__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial__card--center {
    margin-top: 0;
  }

  .reach-out {
    padding-top: 64px;
  }

  .reach-out__intro {
    text-align: center;
  }

  .reach-out__title {
    justify-content: center;
  }

  .reach-out__benefits {
    max-width: 340px;
    margin: 0 auto;
  }

  .reach-out__hero {
    gap: 36px;
    padding-bottom: 48px;
  }

  .reach-out__card {
    padding: 36px 28px;
  }

  .reach-out__band-inner {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 16px;
  }

  .reach-out__family {
    width: 100%;
    text-align: center;
  }

  .reach-out__family-title {
    align-items: center;
  }

  .reach-out__family-bold {
    justify-content: center;
  }

  .reach-out__values {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
  }

  .reach-out__value {
    width: 100%;
    max-width: 260px;
    justify-content: flex-start;
  }

  .reach-out__value-text {
    max-width: none;
    flex: 1;
  }

  .reach-out__hours {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    align-self: stretch;
  }

  .reach-out__band {
    background-position: center bottom;
    background-size: cover;
    min-height: auto;
    padding-bottom: 56px;
  }

  .site-bar__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .site-bar__social {
    justify-self: center;
    flex-direction: column;
    gap: 10px;
  }

  .site-bar__logo {
    justify-self: center;
  }

  .site-bar__copy {
    justify-self: center;
    text-align: center;
  }
}

@media (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
  .hero {
    background-image: url("img/hero background ipad.png");
    background-position: center;
    background-size: cover;
  }
}

@media (min-width: 481px) and (max-width: 1024px) and (orientation: portrait) {
  .hero {
    background-image: url("img/ipad vertical.png");
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    height: 100vh;
    align-items: stretch;
  }

  .hero--cel-only {
    display: block !important;
  }

  .hero--cel-only.hero__intro,
  .hero--cel-only.hero__btn {
    display: inline-flex !important;
  }

  .hero--cel-only.hero__perks {
    display: flex !important;
  }

  .hero--desktop-only {
    display: none !important;
  }

  .hero__inner {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
  }

  .hero__content {
    max-width: 52%;
  }

  .hero__title {
    font-size: clamp(2.15rem, 6vw, 2.85rem);
    margin-bottom: 0;
  }

  .hero__title-line:nth-child(1) {
    white-space: nowrap;
  }

  .hero__title-line--accent {
    margin-bottom: 26px;
  }

  .hero__underline {
    height: 15px;
  }

  .hero__intro {
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 14px;
    opacity: 0;
    animation: heroFadeUp 0.65s ease 0.55s forwards;
  }

  .hero__intro-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--hero-accent);
    color: var(--hero-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .hero__intro-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero__text--cel {
    margin-bottom: 0;
    max-width: none;
    font-size: clamp(0.78rem, 1.8vw, 0.92rem);
    line-height: 1.6;
  }

  .hero__text--cel strong {
    font-weight: 700;
    color: var(--brown);
  }

  .hero__perks {
    list-style: none;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
    opacity: 0;
    animation: heroFadeUp 0.65s ease 0.65s forwards;
  }

  .hero__perk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: clamp(0.78rem, 1.8vw, 0.92rem);
    line-height: 1.35;
    color: var(--brown);
  }

  .hero__perk strong {
    font-weight: 800;
  }

  .hero__perk-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(95, 143, 78, 0.14);
    color: var(--hero-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .hero__perk-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero__content .btn.hero__btn {
    min-width: 0;
    width: auto;
    display: inline-flex;
    align-self: flex-start;
    padding: 11px 22px;
    font-size: clamp(0.82rem, 1.8vw, 0.95rem);
    gap: 6px;
  }

  .hero__btn {
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: heroFadeUp 0.65s ease 0.75s forwards;
  }

  .hero__btn-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    background-image: url("img/Background hero cel.png");
    background-position: center top;
    min-height: 100vh;
    height: 100vh;
  }

  .hero--cel-only {
    display: block !important;
  }

  .hero--cel-only.hero__intro,
  .hero--cel-only.hero__btn {
    display: inline-flex !important;
  }

  .hero--cel-only.hero__perks {
    display: flex !important;
  }

  .hero--desktop-only {
    display: none !important;
  }

  .hero__intro {
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 14px;
    opacity: 0;
    animation: heroFadeUp 0.65s ease 0.55s forwards;
  }

  .hero__intro-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--hero-accent);
    color: var(--hero-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .hero__intro-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero__text--cel {
    margin-bottom: 0;
    max-width: none;
    font-size: 0.72rem;
    line-height: 1.6;
  }

  .hero__text--cel strong {
    font-weight: 700;
    color: var(--brown);
  }

  .hero__perks {
    list-style: none;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
    opacity: 0;
    animation: heroFadeUp 0.65s ease 0.65s forwards;
  }

  .hero__perk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.72rem;
    line-height: 1.35;
    color: var(--brown);
  }

  .hero__perk strong {
    font-weight: 800;
  }

  .hero__perk-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(95, 143, 78, 0.14);
    color: var(--hero-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .hero__perk-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero__content .btn.hero__btn {
    min-width: 0;
    width: auto;
    display: inline-flex;
    align-self: flex-start;
    padding: 9px 18px;
    font-size: 0.74rem;
    gap: 6px;
  }

  .hero__btn {
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: heroFadeUp 0.65s ease 0.75s forwards;
  }

  .hero__btn-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }

  .hero__inner {
    align-items: center;
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero__content {
    max-width: 52%;
  }

  .hero__title {
    font-size: clamp(2.15rem, 10vw, 2.65rem);
    margin-bottom: 0;
  }

  .hero__title-line:nth-child(1) {
    white-space: nowrap;
  }

  .hero__title-line--accent {
    margin-bottom: 26px;
  }

  .hero__underline {
    height: 15px;
  }

  .hero__text-line {
    display: block;
  }

  .hero__text-line + .hero__text-line::before {
    content: none;
  }

  .section {
    padding: 48px 0;
  }

  .container {
    padding: 0 16px;
  }

  .header .header__inner {
    padding-top: 8px;
    padding-bottom: 12px;
    padding-left: 4px;
    padding-right: 16px;
  }

  .header__logo {
    margin-top: 1px;
  }

  .header__logo img {
    height: 56px;
  }

  .about__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about__btn {
    width: 100%;
  }

  .about__stats {
    gap: 14px;
  }

  .about__stat-card {
    padding: 22px 16px;
  }

  .services__grid { grid-template-columns: 1fr; }

  .why-choose__grid { grid-template-columns: 1fr; }

  .guide__image {
    min-height: 260px;
  }

  .guide__content {
    padding: 24px 20px;
  }

  .guide__price {
    font-size: 1.65rem;
  }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }

  .reach-out {
    padding-top: 48px;
  }

  .reach-out__title {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    justify-content: center;
    text-align: center;
  }

  .reach-out__script,
  .reach-out__lead {
    text-align: center;
  }

  .reach-out__benefits {
    align-items: flex-start;
  }

  .reach-out__card {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .reach-out__card-title {
    font-size: 1.4rem;
  }

  .reach-out__options {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .reach-out__option {
    padding: 14px 10px;
    font-size: 0.76rem;
  }

  .reach-out__family-script {
    font-size: 1.1rem;
  }

  .reach-out__family-bold {
    font-size: 1.45rem;
  }

  .reach-out__value {
    max-width: 100%;
  }

  .reach-out__hours {
    padding: 20px 22px;
  }

  .reach-out__hours li {
    font-size: 0.82rem;
  }

  .reach-out__band {
    padding-bottom: 40px;
  }

  .reach-out__deco--paw {
    display: none;
  }

  .site-bar {
    padding: 18px 0;
  }

  .site-bar__logo img {
    height: 48px;
  }

  .site-bar__social {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .modal__content {
    margin: 16px;
    padding: 28px 22px;
  }
}
