:root {
  --navy: #1e2f63;
  --navy-dark: #14204a;
  --cream: #fff4df;
  --cream-deep: #f8e8c8;
  --white: #ffffff;
  --blue: #dce9f5;
  --blue-mid: #8fb0d8;
  --yellow: #f4b942;
  --ink-soft: #4f6189;
  --line: 3px solid var(--navy);
  --shadow: 7px 7px 0 var(--navy);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink, var(--navy));
  font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--yellow);
  border: var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

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

.display {
  margin: 0;
  font-family: "Titan One", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: .01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 14px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--yellow);
  font-family: "Titan One", Impact, sans-serif;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before { content: "🐾"; font-size: .9rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: var(--line);
  background: rgba(255, 244, 223, .96);
  backdrop-filter: blur(12px);
}

.nav-shell {
  width: min(1220px, calc(100% - 40px));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: #fff;
}

.brand span {
  font-family: "Titan One", Impact, sans-serif;
  font-size: 1.14rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: #fff;
  padding: 8px 15px;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--blue);
  transform: translateY(-2px);
}

.site-nav a[aria-current="page"] { background: var(--yellow); }
.mobile-book { display: none; }

.nav-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--line);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--navy);
  padding: 11px 22px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--navy);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  margin-left: auto;
  border: 2px solid var(--navy);
  border-radius: 14px;
  background: #fff;
  color: var(--ink, var(--navy));
  font: inherit;
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
}

.home-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: var(--line);
  background: #fff;
  isolation: isolate;
}

.home-hero__photo,
.home-hero__wash {
  position: absolute;
  inset: 0;
}

.home-hero__photo { display: none; }
.home-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.home-hero__wash { background: #fff; }

.home-hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding: 56px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 680px) 1fr;
  align-items: center;
}

.mascot-wrap {
  width: 156px;
  aspect-ratio: 1;
  margin-bottom: 18px;
  overflow: hidden;
  border: var(--line);
  border-radius: 36px;
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--navy);
  transform: rotate(-4deg);
  animation: wiggle 5s ease-in-out infinite;
}

.mascot-wrap img { width: 100%; height: 100%; object-fit: cover; }

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(4.4rem, 9.2vw, 7.4rem);
  line-height: .88;
  text-shadow: 6px 6px 0 var(--blue);
}

.home-hero p {
  max-width: 610px;
  margin: 24px 0 30px;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.home-hero--editorial .home-hero__content {
  min-height: 700px;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  gap: clamp(48px, 7vw, 96px);
  padding-block: 62px;
}

.editorial-hero__copy { position: relative; z-index: 3; }

.editorial-hero__kicker {
  display: inline-block;
  margin-bottom: 24px;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 6px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-hero--editorial h1 {
  max-width: 800px;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(5.2rem, 8.6vw, 8.5rem);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.075em;
  text-shadow: none;
}

.home-hero--editorial h1 em {
  color: var(--ink, var(--navy));
  font-weight: 400;
}

.home-hero--editorial p {
  max-width: 590px;
  margin: 30px 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.editorial-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.editorial-hero__proof span {
  position: relative;
  padding-left: 16px;
}

.editorial-hero__proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-50%);
}

.editorial-hero__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.editorial-hero__art::before {
  content: "";
  position: absolute;
  width: min(430px, 96%);
  aspect-ratio: 1;
  border-radius: 50% 50% 44% 56%;
  background: var(--blue);
  transform: rotate(-5deg);
}

.editorial-hero__portrait {
  position: relative;
  z-index: 2;
  width: min(420px, 92%);
  overflow: hidden;
  border: var(--line);
  border-radius: 48% 48% 42% 42%;
  background: var(--cream);
  box-shadow: 14px 14px 0 var(--yellow);
  transform: rotate(2deg);
}

.editorial-hero__portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.editorial-hero__note {
  position: absolute;
  z-index: 4;
  right: -12px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 136px;
  aspect-ratio: 1;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-8deg);
}

.editorial-hero__sparkle {
  position: absolute;
  z-index: 4;
  left: 2px;
  top: 72px;
  color: var(--yellow);
  font-size: 3.4rem;
  transform: rotate(-12deg);
}

