:root {
  --forest-950: #0d2923;
  --forest-900: #12352d;
  --forest-800: #173f35;
  --forest-700: #225647;
  --sage-200: #cedbd2;
  --sage-100: #e7eee9;
  --ivory: #f8f5ed;
  --paper: #fffdf8;
  --gold: #c8994d;
  --gold-light: #e6c98f;
  --coral: #c86f5b;
  --coral-light: #f2d8d0;
  --sky: #6f9fa8;
  --sky-light: #dcebee;
  --berry: #7d647d;
  --charcoal: #242a27;
  --muted: #68706c;
  --line: #d9ded8;
  --white: #ffffff;
  --error: #9f352f;
  --success: #276b50;
  --shadow: 0 18px 44px rgba(25, 42, 35, 0.1);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

button {
  color: inherit;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
}

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
}

h2 {
  color: var(--forest-950);
  font-size: clamp(2.35rem, 4vw, 4.4rem);
}

h3 {
  font-size: 1.18rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--forest-950);
  transform: translateY(-150%);
}

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

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

.section-band {
  background: var(--ivory);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid var(--sage-200);
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--forest-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(13, 41, 35, 0.48);
  color: var(--gold-light);
}

.large-copy {
  color: var(--forest-950);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.38;
}

.announcement-bar {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 18px;
  background: linear-gradient(
    90deg,
    var(--gold) 0 34%,
    #de9b72 34% 58%,
    #8ab7bb 58% 80%,
    #9b7d9a 80%
  );
  color: var(--forest-950);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(34, 86, 71, 0.14);
  background: rgba(255, 253, 248, 0.96);
  color: var(--forest-950);
  box-shadow: 0 12px 34px rgba(25, 42, 35, 0.11);
  backdrop-filter: blur(14px);
}

.site-header::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--coral),
    var(--sky),
    transparent
  );
  content: "";
  opacity: 0.72;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  transition: transform 180ms ease;
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--forest-700);
  border-radius: 50%;
  color: var(--forest-800);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
}

.brand-mark span {
  color: var(--gold);
  font-size: 0.75rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--forest-700);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.main-nav a {
  position: relative;
  padding: 10px 9px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--sage-100);
  color: var(--forest-950);
  transform: translateY(-2px);
}

.main-nav a > svg {
  display: none;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
}

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

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  background: linear-gradient(135deg, var(--forest-800), #356f78);
  color: var(--white);
  font-size: 0.82rem;
  box-shadow: 0 9px 22px rgba(23, 63, 53, 0.2);
}

.button-gold {
  background: var(--gold);
  color: var(--forest-950);
}

.button,
.kitten-card,
.story-card,
.standards-grid article {
  position: relative;
}

.button::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.22) 48%,
    transparent 70%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-70%);
  transition:
    opacity 180ms ease,
    transform 480ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(70%);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-light);
}

.button-outline {
  border-color: var(--forest-800);
  background: transparent;
  color: var(--forest-950);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--forest-950);
  color: var(--white);
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
}

.mobile-slider-controls,
.mobile-action-bar {
  display: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: var(--forest-800);
  cursor: pointer;
  font-weight: 700;
}

.light-link {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - var(--header-height) - 12px));
  overflow: hidden;
  background: var(--forest-950);
  color: var(--white);
}

.hero-media,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center 40%;
  background-size: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 900ms ease,
    transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 30, 25, 0.9) 0%,
    rgba(8, 30, 25, 0.67) 38%,
    rgba(8, 30, 25, 0.08) 72%
  );
}

.hero-content {
  position: relative;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 90px 130px;
}

.hero h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(4rem, 7.6vw, 7.7rem);
  line-height: 0.88;
}

.hero-lede {
  max-width: 600px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-slide-controls {
  position: absolute;
  right: 0;
  bottom: 96px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-slide-controls > div {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 22px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.hero-dot.is-active {
  width: 42px;
  background: var(--gold-light);
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -62px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.trust-grid > div {
  display: flex;
  min-height: 124px;
  align-items: center;
  gap: 15px;
  padding: 23px;
  border-right: 1px solid var(--line);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.trust-grid > div:hover {
  z-index: 1;
  background: var(--sky-light);
  transform: translateY(-6px);
}

.trust-grid > div:nth-child(2):hover {
  background: #f6e9d2;
}

.trust-grid > div:nth-child(3):hover {
  background: var(--coral-light);
}

.trust-grid > div:nth-child(4):hover {
  background: #ece3ec;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--gold);
}

.trust-grid span {
  display: flex;
  flex-direction: column;
}

.trust-grid strong {
  color: var(--forest-950);
  font-size: 0.9rem;
}

.trust-grid small {
  color: var(--muted);
  font-size: 0.75rem;
}

.intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 10%;
  padding-block: 150px;
}

.intro-copy {
  max-width: 630px;
}

.intro-copy > p:not(.large-copy) {
  color: var(--muted);
}

.breeder-story {
  padding-block: 130px;
}

.breeder-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 8%;
}

.breeder-media {
  position: relative;
  min-height: 720px;
  padding: 34px 16% 44px 0;
}

.breeder-main {
  width: 100%;
  height: 642px;
  border-radius: 7px;
  object-fit: cover;
  object-position: center 36%;
  box-shadow: 0 26px 54px rgba(25, 42, 35, 0.17);
  transition:
    filter 300ms ease,
    transform 450ms ease;
}

.breeder-inset {
  position: absolute;
  right: 0;
  top: 0;
  width: 39%;
  height: 318px;
  border: 8px solid var(--ivory);
  border-radius: 7px;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: 0 20px 42px rgba(25, 42, 35, 0.14);
  transition: transform 450ms ease;
}

.breeder-inset-secondary {
  position: absolute;
  right: 1%;
  bottom: 0;
  width: 36%;
  height: 326px;
  border: 8px solid var(--ivory);
  border-radius: 7px;
  object-fit: cover;
  object-position: center 24%;
  box-shadow: 0 20px 42px rgba(25, 42, 35, 0.14);
  transition: transform 450ms ease;
}

.breeder-media:hover .breeder-main {
  filter: saturate(1.04);
  transform: translateY(-3px);
}

.breeder-media:hover .breeder-inset {
  transform: translate(4px, -5px) rotate(1deg);
}

.breeder-media:hover .breeder-inset-secondary {
  transform: translate(3px, 4px) rotate(-1deg);
}

.breeder-media .image-caption {
  right: 24%;
  left: 18px;
  bottom: 64px;
}

.breeder-copy > p:not(.eyebrow):not(.large-copy) {
  color: var(--muted);
}

.breeder-copy .large-copy {
  margin: 24px 0 20px;
}

.breeder-points {
  display: grid;
  gap: 11px;
  margin: 28px 0;
}

.breeder-points span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--forest-950);
  font-size: 0.9rem;
  font-weight: 700;
}

.breeder-points svg {
  width: 20px;
  color: var(--gold);
}

.section-heading {
  margin-bottom: 48px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: end;
  gap: 50px;
}

.split-heading > p {
  max-width: 530px;
  justify-self: end;
  color: var(--muted);
}

.kittens {
  padding-block: 120px;
}

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

.kitten-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(25, 42, 35, 0.07);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.kitten-card:nth-child(1) {
  border-top: 4px solid var(--sky);
}

.kitten-card:nth-child(2) {
  border-top: 4px solid var(--gold);
}

.kitten-card:nth-child(3) {
  border-top: 4px solid var(--coral);
}

.kitten-card:hover {
  border-color: rgba(200, 153, 77, 0.72);
  box-shadow: 0 22px 46px rgba(25, 42, 35, 0.13);
  transform: translateY(-5px);
}

.kitten-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sage-100);
}

