@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/roboto-slab-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Lobster";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/lobster-latin.woff2") format("woff2");
}

:root {
  --pink: #ee2a7b;
  --pink-dark: #c91662;
  --pink-accessible: #dd1f6f;
  --pink-soft: #f9c9df;
  --cream: #fff8f0;
  --paper: #fffdf9;
  --ink: #25131c;
  --yellow: #ffd964;
  --blue: #bfe6f4;
  --line: rgba(37, 19, 28, 0.22);
  --radius-card: 32px;
  --display: "Roboto Slab", Rockwell, "Rockwell Nova", Georgia, serif;
  --sans: "Trebuchet MS", "Gill Sans", "Gill Sans MT", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: white;
  background: var(--pink);
}

img {
  display: block;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--pink-accessible);
  font-size: 0.78rem;
  font-weight: 900;
  transform: translateY(-180%);
}

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

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

.topline {
  display: flex;
  justify-content: space-between;
  padding: 8px clamp(20px, 4vw, 68px);
  color: white;
  background: var(--pink-accessible);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.topline-side {
  opacity: 0.84;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 34px;
  max-width: 1540px;
  height: 104px;
  margin: 0 auto;
  padding: 10px clamp(20px, 4vw, 68px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: block;
  width: 148px;
  height: 86px;
  overflow: hidden;
}

.brand img {
  width: 126px;
  height: auto;
  margin-top: -1px;
}

.site-header nav {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 52px);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.site-header .button-small {
  grid-column: -2 / -1;
  justify-self: end;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  min-height: 44px;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::before {
  position: absolute;
  top: -5px;
}

.menu-toggle i::after {
  position: absolute;
  top: 5px;
}

.menu-toggle[aria-expanded="true"] i {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] i::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-header nav a,
.footer-links a {
  position: relative;
}

.site-header nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  content: "";
}

.site-header nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 15px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--pink-accessible);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--pink-dark);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.button-small {
  min-height: 43px;
  padding: 10px 17px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.69rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 185px);
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background: #bfe6f4;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  min-width: 0;
  grid-template-rows: auto auto 1fr;
  gap: clamp(20px, 2vw, 30px);
  min-height: calc(100svh - 185px);
  max-width: 1540px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 48px) clamp(20px, 4.7vw, 78px) clamp(22px, 2.5vw, 36px);
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(191, 230, 244, 0.98) 0%, rgba(191, 230, 244, 0.35) 43%, transparent 62%);
  content: "";
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  margin: 0;
  padding: 10px 15px 9px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: clamp(10px, 1.3vw, 18px);
}

.hero-kicker span {
  color: var(--pink);
  font-size: 1.05rem;
  line-height: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  font-size: 1.1rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-kerning: normal;
}

h1 {
  margin: 0;
  align-self: start;
  min-width: 0;
  width: min(790px, 64vw);
  font-size: clamp(4.2rem, 7.6vw, 8.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.74;
  text-transform: uppercase;
}

h1 span,
h1 em {
  display: block;
}

h1 em,
h2 em,
.big-promise em {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  text-transform: none;
}

.hero-fresh {
  position: relative;
  z-index: 2;
  width: max-content;
  text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.82);
  transform: rotate(-1deg);
}

.hero-fluffy {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-top: 0.045em;
  padding: 0.16em 0.18em 0.13em 0.11em;
  color: white;
  background: var(--pink);
  box-shadow: 6px 7px 0 var(--ink);
  clip-path: polygon(1% 0, 100% 0, 98% 94%, 0 100%);
  line-height: 0.86;
  transform: rotate(-1deg);
}

.hero-fluffy > span {
  transform: translateY(0.08em);
}

h1 .hero-happy {
  position: relative;
  z-index: 3;
  width: max-content;
  margin: 0.065em 0 0;
  padding: 0.03em 0.2em 0.1em;
  border: 3px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 6px 0 var(--ink);
  font-size: 0.72em;
  transform: rotate(1deg);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto;
  align-items: center;
  gap: 26px;
  align-self: end;
  min-width: 0;
  max-width: 100%;
  width: min(610px, 50vw);
  padding: 16px 18px 16px 20px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 6px 6px 0 var(--ink);
  backdrop-filter: blur(8px);
  pointer-events: auto;
}