.button-row { display: flex; flex-wrap: wrap; gap: 14px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: var(--line);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--navy);
  padding: 13px 28px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button--navy { background: var(--navy); color: #fff; box-shadow: 5px 5px 0 var(--yellow); }
.button--yellow { background: var(--yellow); }
.button--white { background: #fff; }

.bubble {
  position: absolute;
  z-index: 1;
  display: block;
  border: 4px solid var(--blue-mid);
  border-radius: 50%;
  opacity: .8;
  animation: floaty 6s ease-in-out infinite;
}

.bubble--one { width: 54px; height: 54px; left: 4%; top: 20%; }
.bubble--two { width: 28px; height: 28px; left: 45%; top: 18%; animation-delay: .6s; }
.bubble--three { width: 68px; height: 68px; right: 4%; top: 12%; animation-delay: 1s; }
.bubble--four { width: 34px; height: 34px; right: 12%; bottom: 14%; animation-delay: .35s; }

.marquee {
  overflow: hidden;
  border-bottom: var(--line);
  background: var(--navy);
  color: #fff;
  padding: 11px 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee__track span {
  font-family: "Titan One", Impact, sans-serif;
  font-size: 1.05rem;
  letter-spacing: .09em;
  white-space: nowrap;
}

.section { padding: 76px 0; }
.section--white { background: #fff; }
.section--blue { background: var(--blue); border-block: var(--line); }
.section--tight { padding-top: 36px; }

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  font-family: "Titan One", Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
  margin: 0 0 13px;
}

.section-heading p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.6; }

.photo-grid,
.feature-grid,
.split-grid,
.contact-grid,
.pricing-layout {
  display: grid;
  gap: 28px;
}

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

.polaroid {
  border: var(--line);
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 13px 13px 18px;
}

.polaroid:nth-child(1) { transform: rotate(-2deg); }
.polaroid:nth-child(2) { transform: rotate(1.4deg); }
.polaroid:nth-child(3) { transform: rotate(-1deg); }

.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  object-fit: cover;
}

.polaroid figcaption {
  padding-top: 13px;
  font-family: "Titan One", Impact, sans-serif;
  text-align: center;
  letter-spacing: .03em;
}

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

.feature-card,
.info-card,
.faq-card,
.price-card,
.side-card {
  border: var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-card { padding: 24px; }
.feature-card:nth-child(1) { background: var(--blue); }
.feature-card:nth-child(3) { background: var(--yellow); }

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  border: 2px solid var(--navy);
  border-radius: 15px;
  object-fit: cover;
}

.feature-card h3,
.info-card h3,
.faq-card h3,
.side-card h3 {
  margin: 0 0 9px;
  font-family: "Titan One", Impact, sans-serif;
  font-weight: 400;
}

.feature-card p,
.info-card p,
.faq-card p,
.side-card p { margin: 0; line-height: 1.65; }

.loyalty-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
  align-items: center;
  border: var(--line);
  border-radius: 28px;
  background: var(--yellow);
  box-shadow: 9px 9px 0 var(--navy);
  padding: clamp(28px, 5vw, 50px);
  transform: rotate(-.6deg);
}

.loyalty-card h2 { font-size: clamp(2.3rem, 5vw, 3.4rem); line-height: .96; }
.loyalty-card p { margin: 14px 0 0; font-size: 1.05rem; }
.loyalty-list { display: grid; gap: 12px; }

.loyalty-row,
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.loyalty-row {
  border: var(--line);
  border-radius: 17px;
  background: #fff;
  padding: 15px 20px;
}

.loyalty-row strong { font-family: "Titan One", Impact, sans-serif; font-size: 1.25rem; }