.kitten-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.kitten-card:hover .kitten-photo img {
  transform: scale(1.025);
}

.status-badge {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-badge.available {
  background: var(--forest-800);
  color: var(--white);
}

.status-badge.waitlist {
  background: var(--gold-light);
  color: var(--forest-950);
}

.kitten-copy {
  padding: 24px;
}

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

.kitten-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 17px;
}

.kitten-title h3 {
  color: var(--forest-950);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 600;
}

.kitten-title p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.kitten-title > span {
  flex: 0 0 auto;
  color: var(--forest-700);
  font-size: 0.75rem;
  font-weight: 700;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.inquire-icon {
  border-color: var(--forest-800);
  background: var(--forest-800);
  color: var(--white);
}

.availability-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 25px 28px;
  border: 1px solid var(--sage-200);
  background: var(--sage-100);
}

.availability-note > svg {
  width: 30px;
  height: 30px;
  color: var(--forest-700);
}

.availability-note strong {
  color: var(--forest-950);
}

.availability-note p {
  margin: 3px 0 0;
  color: var(--muted);
}

.parents {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 8%;
  padding-block: 140px;
}

.parents-media {
  position: relative;
}

.parents-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.parent-inset {
  position: absolute;
  top: 28px;
  right: -28px;
  width: 30% !important;
  min-height: 0 !important;
  aspect-ratio: 3 / 4;
  border: 7px solid var(--paper);
  box-shadow: var(--shadow);
  object-position: center;
}

.image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 11px 14px;
  background: rgba(13, 41, 35, 0.88);
  color: var(--white);
  font-size: 0.75rem;
}

.parents-copy .large-copy {
  margin: 24px 0;
}

.parent-facts {
  margin: 25px 0 30px;
  border-block: 1px solid var(--line);
}

.parent-facts div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.parent-facts div:last-child {
  border-bottom: 0;
}

.parent-facts dt {
  color: var(--forest-950);
  font-weight: 700;
}

.parent-facts dd {
  margin: 0;
  color: var(--muted);
}

.dark-band {
  background: var(--forest-950);
  color: var(--white);
}

.health {
  position: relative;
  overflow: hidden;
  padding-block: 0;
  background: #092d29;
}

.health-color-line {
  display: grid;
  height: 7px;
  grid-template-columns: 1.15fr 0.85fr 1fr 0.7fr;
}

.health-color-line span:nth-child(1) {
  background: var(--sky);
}

.health-color-line span:nth-child(2) {
  background: var(--gold);
}

.health-color-line span:nth-child(3) {
  background: var(--coral);
}

.health-color-line span:nth-child(4) {
  background: var(--berry);
}

.health-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(55px, 7vw, 105px);
  padding-block: 105px 90px;
}

.health-portrait {
  position: relative;
  margin: 0;
}

.health-portrait::before {
  position: absolute;
  z-index: 0;
  top: -16px;
  left: -16px;
  width: 38%;
  height: 32%;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  content: "";
}

.health-portrait::after {
  position: absolute;
  z-index: 0;
  right: -16px;
  bottom: -16px;
  width: 42%;
  height: 35%;
  border-right: 2px solid var(--sky);
  border-bottom: 2px solid var(--sky);
  content: "";
}

.health-portrait > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(480px, 43vw, 620px);
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.26);
  transition:
    transform 600ms ease,
    filter 400ms ease;
}

.health-portrait:hover > img {
  filter: saturate(1.06);
  transform: scale(1.012);
}

.health-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  background: rgba(7, 35, 31, 0.9);
  color: var(--white);
  backdrop-filter: blur(13px);
}

.health-portrait figcaption > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-950);
}

.health-portrait figcaption svg {
  width: 21px;
  height: 21px;
}

.health-portrait figcaption div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.health-portrait figcaption strong {
  font-size: 0.86rem;
}

.health-portrait figcaption small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  line-height: 1.45;
}

.health-story h2 {
  max-width: 720px;
  margin-top: 17px;
  color: var(--white);
  font-size: clamp(3.7rem, 5.3vw, 6rem);
  line-height: 0.97;
}

.health-lede {
  max-width: 650px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 1.02rem;
  line-height: 1.75;
}

.health-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 33px;
  padding-block: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.health-principles > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: start;
  gap: 11px;
}

.health-principles svg {
  width: 35px;
  height: 35px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(111, 159, 168, 0.18);
  color: #b8d9df;
}

.health-principles > div:last-child svg {
  background: rgba(200, 111, 91, 0.18);
  color: #efb6a9;
}

.health-principles span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  line-height: 1.55;
}

.health-principles strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.79rem;
}

.health-standards-band {
  padding-block: 78px 84px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #f1f5f3;
  color: var(--charcoal);
}

.health-standards-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 35px;
}

.health-standards-heading h3 {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--forest-950);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.5rem, 3.8vw, 4rem);
  font-weight: 600;
  line-height: 1.02;
}

.health-standards-heading > p {
  max-width: 500px;
  justify-self: end;
  color: var(--muted);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.standards-grid article {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid #d9e1dd;
  border-top: 5px solid var(--sky);
  border-radius: 7px;
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 12px 28px rgba(14, 48, 40, 0.06);
  transition:
    border-color 200ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.standards-grid article:nth-child(2) {
  border-top-color: var(--coral);
}

.standards-grid article:nth-child(3) {
  border-top-color: var(--gold);
}

.standards-grid article:nth-child(4) {
  border-top-color: var(--berry);
}

.standards-grid article::after {
  position: absolute;
  right: 25px;
  bottom: 20px;
  left: 25px;
  height: 3px;
  border-radius: 2px;
  background: var(--sky);
  content: "";
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 300ms ease;
}

.standards-grid article:nth-child(2)::after {
  background: var(--coral);
}

.standards-grid article:nth-child(3)::after {
  background: var(--gold);
}

.standards-grid article:nth-child(4)::after {
  background: var(--berry);
}

.standards-grid article:hover {
  border-color: #cbd8d2;
  box-shadow: 0 22px 42px rgba(14, 48, 40, 0.13);
  transform: translateY(-7px);
}

.standards-grid article:hover::after {
  transform: scaleX(1);
}

.standard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.standard-topline > span {
  color: #9ca8a3;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.85rem;
}

.standard-topline svg {
  width: 43px;
  height: 43px;
  box-sizing: content-box;
  padding: 11px;
  border-radius: 50%;
  background: var(--sky-light);
  color: #396e77;
  transition: transform 250ms ease;
}

.standards-grid article:nth-child(2) .standard-topline svg {
  background: var(--coral-light);
  color: #9b4c3b;
}

.standards-grid article:nth-child(3) .standard-topline svg {
  background: var(--gold-pale);
  color: #826315;
}

.standards-grid article:nth-child(4) .standard-topline svg {
  background: #ebe3eb;
  color: var(--berry);
}

.standards-grid article:hover .standard-topline svg {
  transform: rotate(-7deg) scale(1.08);
}

.standards-grid article > small {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.standards-grid article:nth-child(1) > small {
  color: #467d86;
}

.standards-grid article:nth-child(3) > small {
  color: #886817;
}

.standards-grid article:nth-child(4) > small {
  color: var(--berry);
}

.standards-grid h3 {
  margin-bottom: 11px;
  color: var(--forest-950);
  font-size: 1.12rem;
}

.standards-grid p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.health-verification-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
  padding: 17px 20px;
  border: 1px solid #d5ded9;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.66);
}

.health-verification-note svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--forest-700);
}

