/* Tiny Tigers Oasis — responsive, accessible, framework-free multipage site */

:root {
  --forest: #294b35;
  --forest-deep: #1f3b2a;
  --forest-soft: #4f6842;
  --sage: #8ea274;
  --sage-pale: #dde4c8;
  --coral: #ef7154;
  --coral-deep: #d85f45;
  --gold: #efb43a;
  --ochre: #c88a29;
  --oasis-ivory: #fff9ec;
  --oasis-sand: #f8ebd3;
  --oasis-sage-light: #eef1de;
  --oasis-green: #244f3a;
  --oasis-coral: #ef7358;
  --oasis-gold: #d69a36;
  --cream: #fbf5e8;
  --paper: #fffaf0;
  --paper-strong: #fffdf7;
  --ink: #252a25;
  --muted: #70695e;
  --line: rgba(200, 138, 41, 0.38);
  --shadow-soft: 0 18px 55px rgba(82, 60, 26, 0.12);
  --shadow-card: 0 12px 28px rgba(84, 66, 36, 0.09);
  --radius-card: 24px;
  --radius-pill: 999px;
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Nunito", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --content: min(1320px, calc(100% - 120px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #e9e5dc;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  color: var(--paper-strong);
  background: var(--coral);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: white;
  background: var(--forest-deep);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-canvas {
  position: relative;
  min-width: 0;
  overflow: clip;
  background: var(--cream);
}

.ambient-grain {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 17% 23%, rgba(95, 72, 31, 0.2) 0 0.6px, transparent 0.8px),
    radial-gradient(circle at 71% 64%, rgba(95, 72, 31, 0.14) 0 0.5px, transparent 0.75px);
  background-size: 9px 9px, 13px 13px;
}

.page-body--home .ambient-grain {
  opacity: 0.055;
}

.page-body--home .site-header-shell {
  position: relative;
  z-index: 120;
  background: rgba(255, 253, 247, 0.76);
  border-bottom: 0;
  box-shadow: none;
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  backdrop-filter: blur(18px) saturate(115%);
}

/* Header */

.site-header-shell {
  background: var(--paper-strong);
  border-bottom: 0;
}

.site-header {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--content);
  min-height: 96px;
  margin: 0 auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--ochre);
}

.brand__copy {
  display: grid;
  min-width: 0;
  line-height: 1.12;
}

.brand__copy strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand__copy > span {
  margin-top: 3px;
  color: #796956;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.2vw, 54px);
}

.nav-link {
  position: relative;
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  color: #253126;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 14%;
  bottom: 3px;
  left: 14%;
  height: 3px;
  content: "";
  background: var(--gold);
  border-radius: 99px;
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--forest);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  place-content: center;
  gap: 5px;
  box-shadow: var(--shadow-card);
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero-section {
  position: relative;
  z-index: 1;
  min-height: clamp(760px, calc(100svh - 96px), 930px);
  padding: 54px 0 112px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 22% 33%, rgba(255, 255, 255, 0.68) 0%, rgba(255, 253, 248, 0.32) 32%, transparent 60%),
    radial-gradient(100% 54% at 50% 0%, rgba(255, 209, 117, 0.24) 0%, rgba(255, 226, 162, 0.12) 42%, transparent 72%),
    radial-gradient(48% 44% at 5% 5%, rgba(247, 166, 137, 0.18) 0%, rgba(252, 205, 169, 0.09) 48%, transparent 80%),
    radial-gradient(ellipse at 80% 29%, rgba(248, 196, 91, 0.26) 0%, rgba(255, 226, 157, 0.12) 40%, transparent 64%),
    radial-gradient(ellipse at 52% 82%, rgba(117, 148, 95, 0.15) 0%, rgba(159, 184, 121, 0.08) 40%, rgba(211, 221, 176, 0.04) 55%, transparent 72%),
    radial-gradient(82% 36% at 50% 110%, rgba(117, 148, 95, 0.38) 0%, rgba(159, 184, 121, 0.2) 42%, rgba(211, 221, 176, 0.08) 66%, transparent 86%),
    linear-gradient(180deg, #fff9ed 0%, #fff5e2 17%, #fffdf9 44%, #f4f1d4 64%, #dde7b9 100%);
}

.hero-section::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(36, 79, 58, 0.75) 0 0.55px, transparent 0.7px),
    radial-gradient(circle at 72% 58%, rgba(89, 64, 26, 0.7) 0 0.5px, transparent 0.65px);
  background-size: 10px 10px, 14px 14px;
  mix-blend-mode: multiply;
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(0, 0.98fr);
  align-items: center;
  width: var(--content);
  margin: 0 auto;
  gap: clamp(60px, 5vw, 86px);
}

.hero-copy {
  position: relative;
  z-index: 8;
  min-width: 0;
  max-width: 670px;
  padding-inline: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  color: var(--ochre);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 18px;
  margin-right: 8px;
  fill: currentColor;
}

.hero-copy h1 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(62px, 5.2vw, 90px);
  font-weight: 400;
  letter-spacing: -0.042em;
  line-height: 0.92;
}

.hero-copy h1 > span {
  display: block;
}

.hero-copy h1 > span + span {
  margin-top: 5px;
  white-space: nowrap;
}

.hero-title__oasis {
  display: inline;
}

.hero-copy h1 em {
  color: var(--coral);
  font-style: normal;
}

.hero-intro {
  display: grid;
  max-width: 630px;
  padding-inline: 0;
  margin-top: clamp(27px, 2.1vw, 32px);
  gap: 10px;
}

.hero-intro p {
  padding: 0;
  margin: 0;
  color: #353934;
  font-size: clamp(15px, 1.02vw, 17px);
  font-weight: 500;
  line-height: 1.48;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  padding-inline: 0;
  margin-top: 24px;
  gap: 13px;
}

.hero-actions .button {
  min-height: 57px;
  padding: 12px 25px;
  font-size: 16px;
  transition-duration: 260ms;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 17px 10px 20px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: box-shadow 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button > svg {
  width: 21px;
  margin-right: 10px;
}

.button__arrow {
  display: grid;
  width: 24px;
  height: 24px;
  margin-left: 13px;
  font-size: 16px;
  border-radius: 50%;
  place-items: center;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover .button__arrow {
  transform: translateX(3px);
}

.button--primary {
  position: relative;
  color: white;
  background: var(--forest);
  box-shadow: 0 9px 20px rgba(41, 75, 53, 0.22);
}

.button--primary .button__arrow {
  color: var(--forest);
  background: white;
}

.button--primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 13px 25px rgba(41, 75, 53, 0.27);
}

.hero-actions .button:focus-visible {
  outline-color: var(--oasis-gold);
  box-shadow: 0 0 0 5px rgba(214, 154, 54, 0.18), 0 13px 25px rgba(41, 75, 53, 0.2);
  transform: translateY(-2px);
}

.button--secondary {
  color: var(--ink);
  background: rgba(255, 253, 247, 0.82);
  border-color: var(--ochre);
  box-shadow: 0 8px 18px rgba(114, 82, 35, 0.08);
}

.button--secondary > svg,
.button--secondary .button__arrow {
  color: var(--ochre);
}

.button--secondary:hover {
  color: var(--forest);
  background: white;
}

.hero-visual {
  position: relative;
  min-width: 0;
  width: min(660px, 100%);
  aspect-ratio: 1.5;
  justify-self: end;
}

.hero-photo-halo {
  position: absolute;
  z-index: 0;
  inset: -7% -5% -8% -6%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 54% 47%, rgba(248, 201, 111, 0.34) 0%, rgba(255, 225, 160, 0.24) 42%, rgba(255, 242, 213, 0.14) 60%, transparent 76%);
  border-radius: 43% 57% 53% 47% / 45% 41% 59% 55%;
  transform-origin: 55% 48%;
  animation: oasis-halo-breathe 7.8s ease-in-out infinite;
}

.photo-blob {
  position: absolute;
  z-index: 3;
  top: 3%;
  right: 0;
  bottom: 2%;
  left: 1.5%;
  overflow: hidden;
  background: #e6d3a6;
  border: 2px solid rgba(255, 251, 239, 0.94);
  border-radius: 40% 60% 54% 46% / 43% 39% 61% 57%;
  box-shadow: 0 22px 48px rgba(73, 55, 30, 0.12), 0 4px 12px rgba(73, 55, 30, 0.055);
  transform: rotate(0.2deg);
}

.photo-blob picture,
.photo-blob img {
  width: 100%;
  height: 100%;
}

.photo-blob img {
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.015);
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  border: 1.25px solid rgba(214, 154, 54, 0.72);
  border-radius: 42% 58% 52% 48% / 41% 42% 58% 59%;
}

.hero-orbit--one {
  inset: 1.2% -0.6% 0.2% -0.2%;
  opacity: 0.72;
  transform: rotate(-0.8deg);
}

.trust-seal {
  position: absolute;
  z-index: 6;
  top: -1.5%;
  left: 6.5%;
  display: grid;
  width: 108px;
  height: 108px;
  padding: 18px 11px;
  color: #512d25;
  text-align: center;
  background: #f3ad98;
  border: 2px solid rgba(255, 249, 236, 0.96);
  border-radius: 47% 53% 45% 55% / 52% 43% 57% 48%;
  box-shadow: 0 8px 20px rgba(131, 63, 43, 0.11), inset 0 0 0 1px rgba(255, 255, 255, 0.52);
  place-content: center;
  transform: rotate(-3deg);
}

.trust-seal::after {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px dashed rgba(81, 45, 37, 0.38);
  border-radius: inherit;
}

.trust-seal span {
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.12;
}

.trust-seal > svg:not(.trust-seal__sparkle) {
  width: 19px;
  margin: 4px auto 0;
}

.trust-seal .trust-seal__sparkle {
  position: absolute;
  top: 0;
  right: -13px;
  width: 15px;
  color: var(--oasis-gold);
  fill: currentColor;
  --sparkle-delay: -1.7s;
}

.feature-row {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 200px));
  margin: clamp(72px, 6vw, 94px) auto 0;
  gap: 26px;
}

.feature-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 30px;
  align-items: center;
  min-width: 0;
  min-height: 132px;
  padding: 19px 20px;
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(112, 125, 88, 0.2);
  border-radius: 26px 22px 28px 23px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(76, 63, 39, 0.07);
  gap: 16px;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.feature-card:nth-child(1) {
  --feature-accent: var(--forest);
}

.feature-card:nth-child(2) {
  --feature-accent: var(--ochre);
}

.feature-card:nth-child(3) {
  --feature-accent: var(--coral-deep);
}

.feature-card:hover,
.feature-card:focus-visible {
  border-color: rgba(214, 154, 54, 0.56);
  box-shadow: 0 18px 38px rgba(76, 63, 39, 0.11);
  transform: translateY(-5px);
}

.feature-card__icon {
  display: grid;
  width: 80px;
  height: 80px;
  color: var(--forest);
  background: var(--sage-pale);
  border-radius: 43% 57% 50% 50% / 56% 44% 56% 44%;
  place-items: center;
  transition: background-color 240ms ease, transform 240ms ease;
}

.feature-card__icon svg {
  width: 54px;
}

.feature-card__icon--gold {
  color: var(--ochre);
  background: #ffe3a4;
}

.feature-card__icon--soft {
  color: var(--coral-deep);
  background: #ffd5c9;
}

.feature-card:hover .feature-card__icon,
.feature-card:focus-visible .feature-card__icon {
  background-color: #e8edd4;
  transform: scale(1.025);
}

.feature-card:hover .feature-card__icon--gold,
.feature-card:focus-visible .feature-card__icon--gold {
  background-color: #ffdfa0;
}

.feature-card:hover .feature-card__icon--soft,
.feature-card:focus-visible .feature-card__icon--soft {
  background-color: #ffcbbd;
}

.feature-card__copy {
  display: grid;
  min-width: 0;
}

.feature-card__copy strong {
  color: #1d2b20;
  font-family: var(--serif);
  font-size: clamp(20px, 1.35vw, 24px);
  font-weight: 400;
  line-height: 1.15;
}