.split-grid { grid-template-columns: repeat(2, 1fr); }
.info-card { padding: clamp(26px, 4vw, 36px); }
.info-card--navy { background: var(--navy); color: #fff; box-shadow: 7px 7px 0 var(--yellow); }
.info-card--navy p { color: var(--blue); }
.info-card h3 { font-size: 1.55rem; }
.hours-list { display: grid; gap: 10px; }
.hours-row { padding-bottom: 9px; border-bottom: 2px dashed var(--blue); }
.hours-row:last-child { border: 0; padding-bottom: 0; }

.final-cta { padding: 84px 24px 94px; text-align: center; }
.final-cta h2 { font-size: clamp(2.6rem, 7vw, 4.5rem); text-shadow: 4px 4px 0 var(--blue); }
.final-cta p { margin: 13px 0 28px; font-size: 1.08rem; }

.site-footer { border-top: var(--line); background: var(--navy-dark); color: var(--blue); }
.footer-shell {
  min-height: 132px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand { color: #fff; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.footer-nav a { font-size: .88rem; font-weight: 800; text-decoration: none; }
.footer-nav a:hover { color: var(--yellow); }
.footer-note { margin: 0; text-align: right; font-size: .78rem; line-height: 1.5; }

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: var(--line);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  padding: 70px 0 62px;
}

.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { max-width: 900px; font-size: clamp(3.3rem, 8vw, 6.2rem); line-height: .92; text-shadow: 5px 5px 0 var(--blue); }
.page-hero p { max-width: 660px; margin: 18px 0 0; font-size: 1.15rem; line-height: 1.6; }

.pricing-layout { grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr); align-items: start; }
.price-card { padding: clamp(28px, 5vw, 48px); }
.price-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.price-card h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1; }
.price { flex: 0 0 auto; font-family: "Titan One", Impact, sans-serif; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.price-starts { display: grid; flex: 0 0 min(280px, 42%); gap: 9px; }
.price-starts div { display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid color-mix(in srgb, var(--navy) 22%, transparent); border-radius: 14px; background: var(--blue); padding: 11px 13px; }
.price-starts span { font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.price-starts strong { flex: 0 0 auto; font-family: "Titan One", Impact, sans-serif; font-size: 1rem; font-weight: 400; }
.muted { color: var(--ink-soft); line-height: 1.65; }
.size-price-list { display: grid; gap: 10px; margin: 28px 0 34px; }
.size-price-row { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(220px, .75fr); gap: 18px; align-items: center; border: 1px solid color-mix(in srgb, var(--navy) 18%, transparent); border-radius: 16px; background: color-mix(in srgb, var(--blue) 28%, #fff); padding: 15px 16px; }
.size-price-dog { display: grid; gap: 3px; min-width: 0; }
.size-price-dog strong { color: var(--ink, var(--navy)); font-family: "Fraunces", Georgia, serif; font-size: 1.08rem; }
.size-price-dog span { color: var(--ink, var(--navy)); font-size: .76rem; font-weight: 800; }
.size-price-dog small { color: var(--ink-soft); font-size: .72rem; line-height: 1.45; }
.size-price-services { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 0; }
.size-price-services div { display: grid; gap: 2px; border-radius: 11px; background: #fff; padding: 9px 10px; text-align: center; }
.size-price-services dt { color: var(--ink-soft); font-size: .61rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.size-price-services dd { margin: 0; color: var(--ink, var(--navy)); font-family: "Titan One", Impact, sans-serif; font-size: .93rem; }
.price-card__subhead { margin: 0; color: var(--ink, var(--navy)); font-family: "Fraunces", Georgia, serif; font-size: 1.5rem; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 24px; margin: 26px 0; }
.check-item { display: flex; gap: 11px; align-items: flex-start; line-height: 1.45; }
.check-item::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%; background: var(--yellow); font-weight: 900; }
.price-note { border: 2px dashed var(--navy); border-radius: 16px; background: var(--blue); padding: 17px 20px; line-height: 1.6; }
.side-stack { display: grid; gap: 24px; }
.side-card { padding: 28px; }
.side-card--navy { background: var(--navy); color: #fff; box-shadow: 7px 7px 0 var(--yellow); }
.side-card--navy p { color: var(--blue); }
.discount-list { display: grid; gap: 10px; margin-top: 19px; }
.discount-list div { display: flex; justify-content: space-between; gap: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.22); }
.discount-list div:last-child { border: 0; padding: 0; }

.service-photo-band {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: center;
}
.service-photo-band img { width: 100%; aspect-ratio: 16 / 9; border: var(--line); border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.service-photo-band h2 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1; }
.service-photo-band p { line-height: 1.7; }

.about-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 50px; align-items: center; }
.about-art { overflow: hidden; border: var(--line); border-radius: 28px; box-shadow: 9px 9px 0 var(--navy); transform: rotate(-1.5deg); }
.about-art img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about-copy h2 { font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1; }
.about-copy p { font-size: 1.05rem; line-height: 1.75; }
.about-copy .button { margin-top: 8px; }

.faq-list { width: min(900px, calc(100% - 48px)); margin: 0 auto; display: grid; gap: 16px; }
.faq-card { padding: 24px 28px; box-shadow: 5px 5px 0 var(--navy); }
.faq-card:nth-child(even) { background: var(--blue); }
.faq-card h3 { font-size: 1.18rem; }
.faq-card p { color: var(--ink-soft); }

.contact-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: stretch; }
.contact-stack { display: grid; gap: 22px; }
.contact-art { position: relative; min-height: 620px; overflow: hidden; border: var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.contact-art img { width: 100%; height: 100%; object-fit: cover; }
.address-link { display: inline-flex; margin-top: 16px; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.address-link:hover { color: var(--ink-soft); }

.cta-panel {
  border: var(--line);
  border-radius: 30px;
  background: var(--navy);
  box-shadow: 9px 9px 0 var(--yellow);
  color: #fff;
  padding: clamp(38px, 6vw, 62px);
  text-align: center;
}
.cta-panel h2 { font-size: clamp(2.4rem, 6vw, 4rem); }
.cta-panel p { margin: 12px 0 26px; color: var(--blue); }

/* Homepage depth: service details, visit flow and practical booking notes. */
.home-service-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.home-service-copy h2 {
  margin: 14px 0 22px;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: .94;
}

.home-service-copy > p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

.home-service-price {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 26px 0;
  border-block: 2px solid var(--navy);
  padding-block: 16px;
}

.home-service-price strong {
  flex: 0 0 auto;
  font-family: "Titan One", Impact, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 400;
}

.home-service-price span {
  color: var(--ink-soft);
  font-size: .86rem;
  line-height: 1.45;
}

.home-service-card {
  border: var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 46px);
}

.home-service-card h3,
.home-process-step h3,
.home-fact-card h3 {
  margin: 0;
  font-family: "Titan One", Impact, sans-serif;
  font-weight: 400;
}

.home-service-card h3 {
  margin-bottom: 24px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.home-service-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.home-service-check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  border-bottom: 1px solid color-mix(in srgb, var(--navy) 16%, transparent);
  padding: 0 0 14px;
  line-height: 1.5;
}

.home-service-check::before {
  content: "✓";
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: .76rem;
  font-weight: 900;
}

.home-process-grid,
.home-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-process-step,
.home-fact-card {
  border: var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 38px);
}

.home-process-step {
  position: relative;
  padding-top: 82px;
}

.home-process-number {
  position: absolute;
  left: 30px;
  top: 28px;
  color: var(--yellow);
  font-family: "Titan One", Impact, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--navy);
}

.home-process-step h3,
.home-fact-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.home-process-step p,
.home-fact-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.home-fact-card > strong {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--yellow);
  padding: 8px 12px;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Kimi concept: the Full Groom expressed as a real dog-spa ritual. */
.spa-ritual-section {
  overflow: clip;
}

.spa-ritual-heading {
  max-width: 920px;
  margin-bottom: clamp(42px, 7vw, 78px);
}

.spa-ritual-heading h2 {
  margin: 14px 0 22px;
  font-size: clamp(3.6rem, 7.4vw, 7rem);
  line-height: .88;
}

.spa-ritual-heading > p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.spa-ritual-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.spa-ritual-visual {
  position: relative;
  min-height: 660px;
}

.spa-ritual-visual__main {
  position: absolute;
  inset: 0 auto 0 0;
  width: 78%;
  height: 100%;
  border: var(--line);
  border-radius: 999px 999px 28px 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.spa-ritual-visual__inset {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 54px;
  width: 46%;
  margin: 0;
  border: var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(40, 78, 104, .2);
  padding: 10px;
  transform: rotate(2deg);
}

.spa-ritual-visual__inset img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  object-fit: cover;
}

.spa-ritual-visual__inset figcaption {
  padding: 10px 6px 3px;
  color: var(--ink, var(--navy));
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.spa-ritual-visual__note {
  position: absolute;
  z-index: 3;
  right: 4%;
  top: 28px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--navy);
  padding: 13px 18px;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(2deg);
}

.spa-ritual-steps {
  border-block: 1px solid color-mix(in srgb, var(--navy) 24%, transparent);
}

.spa-ritual-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--navy) 16%, transparent);
}