.hero-bottom > p {
  margin: 0;
  font-size: clamp(0.85rem, 1.1vw, 1.02rem);
  line-height: 1.45;
}

.ticker {
  position: relative;
  z-index: 6;
  overflow: hidden;
  margin-top: -28px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--yellow);
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 14px 0;
  animation: ticker 24s linear infinite;
}

.ticker span {
  padding: 0 24px;
  font-family: var(--display);
  font-size: clamp(1rem, 1.65vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.ticker i {
  color: var(--pink);
  font-size: 1.5rem;
  font-style: normal;
}

.section-shell {
  max-width: 1540px;
  margin: 0 auto;
  padding: clamp(96px, 10vw, 156px) clamp(20px, 6vw, 92px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: clamp(40px, 10vw, 150px);
  align-items: end;
  margin-bottom: 68px;
}

h2 {
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-wrap: balance;
  text-transform: uppercase;
}

.section-intro {
  margin: 0;
  padding-bottom: 7px;
  font-size: 1.08rem;
  line-height: 1.65;
}

.accent-full {
  --accent-inset: 4px;
  --accent-border-offset: 3px;
  position: relative;
  isolation: isolate;
  display: inline-block;
  font-family: "Lobster", "Cooper Black", "Arial Rounded MT Bold", cursive;
  font-size: clamp(4.15rem, 8.1vw, 7.6rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.7;
  color: var(--pink);
  transform: rotate(-1.5deg);
}

.accent-full::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  color: transparent;
  content: attr(data-text);
  pointer-events: none;
  transform: translate(var(--accent-border-offset), var(--accent-border-offset));
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 18px var(--ink);
  paint-order: stroke fill;
}

.accent-full > span {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #ffc1da;
  -webkit-text-fill-color: #ffc1da;
}

.accent-full > span::after {
  position: absolute;
  inset: 0;
  color: var(--pink);
  content: attr(data-text);
  pointer-events: none;
  transform: translate(var(--accent-inset), var(--accent-inset));
  -webkit-text-fill-color: var(--pink);
}

#treatments-title .accent-full {
  transform: translateY(-0.075em) rotate(-1.5deg);
}

.accent-flat {
  display: inline;
  color: var(--yellow);
  font-family: "Lobster", "Cooper Black", "Arial Rounded MT Bold", cursive;
  font-size: 1.06em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.76;
  text-transform: none;
}

.service-list {
  border-top: 2px solid var(--ink);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1.3fr 1.4fr 150px;
  gap: 28px;
  align-items: center;
  min-height: 142px;
  padding: 24px 4px;
  border-bottom: 2px solid var(--ink);
  transition: color 220ms ease, padding 220ms ease, background 220ms ease;
}

.service-row::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--pink-soft);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 260ms ease;
  content: "";
}

.service-row:hover {
  padding-right: 18px;
  padding-left: 18px;
}

.service-row:hover::before {
  transform: scaleY(1);
}

.service-number,
.service-note {
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.7vw, 2.6rem);
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.service-row p {
  max-width: 470px;
  margin: 0;
  line-height: 1.55;
}

.service-note {
  display: inline-flex;
  justify-self: start;
  padding: 7px 10px;
  border: 1.5px solid var(--ink);
  border-radius: 99px;
  background: var(--paper);
}

.meet-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: stretch;
  max-width: none;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--blue);
}

.meet-visual {
  position: relative;
  min-height: 680px;
}

.meet-photo {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius-card);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-1deg);
}

.meet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.meet-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 680px;
  max-width: none;
  padding: clamp(42px, 4.5vw, 72px);
  border: 3px solid var(--ink);
  border-radius: var(--radius-card);
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 10px 10px 0 var(--ink);
}

.meet-copy h2 {
  max-width: 680px;
  font-size: clamp(3.15rem, 4.25vw, 4.8rem);
  line-height: 0.86;
}

.meet-lead {
  max-width: 660px;
  margin: 24px 0 12px;
  font-family: var(--sans);
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1.5;
}

.meet-copy > p:not(.eyebrow, .meet-lead) {
  max-width: 670px;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.6;
}

.meet-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.meet-credentials li {
  padding: 9px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.7);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.meet-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.meet-text-link {
  border-bottom: 2px solid currentColor;
  font-family: var(--display);
  font-weight: 900;
  padding: 10px 0;
}