.feature-card__copy span {
  margin-top: 7px;
  color: #555850;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.feature-card__arrow {
  display: grid;
  width: 27px;
  height: 27px;
  color: white;
  background: var(--feature-accent, var(--gold));
  border-radius: 50%;
  place-items: center;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.feature-card:hover .feature-card__arrow,
.feature-card:focus-visible .feature-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Hero decorations */

.oasis-botanicals {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.oasis-foliage-band {
  position: absolute;
  right: -2%;
  bottom: -20px;
  left: -2%;
  height: clamp(265px, 21vw, 370px);
  pointer-events: none;
}

.oasis-foliage-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.oasis-foliage-sprig {
  position: absolute;
  bottom: 0;
  height: auto;
  overflow: visible;
}

.oasis-foliage-sprig--edge-left {
  z-index: 3;
  bottom: -14px;
  left: -2%;
  width: clamp(260px, 18vw, 330px);
}

.oasis-foliage-sprig--broad-left {
  z-index: 1;
  bottom: -18px;
  left: 7%;
  width: clamp(195px, 13vw, 245px);
}

.oasis-foliage-sprig--left-mid {
  z-index: 4;
  bottom: -12px;
  left: 19%;
  width: clamp(145px, 10vw, 180px);
}

.oasis-foliage-sprig--middle-left {
  z-index: 2;
  bottom: -18px;
  left: 29%;
  width: clamp(180px, 12vw, 225px);
}

.oasis-foliage-sprig--low-left {
  z-index: 1;
  bottom: -20px;
  left: 37%;
  width: clamp(145px, 10vw, 185px);
}

.oasis-foliage-sprig--tiny-left {
  z-index: 5;
  bottom: -26px;
  left: 24.5%;
  width: clamp(82px, 6vw, 112px);
}

.oasis-foliage-sprig--center {
  z-index: 3;
  bottom: -15px;
  left: 44%;
  width: clamp(160px, 10.5vw, 195px);
}

.oasis-foliage-sprig--middle-right {
  z-index: 2;
  right: 29%;
  bottom: -17px;
  width: clamp(175px, 11.5vw, 215px);
}

.oasis-foliage-sprig--low-right {
  z-index: 1;
  right: 36%;
  bottom: -20px;
  width: clamp(145px, 10vw, 185px);
}

.oasis-foliage-sprig--tiny-right {
  z-index: 5;
  right: 23.5%;
  bottom: -26px;
  width: clamp(82px, 6vw, 112px);
}

.oasis-foliage-sprig--right-mid {
  z-index: 4;
  right: 19%;
  bottom: -11px;
  width: clamp(145px, 10vw, 180px);
}

.oasis-foliage-sprig--broad-right {
  z-index: 1;
  right: 7%;
  bottom: -18px;
  width: clamp(195px, 13vw, 245px);
}

.oasis-foliage-sprig--edge-right {
  z-index: 3;
  right: -2%;
  bottom: -14px;
  width: clamp(265px, 18.5vw, 340px);
}

.oasis-foliage__sway {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: oasis-foliage-sway 10.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) -1.6s infinite;
  will-change: transform;
}

.oasis-foliage__sway--one {
  animation-delay: -1.6s;
}

.oasis-foliage__sway--two {
  animation-duration: 12.6s;
  animation-delay: -4.8s;
}

.oasis-foliage__sway--three {
  animation-duration: 9.7s;
  animation-delay: -6.1s;
}

.oasis-foliage__sway--four {
  animation-duration: 12.1s;
  animation-delay: -2.9s;
}

.oasis-foliage__sway--five {
  animation-duration: 9.4s;
  animation-delay: -7.4s;
}

.oasis-foliage__sway--six {
  animation-duration: 10.7s;
  animation-delay: -5.2s;
}

.oasis-foliage__sway--seven {
  animation-duration: 12.9s;
  animation-delay: -8.4s;
}

.oasis-foliage__sway--eight {
  animation-duration: 10.1s;
  animation-delay: -6.7s;
}

.oasis-foliage__sway--nine {
  animation-duration: 11.6s;
  animation-delay: -3.3s;
}

.oasis-foliage__sway--ten {
  animation-duration: 9.9s;
  animation-delay: -8.1s;
}

.oasis-foliage__sway--eleven {
  animation-duration: 11.2s;
  animation-delay: -4.2s;
}

.oasis-foliage__sway--twelve {
  animation-duration: 9.6s;
  animation-delay: -6.4s;
}

.oasis-foliage__sway--thirteen {
  animation-duration: 12.3s;
  animation-delay: -2.1s;
}

.oasis-foliage__sway--fourteen {
  animation-duration: 10.3s;
  animation-delay: -7.1s;
}

.oasis-foliage__sway--fifteen {
  animation-duration: 11.9s;
  animation-delay: -3.8s;
}

.oasis-foliage__stem {
  fill: none;
  stroke: rgba(54, 104, 65, 0.4);
  stroke-linecap: round;
  stroke-width: 2.1;
}

.oasis-foliage__stem--fine {
  stroke: rgba(75, 119, 77, 0.34);
  stroke-width: 1.5;
}

.oasis-foliage__leaf {
  fill: currentColor;
  stroke: rgba(71, 114, 72, 0.1);
  stroke-width: 0.6;
}

.oasis-foliage__leaf--mist {
  color: rgba(180, 207, 147, 0.48);
}

.oasis-foliage__leaf--pale {
  color: rgba(206, 221, 168, 0.56);
}

.oasis-foliage__leaf--sage {
  color: rgba(103, 153, 91, 0.47);
}

.oasis-foliage__leaf--deep {
  color: rgba(54, 112, 68, 0.4);
}

.oasis-foliage__leaf--round {
  color: rgba(83, 139, 82, 0.43);
}

.oasis-sparkle-field {
  position: absolute;
  inset: 0;
}

.oasis-sparkle {
  position: absolute;
  z-index: 7;
  width: 20px;
  color: var(--oasis-gold);
  fill: currentColor;
  opacity: 0.38;
  filter: drop-shadow(0 0 6px rgba(214, 154, 54, 0.22));
  pointer-events: none;
  animation: oasis-sparkle var(--sparkle-duration, 5.2s) ease-in-out infinite;
  animation-delay: var(--sparkle-delay, 0s);
  transform-origin: center;
}

.oasis-field-sparkle--one {
  top: 5%;
  left: 2%;
  width: 21px;
  --sparkle-duration: 5.2s;
  --sparkle-delay: -0.1s;
}

.oasis-field-sparkle--two {
  top: 5%;
  right: 2%;
  width: 27px;
  --sparkle-duration: 5.2s;
  --sparkle-delay: -1.4s;
}

.oasis-field-sparkle--three {
  top: 48%;
  left: 1.5%;
  width: 18px;
  color: var(--oasis-coral);
  filter: drop-shadow(0 0 6px rgba(239, 113, 84, 0.2));
  --sparkle-duration: 5.2s;
  --sparkle-delay: -2.7s;
}

.oasis-field-sparkle--four {
  top: 48%;
  right: 1.5%;
  bottom: auto;
  width: 23px;
  --sparkle-duration: 5.2s;
  --sparkle-delay: -4s;
}

.oasis-field-sparkle--five {
  top: 4%;
  left: 24%;
  width: 17px;
  --sparkle-duration: 7.1s;
  --sparkle-delay: -2.2s;
}

.oasis-field-sparkle--six {
  top: 4%;
  left: 48%;
  width: 18px;
  --sparkle-duration: 8.4s;
  --sparkle-delay: -5.6s;
}

.oasis-field-sparkle--seven {
  top: 4%;
  left: 72%;
  width: 19px;
  --sparkle-duration: 6.7s;
  --sparkle-delay: -3.1s;
}

.oasis-field-sparkle--eight {
  top: 72%;
  left: 1.5%;
  width: 16px;
  --sparkle-duration: 7.8s;
  --sparkle-delay: -4.6s;
}

.oasis-field-sparkle--nine {
  top: 72%;
  right: 1.5%;
  width: 20px;
  color: var(--oasis-coral);
  filter: drop-shadow(0 0 6px rgba(239, 113, 84, 0.2));
  --sparkle-duration: 6.4s;
  --sparkle-delay: -2.5s;
}

.oasis-field-sparkle--ten {
  top: 4%;
  right: 13%;
  width: 15px;
  --sparkle-duration: 8.1s;
  --sparkle-delay: -6.2s;
}

.oasis-heart-field {
  position: absolute;
  inset: 0;
}

.oasis-heart {
  position: absolute;
  z-index: 6;
  width: 26px;
  color: var(--oasis-coral);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  opacity: 0.42;
  filter: drop-shadow(0 3px 5px rgba(239, 113, 84, 0.15));
  pointer-events: none;
  animation: oasis-heart-float var(--heart-duration, 7.4s) ease-in-out infinite;
  animation-delay: var(--heart-delay, 0s);
}

.oasis-heart--one {
  top: 22%;
  left: 1.5%;
  width: 28px;
  --heart-duration: 6.8s;
  --heart-delay: -1.7s;
}

.oasis-heart--two {
  top: 22%;
  right: 1.5%;
  width: 25px;
  --heart-duration: 8.2s;
  --heart-delay: -5.3s;
}

.oasis-heart--three {
  top: 4%;
  left: 13%;
  width: 21px;
  --heart-duration: 8.8s;
  --heart-delay: -3.8s;
}

.oasis-heart--four {
  top: 4%;
  right: 24%;
  width: 23px;
  --heart-duration: 7.7s;
  --heart-delay: -6.1s;
}

.oasis-heart--five {
  top: 60%;
  left: 1.5%;
  width: 20px;
  --heart-duration: 9.1s;
  --heart-delay: -1.9s;
}

.oasis-heart--six {
  top: 60%;
  right: 1.5%;
  width: 24px;
  --heart-duration: 7.3s;
  --heart-delay: -4.2s;
}

.oasis-heart--seven {
  top: 84%;
  left: 1.5%;
  width: 22px;
  --heart-duration: 8.6s;
  --heart-delay: -6.7s;
}

.oasis-heart--eight {
  top: 84%;
  right: 1.5%;
  width: 19px;
  --heart-duration: 9.4s;
  --heart-delay: -3.3s;
}

.oasis-cat-play {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.oasis-cat-trail {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  opacity: 1;
}

.oasis-cat-trail.is-walking {
  animation: none;
}

.oasis-cat-step {
  position: absolute;
  width: 24px;
  color: #c98727;
  fill: currentColor;
  opacity: 0;
  pointer-events: none;
  transform: rotate(var(--step-rotation)) scale(0.78);
  transform-origin: center;
  filter: drop-shadow(0 3px 5px rgba(184, 126, 38, 0.12));
}

.oasis-cat-step[data-paw-active="false"] {
  display: none;
}

.oasis-cat-trail.is-walking .oasis-cat-step[data-paw-active="true"] {
  animation: oasis-cat-step-land 2.8s cubic-bezier(0.2, 0.72, 0.25, 1) both;
  animation-delay: var(--step-delay);
}

.oasis-cat-step--one {
  top: 10px;
  left: 0;
  --step-delay: 0s;
  --step-rotation: 86deg;
}

.oasis-cat-step--two {
  top: 42px;
  left: 29px;
  --step-delay: 0.48s;
  --step-rotation: 94deg;
}

.oasis-cat-step--three {
  top: 8px;
  left: 61px;
  --step-delay: 0.96s;
  --step-rotation: 87deg;
}

.oasis-cat-step--four {
  top: 40px;
  left: 91px;
  --step-delay: 1.44s;
  --step-rotation: 93deg;
}

.oasis-cat-step--five {
  top: 6px;
  left: 123px;
  --step-delay: 1.92s;
  --step-rotation: 86deg;
}

.oasis-cat-step--six {
  top: 38px;
  left: 153px;
  --step-delay: 2.4s;
  --step-rotation: 94deg;
}

.oasis-cat-step--seven {
  top: 4px;
  left: 185px;
  --step-delay: 2.88s;
  --step-rotation: 87deg;
}

.oasis-cat-step--eight {
  top: 36px;
  left: 216px;
  --step-delay: 3.36s;
  --step-rotation: 93deg;
}

@keyframes oasis-halo-breathe {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.055);
  }
}

@keyframes oasis-foliage-sway {
  0%,
  100% {
    transform: translate3d(-2px, 0, 0) rotate(-2deg);
  }

  34% {
    transform: translate3d(5px, -1px, 0) rotate(2.6deg);
  }

  57% {
    transform: translate3d(2px, 0, 0) rotate(0.7deg);
  }

  79% {
    transform: translate3d(-4px, 1px, 0) rotate(-2.3deg);
  }
}

@keyframes oasis-sparkle {
  0%,
  60%,
  100% {
    opacity: 0.38;
    transform: scale(0.8) rotate(0deg);
  }

  68% {
    opacity: 0.62;
    transform: scale(1.02) rotate(10deg);
  }

  76% {
    opacity: 0.98;
    transform: scale(1.34) rotate(18deg);
  }

  84% {
    opacity: 0.64;
    transform: scale(1.05) rotate(26deg);
  }

  90% {
    opacity: 0.38;
    transform: scale(0.82) rotate(30deg);
  }
}

@keyframes oasis-heart-float {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(-1px, 2px, 0) rotate(-7deg) scale(0.94);
  }

  50% {
    opacity: 0.82;
    transform: translate3d(2px, -3px, 0) rotate(4deg) scale(1.08);
  }
}

@keyframes oasis-cat-step-land {
  0%,
  4% {
    opacity: 0;
    transform: rotate(var(--step-rotation)) scale(0.76);
  }

  16% {
    opacity: 0.64;
    transform: rotate(var(--step-rotation)) scale(1.05);
  }

  28%,
  64% {
    opacity: 0.52;
    transform: rotate(var(--step-rotation)) scale(1);
  }

  100% {
    opacity: 0;
    transform: rotate(var(--step-rotation)) scale(0.94);
  }
}

.oasis-wave {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  pointer-events: none;
  overflow: hidden;
}

.oasis-wave svg {
  width: 100%;
  height: 100%;
}

.oasis-wave__back {
  fill: rgba(151, 174, 119, 0.2);
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: oasis-wave-drift 9.2s ease-in-out -2.4s infinite alternate;
}

.oasis-wave__front {
  fill: rgba(101, 133, 82, 0.26);
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: oasis-wave-drift 6.8s ease-in-out -4.1s infinite alternate-reverse;
}

@keyframes oasis-wave-drift {
  from {
    opacity: 0.72;
    transform: translate3d(-12px, 2px, 0) scaleX(1.03);
  }

  to {
    opacity: 1;
    transform: translate3d(12px, -2px, 0) scaleX(1.06);
  }
}

/* Reusable sections */

.section {
  position: relative;
  padding: clamp(86px, 9vw, 140px) 0;
}

.section-inner {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
}

.section h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.section h2 em {
  color: var(--coral);
  font-style: normal;
}