.spa-ritual-step:last-child {
  border-bottom: 0;
}

.spa-ritual-step > span {
  color: var(--ink, var(--navy));
  font-family: "Titan One", Impact, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.spa-ritual-step h3 {
  margin: -3px 0 6px;
  font-family: "Titan One", Impact, sans-serif;
  font-size: 1.18rem;
  font-weight: 400;
}

.spa-ritual-step p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.spa-ritual-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: clamp(42px, 6vw, 70px);
  border: 2px solid var(--navy);
  border-radius: 24px;
  background: var(--blue);
  padding: clamp(24px, 4vw, 36px);
}

.spa-ritual-cta p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.5;
}

.spa-ritual-cta > div {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 9px;
  align-items: center;
}

.spa-ritual-cta small {
  color: var(--ink-soft);
  font-size: .7rem;
}

.spa-profile-section .section-heading {
  max-width: 900px;
}

.spa-profile-grid .feature-card {
  display: flex;
  flex-direction: column;
}

.feature-card__link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink, var(--navy));
  font-size: .82rem;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.feature-card__link:hover {
  color: var(--ink-soft);
}

@media (max-width: 940px) {
  .home-service-layout {
    grid-template-columns: 1fr;
  }

  .home-process-grid,
  .home-facts-grid {
    grid-template-columns: 1fr;
  }

  .spa-ritual-layout {
    grid-template-columns: 1fr;
  }

  .spa-ritual-visual {
    width: min(100%, 720px);
    min-height: 600px;
  }
}