.health-verification-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.health-verification-note strong {
  color: var(--forest-950);
}

.process {
  padding-block: 140px;
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
}

.process-list {
  display: grid;
  max-width: 1000px;
  grid-template-columns: 1fr 1fr;
  gap: 0 70px;
  margin: 55px auto 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 160px;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 29px 0;
  border-top: 1px solid var(--line);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.process-list li:hover {
  padding-inline: 18px;
  background: var(--white);
  box-shadow: 0 15px 30px rgba(25, 42, 35, 0.08);
}

.process-list li:hover > span {
  background: var(--coral);
  color: var(--white);
  transform: rotate(8deg);
}

.process-list li > span {
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.process-list li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--forest-800);
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 8px;
  color: var(--forest-950);
}

.process-list p {
  color: var(--muted);
}

.pricing {
  position: relative;
  overflow: hidden;
  padding-block: 118px 82px;
  border-top: 1px solid var(--line);
  background: #f1f5f3;
}

.pricing::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--coral) 0 28%,
    var(--gold) 28% 55%,
    var(--sky) 55% 82%,
    var(--berry) 82%
  );
  content: "";
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(52px, 7vw, 108px);
}

.pricing-copy h2 {
  max-width: 620px;
  margin-top: 13px;
  color: var(--forest-950);
  font-size: clamp(3.1rem, 5vw, 5.4rem);
  line-height: 0.98;
}

.pricing-copy .large-copy {
  max-width: 590px;
  margin: 25px 0 27px;
  color: var(--muted);
  font-size: 1.15rem;
}

.pricing-points {
  display: grid;
  gap: 11px;
  margin-bottom: 30px;
}

.pricing-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-800);
  font-size: 0.83rem;
  font-weight: 700;
}

.pricing-points svg {
  width: 19px;
  height: 19px;
  color: var(--coral);
}

.pricing-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: 14px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 415px;
  flex-direction: column;
  overflow: hidden;
  padding: 31px 28px 28px;
  border: 1px solid #d7dfdb;
  border-top: 6px solid var(--coral);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(14, 48, 40, 0.09);
  transition:
    box-shadow 240ms ease,
    transform 240ms ease;
}

.price-card:hover {
  box-shadow: 0 26px 54px rgba(14, 48, 40, 0.15);
  transform: translateY(-7px);
}

.reservation-price {
  border-top-color: var(--sky);
  background: var(--forest-950);
  color: var(--white);
}

.price-card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-light);
  color: #934638;
}

.reservation-price .price-card-icon {
  background: rgba(152, 205, 213, 0.15);
  color: #b8dce1;
}

.price-card-icon svg {
  width: 24px;
  height: 24px;
}

.price-card > p:first-of-type {
  margin: 0 0 7px;
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reservation-price > p:first-of-type {
  color: #b8dce1;
}

.price-card > strong {
  display: block;
  color: var(--forest-950);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.35rem, 2.8vw, 3.45rem);
  font-weight: 600;
  line-height: 1;
  white-space: normal;
}

.reservation-price > strong {
  color: var(--white);
}

.price-card > strong span {
  color: var(--coral);
}

.price-card > small {
  display: block;
  min-height: 42px;
  margin-top: 10px;
  color: var(--coral);
  font-weight: 700;
  line-height: 1.45;
}

.reservation-price > small {
  color: var(--gold-light);
}

.price-card > p:last-child {
  margin: auto 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.83rem;
}

.reservation-price > p:last-child {
  border-top-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
}

.gallery {
  padding-block: 120px;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 240px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--sage-200);
  cursor: zoom-in;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

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

.gallery-item::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(8, 30, 25, 0.76));
  content: "";
}

.gallery-item::before {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-950);
  content: "+";
  font-size: 1.35rem;
  opacity: 0;
  transform: scale(0.65) rotate(-30deg);
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 15px;
  left: 18px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: left;
}

.stories {
  padding-block: 135px;
}

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

.story-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(25, 42, 35, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.story-card:hover {
  border-color: rgba(200, 153, 77, 0.68);
  box-shadow: 0 20px 42px rgba(25, 42, 35, 0.12);
  transform: translateY(-5px);
}

.story-media {
  position: relative;
  height: 175px;
  overflow: hidden;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.story-card:hover .story-media img {
  transform: scale(1.035);
}

.story-media span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 8px;
  border-radius: 3px;
  background: rgba(13, 41, 35, 0.86);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.story-card > .stars,
.story-card > blockquote,
.story-card > footer {
  margin-right: 30px;
  margin-left: 30px;
}

.story-card > .stars {
  margin-top: 24px;
}

.story-card > footer {
  margin-bottom: 28px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
}

.story-card blockquote {
  margin: 22px 30px 24px;
  color: var(--forest-950);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.45;
}

.story-statement {
  margin: 25px 30px 26px;
  color: var(--forest-950);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.42;
}

.story-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: auto 30px 28px;
}

.story-card footer > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--forest-800);
  font-size: 0.75rem;
  font-weight: 700;
}

.story-card footer > span svg {
  width: 19px;
  height: 19px;
}

.story-card footer div {
  display: flex;
  flex-direction: column;
}

.story-card footer small {
  color: var(--muted);
}

.faq {
  position: relative;
  padding-block: 125px;
  background: #f2f6f4;
}

.faq::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--sky), var(--gold), var(--coral));
  content: "";
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 9%;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro > p:not(.eyebrow) {
  margin: 25px 0;
  color: var(--muted);
}

.accordion-list {
  display: grid;
  gap: 11px;
}

.accordion-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 4px solid var(--sky);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 7px 18px rgba(25, 42, 35, 0.05);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.accordion-list details:nth-child(2n) {
  border-left-color: var(--gold);
}

