:root {
  --red: #c90d1b;
  --red-dark: #9f0612;
  --ink: #171717;
  --muted: #6e6963;
  --cream: #f7f2ea;
  --paper: #fffdfa;
  --line: rgba(23, 23, 23, 0.13);
  --green: #1a8d5f;
  --blue: #222061;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(57, 38, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

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

.topline {
  min-height: 34px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8vw;
  color: #fff;
  background: var(--ink);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.topline p {
  margin: 0;
}

.topline a {
  color: #ffbdc4;
  font-weight: 800;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 78px;
  padding: 0 4.6vw;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(40, 25, 19, 0.08);
}

.brand {
  width: 184px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.desktop-nav a,
.text-link {
  position: relative;
}

.desktop-nav a::after,
.text-link::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transition: right 220ms ease;
}

.desktop-nav a:hover::after,
.text-link:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 10px;
}

.button--dark {
  color: #fff;
  background: var(--ink);
}

.button--red {
  color: #fff;
  background: var(--red);
  box-shadow: 0 13px 30px rgba(201, 13, 27, 0.22);
}

.button--red:hover {
  background: var(--red-dark);
  box-shadow: 0 16px 34px rgba(201, 13, 27, 0.3);
}

.button--light {
  color: var(--ink);
  background: #fff;
}

.button--large {
  min-height: 58px;
  padding-inline: 30px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(390px, 0.72fr);
  background: var(--cream);
}

.hero__visual {
  position: relative;
  min-height: calc(100vh - 112px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  isolation: isolate;
}

.hero__visual::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: -3;
  opacity: 0.22;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero__paws {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.32;
  background-image: url("./assets/paw.png");
  background-size: 112px 112px;
  background-position: 18px 20px;
  mask-image: linear-gradient(115deg, #000 0%, rgba(0, 0, 0, 0.6) 42%, transparent 76%);
}

.hero__orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
}

.hero__orb--one {
  width: 52vw;
  height: 52vw;
  right: -14vw;
  bottom: -24vw;
  background: #f3d3ce;
}

.hero__orb--two {
  width: 18vw;
  height: 18vw;
  right: 23%;
  top: 10%;
  border: 1px solid rgba(201, 13, 27, 0.2);
}

.hero__copy {
  position: relative;
  z-index: 3;
  width: min(56%, 640px);
  padding: clamp(70px, 10vh, 120px) 0 55px 5vw;
}

.eyebrow,
.booking__kicker {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.intro-section h2,
.clinic-services h2,
.products h2,
.space h2,
.testimonials h2,
.closing h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(54px, 6vw, 104px);
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  color: var(--red);
  font-style: normal;
}

.hero__lead {
  max-width: 510px;
  margin: 26px 0 30px;
  color: #56514c;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.65;
}

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

.hero__trust div {
  padding: 18px 16px 0 0;
}

.hero__trust div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.hero__trust strong,
.hero__trust span {
  display: block;
}

.hero__trust strong {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__trust span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.hero__pets {
  position: absolute;
  z-index: 2;
  right: -3%;
  bottom: 0;
  width: min(55%, 660px);
  max-height: 80%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 26px 28px rgba(63, 37, 29, 0.12));
}

.hero__stamp {
  position: absolute;
  z-index: 4;
  right: 4%;
  top: 13%;
  width: 94px;
  height: 94px;
  display: grid;
  place-content: center;
  place-items: center;
  border: 1px solid rgba(23, 23, 23, 0.25);
  border-radius: 50%;
  background: rgba(255, 253, 250, 0.75);
  backdrop-filter: blur(8px);
  font-family: "Archivo", sans-serif;
  font-size: 7px;
  letter-spacing: 0.15em;
}

.hero__stamp strong {
  color: var(--red);
  font-size: 22px;
  letter-spacing: -0.06em;
}

.booking {
  position: relative;
  z-index: 5;
  min-height: calc(100vh - 112px);
  padding: clamp(34px, 5vh, 62px) clamp(28px, 3vw, 52px);
  align-self: stretch;
  background: var(--paper);
}

.booking__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.booking__kicker {
  margin-bottom: 10px;
  font-size: 9px;
}

.booking h2 {
  max-width: 350px;
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(28px, 2.5vw, 42px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.booking__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(26, 141, 95, 0.1);
}

.booking__steps {
  margin: 24px 0 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #98928b;
  font-family: "Archivo", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking__steps span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.booking__steps span.is-active {
  color: var(--red);
}

.booking__steps b {
  font-size: 9px;
}

.booking__steps > i {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.booking__field {
  display: block;
}

.booking__field > span,
.modal form label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal input,
.modal select,
.modal textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: #fff;
  font-size: 13px;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.modal textarea {
  min-height: 78px;
  padding-top: 12px;
  resize: vertical;
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(201, 13, 27, 0.08);
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-chip {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5f5a55;
  background: #fff;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 700;
  transition: color 180ms ease, border 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 13, 27, 0.45);
  color: var(--red);
}

.service-chip.is-selected {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 18px rgba(201, 13, 27, 0.18);
}

.calendar {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.calendar__nav {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  text-align: center;
}

.calendar__nav strong {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.calendar__nav button {
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.calendar__nav button:hover:not(:disabled) {
  border-color: var(--line);
  background: var(--cream);
}

.calendar__nav button:disabled {
  opacity: 0.2;
  cursor: default;
}

.calendar__week,
.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar__week {
  margin: 12px 0 5px;
  color: #8d8780;
  font-size: 7px;
  font-weight: 800;
  text-align: center;
}

.calendar__days {
  row-gap: 2px;
}

.calendar__day {
  position: relative;
  aspect-ratio: 1;
  margin: 1px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.calendar__day:hover:not(:disabled) {
  background: #f6e9e7;
}

.calendar__day.is-selected {
  color: #fff;
  background: var(--red);
  box-shadow: 0 7px 16px rgba(201, 13, 27, 0.25);
}

.calendar__day.is-today:not(.is-selected)::after {
  position: absolute;
  content: "";
  bottom: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
}

.calendar__day:disabled {
  color: #d1ccc5;
  cursor: default;
  text-decoration: line-through;
}

.calendar__day.is-empty {
  pointer-events: none;
}

.time-picker {
  margin-top: 16px;
}

.time-picker__title {
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
}

.time-picker__title small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
}

.time-picker__slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.time-slot {
  min-height: 38px;
  border: 1px solid rgba(201, 13, 27, 0.45);
  border-radius: 8px;
  color: var(--red);
  background: transparent;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.time-slot:hover,
.time-slot.is-selected {
  color: #fff;
  background: var(--red);
}

.booking__submit {
  width: 100%;
  margin-top: 17px;
}

.booking__note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 8px;
  text-align: center;
}

.booking__note span {
  color: var(--green);
  font-weight: 900;
}

.service-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-ribbon article {
  min-height: 132px;
  padding: 24px 4vw;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.service-ribbon article + article {
  border-left: 1px solid var(--line);
}

.service-ribbon article > span {
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.service-ribbon strong,
.service-ribbon p {
  display: block;
}

.service-ribbon strong {
  font-family: "Archivo", sans-serif;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.service-ribbon p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.service-ribbon a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: 180ms ease;
}

.service-ribbon a:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.section-shell {
  width: min(1380px, 90vw);
  margin-inline: auto;
}

.intro-section {
  padding-block: 125px 100px;
  display: grid;
  grid-template-columns: 0.45fr 1.45fr 0.9fr;
  align-items: end;
  gap: 50px;
}

.section-number {
  align-self: start;
  color: var(--muted);
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.intro-section h2,
.clinic-services h2,
.space h2,
.closing h2 {
  font-size: clamp(44px, 5vw, 78px);
}

.intro-section__text {
  padding-bottom: 4px;
}

.intro-section__text p,
.clinic-services__heading > p:not(.eyebrow),
.space__heading > p,
.closing__copy > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.arrow-link {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.feature-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
}

.feature-card > img,
.space figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card:hover > img,
.space figure:hover img {
  transform: scale(1.035);
}

.feature-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13, 10, 9, 0.88) 100%);
}

.feature-card__content {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 38px;
}

.feature-card__content > span {
  font-family: "Archivo", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  max-width: 520px;
  margin: 13px 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(34px, 3.4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.feature-card p {
  max-width: 450px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

.feature-card a {
  margin-top: 14px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.clinic-services {
  padding-block: 130px;
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(0, 1.35fr);
  gap: clamp(48px, 5vw, 84px);
}

.clinic-services__heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.clinic-services__heading > p:not(.eyebrow) {
  max-width: 480px;
  margin-top: 28px;
}

.clinic-services__dog-stage {
  width: min(100%, 460px);
  aspect-ratio: 0.9;
  margin: 30px 0 0;
  overflow: hidden;
  pointer-events: none;
}

.clinic-services__dog-stage video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
}

.clinic-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.clinic-services__grid article {
  min-height: 230px;
  padding: 36px;
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-template-rows: auto 1fr;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}

.clinic-services__grid article:hover {
  background: var(--cream);
}

.clinic-services__grid img {
  grid-row: 1 / 3;
  width: 50px;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.25);
}

.clinic-services__grid span {
  align-self: start;
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 8px;
  font-weight: 800;
}

.clinic-services__grid strong {
  align-self: end;
  font-family: "Archivo", sans-serif;
  font-size: 21px;
}

.products {
  min-height: 670px;
  padding: 80px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  color: var(--ink);
  background: #f4efe7;
}

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

.eyebrow--light {
  color: #ffabb3;
}

.products h2 {
  max-width: 600px;
  font-size: clamp(52px, 5.2vw, 86px);
}

.products__copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px 0;
  color: var(--muted);
  line-height: 1.7;
}

.products__badges {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.products__badges span {
  padding: 8px 13px;
  border: 1px solid rgba(23, 23, 23, 0.15);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.54);
}

.products .button--light {
  color: #fff;
  background: var(--ink);
}

.products__visual {
  position: relative;
  align-self: stretch;
}

.products__visual > img {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: min(52vw, 780px);
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.18));
}

.products__circle {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 130px;
  height: 130px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(23, 23, 23, 0.18);
  border-radius: 50%;
  text-align: center;
}

.products__circle strong,
.products__circle span {
  display: block;
}

.products__circle strong {
  color: var(--red);
  font-family: "Archivo", sans-serif;
  font-size: 16px;
}

.products__circle span {
  margin-top: 3px;
  font-size: 9px;
  text-transform: uppercase;
  color: var(--muted);
}

.brands {
  padding-block: 80px 120px;
  text-align: center;
}

.brands > p {
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brands > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brands img {
  width: 100%;
  height: 115px;
  padding: 32px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition: 180ms ease;
}

.brands img + img {
  border-left: 1px solid var(--line);
}

.brands img:hover {
  filter: none;
  opacity: 1;
}

.space {
  padding-bottom: 125px;
}

.space__heading {
  margin-bottom: 55px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 8vw;
}

.space__heading > p {
  max-width: 480px;
}

.space__gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 300px;
  gap: 12px;
}

.space figure {
  margin: 0;
  overflow: hidden;
  border-radius: 13px;
  background: #eee;
}

.space__gallery--wide {
  grid-row: span 2;
}

.testimonials {
  padding-block: 120px;
  color: #fff;
  background: var(--ink);
}

.testimonials__heading {
  max-width: 800px;
  margin-bottom: 65px;
}

.testimonials h2 {
  font-size: clamp(52px, 6vw, 96px);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonials blockquote {
  min-height: 340px;
  margin: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonials blockquote > div {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 1;
}

.testimonials blockquote > p {
  flex: 1;
  margin: 18px 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.testimonials footer strong,
.testimonials footer span {
  display: block;
}

.testimonials footer strong {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
}

.testimonials footer span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.closing {
  position: relative;
  min-height: 580px;
  padding-block: 110px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  overflow: hidden;
}

.closing::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.22;
  background-image: url("./assets/paw.png");
  background-size: 130px 130px;
  mask-image: linear-gradient(90deg, transparent 8%, #000 50%, transparent 92%);
}

.closing__copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.closing__copy > p:last-child {
  max-width: 560px;
  margin-top: 24px;
}

.closing__cat {
  position: absolute;
  right: -28px;
  bottom: -35px;
  width: 340px;
  opacity: 0.18;
}

.closing > .button {
  position: relative;
  z-index: 2;
}

.footer {
  color: #fff;
  background: #101010;
}

.footer__main {
  padding-block: 72px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) auto;
  align-items: start;
  gap: 50px;
}

.footer__main > img {
  width: 190px;
}

.footer__main div span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__main div strong {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
}

.footer__main div p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.footer__main > a {
  padding-bottom: 7px;
  border-bottom: 1px solid #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer__bottom {
  padding-block: 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 220ms ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 10, 0.72);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  padding: 38px;
  overflow-y: auto;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(20px);
  transition: transform 260ms ease;
}

.modal.is-open .modal__dialog {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.modal h2 {
  max-width: 430px;
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: 36px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.booking-summary {
  margin: 24px 0;
  padding: 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  line-height: 1.65;
}

.booking-summary strong {
  color: #ff9ca5;
}

.modal form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal form label:nth-of-type(4),
.modal form .button,
.modal form > p {
  grid-column: 1 / -1;
}

.modal form > p {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 8px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .brand {
    width: 160px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .text-link {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 410px;
  }

  .hero__copy {
    width: 68%;
    padding-left: 4vw;
  }

  .hero__pets {
    width: 58%;
    opacity: 0.88;
  }

  .products {
    padding: 60px;
  }
}

@media (max-width: 920px) {
  .topline {
    justify-content: space-between;
    gap: 12px;
  }

  .topline p:first-child {
    display: none;
  }

  .site-header {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .brand {
    width: 150px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: 200ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 29;
    inset: 104px 0 0;
    padding: 8vh 7vw 45px;
    display: flex;
    flex-direction: column;
    color: #fff;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 220ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-menu__index {
    margin-bottom: 5vh;
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .mobile-menu > a:not(.button) {
    padding: 16px 0;
    display: flex;
    align-items: baseline;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: "Archivo", sans-serif;
    font-size: clamp(30px, 8vw, 46px);
    font-weight: 800;
    letter-spacing: -0.05em;
  }

  .mobile-menu > a span {
    color: var(--red);
    font-size: 9px;
    letter-spacing: 0;
  }

  .mobile-menu .button {
    margin-top: auto;
  }

  .mobile-menu p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    line-height: 1.8;
  }

  .hero {
    display: block;
  }

  .hero__visual {
    min-height: 730px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__copy {
    width: 80%;
    padding-top: 75px;
    padding-left: 6vw;
  }

  .hero h1 {
    font-size: clamp(58px, 11vw, 92px);
  }

  .hero__pets {
    right: 2%;
    width: 54%;
    max-height: 60%;
  }

  .booking {
    min-height: auto;
    padding: 55px 8vw;
  }

  .booking h2 {
    font-size: 42px;
  }

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

  .service-ribbon article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .intro-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-section__title {
    max-width: 680px;
  }

  .intro-section__text {
    max-width: 570px;
  }

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

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

  .clinic-services__heading {
    position: static;
  }

  .clinic-services__dog-stage {
    width: min(78vw, 430px);
    margin: 20px auto 0;
  }

  .products {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .products__visual {
    min-height: 430px;
  }

  .products__visual > img {
    right: -10%;
    width: 85%;
  }

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

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

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

  .testimonials blockquote {
    min-height: 280px;
  }

  .closing {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .closing__cat {
    right: -70px;
  }

  .closing > .button {
    justify-self: start;
  }

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

@media (max-width: 600px) {
  .topline {
    min-height: 32px;
    padding-inline: 16px;
    font-size: 8px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .mobile-menu {
    inset-top: 102px;
  }

  .hero__visual {
    min-height: 680px;
  }

  .hero__copy {
    width: 100%;
    padding: 55px 22px 0;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 8px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero__lead {
    max-width: 330px;
    margin-top: 20px;
    font-size: 12px;
  }

  .hero__trust {
    width: 100%;
  }

  .hero__trust div {
    padding-right: 8px;
  }

  .hero__trust div + div {
    padding-left: 8px;
  }

  .hero__trust strong {
    font-size: 10px;
  }

  .hero__trust span {
    display: none;
  }

  .hero__pets {
    right: -6%;
    width: 78%;
    max-height: 47%;
  }

  .hero__stamp {
    display: none;
  }

  .hero__orb--one {
    width: 100vw;
    height: 100vw;
    right: -48vw;
    bottom: -30vw;
  }

  .hero__paws {
    opacity: 0.22;
    background-size: 92px 92px;
    mask-image: linear-gradient(150deg, #000 0%, transparent 68%);
  }

  .booking {
    margin-top: -22px;
    padding: 34px 20px 30px;
    border-radius: 24px 24px 0 0;
  }

  .booking__head {
    display: block;
  }

  .booking h2 {
    font-size: 33px;
  }

  .booking__status {
    margin-top: 14px;
  }

  .booking__steps {
    margin-block: 20px;
  }

  .calendar__day {
    font-size: 11px;
  }

  .time-picker__slots {
    grid-template-columns: 1fr 1fr;
  }

  .service-ribbon article {
    min-height: 110px;
    padding-inline: 22px;
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .intro-section {
    padding-block: 88px 64px;
  }

  .intro-section h2,
  .clinic-services h2,
  .space h2,
  .closing h2 {
    font-size: 44px;
  }

  .feature-card {
    min-height: 520px;
  }

  .feature-card__content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .feature-card h3 {
    font-size: 38px;
  }

  .clinic-services {
    padding-block: 90px;
  }

  .clinic-services__dog-stage {
    width: min(92vw, 360px);
    margin-bottom: 0;
  }

  .clinic-services__grid article {
    min-height: 145px;
    padding: 18px;
    grid-template-columns: 42px 1fr;
  }

  .clinic-services__grid img {
    width: 30px;
  }

  .clinic-services__grid strong {
    font-size: 13px;
  }

  .products {
    width: 100%;
    padding: 62px 22px 0;
    border-radius: 0;
  }

  .products h2 {
    font-size: 52px;
  }

  .products__visual {
    min-height: 330px;
  }

  .products__visual > img {
    right: -25%;
    bottom: -28px;
    width: 120%;
  }

  .products__circle {
    width: 100px;
    height: 100px;
  }

  .brands {
    padding-block: 60px 85px;
  }

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

  .brands img {
    height: 100px;
    border-bottom: 1px solid var(--line);
  }

  .space {
    padding-bottom: 85px;
  }

  .space__gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .space__gallery--wide {
    grid-row: span 1;
  }

  .testimonials {
    padding-block: 85px;
  }

  .testimonials h2 {
    font-size: 50px;
  }

  .closing {
    min-height: 650px;
    padding-block: 85px;
  }

  .closing__cat {
    right: -96px;
    bottom: -20px;
    width: 320px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer__bottom {
    gap: 16px;
    flex-direction: column;
  }

  .modal {
    place-items: end center;
    padding: 0;
  }

  .modal__dialog {
    width: 100%;
    max-height: 90vh;
    padding: 32px 20px 24px;
    border-radius: 24px 24px 0 0;
  }

  .modal h2 {
    font-size: 32px;
  }

  .modal form {
    grid-template-columns: 1fr;
  }

  .modal form label,
  .modal form label:nth-of-type(4),
  .modal form .button,
  .modal form > p {
    grid-column: 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