@media (max-width: 700px) {
  .home-service-checks {
    grid-template-columns: 1fr;
  }

  .home-service-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-service-copy .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .home-service-copy .button {
    justify-content: center;
    width: 100%;
  }

  .spa-ritual-heading h2 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .spa-ritual-visual {
    min-height: 460px;
  }

  .spa-ritual-visual__main {
    width: 82%;
  }

  .spa-ritual-visual__inset {
    bottom: 28px;
    width: 48%;
    padding: 7px;
  }

  .spa-ritual-visual__note {
    right: 2%;
    top: 18px;
    padding: 10px 13px;
    font-size: .59rem;
  }

  .spa-ritual-step {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding-block: 19px;
  }

  .spa-ritual-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .spa-ritual-cta > div,
  .spa-ritual-cta .button {
    width: 100%;
  }

  .spa-ritual-cta .button {
    justify-content: center;
  }
}

/* Refined editorial direction — carried from the selected homepage hero. */
.editorial-site { --shadow: 5px 5px 0 var(--navy); }

.editorial-site .site-header { background: rgba(255, 255, 255, .96); }

.editorial-site .page-hero {
  background: #fff;
  padding-block: 82px 74px;
}

.editorial-site .eyebrow {
  gap: 0;
  margin-bottom: 22px;
  border: 0;
  border-bottom: 3px solid var(--yellow);
  border-radius: 0;
  background: transparent;
  padding: 0 0 6px;
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
}

.editorial-site .eyebrow::before { content: none; }

.editorial-site .page-hero h1,
.editorial-site .section-heading h2,
.editorial-site .price-card h2,
.editorial-site .service-photo-band h2,
.editorial-site .about-copy h2,
.editorial-site .loyalty-card h2,
.editorial-site .final-cta h2,
.editorial-site .cta-panel h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  letter-spacing: -.055em;
  text-shadow: none;
  text-transform: none;
}

.editorial-site .page-hero h1 em,
.editorial-site .section-heading h2 em,
.editorial-site .price-card h2 em,
.editorial-site .service-photo-band h2 em,
.editorial-site .about-copy h2 em,
.editorial-site .loyalty-card h2 em,
.editorial-site .final-cta h2 em,
.editorial-site .cta-panel h2 em {
  font-weight: 400;
}

.editorial-site .page-hero h1 {
  max-width: 980px;
  font-size: clamp(4.4rem, 8.4vw, 7.4rem);
  line-height: .84;
}

.editorial-site .page-hero p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.editorial-site .section-heading h2 {
  font-size: clamp(2.7rem, 5.2vw, 4.2rem);
  line-height: .94;
}

.editorial-site .feature-card h3,
.editorial-site .info-card h3,
.editorial-site .faq-card h3,
.editorial-site .side-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.025em;
}

.editorial-site .feature-card,
.editorial-site .info-card,
.editorial-site .faq-card,
.editorial-site .price-card,
.editorial-site .side-card,
.editorial-site .contact-art,
.editorial-site .about-art,
.editorial-site .service-photo-band img {
  box-shadow: var(--shadow);
}