.care-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(24px, 2vw, 36px);
  background: var(--pink-accessible);
}

.care-photo-column {
  position: relative;
  min-height: 850px;
  padding: clamp(34px, 6vw, 86px) 0 clamp(34px, 6vw, 86px) clamp(20px, 6vw, 92px);
}

.care-photo-wrap {
  position: absolute;
  inset: clamp(34px, 6vw, 86px) -32px clamp(34px, 6vw, 86px) clamp(20px, 6vw, 92px);
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius-card);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-2deg);
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wash-day {
  position: absolute;
  right: -16px;
  bottom: 11%;
  z-index: 3;
  padding: 20px 24px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transform: rotate(8deg);
}

.care-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 130px) clamp(34px, 4vw, 68px);
  color: white;
}

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

.care-copy h2 {
  width: 100%;
  max-width: none;
  font-size: clamp(3.2rem, 5vw, 6rem);
  line-height: 0.82;
}

.care-copy h2 .accent-flat {
  display: block;
  margin-top: -0.3em;
  color: var(--yellow);
  line-height: 0.82;
}

.care-lead {
  max-width: 610px;
  margin: 40px 0 34px;
  font-size: 1.12rem;
  line-height: 1.65;
}

.care-points {
  margin: 0 0 42px;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.45);
  list-style: none;
}

.care-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.45);
}

.care-points li > span {
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 900;
}

.care-points strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.care-points p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  line-height: 1.5;
}

.button-cream {
  align-self: flex-start;
  border-color: white;
  color: var(--pink);
  background: var(--cream);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-cream:hover,
.button-cream:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

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

.gallery-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 62px;
}

.gallery-title-row > p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 250px;
  margin: 0 4px 12px 0;
  padding: 13px 17px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.gallery-title-row > p::before {
  flex: 0 0 auto;
  color: var(--pink);
  content: "✦";
  font-family: var(--sans);
  font-size: 1rem;
}

#gallery-title em {
  display: block;
  width: max-content;
  margin-top: -0.055em;
}

#faq-title .accent-full,
#book-title .accent-full {
  display: block;
  width: max-content;
  margin-top: -0.065em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 340px 360px;
  gap: 26px;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius-card);
  background: var(--pink-soft);
  box-shadow: 8px 8px 0 var(--ink);
}

.gallery-card-feature {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.gallery-card-maltese {
  grid-column: 5 / 9;
  grid-row: 1;
}

.gallery-card-yellow {
  grid-column: 9 / 13;
  grid-row: 1;
}

.gallery-card-duo {
  grid-column: 5 / 13;
  grid-row: 2;
}

.gallery-card-feature .cover-image {
  object-position: 50% 46%;
}

.gallery-card-maltese .cover-image {
  object-position: 50% 34%;
}

.gallery-card-yellow .cover-image {
  object-position: 50% 44%;
}

.gallery-card .cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}

.gallery-card:hover .cover-image {
  transform: scale(1.045);
}

.promise-band {
  padding: clamp(90px, 10vw, 150px) 20px;
  color: white;
  background:
    linear-gradient(rgba(28, 32, 61, 0.74), rgba(28, 32, 61, 0.8)),
    url("assets/images/groomed-fur-texture.webp") center / cover no-repeat;
  text-align: center;
}

.promise-band .eyebrow {
  justify-content: center;
}

.big-promise {
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(3rem, 6.6vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.84;
  text-transform: uppercase;
}

.big-promise em {
  color: var(--pink-soft);
}

.big-promise .accent-full {
  color: var(--pink);
  font-family: "Lobster", "Cooper Black", "Arial Rounded MT Bold", cursive;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.015em;
  text-transform: none;
  transform: translateY(-0.065em) rotate(-1.5deg);
}

.promise-stamps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 62px;
}

.promise-stamps span {
  padding: 10px 16px;
  border: 1px solid white;
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.promise-stamps span:nth-child(2) {
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(7deg);
}

.faqs {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 10vw, 140px);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 50px;
}

.faq-heading h2 {
  margin-bottom: 34px;
}

