:root {
  --dark: #33423a;
  --orange: #e18445;
  --mint: #90d0c0;
  --bg: #f1f8f3;
  --paper: #fffdf7;
  --cream: #fff7e9;
  --muted: #66736b;
  --line: #d4e4d8;
  --title: "Baloo 2", cursive;
  --body: "Nunito", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.pm-hero {
  position: relative;
  min-height: 100vh;
  padding: 22px min(6vw, 72px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(90deg, rgba(51, 66, 58, 0.92), rgba(51, 66, 58, 0.24)), url("mock-hero.jpg") center / cover;
  color: #fff;
}

.pm-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 900;
}

.brand {
  font-family: var(--title);
  font-size: 1.65rem;
  line-height: 1;
}

.pm-nav div {
  display: none;
  gap: 20px;
}

.pm-copy {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: auto 0;
  padding: 72px 0 52px;
}

.tag {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pm-copy .tag {
  color: #ffd9bf;
}

h1,
.grooming h2,
.turnos h2,
.shop h2,
.work h2,
.contact h2 {
  font-family: var(--title);
  font-size: clamp(2.75rem, 10vw, 6rem);
  line-height: 0.88;
}

.pm-copy p:not(.tag) {
  max-width: 600px;
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.main-cta,
.ghost-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 900;
}

.main-cta {
  background: #25d366;
  color: #fff;
}

.main-cta svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.ghost-cta {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.grooming,
.turnos,
.shop,
.work,
.contact {
  padding: 72px min(6vw, 72px);
}

.grooming {
  background: var(--paper);
}

.section-head,
.work-head {
  max-width: 780px;
  margin-bottom: 26px;
}

.section-head p:not(.tag),
.turnos p,
.shop p,
.contact p {
  color: var(--muted);
  font-weight: 700;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card {
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card img {
  height: 190px;
}

.service-copy {
  padding: 18px;
}

.service-copy svg {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  padding: 8px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
}

.service-copy h3,
.shop-grid h3 {
  margin-bottom: 8px;
  font-family: var(--title);
  font-size: 1.75rem;
  line-height: 1;
}

.service-copy p,
.shop-grid p,
.size-list span {
  color: var(--muted);
  font-weight: 700;
}

.turnos {
  display: grid;
  gap: 26px;
  background: var(--cream);
}

.size-list {
  display: grid;
  gap: 12px;
}

.size-list article {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: #fff;
  border: 1px solid #eadcc7;
  border-radius: 8px;
}

.size-list b {
  color: var(--orange);
  font-size: 1.08rem;
}

.shop {
  display: grid;
  gap: 28px;
  background: var(--bg);
}

.shop-grid {
  display: grid;
  gap: 12px;
}

.shop-grid article {
  padding: 14px;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.shop-thumb {
  position: relative;
  width: 92px;
  height: 92px;
}

.shop-thumb img {
  width: 92px;
  height: 92px;
  border-radius: 8px;
}

.shop-thumb svg {
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--dark);
  box-shadow: 0 8px 18px rgba(51, 66, 58, 0.18);
}

.work {
  background: #fff;
}

.pets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.pets img {
  aspect-ratio: 1;
  border-radius: 8px;
}

.contact {
  display: grid;
  gap: 22px;
  background: var(--dark);
  color: #fff;
}

.contact .tag {
  color: #ffd9bf;
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.contact-links a {
  width: max-content;
  color: #ffd9bf;
  font-weight: 900;
}

.pm-hours {
  display: grid;
  gap: 10px;
}

.pm-hours p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pm-hours b {
  color: #fff;
}

.pm-hours span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-align: right;
}

.contact iframe {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  margin-top: 8px;
  border-radius: 8px;
}

.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 34px rgba(51, 66, 58, 0.28);
}

.wa svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@media (min-width: 760px) {
  .pm-nav div {
    display: flex;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .turnos,
  .shop,
  .contact {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pets {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1080px) {
  .grooming,
  .turnos,
  .shop,
  .work,
  .contact {
    padding-top: 86px;
    padding-bottom: 86px;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 1.35rem;
  }

  .hero-actions a {
    width: 100%;
  }

  .pm-hours p {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .shop-grid article {
    grid-template-columns: 82px 1fr;
  }

  .shop-thumb,
  .shop-thumb img {
    width: 82px;
    height: 82px;
  }
}