.editorial-site .feature-card { background: #fff; }
.editorial-site .feature-card:nth-child(3) { background: #fff; }
.editorial-site .section--blue .feature-card:nth-child(2) { transform: translateY(-8px); }

.editorial-site .loyalty-card {
  box-shadow: 6px 6px 0 var(--navy);
  transform: none;
}

.editorial-site .info-card--navy,
.editorial-site .side-card--navy,
.editorial-site .cta-panel { box-shadow: 6px 6px 0 var(--yellow); }

.editorial-site .final-cta { background: #fff; }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes wiggle { 0%, 100% { transform: rotate(-4deg); } 50% { transform: rotate(3deg); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (max-width: 940px) {
  .nav-shell { min-height: 70px; flex-wrap: wrap; padding: 9px 0; }
  .brand img { width: 46px; height: 46px; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-cta { display: none; }
  .site-nav { display: none; order: 3; width: 100%; padding: 4px 0 10px; grid-template-columns: 1fr 1fr; }
  .site-nav.is-open { display: grid; }
  .site-nav a { text-align: center; }
  .site-nav .mobile-book { display: block; grid-column: 1 / -1; background: var(--yellow); }
  .home-hero { min-height: auto; }
  .home-hero__wash { background: #fff; }
  .home-hero__content { grid-template-columns: 1fr; text-align: center; padding: 46px 0 64px; }
  .home-hero--editorial .home-hero__content { min-height: auto; grid-template-columns: 1fr; gap: 34px; padding-block: 54px 64px; }
  .home-hero--editorial h1,
  .home-hero--editorial p { margin-inline: auto; }
  .editorial-hero__proof { justify-content: center; }
  .editorial-hero__art { min-height: 410px; }
  .editorial-hero__portrait { width: min(360px, 86%); }
  .editorial-hero__art::before { width: min(360px, 86%); }
  .editorial-hero__note { right: calc(50% - 235px); bottom: 0; }
  .editorial-hero__sparkle { left: calc(50% - 225px); }
  .mascot-wrap { margin-inline: auto; }
  .home-hero h1, .home-hero p { margin-inline: auto; }
  .button-row { justify-content: center; }
  .photo-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid > :last-child, .feature-grid > :last-child { grid-column: 1 / -1; max-width: 550px; width: 100%; justify-self: center; }
  .loyalty-card, .pricing-layout, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-shell { grid-template-columns: 1fr; justify-items: center; padding: 34px 0; }
  .footer-note { text-align: center; }
  .contact-art { min-height: 480px; }
}

@media (max-width: 700px) {
  .container, .home-hero__content, .faq-list { width: min(100% - 32px, 1180px); }
  .nav-shell { width: min(100% - 28px, 1220px); }
  .brand span { font-size: 1rem; }
  .site-nav { grid-template-columns: 1fr; }
  .site-nav .mobile-book { grid-column: auto; }
  .home-hero__photo img { object-position: 64% center; }
  .home-hero__content { padding-top: 34px; }
  .mascot-wrap { width: 128px; border-radius: 28px; }
  .home-hero h1 { font-size: clamp(3.4rem, 17vw, 5.3rem); text-shadow: 4px 4px 0 var(--blue); }
  .home-hero--editorial h1 { font-size: clamp(4.3rem, 19vw, 6.1rem); line-height: .84; text-shadow: none; }
  .home-hero--editorial p { margin-block: 24px; font-size: 1rem; }
  .editorial-hero__kicker { margin-bottom: 20px; font-size: .69rem; }
  .editorial-hero__proof { gap: 9px 14px; margin-top: 27px; font-size: .66rem; }
  .editorial-hero__art { min-height: 325px; }
  .editorial-hero__portrait { width: min(270px, 82%); box-shadow: 9px 9px 0 var(--yellow); }
  .editorial-hero__art::before { width: min(270px, 82%); }
  .editorial-hero__note { right: 4px; bottom: 0; width: 102px; font-size: .77rem; }
  .editorial-hero__sparkle { left: 3px; top: 32px; font-size: 2.5rem; }
  .home-hero--editorial .bubble--one,
  .home-hero--editorial .bubble--two,
  .home-hero--editorial .bubble--four { display: none; }
  .home-hero--editorial .bubble--three { right: 8px; top: 145px; opacity: .48; }
  .home-hero p { font-size: 1rem; margin-block: 18px 24px; }
  .button { width: 100%; min-height: 54px; }
  .section { padding: 58px 0; }
  .photo-grid, .feature-grid, .split-grid, .check-grid, .service-photo-band { grid-template-columns: 1fr; }
  .photo-grid > :last-child, .feature-grid > :last-child { grid-column: auto; max-width: none; }
  .polaroid:nth-child(n) { transform: none; }
  .feature-card { padding: 18px; }
  .loyalty-card { padding: 28px 20px; transform: none; }
  .loyalty-row, .hours-row { align-items: flex-start; flex-direction: column; gap: 4px; }
  .loyalty-row strong { font-size: 1.12rem; }
  .page-hero { padding: 54px 0 48px; }
  .page-hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); text-shadow: 4px 4px 0 var(--blue); }
  .editorial-site .page-hero { padding-block: 58px 52px; }
  .editorial-site .page-hero h1 { font-size: clamp(3.9rem, 17vw, 5.4rem); line-height: .84; text-shadow: none; }
  .editorial-site .page-hero p { font-size: 1rem; }
  .editorial-site .section-heading h2 { font-size: clamp(2.55rem, 13vw, 3.8rem); }
  .editorial-site .section--blue .feature-card:nth-child(2) { transform: none; }
  .editorial-site .page-hero .bubble--one { display: none; }
  .price-card__top { display: block; }
  .price { margin-top: 10px; }
  .price-starts { margin-top: 20px; }
  .size-price-row { grid-template-columns: 1fr; gap: 12px; }
  .contact-art { min-height: 350px; }
  .final-cta { padding: 64px 16px 74px; }
  .footer-nav { flex-direction: column; align-items: center; }
}

@media (max-width: 390px) {
  .brand span { max-width: 145px; white-space: normal; line-height: 1; }
  .nav-toggle { width: 44px; }
}

/* Fresh Pup Files: candid before-and-after transformation rows. */
.fresh-pup-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.fresh-pup-shell {
  width: min(calc(100% - 64px), 1440px);
}

.fresh-pup-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 82px);
}