.accordion-list details:nth-child(3n) {
  border-left-color: var(--coral);
}

.accordion-list details:hover {
  border-color: rgba(111, 159, 168, 0.7);
  box-shadow: 0 15px 30px rgba(25, 42, 35, 0.1);
  transform: translateX(4px);
}

.accordion-list details[open] {
  border-left-color: var(--coral);
  box-shadow: 0 16px 34px rgba(25, 42, 35, 0.11);
}

.accordion-list summary {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--forest-950);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

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

.accordion-list summary svg {
  width: 20px;
  height: 20px;
  box-sizing: content-box;
  padding: 8px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--forest-800);
  transition: transform 180ms ease;
}

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

.accordion-list details p {
  max-width: 680px;
  padding: 0 70px 24px 20px;
  color: var(--muted);
}

.contact {
  position: relative;
  overflow: hidden;
  background: #edf4f1;
}

.contact-color-line {
  display: grid;
  height: 7px;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.7fr;
}

.contact-color-line span:nth-child(1) {
  background: var(--coral);
}

.contact-color-line span:nth-child(2) {
  background: var(--gold);
}

.contact-color-line span:nth-child(3) {
  background: var(--sky);
}

.contact-color-line span:nth-child(4) {
  background: var(--berry);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 8%;
  padding-block: 112px;
}

.contact-intro,
.contact-form {
  min-width: 0;
}

.contact-photo {
  position: relative;
  overflow: hidden;
  margin-bottom: 38px;
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  background: var(--sage-200);
  box-shadow: 0 22px 50px rgba(13, 41, 35, 0.15);
}

.contact-photo::after {
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(transparent, rgba(8, 30, 25, 0.72));
  content: "";
  pointer-events: none;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 500ms ease;
}

.contact-photo:hover img {
  transform: scale(1.035);
}

.contact-photo > span {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 15px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-photo > span svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

.contact-intro h2 {
  max-width: 620px;
  font-size: clamp(3rem, 4.6vw, 5rem);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0px 0;
  color: var(--muted);
}

.contact-hours {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid #cad7d1;
  border-bottom: 1px solid #cad7d1;
}

.contact-hours > svg {
  width: 48px;
  height: 48px;
  padding: 13px;
  border-radius: 50%;
  background: var(--forest-800);
  color: var(--gold-light);
}

.contact-hours div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-hours strong {
  margin-bottom: 3px;
  color: var(--forest-950);
}

.contact-hours span {
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-form {
  position: relative;
  padding: 38px;
  border: 1px solid #d6dfdb;
  border-top: 6px solid var(--coral);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(13, 41, 35, 0.13);
}

.contact-form::before {
  position: absolute;
  top: -6px;
  right: 0;
  width: 37%;
  height: 6px;
  border-radius: 0 8px 0 0;
  background: var(--sky);
  content: "";
}

.contact-form-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 29px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.contact-form-heading > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral-light);
  color: #874337;
}

.contact-form-heading svg {
  width: 21px;
  height: 21px;
}

.contact-form-heading p {
  margin: 0 0 2px;
  color: var(--coral);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form-heading h3 {
  margin: 0;
  color: var(--forest-950);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.1;
}

.contact-form label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 17px;
  color: var(--forest-950);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form .anti-spam-field {
  position: absolute;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: 0;
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 400;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form input:not([type="checkbox"]),
.contact-form select {
  height: 50px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(34, 86, 71, 0.12);
}

.contact-form .invalid {
  border-color: var(--error);
}

.contact-consent {
  margin-top: 5px;
}

.contact-submit {
  width: 100%;
  margin-top: 4px;
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: 0.75;
}

.contact-complete {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 15px;
  border: 1px solid #b9d3c6;
  border-radius: 6px;
  background: #edf7f1;
  color: var(--success);
}

.contact-complete[hidden] {
  display: none;
}

.contact-complete > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  background: var(--white);
}

.contact-complete div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-complete strong {
  color: var(--forest-950);
  font-size: 0.9rem;
}

.contact-complete span {
  color: var(--muted);
  font-size: 0.78rem;
}

.contact,
.contact-layout,
.contact-form,
.inquiry,
.inquiry-layout,
.inquiry-form,
.application-progress,
.form-step,
.form-step-heading,
.form-navigation {
  min-width: 0;
  max-width: 100%;
}

.inquiry {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding-block: 125px;
  background: var(--forest-800);
  color: var(--white);
}

.inquiry-layout {
  display: grid;
  min-width: 0;
  max-width: 100%;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 6%;
}

.inquiry-copy {
  position: sticky;
  top: 120px;
}

.inquiry-copy h2 {
  color: var(--white);
}

.inquiry-copy > p:not(.eyebrow) {
  margin: 25px 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 38px;
}

.contact-points span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.87rem;
}

.contact-points svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--gold-light);
}

.application-aside-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
}

.application-aside-note > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-950);
}

.application-aside-note div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.application-aside-note strong {
  color: var(--white);
  font-size: 0.88rem;
}

.application-aside-note span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.55;
}

.inquiry-form {
  min-width: 0;
  max-width: 100%;
  scroll-margin-top: 110px;
  padding: 36px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--charcoal);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  color: var(--forest-950);
}

.form-heading > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-heading span {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 600;
}

.form-heading small {
  color: var(--muted);
  font-size: 0.72rem;
}

.form-heading > strong {
  color: var(--coral);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.application-progress {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 34px;
}

.application-progress-track {
  height: 4px;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 3px;
  background: var(--sage-100);
}

.application-progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--sky));
  transition: width 300ms ease;
}

.application-progress ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.application-progress li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8a928e;
  font-size: 0.68rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.application-progress li > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 0.68rem;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.application-progress li.is-active {
  color: var(--forest-950);
}

.application-progress li.is-active > span {
  border-color: var(--forest-800);
  background: var(--forest-800);
  color: var(--white);
}

.application-progress li.is-complete {
  color: var(--forest-700);
}

.application-progress li.is-complete > span {
  border-color: var(--sky);
  background: var(--sky-light);
  color: var(--forest-950);
}

.form-step[hidden] {
  display: none;
}

.form-step,
.form-step-heading,
.field-row,
.field-row > *,
.inquiry-form label,
.choice-fieldset,
.acknowledgement-list {
  min-width: 0;
  max-width: 100%;
}

.form-step.is-active {
  animation: form-step-in 280ms ease both;
}

@keyframes form-step-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-step-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-step-heading > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sky-light);
  color: var(--forest-800);
}

.form-step[data-form-step="1"] .form-step-heading > span {
  background: var(--coral-light);
  color: #8a3f32;
}

.form-step[data-form-step="2"] .form-step-heading > span {
  background: var(--gold-pale);
  color: #775b14;
}

.form-step[data-form-step="3"] .form-step-heading > span {
  background: #e8e0e9;
  color: var(--berry);
}

.form-step-heading svg {
  width: 20px;
  height: 20px;
}

