:root {
  --background: #f2eee8;
  --background-light: #faf8f4;
  --background-deep: #e7e1d8;
  --paper: #fffdf9;

  --charcoal: #292925;
  --text: #4d4a44;
  --muted: #777168;

  --taupe: #a49686;
  --taupe-dark: #74695d;

  --olive: #696d5b;
  --olive-dark: #515545;
  --olive-light: #e4e5dd;

  --success: #526952;
  --danger: #985c52;

  --border: rgba(41, 41, 37, 0.15);
  --border-light: rgba(41, 41, 37, 0.08);

  --shadow-card:
    0 20px 55px rgba(46, 40, 34, 0.08);

  --shadow-large:
    0 36px 100px rgba(46, 40, 34, 0.13);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;

  --max-width: 1320px;
}

/* =========================================================
   Base
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.page-shell {
  width: min(calc(100% - 44px), var(--max-width));
  margin-inline: auto;
}

.section-space {
  padding-block: 110px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive-dark);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--charcoal);
  font-family: var(--serif);
  font-weight: 500;
}

.primary-button,
.secondary-button,
.text-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid transparent;
  padding: 12px 21px;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.primary-button {
  background: var(--charcoal);
  color: #ffffff;
}

.primary-button:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
}

.secondary-button {
  border-color: var(--border);
  background: transparent;
  color: var(--charcoal);
}

.secondary-button:hover {
  border-color: var(--charcoal);
  background: var(--background-light);
  transform: translateY(-2px);
}

/* =========================================================
   Announcement and Header
========================================================= */

