:root {
  --forest: #153f35;
  --forest-deep: #0b2c25;
  --forest-soft: #2d6658;
  --sage: #a9c7b0;
  --sage-pale: #dce9dd;
  --cream: #f4f0e7;
  --cream-light: #fbf9f4;
  --paper: #fffefd;
  --ink: #18302a;
  --muted: #61716c;
  --warm: #da8a58;
  --gold: #e5b24d;
  --line: rgba(21, 63, 53, 0.14);
  --shadow: 0 24px 70px rgba(9, 43, 35, 0.14);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-light);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

img {
  display: block;
}

section[id] {
  scroll-margin-top: 96px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--forest-deep);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  background: rgba(251, 249, 244, 0.94);
  border-bottom: 1px solid rgba(21, 63, 53, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  min-width: 205px;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 80px;
  height: 46px;
  object-fit: contain;
  background: white;
  border: 1px solid rgba(21, 63, 53, 0.09);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--forest-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
  color: #314b44;
  font-size: 13px;
  font-weight: 650;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--warm);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.15;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.menu-toggle:focus-visible,
.floating-whatsapp:focus-visible,
.mobile-whatsapp:focus-visible {
  outline: 3px solid rgba(218, 138, 88, 0.65);
  outline-offset: 3px;
}

.button-header {
  min-height: 42px;
  padding-inline: 16px;
  color: white;
  background: var(--forest);
  font-size: 12px;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--forest);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 146px 0 80px;
  background:
    radial-gradient(circle at 0 80%, rgba(169, 199, 176, 0.24), transparent 30%),
    var(--cream-light);
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 82px;
  right: 0;
  width: 33%;
  height: calc(100% - 82px);
  background: var(--sage-pale);
  content: "";
}

.hero-mark {
  position: absolute;
  z-index: 0;
  bottom: -70px;
  left: 0;
  color: rgba(21, 63, 53, 0.035);
  font-family: var(--display);
  font-size: clamp(220px, 31vw, 510px);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.8;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 70px;
}

.hero-content {
  padding-block: 34px;
}

.eyebrow {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 11px;
  color: var(--forest-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  background: var(--warm);
}

.eyebrow-light {
  color: var(--sage);
}

h1,
h2 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 660px;
  font-size: clamp(54px, 5.9vw, 83px);
}

h2 {
  font-size: clamp(43px, 4.4vw, 64px);
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.button-primary {
  color: white;
  background: var(--forest);
  box-shadow: 0 14px 30px rgba(21, 63, 53, 0.18);
}

.button-primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 18px 34px rgba(21, 63, 53, 0.25);
}

.button-ghost {
  border-color: rgba(21, 63, 53, 0.3);
  color: var(--forest);
  background: transparent;
}

.button-ghost:hover {
  border-color: var(--forest);
  background: white;
}