.form-step-heading p {
  margin: 0 0 1px;
  color: var(--coral);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-step-heading h3 {
  margin: 0;
  color: var(--forest-950);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 17px;
  color: var(--forest-950);
  font-size: 0.82rem;
  font-weight: 700;
}

.inquiry-form .anti-spam-field {
  position: absolute;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.age-confirmation {
  margin-top: 4px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--sage-100);
}

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

.inquiry-form input:not([type="checkbox"]):not([type="radio"]),
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: 0;
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 400;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.inquiry-form input:not([type="checkbox"]):not([type="radio"]),
.inquiry-form select {
  height: 50px;
  padding: 0 13px;
}

.inquiry-form textarea {
  min-height: 130px;
  padding: 12px 13px;
  resize: vertical;
}

.inquiry-form input:not([type="checkbox"]):not([type="radio"]):focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(34, 86, 71, 0.12);
}

.inquiry-form .invalid {
  border-color: var(--error);
}

.choice-fieldset {
  min-width: 0;
  margin: 0 0 19px;
  padding: 0;
  border: 0;
}

.choice-fieldset legend {
  margin-bottom: 9px;
  color: var(--forest-950);
  font-size: 0.82rem;
  font-weight: 700;
}

.choice-grid {
  display: grid;
  gap: 9px;
}

.choice-grid.two-up {
  grid-template-columns: repeat(2, 1fr);
}

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

.choice-option {
  display: block !important;
  margin: 0 !important;
  cursor: pointer;
}

.choice-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-option > span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.choice-option:hover > span {
  border-color: var(--sky);
  color: var(--forest-950);
  transform: translateY(-1px);
}

.choice-option input:focus-visible + span {
  outline: 3px solid rgba(34, 86, 71, 0.15);
  outline-offset: 2px;
}

.choice-option input:checked + span {
  border-color: var(--forest-700);
  background: var(--sage-100);
  color: var(--forest-950);
  box-shadow: inset 0 0 0 1px var(--forest-700);
}

.choice-option.invalid > span {
  border-color: var(--error);
  background: #fff8f7;
}

.choice-option svg {
  width: 15px;
  height: 15px;
}

.check-label {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px !important;
  font-weight: 500 !important;
}

.check-label input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--forest-700);
}

.check-label.invalid {
  margin-inline: -8px;
  padding: 8px;
  border-radius: 4px;
  background: #fff1ef;
  color: var(--error);
}

.review-intro {
  margin: -4px 0 20px;
  color: var(--muted);
  font-size: 0.85rem;
}

.application-review {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.application-review > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  padding: 14px;
  background: var(--white);
}

.application-review > div.wide {
  grid-column: 1 / -1;
}

.application-review span {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.application-review strong {
  overflow-wrap: anywhere;
  color: var(--forest-950);
  font-size: 0.8rem;
  line-height: 1.45;
}

.acknowledgement-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 19px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.acknowledgement-list .check-label {
  margin-bottom: 12px;
}

.pricing-confirmation {
  margin-inline: -12px;
  padding: 12px;
  border-radius: 5px;
  background: var(--gold-pale);
}

.inline-policy-button {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--forest-700);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.inline-policy-button:hover,
.inline-policy-button:focus-visible {
  color: var(--coral);
}

.form-status {
  display: none;
  margin: 4px 0 16px;
  padding: 11px 13px;
  border-left: 3px solid currentColor;
  background: var(--sage-100);
  font-size: 0.85rem;
}

.form-status.visible {
  display: block;
}

.form-status.error {
  color: var(--error);
  background: #f9ecea;
}

.form-status.success {
  color: var(--success);
}

.form-submit {
  margin-left: auto;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.75;
}

.spin {
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.form-navigation [hidden] {
  display: none;
}

.form-back {
  margin-right: auto;
}

.application-complete {
  padding: 46px 24px 34px;
  text-align: center;
}

.application-complete[hidden] {
  display: none;
}

.application-complete.is-visible {
  animation: form-step-in 350ms ease both;
}

.complete-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--forest-700);
  box-shadow: 0 0 0 9px rgba(111, 159, 168, 0.13);
}

.complete-icon svg {
  width: 32px;
  height: 32px;
}

.application-complete h3 {
  margin: 5px 0 12px;
  color: var(--forest-950);
  font-family: "Newsreader", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
}

.application-complete > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto;
  color: var(--muted);
}

.application-complete > div {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

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

.footer-color-bar {
  display: grid;
  height: 7px;
  grid-template-columns: 1.15fr 0.85fr 1fr 0.7fr;
}

.footer-color-bar span:nth-child(1) {
  background: var(--gold);
}

.footer-color-bar span:nth-child(2) {
  background: var(--coral);
}

.footer-color-bar span:nth-child(3) {
  background: var(--sky);
}

.footer-color-bar span:nth-child(4) {
  background: var(--berry);
}

.footer-invite {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 8%;
  padding-block: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-invite h2 {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
}

.footer-invite-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-invite-actions {
  gap: 24px;
}

.footer-invite-media {
  display: grid;
  min-height: 430px;
  grid-template-columns: 1fr 0.8fr;
  gap: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: var(--forest-900);
}

.footer-invite-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition:
    filter 350ms ease,
    transform 500ms ease;
}

.footer-invite-media img:last-of-type {
  object-position: 54% center;
}

.footer-invite-media:hover img:first-child {
  transform: scale(1.035);
}

.footer-invite-media:hover img:last-of-type {
  transform: scale(1.035) translateX(-2px);
}

.footer-invite-media > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 4px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.footer-invite-media > span svg {
  width: 16px;
  height: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 1.1fr;
  gap: 48px;
  padding-block: 66px 54px;
}

.footer-about > p,
.footer-hours p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  color: var(--sky-light);
  font-size: 0.77rem;
  font-weight: 700;
}

.footer-location svg {
  width: 16px;
}