.announcement-bar {
  display: flex;
  min-height: 37px;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 7px 20px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement-bar p {
  margin: 0;
}

.announcement-bar a {
  color: #ffffff;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 89px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--taupe);
  border-radius: 50%;
  color: var(--taupe-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
}

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

.brand-name {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a:not(.nav-button) {
  position: relative;
  padding-block: 10px;
  color: var(--text);
  font-size: 0.67rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-button)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--charcoal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  padding: 11px 18px;
  background: var(--charcoal);
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-button:hover {
  border-color: var(--olive-dark);
  background: var(--olive-dark);
}

.menu-toggle {
  display: none;
}

/* =========================================================
   Page Hero
========================================================= */

.page-hero {
  padding-block: 70px 85px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.72fr);
  align-items: center;
  gap: clamp(65px, 9vw, 135px);
}

.page-hero-content {
  max-width: 760px;
}

.page-hero h1 {
  margin-bottom: 27px;
  font-size: clamp(4.8rem, 8vw, 8rem);
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.page-hero h1 em {
  display: block;
  color: var(--taupe-dark);
  font-weight: 500;
}

.page-hero-description {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.8;
}

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

.page-hero-photo {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: var(--background-deep);
  box-shadow: var(--shadow-large);
}

.page-hero-photo img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
}

.page-hero-photo::after {
  position: absolute;
  inset: 0;
  border: 18px solid transparent;
  outline: 1px solid rgba(255, 255, 255, 0.46);
  outline-offset: -18px;
  content: "";
  pointer-events: none;
}

.hero-photo-label {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 25px;
  left: 25px;
  padding: 15px 17px;
  background: rgba(250, 248, 244, 0.89);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.35rem;
  backdrop-filter: blur(12px);
}

.hero-photo-label span {
  display: block;
  margin-bottom: 4px;
  color: var(--olive-dark);
  font-family: var(--sans);
  font-size: 0.49rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================
   Section Heading
========================================================= */

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  align-items: end;
  gap: 65px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 6rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.section-heading h2 em {
  display: block;
  color: var(--taupe-dark);
  font-weight: 500;
}

.section-heading > p {
  max-width: 520px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

/* =========================================================
   Current Update
========================================================= */

.current-update {
  border-block: 1px solid var(--border);
  background: var(--background-light);
}

.update-grid {
  display: grid;
  grid-template-columns: 80px 1fr 0.68fr;
  align-items: start;
  gap: 50px;
  padding-block: 68px;
}

.update-number {
  margin-top: 8px;
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.update-grid h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.5vw, 4.7rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.update-copy p {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.updated-label {
  display: inline-flex;
  padding: 8px 11px;
  background: var(--olive-light);
  color: var(--olive-dark);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* =========================================================
   Litter Cards
========================================================= */

.litter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.litter-card {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.litter-image {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: var(--background-deep);
}

.litter-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 700ms ease;
}

.litter-card:hover .litter-image img {
  transform: scale(1.035);
}

.litter-status {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 11px;
  background: rgba(250, 248, 244, 0.91);
  color: var(--olive-dark);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.litter-content {
  padding: 28px;
}

.litter-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.litter-content h3 {
  margin-bottom: 23px;
  font-size: 2.6rem;
  line-height: 0.95;
}

.parent-pairing {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  align-items: center;
  gap: 12px;
  padding-block: 19px;
  border-block: 1px solid var(--border);
}

.parent {
  display: grid;
  grid-template-columns: 49px 1fr;
  align-items: center;
  gap: 11px;
}

.parent img {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--background-deep);
}

.parent span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.47rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.parent strong {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
}

.pairing-symbol {
  color: var(--taupe);
  font-family: var(--serif);
  font-size: 1.5rem;
  text-align: center;
}

.possible-colors {
  margin-top: 22px;
}

.possible-colors > span {
  display: block;
  margin-bottom: 9px;
  color: var(--olive-dark);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.color-chip {
  padding: 7px 10px;
  border: 1px solid var(--border);
  background: var(--background-light);
  color: var(--text);
  font-size: 0.56rem;
}

.litter-disclaimer {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.6rem;
  line-height: 1.6;
}

.placeholder-chip {
  border-style: dashed;
  color: var(--taupe-dark);
}

/* =========================================================
   Availability Process
========================================================= */

.availability-section {
  background: var(--charcoal);
}

.availability-section .eyebrow {
  color: var(--taupe);
}

.availability-section .section-heading h2 {
  color: #ffffff;
}

.availability-section .section-heading > p {
  color: rgba(255, 255, 255, 0.59);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.process-card {
  min-height: 285px;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-card > span {
  color: var(--taupe);
  font-family: var(--serif);
  font-size: 1rem;
}

.process-card h3 {
  margin: 75px 0 14px;
  color: #ffffff;
  font-size: 2rem;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  line-height: 1.7;
}

/* =========================================================
   Information Cards
========================================================= */

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

.information-card {
  min-height: 285px;
  padding: 27px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--background-light);
}

.information-card > span {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1rem;
}

.information-card h3 {
  margin: 70px 0 13px;
  font-size: 2rem;
  line-height: 1;
}

.information-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.7;
}

/* =========================================================
   CTA
========================================================= */

.page-cta {
  padding-block: 35px 110px;
}

.cta-card {
  display: grid;
  min-height: 450px;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: var(--taupe-dark);
  color: #ffffff;
}

.cta-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(40px, 6vw, 72px);
}

.cta-content .eyebrow {
  color: #e9dfd3;
}

.cta-content h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(3.5rem, 6vw, 5.8rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.cta-content p {
  max-width: 470px;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  line-height: 1.75;
}

.cta-content .primary-button {
  align-self: flex-start;
  background: #ffffff;
  color: var(--charcoal);
}

.cta-photo {
  position: relative;
  min-height: 420px;
}

.cta-photo img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}

.cta-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--taupe-dark),
      transparent 43%
    );
  content: "";
}

/* =========================================================
   Contact Page
========================================================= */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(450px, 1fr);
  align-items: start;
  gap: 28px;
}

.contact-details,
.contact-form-card {
  border: 1px solid var(--border);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.contact-details {
  padding: 34px;
}

.contact-details > h2 {
  margin-bottom: 15px;
  font-size: 2.7rem;
  line-height: 1;
}

.contact-details > p {
  margin-bottom: 29px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.75;
}

.contact-methods {
  display: grid;
  border-top: 1px solid var(--border);
}

.contact-method {
  display: grid;
  grid-template-columns: 37px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  border-bottom: 1px solid var(--border);
}

.contact-method-icon {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--taupe);
  border-radius: 50%;
  color: var(--olive-dark);
  font-family: var(--serif);
}

.contact-method span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.49rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--charcoal);
  font-size: 0.69rem;
  font-weight: 500;
}

.contact-method > em {
  color: var(--taupe);
  font-style: normal;
}

.facebook-contact {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  padding: 18px;
  background: var(--background-deep);
}

.facebook-contact-icon {
  display: flex;
  width: 41px;
  height: 41px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.facebook-contact strong {
  display: block;
  margin-bottom: 2px;
  color: var(--charcoal);
  font-size: 0.68rem;
}

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

.contact-form-card {
  padding: clamp(30px, 5vw, 55px);
}

.contact-form-heading {
  margin-bottom: 32px;
}

.contact-form-heading h2 {
  margin-bottom: 12px;
  font-size: 3rem;
  line-height: 1;
}

.contact-form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}

.field-group {
  margin-bottom: 20px;
}

.field-span-2 {
  grid-column: 1 / -1;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field-group label span {
  color: var(--danger);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 13px 14px;
  background: var(--background-light);
  color: var(--charcoal);
  outline: none;
}

.field-group input,
.field-group select {
  min-height: 50px;
}

.field-group textarea {
  min-height: 160px;
  resize: vertical;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--olive-dark);
  box-shadow: 0 0 0 3px rgba(81, 85, 69, 0.08);
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 8px;
}

.contact-form-footer p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.57rem;
}