.hero-trust {
  display: flex;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-trust > div {
  display: flex;
  min-width: 112px;
  padding: 0 24px;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.hero-trust > div:first-child {
  padding-left: 0;
}

.hero-trust > div:last-child {
  border-right: 0;
}

.hero-trust strong {
  color: var(--forest);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.hero-trust span:not(.star) {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.star {
  color: var(--gold);
  font-size: 16px;
  vertical-align: 2px;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  height: 584px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: 54% center;
  transition: transform 0.8s ease;
}

.hero-image-wrap:hover .hero-image {
  transform: scale(1.025);
}

.open-badge {
  position: absolute;
  right: -28px;
  bottom: 34px;
  display: flex;
  min-width: 210px;
  padding: 18px 20px;
  align-items: center;
  gap: 12px;
  color: white;
  background: var(--forest);
  box-shadow: 0 18px 42px rgba(7, 38, 31, 0.24);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: #78d1a2;
  box-shadow: 0 0 0 5px rgba(120, 209, 162, 0.14);
}

.open-badge div {
  display: flex;
  flex-direction: column;
}

.open-badge strong {
  font-size: 13px;
}

.open-badge small {
  margin-top: 2px;
  color: var(--sage);
  font-size: 11px;
}

.hero-caption {
  position: absolute;
  top: 18px;
  left: -31px;
  padding: 12px 18px;
  color: var(--forest-deep);
  background: var(--cream);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: top left;
}

.highlights {
  position: relative;
  z-index: 2;
  padding: 29px 0;
  color: white;
  background: var(--forest);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.highlights-grid > div {
  display: flex;
  padding: 2px 28px;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.highlights-grid > div:first-child {
  padding-left: 0;
}

.highlights-grid > div:last-child {
  border-right: 0;
}

.highlight-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--sage);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
}

.highlight-icon .whatsapp-icon {
  width: 17px;
  height: 17px;
}

.highlights-grid p {
  display: flex;
  margin: 0;
  flex-direction: column;
  line-height: 1.25;
}

.highlights-grid strong {
  font-size: 13px;
}

.highlights-grid small {
  margin-top: 4px;
  color: var(--sage);
  font-size: 10px;
}

.section {
  padding: 120px 0;
}

.care-section {
  background: var(--paper);
}

.care-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  gap: 100px;
}

.care-photo {
  position: relative;
  min-height: 625px;
}

.care-photo::before {
  position: absolute;
  inset: -22px auto auto -22px;
  width: 68%;
  height: 60%;
  border: 1px solid var(--sage);
  content: "";
}

.care-photo-main {
  position: relative;
  height: 585px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.care-note {
  position: absolute;
  right: -44px;
  bottom: 0;
  display: flex;
  padding: 24px 28px;
  align-items: center;
  gap: 18px;
  background: var(--cream);
  box-shadow: 0 16px 38px rgba(19, 62, 51, 0.11);
}

.care-note span {
  color: var(--forest);
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
}

.care-note p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.care-content h2 {
  max-width: 610px;
}

.section-lead {
  max-width: 620px;
  margin: 28px 0 38px;
  color: var(--muted);
  font-size: 17px;
}

.care-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 36px;
  border-top: 1px solid var(--line);
}

.care-list > div {
  display: flex;
  min-height: 110px;
  padding: 22px 20px 20px 0;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.care-list > div:nth-child(odd) {
  margin-right: 20px;
  border-right: 1px solid var(--line);
}

.care-list > div > span {
  color: var(--warm);
  font-family: var(--display);
  font-size: 15px;
}

.care-list p {
  display: flex;
  margin: 0;
  flex-direction: column;
  line-height: 1.35;
}

.care-list strong {
  color: var(--forest-deep);
  font-size: 14px;
}

.care-list small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  padding-bottom: 7px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.about-section {
  overflow: hidden;
  color: white;
  background: var(--forest-deep);
}

.section-heading {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 70px;
}

.section-heading p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
}

.about-heading h2 {
  max-width: 720px;
  color: white;
}

.about-heading p {
  color: #b7cbc4;
}

.about-collage {
  display: grid;
  height: 590px;
  grid-template-columns: 0.8fr 1.2fr 0.65fr;
  grid-template-rows: 1fr 0.64fr;
  gap: 16px;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  transition: transform 0.65s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-entry {
  grid-row: 1 / 3;
}

.about-reception {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.about-pet {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.about-detail {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--forest-deep);
  background: var(--sage);
}

.about-detail span {
  color: var(--warm);
  font-size: 24px;
}

.about-detail p {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.15;
}

.reputation-section {
  background: var(--paper);
}

.reputation-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 100px;
}

.rating-score {
  position: relative;
  display: flex;
  min-height: 370px;
  padding: 54px;
  align-items: center;
  gap: 34px;
  border: 1px solid var(--line);
  background: var(--cream-light);
}

.rating-score::before,
.rating-score::after {
  position: absolute;
  content: "";
}

.rating-score::before {
  top: -14px;
  right: -14px;
  width: 108px;
  height: 108px;
  border-top: 1px solid var(--warm);
  border-right: 1px solid var(--warm);
}

.rating-score::after {
  right: 28px;
  bottom: 25px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--sage);
  border-radius: 50%;
}

.rating-number {
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(100px, 12vw, 166px);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.rating-score > div {
  display: flex;
  position: relative;
  z-index: 1;
  min-width: 165px;
  flex-direction: column;
}

.rating-stars {
  margin-bottom: 11px;
  color: var(--gold);
  font-size: 19px;
  letter-spacing: 0.13em;
}

.rating-score strong {
  color: var(--forest-deep);
  font-size: 15px;
}

.rating-score small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.reputation-copy h2 {
  font-size: clamp(43px, 4.2vw, 61px);
}

.reputation-copy p {
  margin: 25px 0 30px;
  color: var(--muted);
}

.button-dark {
  color: white;
  background: var(--forest-deep);
}

.button-dark:hover {
  background: var(--forest);
}

.location-section {
  padding-top: 30px;
  background: var(--paper);
}

.location-card {
  display: grid;
  min-height: 560px;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.location-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.location-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(21, 63, 53, 0.24));
  content: "";
}

.location-image img {
  object-position: center;
}

.location-pin {
  position: absolute;
  z-index: 2;
  top: 47%;
  left: 48%;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 5px solid white;
  border-radius: 50%;
  color: var(--warm);
  background: var(--warm);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.22), 0 8px 25px rgba(0, 0, 0, 0.22);
  font-size: 0;
}

.location-content {
  display: flex;
  padding: 70px;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.location-content h2 {
  color: white;
  font-size: clamp(44px, 4vw, 58px);
}

.location-content address {
  display: flex;
  margin: 28px 0 32px;
  padding-left: 22px;
  flex-direction: column;
  border-left: 2px solid var(--warm);
  color: #c5d6d0;
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.location-content address strong {
  margin-bottom: 7px;
  color: white;
  font-size: 15px;
}

.button-light {
  align-self: flex-start;
  color: var(--forest-deep);
  background: var(--cream);
}

.button-light:hover {
  background: white;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: white;
  background: var(--forest-deep);
}

.final-cta::after {
  position: absolute;
  top: 50%;
  right: -90px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(169, 199, 176, 0.2);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  box-shadow: 0 0 0 55px rgba(169, 199, 176, 0.035), 0 0 0 110px rgba(169, 199, 176, 0.025);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  color: white;
}

.final-cta p {
  max-width: 590px;
  margin: 24px 0 0;
  color: #b8cbc5;
}

.button-accent {
  min-width: 220px;
  color: var(--forest-deep);
  background: var(--warm);
}

.button-accent:hover {
  background: #ed9d69;
}

.site-footer {
  padding: 70px 0 22px;
  color: #bac9c4;
  background: #071f1a;
}

.footer-main {
  display: grid;
  padding-bottom: 54px;
  grid-template-columns: 1.5fr 1fr 0.72fr 0.85fr;
  gap: 58px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand > strong {
  color: white;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
}

.footer-brand > span {
  color: var(--sage);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-main h3 {
  margin: 0 0 15px;
  color: white;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-main p {
  margin: 12px 0;
  font-size: 12px;
  line-height: 1.8;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 20px;
}

.footer-main a {
  display: inline-block;
  border-bottom: 1px solid rgba(218, 138, 88, 0.5);
  color: var(--warm);
  font-size: 12px;
  font-weight: 700;
}

.footer-main a:hover {
  color: #f0aa7c;
}

.footer-bottom {
  display: flex;
  padding-top: 20px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #6f8680;
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  padding: 0 19px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  color: white;
  background: #1fa855;
  box-shadow: 0 14px 32px rgba(11, 44, 37, 0.26);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease;
}

.floating-whatsapp:hover {
  background: #178f47;
  transform: translateY(-3px);
}

.mobile-whatsapp {
  display: none;
}

@media (max-width: 1120px) {
  .container {
    width: min(100% - 40px, 1040px);
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .button-header span {
    display: none;
  }

  .button-header {
    width: 42px;
    padding: 0;
  }

  .hero-grid {
    gap: 45px;
  }

  .hero-image-wrap {
    height: 530px;
  }

  .care-grid {
    gap: 70px;
  }

  .rating-score {
    padding: 38px;
    gap: 25px;
  }

  .location-content {
    padding: 55px;
  }
}

@media (max-width: 920px) {
  section[id] {
    scroll-margin-top: 78px;
  }

  .site-header {
    height: 72px;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 70px;
    height: 40px;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    padding: 16px 24px 26px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--cream-light);
    box-shadow: 0 18px 30px rgba(9, 43, 35, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: 0;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .button-header {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 70px;
  }

  .hero::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 42%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-image-wrap {
    height: min(67vw, 590px);
  }

  .open-badge {
    right: 18px;
  }

  .hero-caption {
    left: -5px;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }

  .highlights-grid > div:nth-child(2) {
    border-right: 0;
  }

  .highlights-grid > div:nth-child(3) {
    padding-left: 0;
  }

  .care-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
  }

  .care-photo {
    min-height: 535px;
  }

  .care-photo-main {
    height: 515px;
  }

  .care-note {
    right: -25px;
  }

  .care-list {
    grid-template-columns: 1fr;
  }

  .care-list > div:nth-child(odd) {
    margin-right: 0;
    border-right: 0;
  }

  .about-collage {
    height: 520px;
  }

  .reputation-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rating-score {
    min-height: 310px;
  }

  .location-content {
    padding: 45px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 38px;
  }

  .footer-main > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 66px;
  }

  .container {
    width: min(100% - 32px, 620px);
  }

  .brand-copy {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(46px, 13.2vw, 66px);
  }

  h2,
  .reputation-copy h2,
  .location-content h2 {
    font-size: clamp(39px, 11vw, 53px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-trust {
    margin-top: 38px;
  }

  .hero-trust > div {
    min-width: 0;
    padding: 0 15px;
    flex: 1;
  }

  .hero-trust strong {
    font-size: 22px;
  }

  .hero-trust span:not(.star) {
    font-size: 9px;
  }

  .hero-image-wrap {
    height: 69vw;
    min-height: 315px;
  }

  .hero-caption {
    display: none;
  }

  .open-badge {
    right: 10px;
    bottom: -24px;
    min-width: 190px;
    padding: 14px 16px;
  }

  .highlights {
    padding: 44px 0 24px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .highlights-grid > div {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .highlights-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 82px 0;
  }

  .care-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .care-photo {
    min-height: 500px;
  }

  .care-photo-main {
    height: 480px;
  }

  .care-photo::before {
    inset: -13px auto auto -10px;
  }

  .care-note {
    right: -6px;
    padding: 18px 20px;
  }

  .section-heading {
    margin-bottom: 38px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-collage {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 370px 270px 170px;
  }

  .about-entry {
    grid-column: 1 / 2;
    grid-row: 1;
  }

  .about-reception {
    grid-column: 2 / 3;
    grid-row: 1;
  }

  .about-pet {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .about-pet img {
    object-position: center 30%;
  }

  .about-detail {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .rating-score {
    min-height: 270px;
    padding: 30px 24px;
    gap: 18px;
  }

  .rating-number {
    font-size: clamp(86px, 27vw, 120px);
  }

  .rating-score > div {
    min-width: 0;
  }

  .rating-stars {
    font-size: 15px;
  }

  .location-section {
    padding-top: 0;
  }

  .location-card {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .location-image {
    min-height: 340px;
  }

  .location-content {
    padding: 55px 28px 62px;
  }

  .final-cta {
    padding: 82px 0;
  }

  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 34px;
  }

  .button-accent {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    background: #1a9f4e;
    box-shadow: 0 -8px 24px rgba(7, 38, 31, 0.18);
    font-size: 14px;
    font-weight: 800;
  }

}

@media (max-width: 430px) {
  .button-header {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .brand-logo {
    width: 94px;
    height: 43px;
  }

  .hero-trust > div {
    padding-inline: 10px;
  }

  .hero-trust strong {
    font-size: 20px;
  }

  .care-note p {
    font-size: 9px;
  }

  .rating-score {
    align-items: flex-start;
    flex-direction: column;
  }

  .rating-score::after {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