.footer-grid h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 19px;
  color: var(--gold-light);
  font-size: 0.77rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-grid h3 svg {
  width: 17px;
  height: 17px;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-link-group:nth-child(3) h3 {
  color: #a8cdd1;
}

.footer-grid a:not(.brand):not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-policy-link {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.84rem;
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-policy-link:hover,
.footer-policy-link:focus-visible {
  color: var(--white);
  transform: translateX(7px);
}

.footer-link-group a::before {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: translate(-6px, -50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
  transform: translateX(7px);
}

.footer-link-group a:hover::before,
.footer-link-group a:focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.footer-hours {
  align-self: start;
  padding: 22px;
  border-left: 3px solid var(--coral);
  border-radius: 0 6px 6px 0;
  background: rgba(255, 255, 255, 0.065);
}

.footer-hours > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f3c3b6;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-hours > span svg,
.footer-hours a svg {
  width: 16px;
  height: 16px;
}

.footer-hours a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: var(--gold-light) !important;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.73rem;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--forest-800);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

dialog {
  padding: 0;
  border: 0;
  background: transparent;
}

dialog::backdrop {
  background: rgba(7, 22, 18, 0.82);
  backdrop-filter: blur(6px);
}

.profile-dialog {
  width: min(900px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  overflow: auto;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
}

.profile-layout {
  display: grid;
  min-height: 560px;
  grid-template-columns: 0.95fr 1.05fr;
}

.profile-layout > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.profile-details {
  padding: 52px 40px 40px;
}

.profile-details h2 {
  font-size: 3.2rem;
}

.profile-details .profile-meta {
  margin: 7px 0 22px;
  color: var(--forest-700);
  font-weight: 700;
}

.profile-details > p {
  color: var(--muted);
}

.profile-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.profile-traits span {
  padding: 7px 10px;
  border: 1px solid var(--sage-200);
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--forest-800);
  font-size: 0.75rem;
  font-weight: 700;
}

.profile-notes {
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.profile-notes div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}

.profile-notes strong {
  color: var(--forest-950);
}

.profile-notes span {
  color: var(--muted);
}

.profile-details .button {
  width: 100%;
}

.parent-dialog-layout {
  padding: 52px 44px 44px;
}

.parent-dialog-layout img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.parent-dialog-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.parent-dialog-gallery img {
  height: 340px;
}

.parent-dialog-layout p {
  color: var(--muted);
}

.lightbox {
  width: min(1100px, calc(100% - 24px));
  max-height: calc(100svh - 24px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest-950);
  color: var(--white);
}

.lightbox img {
  width: 100%;
  max-height: calc(100svh - 100px);
  object-fit: contain;
}

.lightbox p {
  margin: 0;
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
}

.policy-dialog {
  width: min(780px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  overflow: auto;
  border-radius: 8px;
  background: var(--paper);
  color: var(--charcoal);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.policy-dialog-content {
  padding: 58px 52px 46px;
}

.policy-dialog-content h2 {
  max-width: 620px;
  margin: 10px 0 30px;
  color: var(--forest-950);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1;
}

.policy-dialog-content section {
  padding-block: 23px;
  border-top: 1px solid var(--line);
}

.policy-dialog-content h3 {
  margin-bottom: 10px;
  color: var(--forest-950);
  font-size: 1rem;
}

.policy-dialog-content section p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.policy-dialog-content section p:last-child {
  margin-bottom: 0;
}

.reveal-ready main > section:not(.hero) {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal-ready main > section.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-ready .is-visible .kitten-card,
.reveal-ready .is-visible .story-card,
.reveal-ready .is-visible .price-card,
.reveal-ready .is-visible .standards-grid article,
.reveal-ready .is-visible .process-list li {
  animation: rise-in 620ms backwards;
}

.reveal-ready
  .is-visible
  :is(
    .kitten-card,
    .story-card,
    .price-card,
    .standards-grid article,
    .process-list li
  ):nth-child(2) {
  animation-delay: 90ms;
}

.reveal-ready
  .is-visible
  :is(
    .kitten-card,
    .story-card,
    .price-card,
    .standards-grid article,
    .process-list li
  ):nth-child(3) {
  animation-delay: 180ms;
}

.reveal-ready
  .is-visible
  :is(
    .kitten-card,
    .story-card,
    .price-card,
    .standards-grid article,
    .process-list li
  ):nth-child(4) {
  animation-delay: 270ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .site-header {
    gap: 22px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.78rem;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .standards-grid article:nth-child(2) {
    border-right: 1px solid #d9e1dd;
  }

  .standards-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid #d9e1dd;
  }

  .health-feature {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 52px;
  }

  .health-story h2 {
    font-size: clamp(3.4rem, 5.6vw, 5rem);
  }

  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .pricing-copy .large-copy {
    max-width: 760px;
  }

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

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

@media (max-width: 780px) {
  :root {
    --header-height: 66px;
  }

  .section-shell {
    width: min(100% - 30px, 640px);
  }

  .announcement-bar {
    min-height: 27px;
    padding-inline: 10px;
    font-size: 0.6rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 8px 15px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .brand-copy strong {
    font-size: 1.03rem;
  }

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

  .menu-toggle {
    display: grid;
    border-color: var(--sage-200);
    background: var(--paper);
    color: var(--forest-950);
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    top: calc(var(--header-height) + 27px);
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 36px rgba(25, 42, 35, 0.14);
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 240ms ease,
      opacity 180ms ease,
      padding 240ms ease;
  }

  .main-nav.open {
    z-index: 90;
    max-height: 460px;
    padding-block: 10px 18px;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 9px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--forest-950);
    font-size: 0.92rem;
  }

  .main-nav a > svg {
    display: block;
    width: 18px;
    height: 18px;
    color: var(--gold);
  }

  .main-nav a > svg:last-child {
    color: var(--muted);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: calc(100svh - var(--header-height) - 40px);
  }

  .hero-slide {
    background-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(8, 30, 25, 0.9) 0%,
      rgba(8, 30, 25, 0.6) 70%,
      rgba(8, 30, 25, 0.2)
    );
  }

  .hero-content {
    justify-content: flex-end;
    padding-block: 90px 120px;
  }

  .hero h1 {
    max-width: 440px;
    font-size: clamp(3.5rem, 17vw, 5.4rem);
  }

  .hero-lede {
    max-width: 460px;
    margin: 22px 0 26px;
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero-slide-controls {
    right: 15px;
    bottom: 82px;
  }

  .trust-strip {
    margin-top: -62px;
  }

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

  .trust-grid > div {
    min-height: 108px;
    align-items: flex-start;
    gap: 10px;
    padding: 17px 13px;
  }

  .trust-grid svg {
    width: 20px;
    height: 20px;
  }

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

  .trust-grid small {
    font-size: 0.65rem;
  }

  .intro,
  .breeder-layout,
  .parents,
  .contact-layout,
  .inquiry-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 34px;
    padding-block: 82px;
  }

  .breeder-story {
    padding-block: 82px;
  }

  .breeder-layout {
    gap: 44px;
  }

  .breeder-media {
    min-height: 690px;
    padding: 28px 15% 44px 0;
  }

  .breeder-main {
    height: 610px;
  }

  .breeder-inset,
  .breeder-inset-secondary {
    height: 300px;
  }

  .large-copy {
    font-size: 1.35rem;
  }

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

  .split-heading > p {
    justify-self: start;
  }

  .kitten-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .kittens,
  .gallery,
  .faq,
  .contact,
  .inquiry {
    padding-block: 80px;
  }

  .contact {
    padding-top: 0;
  }

  .contact-layout {
    gap: 50px;
    padding-block: 80px;
  }

  .contact-photo {
    max-width: 640px;
  }

  .kitten-card {
    display: grid;
    grid-template-columns: minmax(145px, 0.85fr) 1.15fr;
  }

  .kitten-photo {
    height: 100%;
    min-height: 315px;
    aspect-ratio: auto;
  }

  .kitten-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 20px;
  }

  .kitten-copy > p {
    min-height: 0;
    font-size: 0.84rem;
  }

  .card-actions {
    margin-top: auto;
  }

  .availability-note {
    grid-template-columns: auto 1fr;
  }

  .availability-note .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .parents {
    gap: 45px;
    padding-block: 82px;
  }

  .parent-inset {
    right: -8px;
  }

  .parents-media img {
    min-height: 390px;
  }

  .health-feature {
    grid-template-columns: 1fr;
    gap: 62px;
    padding-block: 78px 82px;
  }

  .health-story {
    order: -1;
  }

  .health-story h2 {
    max-width: 620px;
    font-size: clamp(3.25rem, 10vw, 4.7rem);
  }

  .health-lede {
    max-width: 620px;
  }

  .health-portrait > img {
    height: min(660px, 112vw);
  }

  .health-standards-band {
    padding-block: 66px 72px;
  }

  .health-standards-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .health-standards-heading > p {
    max-width: 620px;
    justify-self: start;
  }

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

  .standards-grid article {
    min-height: 275px;
    padding: 22px 18px;
  }

  .standard-topline svg {
    margin: 0;
  }

  .process {
    padding-block: 82px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pricing {
    padding-block: 82px 66px;
  }

  .pricing-copy h2 {
    max-width: 690px;
    font-size: clamp(3.2rem, 9vw, 4.7rem);
  }

  .pricing-panels {
    grid-template-columns: 1fr 1fr;
  }

  .price-card {
    min-height: 390px;
    padding: 26px 22px 24px;
  }

  .price-card-icon {
    margin-bottom: 40px;
  }

  .gallery-grid {
    grid-auto-rows: 170px;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .stories {
    padding-block: 82px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 62px;
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.97);
    box-shadow: 0 -12px 30px rgba(25, 42, 35, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--forest-950);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .mobile-action-bar a:last-child {
    margin: 7px;
    border-radius: 4px;
    background: var(--forest-800);
    color: var(--white);
  }

  .mobile-action-bar svg {
    width: 18px;
    height: 18px;
  }

  body.menu-open .mobile-action-bar,
  body.dialog-open .mobile-action-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .footer-invite {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 72px;
  }

  .footer-invite-copy {
    padding-right: 0 !important;
  }

  .footer-invite-media,
  .footer-invite-media img {
    min-height: 380px;
  }

  .back-to-top {
    bottom: 78px;
  }

  .story-card {
    min-height: 280px;
  }

  .faq-layout,
  .inquiry-layout {
    gap: 50px;
  }

  .faq-intro,
  .inquiry-copy {
    position: static;
  }

  .application-aside-note {
    max-width: 580px;
  }

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

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

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

  .profile-layout > img {
    height: 380px;
    min-height: 0;
  }

  .profile-details {
    padding: 34px 25px 28px;
  }

  .policy-dialog-content {
    padding: 52px 30px 36px;
  }
}

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

  .announcement-bar span:nth-child(2) {
    display: none;
  }

  .announcement-bar {
    flex-direction: column;
    gap: 0;
    line-height: 1.25;
  }

  h2 {
    font-size: 2.5rem;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .mobile-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: -8px 0 18px;
    color: var(--forest-700);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-slider-controls .icon-button {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .light-controls {
    color: rgba(255, 255, 255, 0.76);
  }

  .light-controls .icon-button {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .hero-slide {
    background-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(8, 30, 25, 0.94) 0%,
      rgba(8, 30, 25, 0.44) 76%,
      rgba(8, 30, 25, 0.2)
    );
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero-slide-controls {
    right: 12px;
    bottom: 78px;
  }

  .hero-slide-controls > span {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-grid > div {
    flex-direction: column;
  }

  .kitten-grid,
  .standards-grid,
  .story-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .kitten-grid::-webkit-scrollbar,
  .standards-grid::-webkit-scrollbar,
  .story-grid::-webkit-scrollbar {
    display: none;
  }

  .kitten-card {
    display: block;
    flex: 0 0 89%;
    scroll-snap-align: start;
  }

  .kitten-photo {
    height: auto;
    aspect-ratio: 5 / 4;
    min-height: 0;
  }

  .kitten-copy > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .kitten-title h3 {
    font-size: 1.7rem;
  }

  .availability-note {
    padding: 21px;
  }

  .breeder-media {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-rows: repeat(2, 218px);
    gap: 8px;
    padding: 0 0 62px;
  }

  .breeder-main {
    width: 100%;
    height: 444px;
    grid-row: 1 / 3;
    border-radius: 6px;
  }

  .breeder-inset,
  .breeder-inset-secondary {
    position: static;
    width: 100%;
    height: 218px;
    border: 0;
    border-radius: 6px;
    object-position: center 25%;
  }

  .breeder-media .image-caption {
    right: 12px;
    bottom: 18px;
    left: 12px;
  }

  .parents-media img {
    min-height: 330px;
  }

  .parent-inset {
    top: 14px;
    right: -4px;
    width: 32% !important;
    min-height: 0 !important;
    border-width: 5px;
  }

  .image-caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .health-feature {
    gap: 42px;
    padding-block: 58px 62px;
  }

  .health-story h2 {
    font-size: 3.15rem;
  }

  .health-lede {
    margin: 24px 0 27px;
    font-size: 0.92rem;
  }

  .health-principles {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-bottom: 27px;
  }

  .health-portrait {
    margin-inline: 5px;
  }

  .health-portrait > img {
    height: min(128vw, 570px);
  }

  .health-portrait figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 40px 1fr;
    padding: 12px;
  }

  .health-portrait figcaption > span {
    width: 40px;
    height: 40px;
  }

  .health-standards-band {
    padding-block: 55px 60px;
  }

  .health-standards-heading h3 {
    font-size: 2.65rem;
  }

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

  .standards-grid article {
    min-height: 285px;
    flex: 0 0 86%;
    border: 1px solid #d9e1dd;
    border-top: 5px solid var(--sky);
    scroll-snap-align: start;
  }

  .standards-grid article:nth-child(2) {
    border-top-color: var(--coral);
  }

  .standards-grid article:nth-child(3) {
    border-top-color: var(--gold);
  }

  .standards-grid article:nth-child(4) {
    border-top-color: var(--berry);
  }

  .standards-grid article:last-child {
    border-right: 1px solid #d9e1dd;
  }

  .standard-topline svg {
    margin: 0;
  }

  .health-verification-note {
    align-items: flex-start;
    padding: 16px;
  }

  .process-list li {
    grid-template-columns: 40px 1fr;
  }

  .pricing {
    padding-block: 70px 56px;
  }

  .pricing-layout {
    gap: 38px;
  }

  .pricing-copy h2 {
    font-size: 3rem;
  }

  .pricing-panels {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 355px;
  }

  .price-card > strong {
    font-size: 3rem;
  }

  .gallery-grid {
    grid-auto-rows: 155px;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .story-card {
    min-height: 470px;
    flex: 0 0 88%;
    padding: 0;
    scroll-snap-align: start;
  }

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

  .inquiry-form {
    padding: 25px 18px;
  }

  .contact-layout {
    gap: 42px;
    padding-block: 62px 70px;
  }

  .contact-photo {
    margin-bottom: 32px;
    aspect-ratio: 16 / 11;
  }

  .contact-intro h2 {
    font-size: 3rem;
  }

  .contact-hours {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding-block: 18px;
  }

  .contact-hours > svg {
    width: 44px;
    height: 44px;
    padding: 12px;
  }

  .contact-form {
    padding: 27px 18px;
  }

  .contact-form-heading {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .contact-form-heading > span {
    width: 44px;
    height: 44px;
  }

  .contact-complete {
    grid-template-columns: 36px 1fr;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .application-progress li {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .application-progress li small {
    font-size: 0.58rem;
    line-height: 1.2;
  }

  .choice-grid.two-up,
  .choice-grid.three-up,
  .application-review {
    grid-template-columns: 1fr;
  }

  .application-review > div.wide {
    grid-column: auto;
  }

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

  .form-navigation .button {
    width: 100%;
  }

  .form-navigation .form-next,
  .form-navigation .form-submit {
    grid-column: 2;
  }

  .form-navigation .form-back {
    grid-column: 1;
    grid-row: 1;
  }

  .application-complete {
    padding: 35px 0 22px;
  }

  .application-complete > div {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px 25px;
  }

  .footer-invite {
    padding-block: 58px;
  }

  .footer-invite h2 {
    font-size: 2.7rem;
  }

  .footer-invite-actions {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .footer-invite-media,
  .footer-invite-media img {
    min-height: 310px;
  }

  .footer-hours {
    padding: 19px;
  }

  .accordion-list summary {
    min-height: 72px;
    padding-inline: 14px;
    font-size: 0.94rem;
  }

  .accordion-list details p {
    padding: 0 18px 22px 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-layout > img {
    height: 310px;
  }

  .profile-details h2 {
    font-size: 2.65rem;
  }

  .parent-dialog-layout {
    padding: 58px 22px 26px;
  }

  .parent-dialog-gallery {
    grid-template-columns: 1fr;
  }

  .parent-dialog-gallery img {
    height: 240px;
  }

  .policy-dialog-content {
    padding: 50px 20px 28px;
  }

  .policy-dialog-content h2 {
    font-size: 2.55rem;
  }

  .back-to-top {
    right: 14px;
    bottom: 78px;
  }
}

.topic-email {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: -10px 0 28px;
  padding: 14px 0;
  color: #173f35;
  text-decoration: none;
  border-bottom: 1px solid #bed3cb;
}
.topic-email > span, .email-topic-copy, .directory-general > div { min-width: 0; }
.topic-email span span, .topic-email strong { display: block; }
.topic-email span span { font-size: 13px; overflow-wrap: anywhere; }
.topic-email > svg { width: 20px; height: 20px; flex: 0 0 20px; }
.topic-email > svg:last-child { margin-left: 12px; transition: transform 180ms ease; }
.topic-email:hover > svg:last-child { transform: translate(3px, -3px); }
.section-email { display: block; max-width: 100%; width: fit-content; margin-top: 8px; font-size: 14px; font-weight: 500; line-height: 1.7; color: #24574a; overflow-wrap: anywhere; text-underline-offset: 4px; }
.section-email:hover { color: #a04a37; }
.light-email, .light-email:hover { color: #f5d68e; }
.pricing-email, .application-email { margin: 26px 0; padding-top: 18px; border-top: 1px solid #b8c7bd; }
.pricing-email strong, .application-email strong { font-size: 14px; }
.application-email { border-color: #456559; }
.contact-directory { margin-top: 72px; padding-top: 40px; border-top: 1px solid #c8d9d5; }
.directory-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); align-items: end; gap: 50px; margin-bottom: 24px; }
.directory-heading h3 { font-size: 32px; line-height: 1.2; margin: 10px 0 0; }
.directory-heading > p { color: #56625d; font-size: 14px; margin: 0; line-height: 1.7; }
.email-directory-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 36px; }
.email-topic { --topic-ink: #24574a; --topic-tint: #e0eee8; display: flex; gap: 16px; align-items: flex-start; padding: 24px 12px 24px 0; min-width: 0; border-bottom: 1px solid #c8d9d5; text-decoration: none; color: #173f35; transition: background-color 180ms ease; }
.email-topic:nth-child(3n + 2) { --topic-ink: #98513f; --topic-tint: #f7e6df; }
.email-topic:nth-child(3n) { --topic-ink: #356781; --topic-tint: #e1edf5; }
.email-topic-icon { display: grid; place-items: center; flex: 0 0 44px; width: 44px; height: 44px; border-radius: 8px; color: var(--topic-ink); background: var(--topic-tint); transition: background-color 180ms ease, color 180ms ease; }
.email-topic-icon svg { width: 22px; height: 22px; }
.email-topic-copy { flex: 1; }
.email-topic-copy strong { display: block; margin-bottom: 5px; font-size: 16px; }
.email-topic-copy > span { display: block; font-size: 13px; line-height: 1.7; color: #57665f; }
.email-topic-copy .email-address { margin-top: 9px; font-size: 13px; font-weight: 600; color: var(--topic-ink); overflow-wrap: anywhere; }
.email-topic-arrow { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 3px; color: var(--topic-ink); transition: transform 180ms ease; }
.email-topic:hover { background: #f9fcfa; color: #173f35; }
.email-topic:hover .email-topic-icon { background: var(--topic-ink); color: #fff; }
.email-topic:hover .email-topic-arrow { transform: translate(3px, -3px); }
.email-topic:focus-visible, .topic-email:focus-visible, .footer-email:focus-visible { outline: 2px solid #356781; outline-offset: 5px; }
.directory-general { display: flex; align-items: center; gap: 18px; padding: 24px 0 0; }
.directory-general > svg { width: 24px; height: 24px; flex: 0 0 24px; color: #356781; }
.directory-general strong, .directory-general span { display: block; }
.directory-general span { color: #56625d; font-size: 14px; line-height: 1.8; }
.directory-general a { color: #24574a; overflow-wrap: anywhere; text-underline-offset: 4px; }
.footer-email { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; width: fit-content; max-width: 100%; color: #eed092; text-decoration: none; }
.footer-email > svg { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 3px; }
.footer-email > span { min-width: 0; font-size: 13px; }
.footer-email strong { display: block; font-weight: 400; font-size: 12px; color: #eff5f1; overflow-wrap: anywhere; margin-top: 5px; }
.footer-email:hover strong { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 700px) {
  .contact-directory { margin-top: 42px; padding-top: 30px; }
  .directory-heading, .email-directory-grid { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .directory-heading { gap: 14px; }
  .directory-heading h3 { font-size: 27px; }
  .email-topic { gap: 12px; padding: 21px 0; }
  .email-topic-icon { flex-basis: 38px; width: 38px; height: 38px; }
  .email-topic-arrow { flex-basis: 16px; width: 16px; height: 16px; }
  .topic-email { margin-top: 0; gap: 10px; }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