.section-lead {
  color: var(--forest-deep);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}

.section-copy > p:not(.section-kicker),
.foster-copy > p:not(.section-kicker) {
  max-width: 620px;
  color: #51564f;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding: 0 0 5px;
  color: var(--forest);
  background: none;
  border: 0;
  border-bottom: 2px solid var(--gold);
  cursor: pointer;
  font-weight: 800;
  gap: 12px;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* About */

.section--about {
  background:
    radial-gradient(circle at 10% 20%, rgba(239, 180, 58, 0.11), transparent 24%),
    var(--paper-strong);
}

.section--about::before {
  position: absolute;
  top: 52px;
  right: 4%;
  color: rgba(200, 138, 41, 0.35);
  content: "✦";
  font-size: 58px;
  transform: rotate(18deg);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.93fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 135px);
}

.about-collage {
  position: relative;
  min-height: 610px;
}

.about-photo {
  position: absolute;
  overflow: hidden;
  background: var(--sage-pale);
  box-shadow: var(--shadow-soft);
}

.about-photo picture,
.about-photo img {
  width: 100%;
  height: 100%;
}

.about-photo img {
  object-fit: cover;
}

.about-photo--main {
  inset: 0 17% 5% 0;
  border: 9px solid var(--cream);
  border-radius: 48% 52% 36% 64% / 31% 43% 57% 69%;
  transform: rotate(-2deg);
}

.about-photo--main img {
  object-position: 51% 40%;
}

.about-photo--small {
  right: -2%;
  bottom: 1%;
  width: 43%;
  height: 45%;
  border: 7px solid var(--paper-strong);
  border-radius: 45% 55% 53% 47% / 40% 43% 57% 60%;
  transform: rotate(5deg);
}

.about-photo--small img {
  object-position: center;
}

.about-collage::before,
.about-collage::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 2px solid var(--gold);
  border-radius: 49% 51% 40% 60% / 35% 42% 58% 65%;
}

.about-collage::before {
  inset: -14px 14% 1% -14px;
  transform: rotate(2deg);
}

.about-collage::after {
  inset: 10px 11% -10px 5px;
  border-color: rgba(239, 113, 84, 0.56);
  transform: rotate(-4deg);
}

.about-stamp {
  position: absolute;
  z-index: 4;
  top: -28px;
  right: 4%;
  display: grid;
  width: 125px;
  height: 125px;
  padding: 23px;
  color: var(--forest);
  text-align: center;
  background: #ffe1a0;
  border: 2px dashed var(--ochre);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
  place-items: center;
  transform: rotate(9deg);
}

.check-list {
  display: grid;
  padding: 0;
  margin: 26px 0 31px;
  color: var(--forest-deep);
  font-weight: 700;
  list-style: none;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.check-list li::before {
  display: grid;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: white;
  content: "✓";
  background: var(--sage);
  border-radius: 50%;
  font-size: 13px;
  place-items: center;
}

/* Consults */

.section--consults {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 30%),
    #edf0df;
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 22px auto 0;
  color: #535b51;
  font-size: 18px;
}

.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.consult-card {
  position: relative;
  min-height: 315px;
  padding: 36px 31px;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.8);
  border: 1px solid rgba(200, 138, 41, 0.25);
  border-radius: 27px;
  box-shadow: var(--shadow-card);
}

.consult-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  content: "";
  background: rgba(239, 180, 58, 0.12);
  border-radius: 50%;
}

.consult-card:nth-child(2)::after {
  background: rgba(239, 113, 84, 0.1);
}

.consult-card:nth-child(3)::after {
  background: rgba(142, 162, 116, 0.18);
}

.consult-card__number {
  position: absolute;
  top: 27px;
  right: 28px;
  color: rgba(41, 75, 53, 0.22);
  font-family: var(--serif);
  font-size: 32px;
}

.consult-card__icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  color: var(--forest);
  background: #f5d990;
  border-radius: 45% 55% 46% 54% / 57% 43% 57% 43%;
  font-family: var(--serif);
  font-size: 33px;
  place-items: center;
}

.consult-card:nth-child(2) .consult-card__icon {
  color: var(--coral-deep);
  background: #f8d7c9;
}

.consult-card:nth-child(3) .consult-card__icon {
  background: var(--sage-pale);
}

.consult-card h3 {
  margin: 0 0 12px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.consult-card p {
  margin: 0;
  color: #5d625a;
}

.consult-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  padding: 26px 29px;
  margin: 33px auto 0;
  color: white;
  background: var(--forest);
  border-radius: 24px;
  box-shadow: 0 17px 36px rgba(41, 75, 53, 0.2);
  gap: 25px;
}

.consult-cta > div {
  display: grid;
}

.consult-cta__mini {
  color: #d9e3c9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consult-cta strong {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: clamp(21px, 2.3vw, 30px);
  font-weight: 400;
}

.consult-cta .button--primary {
  color: var(--forest);
  background: var(--paper-strong);
}

.consult-cta .button__arrow {
  color: white;
  background: var(--coral);
}

/* Foster */

.section--foster {
  background:
    radial-gradient(circle at 87% 25%, rgba(239, 180, 58, 0.14), transparent 25%),
    var(--cream);
}

.foster-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(65px, 8vw, 120px);
}

.foster-values {
  display: grid;
  margin-top: 30px;
  gap: 9px;
}

.foster-values > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.4fr) 1fr;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(200, 138, 41, 0.43);
  gap: 22px;
}

.foster-values strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.foster-values span {
  color: #686b63;
  font-size: 14px;
}

.foster-gallery {
  position: relative;
  min-height: 600px;
}

.foster-gallery figure {
  position: absolute;
  margin: 0;
}

.foster-gallery img,
.foster-gallery picture {
  width: 100%;
  height: 100%;
}

.foster-gallery img {
  object-fit: cover;
}

.foster-gallery__large {
  top: 0;
  right: 8%;
  bottom: 0;
  left: 4%;
  overflow: hidden;
  border: 8px solid var(--paper-strong);
  border-radius: 53% 47% 41% 59% / 35% 38% 62% 65%;
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}

.foster-gallery__large img {
  object-position: center 47%;
}

.foster-gallery__large figcaption {
  position: absolute;
  right: 72px;
  bottom: 32px;
  padding: 10px 18px;
  color: var(--forest);
  background: rgba(255, 253, 247, 0.9);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 16px;
  transform: rotate(-3deg);
}

.foster-gallery__small {
  top: -27px;
  right: -2%;
  width: 39%;
  height: 35%;
  overflow: hidden;
  border: 7px solid var(--cream);
  border-radius: 50% 50% 43% 57% / 47% 38% 62% 53%;
  box-shadow: var(--shadow-card);
  transform: rotate(7deg);
}

.foster-gallery__small img {
  object-position: 44% 25%;
}

.foster-doodle {
  position: absolute;
  z-index: 4;
  top: 32%;
  right: -5px;
  color: var(--coral);
  font-size: 66px;
  transform: rotate(12deg);
}

/* Contact */

.section--contact {
  padding-top: clamp(75px, 8vw, 115px);
  background:
    linear-gradient(to bottom, var(--cream) 0 13%, transparent 13%),
    var(--forest);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(350px, 0.82fr) minmax(480px, 1.1fr);
  padding: clamp(38px, 5vw, 70px);
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid rgba(239, 180, 58, 0.46);
  border-radius: 38px;
  box-shadow: 0 25px 70px rgba(21, 42, 29, 0.24);
  gap: clamp(50px, 7vw, 100px);
}

.contact-copy h2 {
  font-size: clamp(42px, 4.5vw, 65px);
}

.section--contact .section-kicker {
  color: #8e5c14;
}

.section--contact h2 em {
  color: var(--coral-deep);
}

.contact-copy > p:not(.section-kicker) {
  max-width: 450px;
  color: #5b6058;
  font-size: 17px;
}

.contact-note {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  margin-top: 28px;
  color: #5f655c;
  border-top: 1px dashed var(--line);
  gap: 15px;
}

.contact-note svg {
  flex: 0 0 auto;
  width: 28px;
  fill: var(--ochre);
}

.contact-note strong {
  color: var(--forest);
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 17px;
}

.contact-form__trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--forest-deep);
  font-size: 14px;
  font-weight: 800;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #f9f5ea;
  border: 1px solid #dfd5c2;
  border-radius: 13px;
  outline: 0;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.field input,
.field select {
  height: 49px;
  padding: 0 14px;
}

.field select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--forest) 50%),
    linear-gradient(135deg, var(--forest) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 21px,
    calc(100% - 14px) 21px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.field textarea {
  min-height: 126px;
  padding: 12px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: white;
  border-color: var(--ochre);
  box-shadow: 0 0 0 3px rgba(239, 180, 58, 0.19);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--coral-deep);
}

.field-error {
  min-height: 0;
  color: #a74430;
  font-size: 12px;
  font-weight: 700;
}

.field-error:not(:empty) {
  min-height: 18px;
}

.form-submit {
  justify-self: center;
  width: auto;
  padding-inline: 25px;
  margin-top: 2px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
}

/* Shared multipage layout */

.page-main {
  min-width: 0;
  overflow: clip;
  background: var(--cream);
}