.faq-heading > p:last-child {
  max-width: 420px;
  line-height: 1.6;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 2px solid var(--ink);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 52px 1fr 30px;
  gap: 22px;
  align-items: center;
  min-height: 108px;
  padding: 18px 4px;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.12;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  color: var(--pink);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.faq-list summary i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1.2rem;
  font-style: normal;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease;
}

.faq-list details[open] summary i {
  color: white;
  background: var(--pink-accessible);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 640px;
  margin: -4px 44px 32px 78px;
  line-height: 1.65;
}

.book-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 850px;
  border-top: 3px solid var(--ink);
  background: var(--pink-soft);
}

.book-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-right: 3px solid var(--ink);
}

.book-image .cover-image {
  object-position: 56% center;
}

.book-sticker {
  position: absolute;
  right: 30px;
  bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: white;
  background: var(--pink-accessible);
  box-shadow: 7px 7px 0 var(--ink);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  transform: rotate(7deg);
}

.book-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 6vw, 100px) clamp(30px, 7vw, 110px);
}

.book-copy h2 {
  max-width: 650px;
  font-size: clamp(3.15rem, 4.9vw, 5.8rem);
}

.book-intro {
  max-width: 620px;
  margin: 24px 0 28px;
  font-size: 1.08rem;
  line-height: 1.6;
}

.facebook-feed {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(500px, 100%);
  height: 500px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius-card);
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
}

.facebook-feed-header {
  display: grid;
  grid-template-columns: 48px 1fr 34px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--paper);
}

.facebook-feed-header > img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.facebook-feed-header > span {
  display: flex;
  flex-direction: column;
}

.facebook-feed-header strong {
  font-family: var(--display);
}

.facebook-feed-header small {
  margin-top: 2px;
  color: rgba(37, 19, 28, 0.65);
  font-size: 0.72rem;
}

.facebook-feed-header b {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  place-items: center;
}

.facebook-feed-stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #f0f2f5;
}

.facebook-feed-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  min-height: 0;
  background: var(--ink);
}

.facebook-feed-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.facebook-feed-grid img:first-child {
  grid-row: 1 / 3;
  object-position: 50% 35%;
}

.facebook-feed-grid img:nth-child(2) {
  object-position: 50% 35%;
}

.facebook-feed-load {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(37, 19, 28, 0.36);
  text-align: center;
}

.facebook-feed-load small {
  max-width: 300px;
  padding: 6px 10px;
  border-radius: 999px;
  color: white;
  background: rgba(37, 19, 28, 0.84);
  font-size: 0.7rem;
  line-height: 1.35;
}

.facebook-feed-stage iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #f0f2f5;
}

.facebook-feed-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: var(--paper);
  font-size: 0.72rem;
  line-height: 1.25;
}

.facebook-feed-footer > span {
  color: rgba(37, 19, 28, 0.7);
}

.facebook-feed-footer a {
  font-size: 0.76rem;
  font-family: var(--display);
  font-weight: 900;
}

.facebook-message-button {
  margin-top: 30px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: white;
  background: var(--ink);
}

.footer-ribbon {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  background: var(--yellow);
}

.footer-ribbon-track {
  display: flex;
  align-items: center;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(0.82rem, 1.2vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  animation: ticker 24s linear infinite;
}

.footer-ribbon-group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  padding: 10px clamp(18px, 2.5vw, 36px);
  white-space: nowrap;
}

.footer-ribbon-track i {
  color: var(--pink);
  font-size: 1.25em;
  font-style: normal;
}

.footer-inner {
  max-width: 1540px;
  margin: 0 auto;
  padding: clamp(38px, 4vw, 58px) clamp(20px, 6vw, 92px) 18px;
}

.footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 210px);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.footer-signoff {
  position: relative;
  z-index: 1;
}

.footer-signoff h2 {
  max-width: 680px;
  color: white;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  line-height: 0.8;
}

.footer-signoff h2 em {
  display: block;
  width: max-content;
  margin-top: -0.015em;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.62em;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: none;
}

.footer-intro {
  max-width: 560px;
  margin: 18px 0 20px;
  color: rgba(255,255,255,0.75);
  font-size: 0.98rem;
  line-height: 1.5;
}

.footer-button {
  border-color: white;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--pink);
}