.form-status {
  display: none;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--success);
  background: rgba(82, 105, 82, 0.09);
  color: var(--success);
  font-size: 0.68rem;
}

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

.form-status.error {
  border-color: var(--danger);
  background: rgba(152, 92, 82, 0.08);
  color: var(--danger);
}

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

.visit-card {
  min-height: 365px;
  padding: 37px;
  border: 1px solid var(--border);
  background: var(--background-light);
}

.visit-card.dark {
  background: var(--charcoal);
}

.visit-card > span {
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.visit-card.dark > span {
  color: var(--taupe);
}

.visit-card h3 {
  margin: 95px 0 17px;
  font-size: 2.7rem;
  line-height: 0.95;
}

.visit-card.dark h3 {
  color: #ffffff;
}

.visit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.75;
}

.visit-card.dark p {
  color: rgba(255, 255, 255, 0.62);
}

/* =========================================================
   Footer
========================================================= */

.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 65px;
  background: var(--background-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.65fr);
  gap: 60px;
  padding-bottom: 55px;
}

.footer-brand > p {
  max-width: 340px;
  margin: 22px 0 17px;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.7;
}

.footer-facebook {
  color: var(--olive-dark);
  font-size: 0.62rem;
  font-weight: 600;
}

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

.footer-column h2 {
  margin: 0 0 7px;
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.57rem;
}

.footer-bottom a {
  color: var(--charcoal);
  font-weight: 600;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1000px) {
  .page-hero-grid {
    grid-template-columns: 1fr 0.75fr;
    gap: 55px;
  }

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

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

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

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

  .main-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--background-light);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-button) {
    font-family: var(--serif);
    font-size: 2rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--charcoal);
    transition: transform 180ms ease;
  }

  .menu-toggle.open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .page-hero-grid,
  .section-heading,
  .update-grid,
  .contact-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .page-hero-photo {
    width: min(100%, 620px);
  }

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

  .cta-photo {
    min-height: 420px;
  }

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

@media (max-width: 650px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .announcement-bar a {
    display: none;
  }

  .page-hero {
    padding-block: 55px 65px;
  }

  .page-hero h1 {
    font-size: clamp(4rem, 18vw, 5.6rem);
  }

  .page-hero-photo {
    min-height: 490px;
  }

  .section-space {
    padding-block: 80px;
  }

  .update-grid {
    gap: 20px;
    padding-block: 55px;
  }

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

  .pairing-symbol {
    transform: rotate(90deg);
  }

  .process-grid,
  .information-grid,
  .field-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .field-span-2 {
    grid-column: auto;
  }

  .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-footer .primary-button {
    width: 100%;
  }

  .cta-content {
    padding: 47px 25px;
  }

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

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
}