@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap');

:root {
  color-scheme: light;
  --plum: #44243f;
  --plum-dark: #2b1829;
  --coral: #d96955;
  --cream: #fbf7ef;
  --sand: #efdfcb;
  --sage: #7f9c8a;
  --sage-pale: #dce8dd;
  --ink: #2c292b;
  --muted: #716a6d;
  --white: #fffefa;
  --line: #d9cec2;
  --wrap: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.proposal-bar {
  position: relative;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 42px;
  padding: 7px 24px;
  background: #171b22;
  color: #f5f6f7;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.proposal-bar a {
  justify-self: start;
  text-decoration: none;
}

.proposal-bar > span {
  color: #c8ced7;
}

.proposal-bar button {
  justify-self: end;
  padding: 4px 11px;
  border: 1px solid #515965;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.proposal-notes {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 15, 18, 0.65);
  backdrop-filter: blur(8px);
}

.proposal-notes[hidden] {
  display: none;
}

.proposal-notes > div {
  width: min(600px, 100%);
  padding: clamp(30px, 6vw, 58px);
  border-radius: 4px 44px 4px 4px;
  background: var(--cream);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.proposal-notes h2 {
  margin: 0 0 18px;
  font:
    600 clamp(2rem, 5vw, 3.5rem) / 1 'Fraunces',
    serif;
  color: var(--plum);
}

.proposal-notes button {
  margin-top: 16px;
  padding: 9px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--plum);
  color: white;
  cursor: pointer;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid rgba(68, 36, 63, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 88px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--plum);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50% 50% 50% 12px;
  background: var(--plum);
  color: var(--cream);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font:
    600 1.33rem / 1.1 'Fraunces',
    serif;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 28px);
  margin-left: auto;
}

.site-nav a,
.phone-link {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--coral);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.phone-link::before {
  content: '☎ ';
  color: var(--coral);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid var(--plum);
  border-radius: 999px;
  background: var(--plum);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding: 9px 17px;
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
}

.hero {
  padding: clamp(52px, 7vw, 96px) 0 clamp(70px, 8vw, 110px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(46px, 7vw, 94px);
}

.eyebrow {
  margin: 0 0 19px;
  color: var(--coral);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--plum);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(4rem, 7vw, 7.2rem);
  line-height: 0.88;
}

h1 em,
h2 em {
  color: var(--coral);
  font-weight: 500;
}