.fresh-pup-heading .eyebrow {
  margin-bottom: 18px;
}

.fresh-pup-heading h2 {
  margin: 0;
  color: var(--ink, var(--navy));
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.1rem, 6.6vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .9;
}

.fresh-pup-heading h2 em {
  font-weight: 400;
}

.fresh-pup-heading > p {
  max-width: 480px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
}

.fresh-pup-list {
  display: grid;
  gap: clamp(28px, 4vw, 54px);
}

.fresh-pup-row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, .75fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
  padding: clamp(14px, 1.4vw, 20px);
  border: 1px solid color-mix(in srgb, var(--navy) 18%, transparent);
  border-radius: 32px;
  background: color-mix(in srgb, var(--blue) 30%, #fff);
  box-shadow: 0 18px 48px rgba(40, 78, 104, .09);
}

.fresh-pup-row:nth-child(2) {
  grid-template-columns: minmax(310px, .75fr) minmax(0, 1.55fr);
  background: color-mix(in srgb, var(--blue-mid) 38%, #fff);
}

.fresh-pup-row:nth-child(2) .fresh-pup-photo {
  order: 2;
}

.fresh-pup-row:nth-child(2) .fresh-pup-copy {
  order: 1;
}

.fresh-pup-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--navy) 28%, transparent);
  border-radius: 23px;
  background: #f2ede4;
  aspect-ratio: 3 / 2;
}

.fresh-pup-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fresh-pup-mobile-pair {
  display: none;
}

.fresh-pup-divider {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 0 0 1px rgba(40, 78, 104, .12);
  transform: translateX(-50%);
  pointer-events: none;
}

.fresh-pup-label {
  position: absolute;
  z-index: 2;
  top: 16px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 999px;
  padding: 7px 13px;
  color: #fff;
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(24, 57, 79, .16);
  backdrop-filter: blur(8px);
}

.fresh-pup-label--before {
  left: 16px;
  background: rgba(40, 78, 104, .88);
}

.fresh-pup-label--after {
  right: 16px;
  background: rgba(83, 129, 157, .92);
}

.fresh-pup-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 2.8vw, 42px) clamp(8px, 1.4vw, 18px);
}

.fresh-pup-index {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--blue-mid);
  padding-bottom: 5px;
  color: var(--ink, var(--navy));
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.fresh-pup-copy h3 {
  margin: 0 0 14px;
  color: var(--ink, var(--navy));
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 4.7vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .88;
}

.fresh-pup-intro {
  margin: 0;
  color: var(--ink, var(--navy));
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 650;
  line-height: 1.58;
}

.fresh-pup-treatment {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 23px 0 18px;
}

.fresh-pup-treatment span {
  border: 1px solid color-mix(in srgb, var(--navy) 28%, transparent);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  padding: 8px 11px;
  color: var(--ink, var(--navy));
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
}

.fresh-pup-fit {
  margin: 0 0 25px;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.55;
}

.fresh-pup-fit strong {
  color: var(--ink, var(--navy));
}

.fresh-pup-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 5px;
  color: var(--ink, var(--navy));
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
}

.fresh-pup-link span {
  color: #527f9b;
  font-size: 1.2rem;
  transition: transform .2s ease;
}

.fresh-pup-link:hover span,
.fresh-pup-link:focus-visible span {
  transform: translateX(4px);
}