.page-hero {
  position: relative;
  padding: clamp(58px, 7vw, 108px) 0 clamp(76px, 8vw, 122px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 18%, rgba(239, 180, 58, 0.15), transparent 26%),
    radial-gradient(circle at 9% 78%, rgba(142, 162, 116, 0.14), transparent 24%),
    linear-gradient(145deg, #fffdf6 0%, var(--cream) 64%, #f8f0dd 100%);
}

.page-body--consults .page-hero--consults {
  background:
    radial-gradient(100% 54% at 50% 0%, rgba(255, 209, 117, 0.1) 0, rgba(255, 226, 162, 0.045) 42%, transparent 72%),
    radial-gradient(ellipse at 22% 33%, rgba(255, 255, 255, 0.68) 0, rgba(255, 253, 248, 0.32) 32%, transparent 60%),
    radial-gradient(ellipse at 80% 29%, rgba(248, 196, 91, 0.15) 0, rgba(255, 226, 157, 0.055) 40%, transparent 64%),
    radial-gradient(ellipse at 52% 80%, rgba(159, 184, 121, 0.1) 0, rgba(221, 228, 200, 0.05) 40%, transparent 70%),
    linear-gradient(180deg, #fff9ed 0%, #fff5e2 17%, #fffdf9 44%, #f7f4e3 64%, #eef1db 100%);
}

.page-body--contact .page-hero--contact {
  background:
    radial-gradient(circle at 86% 18%, rgba(239, 180, 58, 0.15), transparent 26%),
    linear-gradient(145deg, #fffdf6 0%, var(--cream) 64%, #f8f0dd 100%);
}

.page-body--consults .page-section--help {
  background: #fffdf8;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.82fr);
  align-items: center;
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  gap: clamp(64px, 8vw, 120px);
}

.page-hero--image-left .page-hero__copy {
  order: 2;
}

.page-hero--image-left .page-hero__media {
  order: 1;
}

.page-hero--text-only {
  padding-block: clamp(72px, 8vw, 124px);
}

.page-hero--text-only .page-hero__grid {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  text-align: center;
}

.page-hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  animation: inner-hero-enter 480ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.page-eyebrow,
.page-kicker,
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 13px;
  color: #986515;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-hero__eyebrow svg {
  width: 18px;
  margin-right: 8px;
  fill: currentColor;
}

.page-title,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(52px, 5.2vw, 78px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.page-title em,
.page-hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.page-hero__description {
  max-width: 660px;
  margin: 25px 0 0;
  color: #50574f;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
}

.page-hero--text-only .page-title,
.page-hero--text-only .page-hero__description {
  margin-inline: auto;
}

.page-hero__action,
.page-hero .page-button {
  margin-top: 30px;
}

.page-hero--consults .page-button {
  min-width: 174px;
  padding-inline: 28px;
}

.page-hero__media {
  position: relative;
  min-width: 0;
  min-height: 500px;
  margin: 0;
  animation: inner-media-enter 560ms 70ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.page-hero__media > picture,
.page-hero__media > .page-hero__image {
  position: absolute;
  inset: 0 6% 18px 0;
  display: block;
  overflow: hidden;
  background: #dce3c8;
  border: 4px solid rgba(255, 255, 255, 0.88);
  border-radius: 41% 59% 48% 52% / 33% 36% 64% 67%;
  box-shadow: var(--shadow-soft);
  transform: rotate(-1deg);
}

.page-hero--about .page-hero__media > .page-hero__image {
  border-radius: 54% 46% 39% 61% / 34% 39% 61% 66%;
}

.page-hero__media > picture > img,
.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--consults .page-hero__media > picture > img {
  object-position: left top;
}

.page-hero__badge {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: -8px;
  display: grid;
  width: 108px;
  height: 108px;
  padding: 18px 11px;
  margin: 0;
  color: var(--forest-deep);
  background: #f5d88b;
  border: 2px solid rgba(255, 249, 236, 0.96);
  border-radius: 47% 53% 45% 55% / 52% 43% 57% 48%;
  box-shadow: 0 8px 20px rgba(113, 88, 30, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.52);
  font-family: var(--serif);
  text-align: center;
  place-content: center;
  transform: rotate(-3deg);
}

.page-hero__badge::after {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px dashed rgba(31, 59, 42, 0.32);
  border-radius: inherit;
}

.page-hero__badge span {
  font-size: 13px;
  line-height: 1.12;
}

.page-hero__badge > svg:not(.page-hero__badge-sparkle) {
  width: 19px;
  margin: 4px auto 0;
}

.page-hero__badge .page-hero__badge-sparkle {
  position: absolute;
  top: 0;
  right: -13px;
  width: 15px;
  color: var(--oasis-gold);
  fill: currentColor;
  --sparkle-delay: -1.7s;
}

.page-hero__badge--green {
  background: #b9c99d;
  box-shadow: 0 8px 20px rgba(53, 82, 47, 0.13), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.page-hero--consults .page-hero__badge--green {
  right: 18px;
}

.page-hero__badge--green::after {
  border-color: rgba(31, 59, 42, 0.36);
}

.page-hero__caption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  max-width: 260px;
  padding: 11px 17px;
  color: var(--forest);
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  font-family: var(--serif);
  font-size: 15px;
  text-align: center;
}

.page-hero__sprig {
  position: absolute;
  z-index: 2;
  right: -30px;
  bottom: 4px;
  width: 105px;
  color: var(--sage);
  transform: rotate(12deg);
}

.page-section {
  position: relative;
  padding: clamp(78px, 8vw, 124px) 0;
}

.inner-section {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
}

.page-section h2,
.page-cta h2,
.contact-details h2,
.contact-form-card h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

.page-section h2 em,
.page-cta h2 em {
  color: var(--coral);
  font-style: normal;
}

.page-section__heading {
  max-width: 760px;
  margin-bottom: clamp(38px, 5vw, 62px);
}

.page-section__heading--centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.page-section__heading > p:last-child,
.inner-section__lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: #596057;
  font-size: 18px;
  line-height: 1.7;
}

.page-section__heading--centered > p:last-child {
  margin-inline: auto;
}

.page-section--approach,
.page-section--process,
.page-section--foster-includes,
.page-section--contact-form {
  background:
    radial-gradient(circle at 92% 16%, rgba(239, 180, 58, 0.1), transparent 24%),
    #edf0df;
}

.page-body--consults .page-section--process {
  background:
    radial-gradient(circle at 92% 16%, rgba(248, 196, 91, 0.15), transparent 24%),
    #eef1db;
}

.page-body--contact .page-section--contact-form {
  background:
    radial-gradient(circle at 92% 16%, rgba(248, 196, 91, 0.15), transparent 24%),
    #eef1db;
}

.page-section--beliefs,
.page-section--options,
.page-section--foster-help {
  background: var(--paper-strong);
}

/* About page */

.page-body--about .site-header-shell {
  border-bottom: 0;
  box-shadow: none;
}

.page-body--about .page-hero--about {
  padding-block: clamp(58px, 6vw, 92px) clamp(82px, 7vw, 112px);
  background:
    radial-gradient(100% 54% at 50% 0%, rgba(255, 209, 117, 0.1) 0, rgba(255, 226, 162, 0.045) 42%, transparent 72%),
    radial-gradient(ellipse at 22% 33%, rgba(255, 255, 255, 0.68) 0, rgba(255, 253, 248, 0.32) 32%, transparent 60%),
    radial-gradient(ellipse at 80% 29%, rgba(248, 196, 91, 0.15) 0, rgba(255, 226, 157, 0.055) 40%, transparent 64%),
    radial-gradient(ellipse at 52% 80%, rgba(159, 184, 121, 0.1) 0, rgba(221, 228, 200, 0.05) 40%, transparent 70%),
    linear-gradient(180deg, #fff9ed 0%, #fff5e2 17%, #fffdf9 44%, #f7f4e3 64%, #eef1db 100%);
}

.page-body--about .page-section--beliefs {
  padding-block:
    clamp(82px, 7.5vw, 116px)
    clamp(74px, 7vw, 108px);
  background: var(--paper-strong);
}

.page-body--about .page-section--beliefs .page-kicker {
  color: #986515;
}

.page-body--about .page-section--beliefs h2 {
  color: var(--forest);
}

.page-body--about .page-section--beliefs .page-beliefs-list h3 {
  color: var(--forest-deep);
}

.page-body--about .page-section--beliefs h2 em {
  color: var(--coral);
}

.page-body--about .page-section--beliefs .inner-beliefs-intro > p:last-child {
  color: #515851;
}

.page-body--about .page-section--beliefs .page-beliefs-list p {
  color: #5a6059;
}

.page-body--about .page-section--beliefs .page-beliefs-list__mark {
  color: var(--gold);
}

.page-body--about .page-section--beliefs .page-beliefs-list li {
  border-bottom-color: var(--line);
}

.page-body--about .page-section--kittens {
  padding-block:
    clamp(78px, 7vw, 110px)
    clamp(72px, 6.5vw, 100px);
  background:
    radial-gradient(circle at 92% 16%, rgba(248, 196, 91, 0.15), transparent 24%),
    #eef1db;
}

.page-body--about .page-section--kittens .page-kicker {
  color: #986515;
}

.page-body--about .page-section--kittens h2 {
  color: var(--forest);
}

.page-body--about .page-section--kittens .page-section__heading > p:last-child {
  color: #596057;
}

.page-body--about .page-section--kittens .page-empty-state {
  color: #515851;
  background: var(--paper-strong);
  border-color: rgba(200, 138, 41, 0.52);
  box-shadow: var(--shadow-card);
}

.page-body--about .page-section--kittens .page-empty-state strong {
  color: var(--forest-deep);
}

.page-body--about .page-section--kittens .kitten-profile-card {
  border-color: rgba(141, 95, 22, 0.42);
}

.page-body--about .page-section--kittens .kitten-profile-card__meta {
  color: #8d5f16;
}

.page-body--about .page-section--kittens .kitten-profile-card__copy > p:last-child {
  color: #515851;
}

.page-body--about .page-section--kittens :focus-visible {
  outline-color: var(--forest-deep);
}

#meet-the-kittens {
  scroll-margin-top: 110px;
}

.page-body--about .page-cta {
  padding-block:
    clamp(62px, 6vw, 92px)
    clamp(68px, 7vw, 102px);
  background: var(--cream);
}

.page-body--about .page-cta .inner-cta {
  background:
    radial-gradient(circle at 92% 10%, rgba(239, 180, 58, 0.2), transparent 25%),
    var(--forest);
  border: 0;
  box-shadow: 0 22px 55px rgba(31, 59, 42, 0.2);
}

.page-body--about .page-cta .page-kicker {
  color: #f4c86c;
}

.page-body--about .page-cta h2 {
  color: white;
}

.page-body--about .page-cta h2 em {
  color: white;
}

.page-body--about .page-cta .page-cta__copy > p:last-child {
  color: #d9e3d6;
}

.page-body--about .page-cta .button--primary,
.page-body--consults .page-cta .button--primary {
  color: white;
  background: var(--forest-deep);
  box-shadow: 0 10px 24px rgba(12, 29, 19, 0.22);
}

.page-body--about .page-cta .button--primary:hover,
.page-body--consults .page-cta .button--primary:hover {
  color: white;
  background: #183123;
}

.page-body--about .page-cta .button--primary .button__arrow {
  color: white;
  background: transparent;
}

.page-body--about .page-cta .button--secondary {
  color: var(--forest-deep);
  background: var(--paper-strong);
  border-color: transparent;
}

.page-body--about .page-cta .button--secondary .button__arrow {
  color: var(--ochre);
}

.page-hero--about .about-story-hero__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.76fr);
  grid-template-areas:
    "heading media"
    "body media";
  align-items: start;
  gap: 24px clamp(52px, 7vw, 100px);
}

.about-story-hero__heading {
  grid-area: heading;
}

.about-story-hero__heading .page-title {
  max-width: 650px;
}

.about-story-hero__hello {
  margin: 22px 0 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(27px, 2.5vw, 36px);
  line-height: 1.15;
}

.about-story-hero__body {
  display: grid;
  grid-area: body;
  max-width: 720px;
  gap: 16px;
  animation: inner-hero-enter 520ms 50ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.about-story-hero__body p {
  margin: 0;
  color: #515851;
  font-size: clamp(16px, 1.2vw, 17.5px);
  line-height: 1.72;
}

.about-story-hero__body > p:first-child {
  color: #414941;
  font-size: clamp(17px, 1.3vw, 18.5px);
  font-weight: 600;
}

.about-story-more {
  margin-top: 5px;
}

.about-story-more__toggle {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  gap: 11px;
  padding: 11px 18px;
  color: var(--forest);
  background: rgba(255, 253, 247, 0.84);
  border: 1px solid rgba(215, 148, 28, 0.72);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 22px rgba(48, 76, 55, 0.07);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.about-story-more__toggle::-webkit-details-marker {
  display: none;
}

.about-story-more__toggle::marker {
  content: "";
}

.about-story-more__toggle:hover {
  color: var(--forest-deep);
  background: var(--paper-strong);
  border-color: var(--gold);
  box-shadow: 0 10px 26px rgba(48, 76, 55, 0.1);
  transform: translateY(-1px);
}

.about-story-more__toggle:focus-visible {
  outline-color: var(--forest);
}

.about-story-more__collapse {
  display: none;
  justify-self: start;
  margin-top: 2px;
  font-family: inherit;
}

.about-story-more.is-story-enhanced .about-story-more__collapse {
  display: inline-flex;
}

.about-story-more.is-story-enhanced[open] > .about-story-more__toggle {
  display: none;
}

.about-story-more.is-story-enhanced[open] {
  margin-top: 0;
}

.about-story-more.is-story-enhanced[open] > .about-story-more__content {
  padding-top: 0;
}

.about-story-more__focus-target:focus {
  outline: none;
}

.about-story-more__label--less {
  display: none;
}

.about-story-more__icon {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ochre);
  border-bottom: 2px solid var(--ochre);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 200ms ease;
}

.about-story-more[open] .about-story-more__label--more {
  display: none;
}

.about-story-more[open] .about-story-more__label--less {
  display: inline;
}

.about-story-more[open] .about-story-more__icon {
  transform: translateY(2px) rotate(225deg);
}

.about-story-more:not([open]) > .about-story-more__content {
  display: none;
}

.about-story-more[open] > .about-story-more__content {
  display: grid;
}

.about-story-more__content {
  gap: 16px;
  padding-top: 18px;
  animation: about-story-more-reveal 260ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.page-hero--about .about-story-hero__media {
  grid-area: media;
  align-self: start;
  min-height: 0;
  margin-top: 8px;
  aspect-ratio: 0.86;
}

.page-hero--about .about-story-hero__media > picture {
  inset: 0;
  border-radius: 54% 46% 39% 61% / 34% 39% 61% 66%;
}

@keyframes about-story-more-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inner-story-grid,
.inner-beliefs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 8vw, 118px);
}

.inner-story-copy h2,
.inner-beliefs-intro h2 {
  max-width: 690px;
}

.inner-story-text {
  display: grid;
  max-width: 690px;
  margin-top: 28px;
  gap: 15px;
}

.inner-story-text p,
.inner-beliefs-intro > p:last-child {
  margin: 0;
  color: #515851;
  font-size: 17px;
  line-height: 1.72;
}

.inner-story-figure,
.inner-foster-story__figure,
.inner-foster-help__figure {
  position: relative;
  margin: 0;
}

.inner-story-image,
.inner-foster-story__figure picture,
.inner-foster-help__figure picture {
  display: block;
  overflow: hidden;
  background: var(--sage-pale);
  border: 4px solid white;
  border-radius: 35% 65% 45% 55% / 31% 38% 62% 69%;
  box-shadow: var(--shadow-soft);
}

.inner-story-image {
  aspect-ratio: 0.84;
}

.inner-story-image img,
.inner-foster-story__figure img,
.inner-foster-help__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-story-figure figcaption,
.inner-foster-story__figure figcaption,
.inner-foster-help__figure figcaption {
  max-width: 330px;
  margin: 14px auto 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  text-align: center;
}

.inner-story-doodle {
  position: absolute;
  right: -34px;
  bottom: 22px;
  width: 80px;
  color: var(--ochre);
}

.page-approach-list,
.page-process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-approach-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
}

.page-approach-card,
.page-option-card,
.page-foster-card {
  position: relative;
  min-width: 0;
  padding: 33px;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid rgba(200, 138, 41, 0.28);
  border-radius: 25px;
  box-shadow: var(--shadow-card);
}

.page-approach-card__number,
.page-foster-card__number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(41, 75, 53, 0.22);
  font-family: var(--serif);
  font-size: 30px;
}

.page-approach-card__icon {
  width: 60px;
  height: 60px;
  padding: 12px;
  margin-bottom: 25px;
  color: var(--forest);
  background: #f4d582;
  border-radius: 44% 56% 46% 54% / 56% 42% 58% 44%;
}

.page-approach-card:nth-child(2) .page-approach-card__icon {
  background: #f5d3c8;
}

.page-approach-card:nth-child(3) .page-approach-card__icon {
  background: var(--sage-pale);
}

.page-approach-card h3,
.page-beliefs-list h3,
.page-process-card h3,
.page-option-card h3,
.page-foster-card h3,
.contact-detail-list dt {
  margin: 0 0 10px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}

.page-approach-card p,
.page-beliefs-list p,
.page-process-card p,
.page-option-card p,
.page-foster-card p {
  margin: 0;
  color: #5a6059;
  line-height: 1.65;
}

.page-beliefs-list {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 7px;
}

.page-beliefs-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}

.page-beliefs-list li:last-child {
  border-bottom: 0;
}