.footer-button:hover,
.footer-button:focus-visible {
  color: white;
  background: var(--pink-accessible);
  box-shadow: 6px 6px 0 var(--yellow);
}

.footer-logo-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 0;
  color: white;
  text-align: center;
  transform: rotate(1deg);
}

.footer-logo-card img {
  width: min(100%, 185px);
  height: auto;
}

.footer-logo-card p {
  margin: 10px 0 0;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

.footer-logo-card strong {
  color: var(--yellow);
}

.footer-directory {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto;
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
  margin-top: clamp(28px, 3vw, 40px);
  padding: 22px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.32);
  border-bottom: 1px solid rgba(255,255,255,0.32);
}

.footer-location {
  margin: 0;
  padding-top: 5px;
  color: var(--pink-soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: clamp(42px, 6vw, 78px);
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-links span {
  margin-bottom: 2px;
  color: var(--yellow);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links p {
  margin: 0;
  color: rgba(255,255,255,0.62);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding-top: 18px;
  color: rgba(255,255,255,0.65);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.footer-bottom > span:nth-child(2) {
  color: var(--pink-soft);
  text-align: center;
}

.footer-bottom a {
  justify-self: end;
}

.paw-cursor {
  position: fixed;
  top: -19px;
  left: -19px;
  z-index: 9999;
  width: 38px;
  height: 38px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 120ms ease;
  will-change: transform;
}

.paw-cursor[data-visible="true"] {
  opacity: 1;
}

.paw-cursor svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-4deg);
  transition: transform 180ms ease;
}

.paw-cursor .paw-piece {
  fill: var(--pink);
  stroke: var(--ink);
  stroke-linejoin: round;
  stroke-width: 1.2px;
  vector-effect: non-scaling-stroke;
  transition: fill 180ms ease, transform 180ms ease;
}

.paw-cursor .paw-pad {
  transform-box: fill-box;
  transform-origin: center;
}

.paw-cursor[data-active="true"] svg {
  transform: scale(1.06) rotate(12deg);
}

.paw-cursor[data-active="true"] .paw-piece {
  fill: var(--yellow);
}

.paw-cursor[data-active="true"] .paw-pad {
  transform: scale(1.12) rotate(6deg);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media (pointer: fine) {
  .paw-cursor-active,
  .paw-cursor-active * {
    cursor: none !important;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 150px 1fr auto;
  }

  .site-header nav {
    gap: 20px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-copy {
    min-height: 680px;
  }

  h1 {
    width: min(720px, 75vw);
  }

  .hero-bottom {
    width: min(610px, 62vw);
  }

  .service-row {
    grid-template-columns: 50px 1fr 1.1fr 38px;
  }

  .meet-section {
    gap: 42px;
  }

  .meet-visual {
    min-height: 620px;
  }

  .meet-copy {
    min-height: 620px;
  }

  .service-note {
    display: none;
  }

  .care-photo-column {
    min-height: 740px;
  }

  .gallery-grid {
    grid-template-rows: 300px 320px;
  }
}

@media (max-width: 820px) {
  .topline-side {
    display: none;
  }

  .topline {
    justify-content: center;
    text-align: center;
  }

  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    height: 92px;
    padding-top: 4px;
    padding-bottom: 4px;
    background: var(--cream);
    box-shadow: 0 5px 0 rgba(37, 19, 28, 0.08);
  }

  .has-js .site-header nav {
    display: none;
  }

  .has-js .site-header nav.is-open {
    position: absolute;
    top: calc(100% + 2px);
    right: 14px;
    left: 14px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    padding: 8px;
    border: 2px solid var(--ink);
    border-radius: var(--radius-card);
    background: var(--paper);
    box-shadow: 7px 7px 0 var(--ink);
    transform: none;
    white-space: normal;
  }

  .has-js .site-header nav.is-open a {
    padding: 15px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .has-js .site-header nav.is-open a:last-child {
    border-bottom: 0;
  }

  .has-js .site-header nav.is-open a::after {
    display: none;
  }

  .has-js .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .site-header .button-small {
    grid-column: 2;
    grid-row: 1;
  }

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

  .brand {
    width: 124px;
    height: 80px;
  }

  .brand img {
    width: 112px;
  }

  .hero {
    min-height: 740px;
  }

  .hero-copy {
    grid-template-rows: auto auto 1fr;
    gap: 26px;
    min-height: 740px;
    padding: 32px 20px 26px;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, rgba(191, 230, 244, 0.35) 0%, transparent 35%, rgba(191, 230, 244, 0.22) 66%, rgba(191, 230, 244, 0.92) 100%);
  }

  .hero-photo {
    position: absolute;
    top: 165px;
    right: -38px;
    width: 760px;
    max-width: none;
    height: auto;
    object-fit: initial;
  }

  h1 {
    align-self: start;
    width: 100%;
    margin-top: 0;
    font-size: clamp(3.4rem, 14vw, 6rem);
    line-height: 0.77;
  }

  .hero-fresh {
    font-size: 0.88em;
  }

  .hero-fluffy {
    font-size: 0.78em;
  }

  h1 .hero-happy {
    margin-left: 0;
    font-size: 0.62em;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    padding: 18px;
  }

  .section-heading,
  .meet-section,
  .care-section,
  .faqs,
  .book-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 32px;
  }

  .meet-section {
    gap: 58px;
  }

  .meet-visual {
    min-height: 600px;
  }

  .meet-photo {
    border-radius: var(--radius-card);
  }

  .meet-copy {
    min-height: 0;
    border-radius: var(--radius-card);
  }

  .service-row {
    grid-template-columns: 38px 1fr auto;
    gap: 16px;
    min-height: 122px;
  }

  .service-number {
    grid-column: 1;
    grid-row: 1;
  }

  .service-row h3 {
    grid-column: 2;
    grid-row: 1;
  }

  .service-note {
    grid-column: 3;
    grid-row: 1;
  }

  .service-row p {
    grid-column: 2 / 4;
    grid-row: 2;
    margin-top: -6px;
  }

  .care-photo-column {
    min-height: 620px;
  }

  .care-photo-wrap {
    inset: 36px 24px 36px 24px;
  }

  .wash-day {
    right: 22px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 330px 300px;
  }

  .gallery-card-feature {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .gallery-card-maltese {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-card-yellow {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-card-duo {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .faq-heading {
    position: static;
  }

  .book-image {
    min-height: 560px;
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .footer-hero {
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 32px;
  }

  .footer-logo-card {
    justify-self: end;
    width: 150px;
  }

  .footer-directory {
    grid-template-columns: auto 1fr;
    gap: 32px;
  }

  .footer-links {
    justify-self: end;
  }

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

  .footer-bottom > span:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: flex;
    gap: 10px;
    height: 76px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand {
    width: 84px;
    height: 66px;
  }

  .brand img {
    width: 82px;
  }

  .menu-toggle {
    justify-self: center;
    width: 44px;
    padding: 0;
  }

  .menu-toggle > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .site-header .button-small {
    flex: 0 0 auto;
    gap: 6px;
    margin-left: auto;
    min-height: 44px;
    padding: 9px 11px;
    font-size: 0.57rem;
    white-space: nowrap;
  }

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

  .hero {
    min-height: 700px;
  }

  .hero-copy {
    min-width: 0;
    gap: 20px;
    min-height: 700px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-kicker {
    max-width: 265px;
    padding: 8px 11px;
    font-size: 0.56rem;
  }

  h1 {
    min-width: 0;
    margin-top: 0;
    font-size: clamp(2.85rem, 13.5vw, 3.6rem);
  }

  h1 span,
  h1 em {
    max-width: 100%;
  }

  .hero-fresh {
    font-size: 0.86em;
  }

  .hero-fluffy {
    width: fit-content;
    max-width: 100%;
    padding-right: 0.12em;
    font-size: 0.7em;
  }

  .hero-fluffy > span {
    white-space: nowrap;
  }

  h1 .hero-happy {
    font-size: 0.62em;
  }

  .hero-bottom {
    min-width: 0;
    max-width: 100%;
  }

  .hero-bottom > p {
    font-size: 0.88rem;
  }

  .hero-bottom .button {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 0.66rem;
  }

  .section-shell {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .accent-full {
    --accent-inset: 3px;
    --accent-border-offset: 2px;
    font-size: clamp(3.55rem, 15vw, 4.2rem);
  }

  .accent-full::before {
    -webkit-text-stroke-width: 14px;
  }

  .service-row {
    grid-template-columns: 32px 1fr auto;
  }

  .meet-section {
    gap: 44px;
    padding-top: 74px;
    padding-bottom: 78px;
  }

  .meet-visual {
    min-height: 455px;
  }

  .meet-photo {
    border-radius: var(--radius-card);
    box-shadow: 7px 7px 0 var(--ink);
  }

  .meet-copy {
    padding: 40px 24px 42px;
    border-radius: var(--radius-card);
    box-shadow: 7px 7px 0 var(--ink);
  }

  .meet-copy h2 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .meet-lead {
    margin-top: 32px;
  }

  .meet-credentials {
    margin: 28px 0 32px;
  }

  .meet-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .care-photo-column {
    min-height: 480px;
  }

  .care-photo-wrap {
    border-radius: var(--radius-card);
  }

  .care-copy {
    padding: 78px 24px;
  }

  .care-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
  }

  .gallery-card {
    min-height: 390px;
  }

  .gallery-card-feature,
  .gallery-card-maltese,
  .gallery-card-yellow,
  .gallery-card-duo {
    grid-column: auto;
    grid-row: auto;
    border-radius: var(--radius-card);
  }

  .gallery-card-feature {
    min-height: 500px;
  }

  .gallery-card-duo {
    min-height: 280px;
  }

  .faq-list summary {
    grid-template-columns: 34px 1fr 28px;
    gap: 12px;
  }

  .faq-list details > p {
    margin: -4px 28px 28px 46px;
  }

  .book-image {
    min-height: 460px;
  }

  .book-sticker {
    top: auto;
    right: auto;
    bottom: 24px;
    left: 20px;
    width: 112px;
    height: 112px;
    font-size: 0.95rem;
  }

  .book-copy {
    padding: 78px 24px;
  }

  .footer-inner {
    padding: 28px 20px 16px;
  }

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

  .footer-signoff h2 {
    font-size: clamp(2.75rem, 12vw, 3.2rem);
    line-height: 0.88;
  }

  .footer-signoff h2 em {
    width: auto;
    max-width: 100%;
    margin-top: 0.08em;
    font-size: 0.62em;
    line-height: 1;
  }

  .footer-logo-card {
    display: none;
  }

  .footer-directory {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .footer-links a {
    min-height: 36px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-self: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .footer-bottom > span:nth-child(2) {
    display: none;
  }

  .footer-bottom a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    justify-self: start;
  }
}

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

.error-page {
  display: grid;
  min-height: 100svh;
  padding: clamp(18px, 3vw, 40px);
  place-items: center;
  background: var(--blue);
}

.error-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  width: min(1080px, 100%);
  min-height: min(680px, calc(100svh - 48px));
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius-card);
  background: var(--cream);
  box-shadow: 12px 12px 0 var(--ink);
}

.error-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(36px, 4vw, 52px);
}

.error-brand {
  display: block;
  width: 150px;
}

.error-brand img {
  width: 100%;
  height: auto;
}

.error-message {
  margin: auto 0;
}

.error-message .eyebrow {
  margin-bottom: 18px;
}

.error-message h1 {
  width: 100%;
  max-width: 560px;
  margin: 0;
  font-size: clamp(3.25rem, 4.4vw, 3.85rem);
  letter-spacing: 0.005em;
  line-height: 0.82;
}

.error-message > p:not(.eyebrow) {
  max-width: 410px;
  margin: 28px 0 32px;
  font-size: 1.05rem;
  line-height: 1.55;
}

.error-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-left: 3px solid var(--ink);
  background: #ddc249;
}

.error-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 720px) {
  .error-page {
    display: block;
    padding: 0;
  }

  .error-card {
    grid-template-columns: 1fr;
    min-height: 100svh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .error-copy {
    min-height: 56svh;
    padding: 30px 24px 44px;
  }

  .error-brand {
    width: 118px;
  }

  .error-message {
    margin: 48px 0 0;
  }

  .error-message h1 {
    font-size: clamp(3.1rem, 14vw, 4rem);
  }

  .error-message > p:not(.eyebrow) {
    margin-top: 22px;
  }

  .error-visual {
    min-height: 44svh;
    border-top: 3px solid var(--ink);
    border-left: 0;
  }
}