.fresh-pup-disclosure {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--ink-soft);
  font-size: .75rem;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 940px) {
  .fresh-pup-shell {
    width: min(100% - 40px, 760px);
  }

  .fresh-pup-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fresh-pup-heading > * {
    min-width: 0;
  }

  .fresh-pup-heading h2 {
    max-width: 100%;
    text-wrap: balance;
  }

  .fresh-pup-heading > p {
    width: 100%;
    max-width: 620px;
    overflow-wrap: anywhere;
  }

  .fresh-pup-row,
  .fresh-pup-row:nth-child(2) {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .fresh-pup-row:nth-child(2) .fresh-pup-photo,
  .fresh-pup-row:nth-child(2) .fresh-pup-copy {
    order: initial;
  }

  .fresh-pup-photo--composite {
    display: none;
  }

  .fresh-pup-mobile-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-width: 0;
  }

  .fresh-pup-mobile-shot {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--navy) 24%, transparent);
    border-radius: 20px;
    background: #fff;
  }

  .fresh-pup-mobile-crop {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f2ede4;
  }

  .fresh-pup-mobile-crop img {
    position: absolute;
    top: 0;
    width: 200%;
    max-width: none;
    height: 100%;
  }

  .fresh-pup-mobile-shot--before img { left: 0; }
  .fresh-pup-mobile-shot--after img { right: 0; }

  .fresh-pup-mobile-shot figcaption {
    padding: 10px 8px 11px;
    color: var(--ink, var(--navy));
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-align: center;
    text-transform: uppercase;
  }

  .fresh-pup-mobile-shot--after figcaption {
    background: color-mix(in srgb, var(--blue-mid) 32%, #fff);
  }

  .fresh-pup-copy {
    padding: 28px 18px 24px;
  }

  .fresh-pup-copy h3 {
    font-size: clamp(3.2rem, 10vw, 4.8rem);
  }
}

@media (max-width: 560px) {
  .fresh-pup-shell {
    width: min(100% - 24px, 520px);
  }

  .fresh-pup-heading h2 {
    font-size: clamp(2.3rem, 10.8vw, 3.25rem);
    letter-spacing: -.045em;
    line-height: .95;
  }

  .fresh-pup-heading > p {
    max-width: none;
    font-size: .98rem;
    line-height: 1.6;
  }

  .fresh-pup-row {
    padding: 8px;
    border-radius: 24px;
  }

  .fresh-pup-photo {
    border-radius: 18px;
  }

  .fresh-pup-label {
    top: 10px;
    min-height: 29px;
    padding: 6px 9px;
    font-size: .58rem;
    letter-spacing: .08em;
  }

  .fresh-pup-label--before { left: 10px; }
  .fresh-pup-label--after { right: 10px; }

  .fresh-pup-copy {
    padding: 26px 14px 22px;
  }

  .fresh-pup-treatment {
    margin-top: 20px;
  }

  .fresh-pup-link {
    font-size: .8rem;
  }
}

/* Homepage location: an embedded satellite map with conversion details. */
.home-location-heading {
  margin-bottom: clamp(42px, 5vw, 68px);
}

.home-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .7fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: stretch;
}

.home-location-map {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--navy) 24%, transparent);
  border-radius: 30px;
  background: var(--blue);
  box-shadow: 0 20px 52px rgba(40, 78, 104, .13);
}

.home-location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: 0;
  filter: saturate(.82) contrast(.94);
}

.home-location-map__label {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  border: 1px solid color-mix(in srgb, var(--navy) 24%, transparent);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 24px rgba(40, 78, 104, .14);
  padding: 10px 15px;
  color: var(--ink, var(--navy));
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.home-location-details {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
}

.home-location-details .info-card {
  border-radius: 26px;
  padding: clamp(28px, 3.2vw, 44px);
}

.home-location-kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--yellow);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-location-address h3 {
  margin-bottom: 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.15rem, 3.3vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

.home-location-address p {
  margin-bottom: 28px;
  line-height: 1.65;
}

.home-location-address .button {
  width: fit-content;
}

.home-location-hours h3 {
  margin-bottom: 20px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -.025em;
}

.home-location-hours .hours-row {
  gap: 18px;
  padding-block: 11px;
  font-size: .82rem;
}

@media (max-width: 940px) {
  .home-location-grid {
    grid-template-columns: 1fr;
  }

  .home-location-map,
  .home-location-map iframe {
    min-height: 500px;
  }

  .home-location-details {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 700px) {
  .home-location-map,
  .home-location-map iframe {
    min-height: 390px;
  }

  .home-location-map {
    border-radius: 22px;
  }

  .home-location-map__label {
    left: 13px;
    bottom: 13px;
    font-size: .64rem;
  }

  .home-location-details {
    grid-template-columns: 1fr;
  }

  .home-location-details .info-card {
    padding: 28px 22px;
  }

  .home-location-address .button {
    width: 100%;
  }
}