.page-beliefs-list__mark {
  padding-top: 5px;
  color: var(--gold);
  font-size: 13px;
}

.inner-beliefs-intro > p:last-child {
  max-width: 570px;
  margin-top: 24px;
}

/* Consultations */

.page-help-grid,
.page-option-grid,
.page-foster-grid {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 18px;
}

.page-help-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-help-card {
  display: flex;
  align-items: center;
  min-height: 94px;
  padding: 20px 22px;
  color: var(--forest-deep);
  background: var(--paper-strong);
  border: 1px solid rgba(200, 138, 41, 0.25);
  border-radius: 19px;
  box-shadow: var(--shadow-card);
  font-weight: 800;
  gap: 13px;
}

.page-help-card__icon {
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 10px;
}

.page-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: process;
  gap: 0;
}

.page-process-card {
  position: relative;
  min-width: 0;
  padding: 0 25px;
  counter-increment: process;
}

.page-process-card:not(:last-child)::after {
  position: absolute;
  top: 27px;
  right: -5px;
  width: 24px;
  height: 1px;
  content: "";
  background: var(--ochre);
  box-shadow: 7px -3px 0 -2px var(--ochre), 7px 3px 0 -2px var(--ochre);
}

.page-process-card__number {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--forest);
  background: #f4d582;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  place-items: center;
}

.page-process-card:nth-child(2n) .page-process-card__number {
  background: var(--sage-pale);
}

.page-option-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-option-card {
  min-height: 235px;
  padding-top: 65px;
}

.page-option-card__label {
  position: absolute;
  top: 24px;
  left: 31px;
  color: #8d5f16;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-body--consults .page-help-card,
.page-body--consults .page-option-card {
  --card-hover-bg: #fff7f2;
  --card-hover-border: #e2ad94;
  --card-hover-accent: #98451f;
  --card-hover-wash: rgba(239, 113, 84, 0.09);
  --card-hover-shadow: 0 16px 34px rgba(152, 69, 31, 0.08);
  position: relative;
  isolation: isolate;
  transform: translate3d(0, 0, 0);
  transition:
    transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1),
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 260ms ease;
}

.page-body--consults .page-help-card:nth-child(4n + 1),
.page-body--consults .page-option-card:nth-child(4n + 1) {
  --card-hover-bg: #fff7f2;
  --card-hover-border: #e2ad94;
  --card-hover-accent: #98451f;
  --card-hover-wash: rgba(239, 113, 84, 0.09);
  --card-hover-shadow: 0 16px 34px rgba(152, 69, 31, 0.08);
}

.page-body--consults .page-help-card:nth-child(4n + 2),
.page-body--consults .page-option-card:nth-child(4n + 2) {
  --card-hover-bg: #fffbed;
  --card-hover-border: #dcc47d;
  --card-hover-accent: #76520d;
  --card-hover-wash: rgba(239, 180, 58, 0.11);
  --card-hover-shadow: 0 16px 34px rgba(118, 82, 13, 0.08);
}

.page-body--consults .page-help-card:nth-child(4n + 3),
.page-body--consults .page-option-card:nth-child(4n + 3) {
  --card-hover-bg: #f5f7f0;
  --card-hover-border: #a8b59a;
  --card-hover-accent: #3f5f3b;
  --card-hover-wash: rgba(142, 162, 116, 0.12);
  --card-hover-shadow: 0 16px 34px rgba(63, 95, 59, 0.09);
}

.page-body--consults .page-help-card:nth-child(4n),
.page-body--consults .page-option-card:nth-child(4n) {
  --card-hover-bg: #fff6f8;
  --card-hover-border: #dfb3bc;
  --card-hover-accent: #8f3f53;
  --card-hover-wash: rgba(221, 124, 143, 0.09);
  --card-hover-shadow: 0 16px 34px rgba(143, 63, 83, 0.08);
}

.page-body--consults .page-help-card {
  overflow: hidden;
}

.page-body--consults .page-help-card::before,
.page-body--consults .page-option-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 88% 16%, var(--card-hover-wash), transparent 40%),
    linear-gradient(118deg, rgba(255, 255, 255, 0.4), transparent 60%);
  transform: translate3d(-12px, 9px, 0) scale(0.97);
  transition:
    opacity 240ms ease,
    transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.page-body--consults .page-help-card > span,
.page-body--consults .page-option-card > h3,
.page-body--consults .page-option-card > p {
  position: relative;
  z-index: 1;
}

.page-body--consults .page-option-card__label {
  z-index: 1;
}

.page-body--consults .page-option-card__label::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, var(--card-hover-accent), transparent);
  border-radius: 999px;
  transform: scaleX(0.25);
  transform-origin: left center;
  transition:
    opacity 220ms ease,
    transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.page-body--consults .page-help-card__icon,
.page-body--consults .page-option-card__label,
.page-body--consults .page-option-card h3 {
  transition:
    color 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .page-body--consults .page-help-card:hover {
    background: var(--card-hover-bg);
    border-color: var(--card-hover-border);
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-4px) rotate(-0.12deg);
  }

  .page-body--consults .page-help-card:nth-child(2n):hover {
    transform: translateY(-4px) rotate(0.12deg);
  }

  .page-body--consults .page-option-card:hover {
    background: var(--card-hover-bg);
    border-color: var(--card-hover-border);
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-6px);
  }

  .page-body--consults .page-help-card:hover::before,
  .page-body--consults .page-option-card:hover::before {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .page-body--consults .page-help-card:hover .page-help-card__icon {
    color: var(--card-hover-accent);
    transform: translateX(2px) scale(1.4);
  }

  .page-body--consults .page-option-card:hover .page-option-card__label,
  .page-body--consults .page-option-card:hover h3 {
    color: var(--card-hover-accent);
    transform: translateY(-2px);
  }

  .page-body--consults .page-option-card:hover .page-option-card__label::after {
    opacity: 0.82;
    transform: scaleX(1);
  }
}

/* Foster care */

.inner-foster-story,
.inner-foster-help {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 8vw, 112px);
}

.inner-foster-story__copy > p:not(.page-kicker),
.inner-foster-help__copy > p:not(.page-kicker) {
  max-width: 690px;
  color: #515851;
  font-size: 17px;
  line-height: 1.72;
}

.inner-foster-story__figure picture {
  aspect-ratio: 0.9;
}

.inner-foster-help__figure picture {
  aspect-ratio: 1.05;
  border-radius: 61% 39% 54% 46% / 41% 52% 48% 59%;
}

.page-foster-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-foster-card {
  min-height: 260px;
  padding-top: 76px;
}

.page-section--kittens {
  background:
    radial-gradient(circle at 12% 30%, rgba(142, 162, 116, 0.13), transparent 25%),
    var(--cream);
}

.page-kitten-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-empty-state {
  max-width: 720px;
  padding: clamp(27px, 4vw, 42px);
  margin: 0 auto;
  color: #596057;
  background: rgba(255, 253, 247, 0.72);
  border: 1px dashed rgba(200, 138, 41, 0.58);
  border-radius: 26px;
  text-align: center;
}

.page-empty-state strong {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.kitten-profile-card {
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 23px;
  box-shadow: var(--shadow-card);
}

.kitten-profile-card > img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}

.kitten-profile-card__copy {
  padding: 23px;
}

.kitten-profile-card__copy h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.kitten-profile-card__meta {
  color: var(--ochre);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-foster-help-list {
  display: grid;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  gap: 0;
}

.page-foster-help-list li {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
  gap: 3px;
}

.page-foster-help-list strong {
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.page-foster-help-list span {
  color: #596057;
}

/* Shared calls to action */

.page-cta {
  position: relative;
  padding: clamp(64px, 7vw, 105px) 0;
  background: var(--cream);
}

.inner-cta,
.page-section--cta .page-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 72px));
  padding: clamp(34px, 5vw, 58px);
  margin: 0 auto;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 92% 10%, rgba(239, 180, 58, 0.2), transparent 25%),
    var(--forest);
  border-radius: 31px;
  box-shadow: 0 22px 55px rgba(31, 59, 42, 0.2);
  gap: 38px;
}

.page-section--cta {
  padding: clamp(64px, 7vw, 105px) 0;
  background: var(--cream);
}

.page-section--cta .page-cta {
  padding-block: clamp(34px, 5vw, 58px);
}

.page-cta__copy {
  position: relative;
  z-index: 1;
  max-width: 710px;
}

.page-cta .page-kicker,
.page-cta .section-kicker {
  color: #f4c86c;
}

.page-cta h2,
.page-section--cta .page-cta h2 {
  color: white;
  font-size: clamp(36px, 4vw, 57px);
}

.page-cta__copy > p:last-child {
  max-width: 640px;
  margin: 17px 0 0;
  color: #d9e3d6;
  font-size: 17px;
}

.page-body--consults .page-cta__copy > p:last-child {
  max-width: 710px;
}

.page-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.page-cta .button--secondary {
  color: var(--forest-deep);
  background: var(--paper-strong);
}

/* Contact */

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.15fr);
  align-items: start;
  gap: clamp(54px, 8vw, 115px);
}

.contact-details {
  position: sticky;
  top: 35px;
}

.contact-details > p:not(.page-kicker) {
  margin: 22px 0 0;
  color: #535b52;
  font-size: 17px;
  line-height: 1.7;
}

.contact-detail-list {
  display: grid;
  margin: 33px 0 0;
  gap: 0;
}

.contact-detail-list > div {
  padding: 20px 0;
  border-top: 1px dashed rgba(200, 138, 41, 0.5);
}

.contact-detail-list dt {
  margin-bottom: 4px;
  font-size: 20px;
}

.contact-detail-list dd {
  margin: 0;
  color: #596057;
}

.contact-detail-list a,
.form-fallback a {
  color: var(--forest-deep);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-form-card {
  padding: clamp(30px, 5vw, 54px);
  background: var(--paper-strong);
  border: 1px solid rgba(200, 138, 41, 0.35);
  border-radius: 31px;
  box-shadow: var(--shadow-soft);
}

.contact-form-card__header {
  margin-bottom: 32px;
}

.contact-form-card__header h2 {
  font-size: clamp(38px, 4vw, 54px);
}

.contact-form-card__header > p:last-child {
  margin: 15px 0 0;
  color: #62675f;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.form-status--error {
  color: #963f2e;
}

.form-status--notice {
  color: #795318;
}

.form-status--success {
  color: var(--forest-deep);
}

.form-fallback {
  padding-top: 15px;
  margin: 0;
  color: #656960;
  border-top: 1px dashed var(--line);
  font-size: 13px;
}

/* Not found */

.not-found-canvas {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
}

.not-found-canvas .site-footer {
  margin-top: auto;
}

.not-found {
  position: relative;
  display: grid;
  min-height: 530px;
  padding: clamp(70px, 10vw, 140px) 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 35%, rgba(239, 180, 58, 0.15), transparent 22%),
    var(--cream);
  place-items: center;
  text-align: center;
}

.not-found__copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.not-found h1 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.not-found h1 em {
  color: var(--coral);
  font-style: normal;
}

.not-found__copy > p:not(.page-eyebrow) {
  max-width: 560px;
  margin: 23px auto 29px;
  color: #596057;
  font-size: 18px;
}

.not-found__paw {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 150px;
  fill: rgba(142, 162, 116, 0.16);
  transform: rotate(14deg);
}