.hero-intro {
  max-width: 570px;
  margin: 30px 0;
  color: #554f52;
  font-size: clamp(1.05rem, 1.7vw, 1.27rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: var(--plum);
  font-weight: 700;
  text-underline-offset: 5px;
}

.text-link span {
  color: var(--coral);
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.78rem;
}

.rating-line strong {
  color: var(--ink);
}

.stars {
  color: #b35743;
  letter-spacing: 0.08em;
}

.confirm {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid #c7a27f;
  border-radius: 999px;
  color: #7c4a20;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -24px;
  width: 68%;
  height: 66%;
  border-radius: 50%;
  background: var(--sage-pale);
  content: '';
}

.image-frame {
  overflow: hidden;
  aspect-ratio: 0.89;
  border-radius: 6px 88px 6px 6px;
  background: var(--sand);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.care-note {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  width: min(260px, calc(100% - 36px));
  padding: 13px 15px;
  border: 1px solid rgba(68, 36, 63, 0.16);
  border-radius: 4px 18px 4px 4px;
  background: rgba(255, 254, 250, 0.96);
  backdrop-filter: blur(8px);
}

.care-note > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: white;
}

.care-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.care-note strong {
  color: var(--plum);
  font-size: 0.84rem;
}

.trust-strip {
  background: var(--plum);
  color: white;
}

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

.trust-grid > div {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 14px;
  padding: 22px clamp(16px, 2vw, 28px);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-grid span {
  color: #d7a391;
  font:
    500 0.75rem 'Fraunces',
    serif;
}

.trust-grid strong {
  font-size: 0.88rem;
  line-height: 1.35;
}

.section {
  padding: clamp(84px, 10vw, 142px) 0;
}

.section-intro h2,
.care-copy h2,
.visit-details h2,
.appointment h2,
.faq-heading h2 {
  font-size: clamp(3.1rem, 6vw, 6.2rem);
  line-height: 0.96;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.split-heading > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 570px;
  flex-direction: column;
  padding: clamp(25px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 3px 42px 3px 3px;
  background: var(--cream);
}

.featured-card {
  background: var(--plum);
  color: white;
  border-color: var(--plum);
}

.puppy-card {
  background: var(--sage-pale);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.featured-card .card-topline {
  color: #eadfe7;
}

.service-card h3 {
  margin: 28px 0 10px;
  color: var(--plum);
  font:
    600 clamp(2rem, 3vw, 2.8rem) / 1 'Fraunces',
    serif;
  letter-spacing: -0.04em;
}

.featured-card h3 {
  color: white;
}

.service-card > p {
  min-height: 76px;
  color: var(--muted);
}

.featured-card > p {
  color: #ded0da;
}

.service-card ul {
  margin: 13px 0 30px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 8px 0 8px 25px;
  border-bottom: 1px solid rgba(112, 101, 105, 0.2);
  font-size: 0.88rem;
}

.service-card li::before {
  position: absolute;
  left: 1px;
  color: var(--coral);
  content: '✓';
  font-weight: 700;
}

.card-action {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.card-action strong {
  font-size: 0.91rem;
}

.card-action a {
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.small-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border: 1px solid var(--line);
}

.small-services > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  font-size: 0.82rem;
}

.small-services > div:last-child {
  border: 0;
}

.small-services strong {
  color: var(--plum);
  text-align: right;
}

.policy {
  margin-top: 24px;
  border-top: 1px solid var(--plum);
  border-bottom: 1px solid var(--plum);
}

.policy summary {
  display: flex;
  justify-content: space-between;
  padding: 22px 4px;
  color: var(--plum);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.policy summary::-webkit-details-marker {
  display: none;
}

.policy[open] summary span {
  transform: rotate(45deg);
}

.policy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 10px 4px 30px;
}

.policy-content h3 {
  margin: 0;
  color: var(--plum);
  font:
    600 1.25rem 'Fraunces',
    serif;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery {
  background: var(--sand);
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.gallery-heading h2 {
  font-size: clamp(3.6rem, 8vw, 7.5rem);
}

.photo-note {
  max-width: 260px;
  margin: 0 0 12px;
  color: #746a62;
  font-size: 0.72rem;
  text-align: right;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(250px, 330px));
  gap: 16px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 3px 34px 3px 3px;
}

.gallery-grid .gallery-tall {
  grid-row: 1 / 3;
  border-radius: 3px 70px 3px 3px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.92);
  color: var(--plum);
  font-size: 0.68rem;
  font-weight: 700;
}

.one-to-one {
  background: var(--cream);
}

.care-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(54px, 9vw, 125px);
}

.care-image {
  position: relative;
}

.care-image img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  border-radius: 84px 4px 4px 4px;
}

.care-image > span {
  position: absolute;
  right: -25px;
  bottom: 35px;
  padding: 12px 17px;
  background: var(--coral);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.care-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.care-points {
  border-top: 1px solid var(--line);
}

.care-points div {
  display: flex;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.care-points strong {
  color: var(--coral);
  font:
    500 0.78rem 'Fraunces',
    serif;
}

.care-points span {
  color: var(--plum);
  font-weight: 600;
}

.reviews {
  background: var(--plum);
  color: white;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.reviews h2 {
  color: white;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1;
}

.rating-large {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 29px 0 12px;
}

.rating-large > span {
  font:
    500 4rem / 1 'Fraunces',
    serif;
}

.rating-large div {
  display: flex;
  flex-direction: column;
}

.rating-large b {
  color: #f1b180;
  letter-spacing: 0.08em;
}

.rating-large small {
  color: #cdbfca;
}

blockquote {
  position: relative;
  margin: 0;
  padding: clamp(32px, 5vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px 64px 4px 4px;
  background: rgba(255, 255, 255, 0.07);
}

.quote-mark {
  color: #df8b74;
  font:
    500 6rem / 0.4 'Fraunces',
    serif;
}

blockquote p {
  margin: 24px 0;
  font:
    500 clamp(1.6rem, 3vw, 2.7rem) / 1.25 'Fraunces',
    serif;
}

blockquote footer {
  color: #cabdc7;
  font-size: 0.76rem;
}

.team {
  background: var(--sage-pale);
}

.team-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.team h2 {
  font-size: clamp(3rem, 5.7vw, 6rem);
  line-height: 0.98;
}

.team-members {
  display: grid;
  gap: 12px;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px;
  border: 1px solid rgba(68, 36, 63, 0.24);
  border-radius: 4px 28px 4px 4px;
  background: rgba(255, 254, 250, 0.6);
}

.team-member > span {
  display: grid;
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  place-items: center;
  border-radius: 50%;
  background: var(--plum);
  color: white;
  font:
    500 2rem 'Fraunces',
    serif;
}

.team-member h3,
.team-member p {
  margin: 0;
}

.team-member h3 {
  color: var(--plum);
  font:
    600 1.55rem 'Fraunces',
    serif;
}

.team-member p,
.team-caption {
  color: #657268;
  font-size: 0.83rem;
}

.team-caption {
  margin: 6px 0 0;
}

.puppy-feature {
  background: var(--sand);
}

.puppy-grid {
  display: grid;
  grid-template-columns: 0.2fr 1.1fr 0.7fr;
  align-items: center;
  gap: 45px;
}

.puppy-number {
  color: rgba(68, 36, 63, 0.16);
  font:
    500 clamp(5rem, 11vw, 10rem) / 1 'Fraunces',
    serif;
}

.puppy-feature h2 {
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.96;
}

.puppy-feature p:not(.eyebrow) {
  max-width: 600px;
  color: #6e625b;
}

.puppy-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.puppy-action strong {
  color: var(--plum);
  font:
    600 2rem 'Fraunces',
    serif;
}

.puppy-action span {
  color: #6e625b;
  font-size: 0.78rem;
}

.puppy-action .button {
  margin-top: 12px;
}

.faqs {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(50px, 9vw, 125px);
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading p:not(.eyebrow) {
  max-width: 390px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--plum);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  color: var(--plum);
  font:
    600 1.18rem 'Fraunces',
    serif;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  color: var(--coral);
  font:
    400 1.5rem 'DM Sans',
    sans-serif;
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 650px;
  margin: -4px 45px 24px 0;
  color: var(--muted);
}

.visit {
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  min-height: 600px;
}

.visit-details {
  padding: clamp(35px, 6vw, 75px);
  background: var(--plum);
  color: white;
}

.visit-details h2 {
  color: white;
}

.visit-details address {
  margin: 30px 0 10px;
  color: #e0d6dd;
  font-size: 1.02rem;
  font-style: normal;
}

.visit-details .text-link {
  color: #f0a38e;
}

.hours {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.hours h3 {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 0 0 13px;
  font:
    600 1.15rem 'Fraunces',
    serif;
}

.hours dl,
.hours dd {
  margin: 0;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 8px 0;
  color: #d7cad3;
  font-size: 0.8rem;
}

.map-frame {
  min-height: 100%;
  background: #d6d4ce;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: 0;
  filter: saturate(0.65) sepia(0.08);
}

.appointment {
  background: var(--coral);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 9vw, 120px);
}

.appointment .eyebrow {
  color: var(--plum-dark);
}

.appointment h2 {
  color: var(--plum-dark);
}

.appointment-grid > div > p:not(.eyebrow) {
  max-width: 460px;
  color: #552c2b;
}

.call-card {
  display: flex;
  width: fit-content;
  flex-direction: column;
  margin-top: 38px;
  padding: 17px 20px;
  border: 1px solid rgba(43, 24, 41, 0.42);
  text-decoration: none;
}

.call-card span {
  color: #6d3734;
  font-size: 0.7rem;
}

.call-card strong {
  color: var(--plum-dark);
  font:
    600 1.45rem 'Fraunces',
    serif;
}

.appointment-form {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 4px 48px 4px 4px;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--plum-dark);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.appointment-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--plum);
  font-size: 0.76rem;
  font-weight: 700;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  padding: 12px 4px;
  border: 0;
  border-bottom: 1px solid #b9aaa3;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.95rem;
  outline: none;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 2px 0 var(--coral);
}

.appointment-form textarea {
  resize: vertical;
}

.submit-button {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
}

.form-note,
.form-success {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.form-success {
  padding: 10px;
  background: var(--sage-pale);
  color: #36523f;
}

.site-footer {
  padding-top: 82px;
  background: var(--plum-dark);
  color: #ded3dc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 45px;
  padding-bottom: 65px;
}

.brand-light {
  color: white;
}

.brand-light .brand-mark {
  background: var(--coral);
}

.brand-light small {
  color: #bfaeba;
}

.footer-brand > p {
  max-width: 260px;
  color: #bfaeba;
}

.footer-grid h3 {
  margin: 0 0 15px;
  color: #eaa18f;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a,
.footer-grid p {
  margin: 0 0 7px;
  color: #d4c6d0;
  font-size: 0.82rem;
  font-style: normal;
  text-decoration: none;
}

.footer-grid a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #998a95;
  font-size: 0.67rem;
}

.sources {
  background: #171b22;
  color: #c4cad0;
}

.sources summary {
  padding: 15px 24px;
  color: #939ba4;
  font-size: 0.69rem;
  text-align: center;
  cursor: pointer;
}

.source-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 25px 0 45px;
}

.source-grid h2 {
  color: white;
  font:
    600 1.25rem 'Fraunces',
    serif;
}

.source-grid p,
.source-grid strong {
  font-size: 0.72rem;
}

.source-grid a {
  color: #f0a38e;
}

.mobile-book {
  display: none;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 18px;
  }

  .header-actions .phone-link {
    display: none;
  }

  .site-nav {
    gap: 17px;
  }

  .hero-grid {
    gap: 50px;
  }

  .service-card {
    min-height: 600px;
  }
}

@media (max-width: 840px) {
  :root {
    --wrap: min(100% - 34px, 1180px);
  }

  html {
    scroll-padding-top: 90px;
  }

  body {
    padding-bottom: 62px;
  }

  .proposal-bar {
    grid-template-columns: 1fr 1fr;
    padding-inline: 15px;
  }

  .proposal-bar > span {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .menu-toggle {
    display: flex;
    width: 45px;
    height: 45px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--plum);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle[aria-expanded='true'] > span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded='true'] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded='true'] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 48;
    top: 118px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 118px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 35px 25px;
    background: var(--cream);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--plum);
    font:
      600 2rem 'Fraunces',
      serif;
  }

  .header-actions {
    display: none;
  }

  .hero-grid,
  .split-heading,
  .care-grid,
  .reviews-grid,
  .team-grid,
  .faq-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 70px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    width: min(600px, 94%);
    margin-left: auto;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid > div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-grid > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card > p {
    min-height: 0;
  }

  .small-services {
    grid-template-columns: 1fr;
  }

  .small-services > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .policy-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .care-grid {
    gap: 64px;
  }

  .care-image {
    width: min(560px, 91%);
  }

  .reviews-grid,
  .team-grid {
    gap: 50px;
  }

  .puppy-grid {
    grid-template-columns: 0.2fr 1fr;
  }

  .puppy-action {
    grid-column: 2;
  }

  .faq-heading {
    position: static;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .map-frame iframe {
    min-height: 400px;
  }

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

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

  .mobile-book {
    position: fixed;
    z-index: 70;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--coral);
    color: white;
    box-shadow: 0 8px 24px rgba(43, 24, 41, 0.28);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
  }
}

@media (max-width: 560px) {
  :root {
    --wrap: min(100% - 26px, 1180px);
  }

  .proposal-bar {
    font-size: 0.67rem;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
  }

  .brand-mark svg {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding-top: 55px;
  }

  h1 {
    font-size: clamp(3.65rem, 18vw, 5.5rem);
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    width: calc(100% - 14px);
  }

  .image-frame {
    border-radius: 4px 70px 4px 4px;
  }

  .care-note {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    min-height: 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding: 82px 0;
  }

  .section-intro h2,
  .care-copy h2,
  .visit-details h2,
  .appointment h2,
  .faq-heading h2 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-note {
    text-align: left;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-grid figure,
  .gallery-grid .gallery-tall {
    grid-row: auto;
    height: 360px;
  }

  .gallery-grid figure:not(.gallery-tall) {
    height: 260px;
  }

  .care-image > span {
    right: -18px;
  }

  .puppy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .puppy-number {
    font-size: 5rem;
  }

  .puppy-action {
    grid-column: auto;
  }

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

  .appointment-form {
    box-shadow: 7px 7px 0 var(--plum-dark);
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom,
  .source-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .source-grid {
    display: grid;
    gap: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