@keyframes inner-hero-enter {
  from { opacity: 0.82; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes inner-media-enter {
  from { opacity: 0.84; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 48px;
  }

  .page-hero__media {
    min-height: 440px;
  }

  .page-help-grid,
  .page-foster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 0;
  }

  .page-process-card:nth-child(2)::after,
  .page-process-card:last-child::after {
    display: none;
  }

  .contact-page-grid {
    grid-template-columns: minmax(270px, 0.65fr) minmax(450px, 1fr);
    gap: 45px;
  }
}

@media (max-width: 920px) {
  .page-hero {
    padding-top: 44px;
  }

  .page-hero__grid,
  .inner-story-grid,
  .inner-beliefs-grid,
  .inner-foster-story,
  .inner-foster-help,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__grid {
    gap: 45px;
  }

  .page-hero--about .about-story-hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "body"
      "media";
    gap: 30px;
  }

  .page-hero--about .about-story-hero__media {
    width: min(560px, 100%);
    margin: 0 auto 8px;
  }

  .about-story-hero__body {
    max-width: 720px;
  }

  .page-hero--image-left .page-hero__copy,
  .page-hero--image-left .page-hero__media {
    order: initial;
  }

  .page-hero__media {
    width: min(620px, 100%);
    min-height: 510px;
    margin: 0 auto;
  }

  .page-hero--consults .page-hero__media > picture > img {
    object-position: left top;
  }

  .page-hero--text-only .page-hero__grid {
    text-align: left;
  }

  .page-hero--text-only .page-title,
  .page-hero--text-only .page-hero__description {
    margin-inline: 0;
  }

  .inner-story-grid,
  .inner-beliefs-grid,
  .inner-foster-story,
  .inner-foster-help {
    gap: 50px;
  }

  .inner-story-figure,
  .inner-foster-story__figure,
  .inner-foster-help__figure {
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .page-approach-list,
  .page-option-grid {
    grid-template-columns: 1fr;
  }

  .page-approach-card,
  .page-option-card {
    min-height: 0;
  }

  .inner-cta,
  .page-section--cta .page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-details {
    position: static;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 35px 0 72px;
  }

  .page-hero__grid,
  .inner-section,
  .inner-cta,
  .page-section--cta .page-cta {
    width: calc(100% - 32px);
  }

  .page-hero--about .about-story-hero__grid {
    grid-template-areas:
      "heading"
      "hello"
      "body"
      "media";
    row-gap: 22px;
  }

  .page-body--about .about-story-hero__heading {
    display: contents;
  }

  .page-body--about .about-story-hero__heading .page-title {
    grid-area: heading;
  }

  .page-body--about .about-story-hero__hello {
    grid-area: hello;
    margin: 0;
  }

  .page-body--about .page-hero--about .about-story-hero__media {
    width: min(320px, 88vw);
    margin: 0 auto;
  }

  .about-story-hero__body {
    gap: 15px;
  }

  .about-story-hero__body p {
    font-size: 16px;
    line-height: 1.68;
  }

  .about-story-more {
    margin-top: 2px;
  }

  .about-story-more__toggle {
    width: fit-content;
    max-width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 11px 16px;
  }

  .about-story-more__content {
    gap: 15px;
    padding-top: 16px;
  }

  .page-body--about .page-section--beliefs,
  .page-body--about .page-section--kittens {
    padding-block: 68px;
  }

  .page-body--about .page-cta {
    padding-block: 58px 72px;
  }

  .page-title,
  .page-hero h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .page-hero__description {
    margin-top: 20px;
    font-size: 16px;
  }

  .page-hero__media {
    min-height: 390px;
  }

  .page-hero__media > picture,
  .page-hero__media > .page-hero__image {
    inset: 0 0 14px;
  }

  .page-hero__sprig {
    display: none;
  }

  .page-hero__badge {
    top: 10px;
    right: -4px;
    display: grid;
    width: clamp(82px, 24vw, 94px);
    height: clamp(82px, 24vw, 94px);
    padding: 14px 8px;
    transform: rotate(-4deg);
  }

  .page-hero--consults .page-hero__badge--green {
    right: -4px;
  }

  .page-hero__badge span {
    font-size: clamp(10px, 2.8vw, 11px);
  }

  .page-hero__badge > svg:not(.page-hero__badge-sparkle) {
    width: 16px;
    margin-top: 3px;
  }

  .page-hero__badge .page-hero__badge-sparkle {
    right: -8px;
    width: 12px;
  }

  .page-hero__caption {
    right: 10px;
    max-width: calc(100% - 20px);
    font-size: 13px;
  }

  .page-section {
    padding: 72px 0;
  }

  .page-section h2,
  .page-cta h2,
  .contact-details h2,
  .contact-form-card h2 {
    font-size: clamp(37px, 11vw, 49px);
  }

  .page-section__heading > p:last-child,
  .inner-section__lead {
    font-size: 16px;
  }

  .page-help-grid,
  .page-process-list,
  .page-foster-grid,
  .page-kitten-grid {
    grid-template-columns: 1fr;
  }

  .page-process-list {
    gap: 31px;
  }

  .page-process-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    padding: 0;
    gap: 16px;
  }

  .page-process-card::after {
    display: none;
  }

  .page-process-card__number {
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .page-approach-card,
  .page-option-card,
  .page-foster-card {
    padding: 28px;
  }

  .page-option-card,
  .page-foster-card {
    min-height: 0;
    padding-top: 65px;
  }

  .page-approach-card__number,
  .page-foster-card__number {
    right: 22px;
  }

  .inner-story-doodle {
    display: none;
  }

  .inner-cta,
  .page-section--cta .page-cta {
    padding: 30px 25px;
    border-radius: 24px;
  }

  .page-cta__actions,
  .page-cta__actions .button,
  .inner-cta > .button {
    width: 100%;
  }

  .page-body--about .page-cta__actions,
  .page-body--about .page-cta__actions .button,
  .page-body--consults .page-cta .inner-cta > .button {
    width: fit-content;
  }

  .page-body--about .page-cta__actions .button,
  .page-body--consults .page-cta .inner-cta > .button {
    min-width: 156px;
  }

  .contact-form-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .not-found {
    min-height: 450px;
    padding-inline: 20px;
  }

  .not-found__paw {
    display: none;
  }
}

/* Footer */

.site-footer {
  color: #dce5d7;
  background: var(--forest);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  display: grid;
  width: min(1240px, calc(100% - 72px));
  min-height: 210px;
  padding: 46px 0 30px;
  margin: 0 auto;
  gap: 34px;
}

.footer-follow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.footer-follow__copy {
  max-width: 650px;
}

.footer-follow__title {
  margin: 0 0 7px;
  color: #f5c76d;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.footer-follow__copy > p:last-child {
  margin: 0;
  color: #c7d4c3;
  font-size: 15px;
}

.footer-socials {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.footer-socials a {
  display: grid;
  width: 48px;
  height: 48px;
  color: #f4c263;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 194, 99, 0.36);
  border-radius: 50%;
  place-items: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  color: var(--forest-deep);
  background: #f4c263;
  border-color: #f4c263;
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-socials a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.social-icon__dot {
  fill: currentColor;
  stroke: none;
}

.copyright {
  padding-top: 18px;
  margin: 0;
  color: #aebfad;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  text-align: center;
}

/* Motion */

.hero-enter {
  animation: hero-enter 420ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-visual {
  animation: hero-media-enter 680ms 90ms cubic-bezier(0.16, 0.78, 0.24, 1) both;
}

.hero-enter .hero-title__top {
  animation: hero-piece-enter 560ms 80ms cubic-bezier(0.16, 0.78, 0.24, 1) both;
}

.hero-enter .hero-title__bottom {
  animation: hero-piece-enter 650ms 155ms cubic-bezier(0.16, 0.78, 0.24, 1) both;
}

.hero-enter .hero-intro {
  animation: hero-piece-enter 620ms 250ms cubic-bezier(0.16, 0.78, 0.24, 1) both;
}

.hero-enter .hero-actions {
  animation: hero-piece-enter 620ms 335ms cubic-bezier(0.16, 0.78, 0.24, 1) both;
}

.motion-page-seen .hero-enter,
.motion-page-seen .hero-enter .hero-title__top,
.motion-page-seen .hero-enter .hero-title__bottom,
.motion-page-seen .hero-enter .hero-intro,
.motion-page-seen .hero-enter .hero-actions,
.motion-page-seen .hero-visual,
.motion-page-seen .page-hero__copy,
.motion-page-seen .page-hero__media,
.motion-page-seen .about-story-hero__body {
  opacity: 1;
  filter: none;
  transform: none;
  translate: none;
  animation: none !important;
}

.js .reveal {
  opacity: 1;
  transform: none;
}

.js .reveal--delay {
  transition-delay: 90ms;
}

.js .reveal--delay-2 {
  transition-delay: 180ms;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .motion-reveal {
  opacity: 0;
  filter: blur(2.5px);
  rotate: var(--motion-rotate, 0deg);
  scale: 1;
  translate: var(--motion-x, 0) 25px;
  transition:
    opacity 620ms cubic-bezier(0.16, 0.76, 0.24, 1),
    filter 620ms cubic-bezier(0.16, 0.76, 0.24, 1),
    rotate 760ms cubic-bezier(0.16, 0.76, 0.24, 1),
    translate 760ms cubic-bezier(0.16, 0.76, 0.24, 1),
    scale 760ms cubic-bezier(0.16, 0.76, 0.24, 1);
  transition-delay: var(--motion-delay, 0ms);
  transform-origin: 50% 88%;
  will-change: opacity, filter, rotate, translate, scale;
}

.js .motion-reveal[data-motion="text"] {
  translate: var(--motion-x, 0) 18px;
}

.js .motion-reveal[data-motion="card"] {
  scale: 0.975;
  translate: var(--motion-x, 0) 28px;
}

.js .motion-reveal[data-motion="soft"] {
  filter: blur(4px);
  translate: var(--motion-x, 0) 14px;
}

.js .motion-reveal.is-visible {
  opacity: 1;
  filter: none;
  rotate: 0deg;
  scale: 1;
  translate: 0 0;
  will-change: auto;
}

.js .motion-reveal.motion-settled {
  transition-delay: 0ms;
}

.js .motion-reveal.motion-seen {
  opacity: 1;
  filter: none;
  rotate: 0deg;
  scale: 1;
  translate: 0 0;
  transition-delay: 0ms;
  will-change: auto;
}

.js h1 em[data-motion-letters="true"],
.js h2.motion-reveal em {
  color: inherit;
  background: none;
}

.js h1 em[data-motion-letters="true"] .motion-letter,
.js h2.motion-reveal .motion-letter {
  color: inherit;
  transition: color 260ms cubic-bezier(0.2, 0.76, 0.24, 1);
  transition-delay: calc(300ms + (var(--letter-index, 0) * 55ms));
}

.js h1 em.is-colorized .motion-letter,
.js h2.motion-reveal.is-visible .motion-letter {
  color: var(--coral);
}

.js h1 em.motion-color-seen .motion-letter,
.js h2.motion-reveal.motion-seen .motion-letter {
  color: var(--coral);
  transition: none;
}

.js .feature-card.is-visible:not(.motion-seen) .feature-card__icon,
.js .page-process-card.is-visible:not(.motion-seen) .page-process-card__number,
.js .page-help-card.is-visible:not(.motion-seen) .page-help-card__icon,
.js .page-beliefs-list > li.is-visible:not(.motion-seen) .page-beliefs-list__mark {
  animation: motion-token-pop 720ms calc(var(--motion-delay, 0ms) + 180ms)
    cubic-bezier(0.2, 0.82, 0.24, 1);
}

.js .page-option-card.is-visible:not(.motion-seen)::before {
  animation: motion-card-glow 900ms calc(var(--motion-delay, 0ms) + 120ms) ease-out;
}

/* A softer shared hover language keeps playful cards responsive, not twitchy. */
.feature-card {
  transition-duration: 440ms, 520ms, 520ms;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.page-body--consults .page-help-card,
.page-body--consults .page-option-card {
  transition-duration: 520ms, 440ms, 440ms, 520ms;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.feature-card__icon,
.feature-card__arrow,
.page-body--consults .page-help-card::before,
.page-body--consults .page-option-card::before,
.page-body--consults .page-help-card__icon,
.page-body--consults .page-option-card__label,
.page-body--consults .page-option-card h3 {
  transition-duration: 420ms;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover,
  .feature-card:focus-visible {
    transform: none;
  }

  .page-body--consults .page-help-card:hover,
  .page-body--consults .page-help-card:nth-child(2n):hover {
    transform: none;
  }

  .page-body--consults .page-option-card:hover {
    transform: none;
  }

  .feature-card:hover .feature-card__icon,
  .feature-card:focus-visible .feature-card__icon,
  .page-body--consults .page-help-card:hover .page-help-card__icon {
    transform: none;
  }

  .page-body--consults .page-option-card:hover .page-option-card__label,
  .page-body--consults .page-option-card:hover h3 {
    transform: none;
  }

  .page-body--consults .page-help-card::before,
  .page-body--consults .page-option-card::before,
  .page-body--consults .page-help-card:hover::before,
  .page-body--consults .page-option-card:hover::before {
    transform: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .feature-card:hover {
    transform: none;
  }
}

@keyframes hero-enter {
  from {
    opacity: 0.82;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-piece-enter {
  from {
    opacity: 0;
    translate: 0 18px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes hero-media-enter {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(18px, 12px, 0) scale(0.97);
  }

  to {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes motion-token-pop {
  0% {
    rotate: -7deg;
    scale: 0.82;
  }

  58% {
    rotate: 3deg;
    scale: 1.09;
  }

  78% {
    rotate: -1deg;
    scale: 0.98;
  }

  100% {
    rotate: 0deg;
    scale: 1;
  }
}

@keyframes motion-card-glow {
  0% {
    opacity: 0;
    scale: 0.72;
  }

  45% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    scale: 1.08;
  }
}

/* Responsive layout */

@media (max-width: 1320px) {
  :root {
    --content: min(1180px, calc(100% - 80px));
  }

  .primary-nav {
    gap: 26px;
  }

  .hero-grid {
    grid-template-columns: minmax(460px, 1fr) minmax(0, 0.96fr);
    gap: clamp(42px, 4vw, 58px);
  }

  .hero-visual {
    width: min(610px, 100%);
  }

  .feature-row {
    width: min(1120px, calc(100% - 160px));
  }

  .feature-card {
    grid-template-columns: 76px minmax(0, 1fr) 27px;
    min-height: 126px;
    padding: 16px;
    gap: 13px;
  }

  .feature-card__icon {
    width: 72px;
    height: 72px;
  }

  .feature-card__icon svg {
    width: 48px;
  }
}

@media (max-width: 1180px) and (min-width: 921px) {
  .hero-grid {
    grid-template-columns: minmax(410px, 1fr) minmax(0, 0.94fr);
  }

  .hero-copy h1 > span + span {
    white-space: normal;
  }

  .hero-title__oasis {
    display: block;
    margin-left: clamp(66px, 8vw, 96px);
  }

  .hero-visual {
    width: min(560px, 100%);
    aspect-ratio: 1.38;
  }
}

@media (max-width: 1080px) {
  :root {
    --content: min(960px, calc(100% - 64px));
  }

  .oasis-sparkle-field,
  .oasis-heart-field,
  .oasis-field-sparkle,
  .oasis-heart,
  .trust-seal__sparkle,
  .page-hero__badge-sparkle {
    display: none !important;
  }

  .site-header {
    min-height: 94px;
  }

  .brand__copy strong {
    font-size: 27px;
  }

  .brand__copy > span {
    font-size: 11px;
  }

  .menu-toggle {
    display: grid;
  }

  .js .primary-nav {
    position: absolute;
    top: 82px;
    right: 0;
    display: grid;
    width: min(330px, calc(100% - 44px));
    padding: 16px;
    background: rgba(255, 253, 247, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .js .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .primary-nav .nav-link {
    justify-content: start;
    padding: 0 14px;
    border-radius: 11px;
  }

  .primary-nav .nav-link:hover {
    background: var(--cream);
  }

  .primary-nav .nav-link::after {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 96px;
  }

  .hero-grid {
    grid-template-columns: minmax(410px, 1fr) minmax(0, 0.92fr);
    gap: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(55px, 6vw, 64px);
  }

  .hero-visual {
    width: min(520px, 100%);
    aspect-ratio: 1.35;
  }

  .oasis-foliage-band {
    bottom: -12px;
    height: 255px;
  }

  .oasis-foliage-sprig--edge-left {
    width: 245px;
  }

  .oasis-foliage-sprig--broad-left {
    left: 6%;
    width: 185px;
  }

  .oasis-foliage-sprig--left-mid {
    left: 19%;
    width: 135px;
  }

  .oasis-foliage-sprig--middle-left {
    left: 29%;
    width: 165px;
  }

  .oasis-foliage-sprig--center {
    left: 43%;
    width: 145px;
  }

  .oasis-foliage-sprig--middle-right {
    right: 28%;
    width: 160px;
  }

  .oasis-foliage-sprig--right-mid {
    right: 18%;
    width: 135px;
  }

  .oasis-foliage-sprig--broad-right {
    right: 6%;
    width: 185px;
  }

  .oasis-foliage-sprig--edge-right {
    width: 250px;
  }

  .oasis-field-sparkle--four {
    top: 57%;
    right: 3.5%;
    bottom: auto;
  }

  .oasis-heart--one {
    top: 18%;
    left: 46%;
  }

  .trust-seal {
    width: 108px;
    height: 108px;
    padding: 18px 11px;
  }

  .trust-seal span {
    font-size: 13px;
  }

  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(780px, calc(100% - 96px));
    margin: 64px auto 0;
    gap: 18px;
  }

  .feature-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }

  .about-grid,
  .foster-grid {
    gap: 65px;
  }

  .about-collage,
  .foster-gallery {
    min-height: 520px;
  }

  .section-inner,
  .footer-inner {
    width: min(920px, calc(100% - 44px));
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 86px;
  }

  .brand__copy strong {
    font-size: 25px;
  }

  .js .primary-nav {
    top: 75px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    max-width: 720px;
    padding: 0;
  }

  .hero-copy h1 {
    font-size: clamp(56px, 9vw, 74px);
  }

  .hero-copy h1 > span + span {
    white-space: nowrap;
  }

  .hero-title__oasis {
    display: inline;
    margin-left: 0;
  }

  .hero-intro {
    max-width: 680px;
  }

  .hero-visual {
    width: min(650px, 92%);
    aspect-ratio: 1.45;
    justify-self: center;
    margin: 0 auto;
  }

  .oasis-foliage-band {
    bottom: -8px;
    height: 235px;
  }

  .oasis-foliage-sprig--edge-left {
    left: -5%;
    width: 220px;
  }

  .oasis-foliage-sprig--broad-left {
    left: 5%;
    width: 165px;
  }

  .oasis-foliage-sprig--left-mid {
    left: 18%;
    width: 120px;
  }

  .oasis-foliage-sprig--middle-left {
    left: 28%;
    width: 150px;
  }

  .oasis-foliage-sprig--center {
    left: 42%;
    width: 132px;
  }

  .oasis-foliage-sprig--middle-right {
    right: 27%;
    width: 145px;
  }

  .oasis-foliage-sprig--right-mid {
    right: 17%;
    width: 120px;
  }

  .oasis-foliage-sprig--broad-right {
    right: 5%;
    width: 165px;
  }

  .oasis-foliage-sprig--edge-right {
    right: -5%;
    width: 225px;
  }

  .oasis-field-sparkle--one {
    top: 7%;
    right: 5%;
    left: auto;
  }

  .oasis-field-sparkle--two {
    top: 84%;
    right: 4%;
    width: 22px;
  }

  .oasis-field-sparkle--three {
    top: 86%;
    bottom: auto;
    left: 2%;
    width: 18px;
  }

  .oasis-field-sparkle--four {
    top: 62%;
    right: 3%;
    bottom: auto;
    width: 21px;
  }

  .oasis-heart--one {
    top: 28%;
    right: 4%;
    left: auto;
    width: 24px;
  }

  .oasis-heart--two {
    top: 70%;
    right: 3%;
    width: 22px;
  }

  .trust-seal {
    top: 8px;
    left: 24px;
    width: 104px;
    height: 104px;
  }

  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(720px, calc(100% - 72px));
    margin-top: 58px;
    gap: 18px;
  }

  .feature-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 8px);
    justify-self: center;
  }

  .feature-card {
    grid-template-columns: 76px minmax(0, 1fr) 27px;
  }

  .feature-card__icon {
    width: 72px;
    height: 72px;
  }

  .oasis-wave {
    height: 88px;
  }

  .about-grid,
  .foster-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .about-collage,
  .foster-gallery {
    width: min(590px, 100%);
    min-height: 600px;
    margin: 0 auto;
  }

  .about-grid {
    gap: 72px;
  }

  .consult-grid {
    grid-template-columns: 1fr;
  }

  .consult-card {
    min-height: 0;
  }

  .foster-copy {
    order: 1;
  }

  .foster-gallery {
    order: 2;
  }

  .contact-shell {
    gap: 42px;
  }
}

@media (min-width: 701px) and (max-width: 1080px) {
  .hero-section {
    padding-top: 44px;
    padding-bottom: 104px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
    align-items: center;
    gap: 24px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 6.4vw, 58px);
    line-height: 0.96;
  }

  .hero-copy h1 > span + span {
    white-space: normal;
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 9px 11px;
    font-size: 12.5px;
  }

  .hero-actions .button > svg {
    width: 17px;
    margin-right: 6px;
  }

  .hero-actions .button__arrow {
    width: 25px;
    height: 25px;
    margin-left: 7px;
  }

  .hero-visual {
    width: 100%;
    aspect-ratio: 1.22;
  }

  .trust-seal {
    top: -8px;
    left: -12px;
    width: 88px;
    height: 88px;
    padding: 15px 9px;
  }

  .trust-seal span {
    font-size: 11px;
  }

  .feature-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 48px);
    margin-top: 72px;
    gap: 12px;
  }

  .feature-card,
  .feature-card:last-child {
    grid-column: auto;
    grid-template-columns: 54px minmax(0, 1fr);
    width: 100%;
    min-height: 108px;
    padding: 13px;
    gap: 10px;
  }

  .feature-card__icon {
    width: 54px;
    height: 54px;
  }

  .feature-card__icon svg {
    width: 38px;
  }

  .feature-card__copy strong {
    font-size: 17px;
  }

  .feature-card__copy span {
    margin-top: 5px;
    font-size: 12px;
  }

  .feature-card__arrow {
    display: none;
  }
}

@media (min-width: 921px) and (max-width: 1080px) {
  .hero-copy h1 {
    font-size: clamp(58px, 5.8vw, 64px);
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 52px;
    padding: 10px 17px;
    font-size: 14px;
  }

  .hero-actions .button > svg {
    width: 18px;
  }

  .hero-actions .button__arrow {
    width: 28px;
    height: 28px;
  }

  .feature-row {
    width: calc(100% - 64px);
    gap: 14px;
  }

  .feature-card,
  .feature-card:last-child {
    grid-template-columns: 60px minmax(0, 1fr);
    min-height: 118px;
    padding: 15px;
  }

  .feature-card__icon {
    width: 60px;
    height: 60px;
  }

  .feature-card__icon svg {
    width: 40px;
  }

  .feature-card__copy strong {
    font-size: 18px;
  }

  .feature-card__copy span {
    font-size: 13px;
  }

}

@media (max-width: 600px) {
  :root {
    --content: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 79px;
    gap: 12px;
  }

  .brand {
    flex: 1;
  }

  .brand__copy strong {
    font-size: clamp(20px, 6.2vw, 25px);
  }

  .brand__copy > span {
    max-width: none;
    font-size: 9px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .js .primary-nav {
    top: 70px;
    width: 100%;
  }

  .hero-section {
    padding-top: 34px;
    padding-bottom: 76px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy h1 {
    font-size: clamp(47px, 13.2vw, 54px);
    line-height: 0.94;
  }

  .hero-copy h1 > span + span {
    white-space: normal;
  }

  .hero-title__oasis {
    display: block;
    margin-left: 0;
  }

  .hero-intro {
    margin-top: 22px;
    gap: 9px;
  }

  .hero-intro p {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: min(100%, 420px);
    gap: 10px;
  }

  .hero-actions .button,
  .hero-actions .button--primary,
  .hero-actions .button--secondary {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 9px 8px;
    font-size: 13px;
    white-space: nowrap;
  }

  .button {
    min-height: 50px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .button > svg {
    width: 18px;
    margin-right: 6px;
  }

  .button__arrow {
    display: none;
  }

  .hero-visual {
    width: 88%;
    aspect-ratio: 1.06;
    justify-self: center;
  }

  .photo-blob {
    top: 3%;
    bottom: 2%;
    left: 1%;
    border-width: 3px;
    border-radius: 40% 60% 54% 46% / 43% 39% 61% 57%;
  }

  .photo-blob img {
    object-position: 50% 50%;
  }

  .hero-orbit--one {
    inset: 1% 0 0 -0.5%;
  }

  .trust-seal {
    top: -4px;
    right: auto;
    left: -6px;
    display: grid;
    width: clamp(80px, 22vw, 90px);
    height: clamp(80px, 22vw, 90px);
    padding: 13px 8px;
  }

  .trust-seal span {
    font-size: clamp(9.5px, 2.7vw, 11px);
  }

  .trust-seal > svg:not(.trust-seal__sparkle) {
    width: 16px;
    margin-top: 3px;
  }

  .trust-seal .trust-seal__sparkle {
    right: -8px;
    width: 12px;
  }

  .oasis-foliage-band {
    right: -3%;
    bottom: -2px;
    left: -3%;
    height: 190px;
  }

  .oasis-foliage-sprig--edge-left {
    left: -11%;
    width: 164px;
  }

  .oasis-foliage-sprig--broad-left {
    left: 3%;
    width: 126px;
  }

  .oasis-foliage-sprig--left-mid,
  .oasis-foliage-sprig--right-mid {
    display: none;
  }

  .oasis-foliage-sprig--middle-left {
    left: 22%;
    width: 112px;
  }

  .oasis-foliage-sprig--low-left {
    left: 31%;
    width: 92px;
  }

  .oasis-foliage-sprig--center {
    left: 39%;
    width: 96px;
  }

  .oasis-foliage-sprig--middle-right {
    right: 21%;
    width: 108px;
  }

  .oasis-foliage-sprig--low-right {
    right: 31%;
    width: 92px;
  }

  .oasis-foliage-sprig--broad-right {
    right: 3%;
    width: 126px;
  }

  .oasis-foliage-sprig--edge-right {
    right: -11%;
    width: 168px;
  }

  .oasis-field-sparkle,
  .oasis-heart {
    display: none;
  }

  .oasis-field-sparkle--one,
  .oasis-field-sparkle--four,
  .oasis-heart--one,
  .oasis-heart--two {
    display: block;
  }

  .oasis-field-sparkle--one {
    top: 8.5%;
    right: 2px;
    bottom: auto;
    left: auto;
    width: 18px;
  }

  .oasis-heart--one {
    top: 17.5%;
    right: 1px;
    bottom: auto;
    left: auto;
    width: 22px;
  }

  .oasis-field-sparkle--four {
    top: 25.5%;
    right: auto;
    bottom: auto;
    left: 1px;
    width: 17px;
  }

  .oasis-heart--two {
    top: 34%;
    right: 1px;
    bottom: auto;
    left: auto;
    width: 20px;
  }

  .oasis-cat-play {
    display: none;
  }

  .oasis-cat-step {
    width: 16px;
  }

  .oasis-cat-step--one {
    top: 2px;
    left: 0;
  }

  .oasis-cat-step--two {
    top: 24px;
    left: 21px;
  }

  .oasis-cat-step--three {
    top: 2px;
    left: 43px;
  }

  .oasis-cat-step--four {
    top: 23px;
    left: 64px;
  }

  .oasis-cat-step--five {
    top: 1px;
    left: 86px;
  }

  .oasis-cat-step--six {
    top: 22px;
    left: 107px;
  }

  .oasis-cat-step--seven {
    top: 0;
    left: 129px;
  }

  .oasis-cat-step--eight {
    top: 21px;
    left: 150px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    margin-top: 50px;
    gap: 12px;
  }

  .feature-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .feature-card {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 104px;
    padding: 14px 15px;
    gap: 12px;
  }

  .feature-card__icon {
    width: 52px;
    height: 52px;
  }

  .feature-card__icon svg {
    width: 36px;
  }

  .feature-card__copy strong {
    font-size: 19px;
  }

  .feature-card__arrow {
    display: none;
  }

  .oasis-wave {
    height: 64px;
  }

  .section {
    padding: 80px 0;
  }

  .section-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .section h2 {
    font-size: clamp(41px, 12.5vw, 58px);
  }

  .about-collage,
  .foster-gallery {
    min-height: 450px;
  }

  .about-photo--main {
    right: 12%;
  }

  .about-photo--small {
    width: 42%;
    height: 38%;
  }

  .about-stamp {
    top: -21px;
    width: 100px;
    height: 100px;
    padding: 17px;
    font-size: 9px;
  }

  .consult-cta {
    display: grid;
    justify-items: start;
    padding: 24px;
  }

  .foster-values > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .foster-gallery__large {
    right: 3%;
    left: 0;
  }

  .foster-gallery__small {
    right: -1%;
    width: 42%;
  }

  .contact-shell {
    width: calc(100% - 20px);
    padding: 31px 20px;
    border-radius: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: auto;
    min-width: 156px;
    justify-self: center;
  }

  .footer-inner {
    padding: 38px 0 26px;
    text-align: center;
  }

  .footer-follow {
    flex-direction: column;
    gap: 24px;
  }

  .footer-follow__copy > p:last-child {
    font-size: 14px;
  }

  .footer-socials a {
    width: 46px;
    height: 46px;
  }

}

@media (max-width: 390px) {
  .brand__copy > span {
    display: block;
    font-size: 9px;
    letter-spacing: 0;
  }

  .feature-card {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .feature-card__icon {
    width: 50px;
    height: 50px;
  }

  .hero-actions .button {
    padding-right: 5px;
    padding-left: 5px;
    font-size: 12px;
  }

  .hero-actions .button > svg {
    width: 16px;
    margin-right: 4px;
  }
}

@media (max-width: 700px) {
  .oasis-cat-play {
    display: none;
  }

  .oasis-foliage-band {
    right: 0;
    bottom: -8px;
    left: 0;
    height: clamp(150px, 39vw, 180px);
  }

  .oasis-foliage-sprig {
    transform-origin: 50% 100%;
  }

  .oasis-foliage-sprig--left-mid,
  .oasis-foliage-sprig--middle-left,
  .oasis-foliage-sprig--tiny-left,
  .oasis-foliage-sprig--middle-right,
  .oasis-foliage-sprig--tiny-right,
  .oasis-foliage-sprig--right-mid {
    display: block;
  }

  .oasis-foliage-sprig--left-mid {
    bottom: -8px;
    left: 19%;
    width: clamp(57px, 17.5vw, 81px);
  }

  .oasis-foliage-sprig--middle-left {
    bottom: -12px;
    left: 29%;
    width: clamp(78px, 23vw, 103px);
  }

  .oasis-foliage-sprig--tiny-left {
    bottom: -15px;
    left: 24.5%;
    width: clamp(41px, 11.5vw, 55px);
  }

  .oasis-foliage-sprig--middle-right {
    right: 29%;
    bottom: -12px;
    width: clamp(78px, 23vw, 103px);
  }

  .oasis-foliage-sprig--tiny-right {
    right: 23.5%;
    bottom: -15px;
    width: clamp(41px, 11.5vw, 55px);
  }

  .oasis-foliage-sprig--right-mid {
    right: 19%;
    bottom: -8px;
    width: clamp(57px, 17.5vw, 81px);
  }

  .oasis-foliage-sprig--edge-left {
    bottom: -12px;
    left: -2%;
    display: block;
    width: clamp(101px, 32vw, 139px);
    transform: rotate(-3deg);
  }

  .oasis-foliage-sprig--broad-left {
    bottom: -14px;
    left: 7%;
    display: block;
    width: clamp(74px, 23vw, 101px);
    transform: rotate(-5deg);
  }

  .oasis-foliage-sprig--low-left {
    bottom: -16px;
    left: 37%;
    display: block;
    width: clamp(55px, 17.5vw, 76px);
    transform: rotate(-3deg);
  }

  .oasis-foliage-sprig--center {
    bottom: -10px;
    left: 44%;
    display: block;
    width: clamp(78px, 23vw, 101px);
    transform: rotate(-1deg);
  }

  .oasis-foliage-sprig--low-right {
    right: 36%;
    bottom: -16px;
    display: block;
    width: clamp(55px, 17.5vw, 76px);
    transform: rotate(3deg);
  }

  .oasis-foliage-sprig--broad-right {
    right: 7%;
    bottom: -14px;
    display: block;
    width: clamp(74px, 23vw, 101px);
    transform: rotate(5deg);
  }

  .oasis-foliage-sprig--edge-right {
    right: -2%;
    bottom: -12px;
    display: block;
    width: clamp(103px, 32.5vw, 142px);
    transform: rotate(3deg);
  }
}

/* Touch tablets, including landscape layouts wider than the tablet breakpoint. */
@media (hover: none) and (pointer: coarse) {
  .oasis-sparkle-field,
  .oasis-heart-field,
  .oasis-field-sparkle,
  .oasis-heart,
  .trust-seal__sparkle,
  .page-hero__badge-sparkle {
    display: none !important;
  }

  .page-process-card::after {
    display: none;
  }
}

/* Scale the desktop foliage rhythm down evenly for every tablet layout. */
@media (min-width: 701px) and (max-width: 1080px),
  (min-width: 701px) and (hover: none) and (pointer: coarse) and (orientation: landscape) {
  .page-body--home .oasis-foliage-band {
    bottom: -8px;
    height: clamp(180px, 24vw, 260px);
  }

  .page-body--home .oasis-foliage-sprig--edge-left {
    bottom: -12px;
    left: -2%;
    width: clamp(128px, 18vw, 246px);
  }

  .page-body--home .oasis-foliage-sprig--broad-left {
    bottom: -14px;
    left: 7%;
    width: clamp(92px, 13vw, 178px);
  }

  .page-body--home .oasis-foliage-sprig--left-mid {
    bottom: -8px;
    left: 19%;
    width: clamp(72px, 10vw, 138px);
  }

  .page-body--home .oasis-foliage-sprig--middle-left {
    bottom: -12px;
    left: 29%;
    width: clamp(86px, 12vw, 164px);
  }

  .page-body--home .oasis-foliage-sprig--low-left {
    bottom: -15px;
    left: 37%;
    width: clamp(72px, 10vw, 138px);
  }

  .page-body--home .oasis-foliage-sprig--tiny-left {
    bottom: -17px;
    left: 24.5%;
    width: clamp(44px, 6vw, 84px);
  }

  .page-body--home .oasis-foliage-sprig--center {
    bottom: -10px;
    left: 44%;
    width: clamp(76px, 10.5vw, 144px);
    transform: none;
  }

  .page-body--home .oasis-foliage-sprig--middle-right {
    right: 29%;
    bottom: -12px;
    width: clamp(86px, 12vw, 164px);
  }

  .page-body--home .oasis-foliage-sprig--low-right {
    right: 36%;
    bottom: -15px;
    width: clamp(72px, 10vw, 138px);
  }

  .page-body--home .oasis-foliage-sprig--tiny-right {
    right: 23.5%;
    bottom: -17px;
    width: clamp(44px, 6vw, 84px);
  }

  .page-body--home .oasis-foliage-sprig--right-mid {
    right: 19%;
    bottom: -8px;
    width: clamp(72px, 10vw, 138px);
  }

  .page-body--home .oasis-foliage-sprig--broad-right {
    right: 7%;
    bottom: -14px;
    width: clamp(92px, 13vw, 178px);
  }

  .page-body--home .oasis-foliage-sprig--edge-right {
    right: -2%;
    bottom: -12px;
    width: clamp(132px, 18.5vw, 252px);
  }
}

@media (min-width: 701px) and (hover: none) and (pointer: coarse) and (orientation: landscape) {
  .page-body--home .oasis-foliage-sprig--edge-left {
    width: clamp(150px, 20.5vw, 280px);
  }

  .page-body--home .oasis-foliage-sprig--broad-left,
  .page-body--home .oasis-foliage-sprig--broad-right {
    width: clamp(108px, 15vw, 205px);
  }

  .page-body--home .oasis-foliage-sprig--left-mid,
  .page-body--home .oasis-foliage-sprig--right-mid {
    width: clamp(84px, 11.5vw, 158px);
  }

  .page-body--home .oasis-foliage-sprig--middle-left,
  .page-body--home .oasis-foliage-sprig--middle-right {
    width: clamp(101px, 14vw, 191px);
  }

  .page-body--home .oasis-foliage-sprig--low-left,
  .page-body--home .oasis-foliage-sprig--low-right {
    width: clamp(84px, 11.5vw, 158px);
  }

  .page-body--home .oasis-foliage-sprig--tiny-left,
  .page-body--home .oasis-foliage-sprig--tiny-right {
    width: clamp(52px, 7vw, 96px);
  }

  .page-body--home .oasis-foliage-sprig--center {
    width: clamp(90px, 12.5vw, 171px);
  }

  .page-body--home .oasis-foliage-sprig--edge-right {
    width: clamp(154px, 21vw, 287px);
  }
}

@media (min-width: 701px) and (hover: none) and (pointer: coarse) and (orientation: portrait) {
  .page-body--home .oasis-foliage-sprig--edge-left {
    width: clamp(164px, 24vw, 224px);
  }

  .page-body--home .oasis-foliage-sprig--broad-left,
  .page-body--home .oasis-foliage-sprig--broad-right {
    width: clamp(118px, 17vw, 160px);
  }

  .page-body--home .oasis-foliage-sprig--left-mid,
  .page-body--home .oasis-foliage-sprig--right-mid {
    width: clamp(90px, 13vw, 122px);
  }

  .page-body--home .oasis-foliage-sprig--middle-left,
  .page-body--home .oasis-foliage-sprig--middle-right {
    width: clamp(108px, 16vw, 150px);
  }

  .page-body--home .oasis-foliage-sprig--low-left,
  .page-body--home .oasis-foliage-sprig--low-right {
    width: clamp(90px, 13vw, 122px);
  }

  .page-body--home .oasis-foliage-sprig--tiny-left,
  .page-body--home .oasis-foliage-sprig--tiny-right {
    width: clamp(56px, 8vw, 76px);
  }

  .page-body--home .oasis-foliage-sprig--center {
    width: clamp(98px, 14vw, 132px);
  }

  .page-body--home .oasis-foliage-sprig--edge-right {
    width: clamp(168px, 24.5vw, 228px);
  }
}

/* Keep the three-line home title optically aligned on compact landscape screens. */
@media (min-width: 701px) and (max-width: 1180px) {
  .hero-title__oasis {
    display: block;
    margin-left: 0;
  }
}

/* Balanced inner-page hero artwork for portrait tablets. */
@media (min-width: 601px) and (max-width: 920px) and (orientation: portrait) {
  .page-hero__media {
    width: min(460px, 72vw);
    min-height: 420px;
  }

  .page-body--about .page-hero--about .about-story-hero__media {
    width: min(400px, 66vw);
    margin: 0 auto 8px;
  }

  .page-hero--consults .page-hero__media {
    width: min(460px, 72vw);
    min-height: 420px;
  }

  .page-hero__badge {
    top: 20px;
    right: -16px;
    width: 124px;
    height: 124px;
    padding: 20px 12px;
  }

  .page-hero--consults .page-hero__badge--green {
    right: -16px;
  }

  .page-hero__badge span {
    font-size: 14px;
  }

  .page-hero__badge > svg:not(.page-hero__badge-sparkle) {
    width: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .js .motion-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    scale: 1;
    translate: none;
    transition: none !important;
  }

  .js h1 em[data-motion-letters="true"] .motion-letter,
  .js h2.motion-reveal .motion-letter {
    color: var(--coral);
    transition: none !important;
  }

  .hero-visual,
  .hero-photo-halo,
  .oasis-foliage__sway,
  .oasis-wave__back,
  .oasis-wave__front,
  .oasis-sparkle,
  .oasis-heart {
    animation: none !important;
  }

  .oasis-foliage__sway,
  .oasis-wave__back,
  .oasis-wave__front {
    transform: none;
  }

  .oasis-sparkle {
    opacity: 0.34;
    transform: none;
  }

  .oasis-field-sparkle--one,
  .oasis-field-sparkle--four {
    opacity: 0.58;
  }

  .trust-seal .trust-seal__sparkle {
    opacity: 0.34;
  }

  .oasis-heart {
    opacity: 0.58;
    transform: none;
  }

  .oasis-cat-play {
    display: none;
  }

  .page-body--consults .page-help-card,
  .page-body--consults .page-option-card,
  .page-body--consults .page-help-card::before,
  .page-body--consults .page-option-card::before,
  .page-body--consults .page-help-card__icon,
  .page-body--consults .page-option-card__label,
  .page-body--consults .page-option-card__label::after,
  .page-body--consults .page-option-card h3 {
    transition: none !important;
  }

  .page-body--consults .page-help-card:hover,
  .page-body--consults .page-option-card:hover,
  .page-body--consults .page-help-card:hover .page-help-card__icon,
  .page-body--consults .page-option-card:hover .page-option-card__label,
  .page-body--consults .page-option-card:hover h3 {
    transform: none !important;
  }

  .page-body--consults .page-help-card::before,
  .page-body--consults .page-option-card::before {
    transform: none !important;
  }

  .page-body--consults .page-help-card:hover::before,
  .page-body--consults .page-option-card:hover::before {
    opacity: 1 !important;
  }

}

@media (forced-colors: active) {
  .photo-blob,
  .about-photo,
  .foster-gallery figure {
    border: 2px solid CanvasText;
  }
}

@media print {
  .about-story-more__content {
    display: grid !important;
    animation: none;
  }

  .about-story-more__toggle {
    display: none;
  }
}
