@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

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

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ivory: #f7f2e9;
  --paper: #fffdf8;
  --forest: #173d32;
  --forest-deep: #0f2e26;
  --sage: #aab79d;
  --sage-light: #dce2d4;
  --coral: #de5d43;
  --coral-dark: #bd4934;
  --ink: #292c29;
  --muted: #657069;
  --sand: #e7ddcf;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--coral) 65%, white);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--sand);
  background: color-mix(in srgb, var(--ivory) 94%, transparent);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100% - 96px, 1360px);
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
}

.brand > span:last-child {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  transform: rotate(-6deg);
}

.brand-mark i,
.brand-mark b {
  position: absolute;
  display: block;
  background: var(--coral);
}

.brand-mark i {
  width: 8px;
  height: 10px;
  border-radius: 50%;
}

.brand-mark i:nth-child(1) { left: 2px; top: 8px; transform: rotate(-28deg); }
.brand-mark i:nth-child(2) { left: 10px; top: 1px; transform: rotate(-8deg); }
.brand-mark i:nth-child(3) { right: 7px; top: 2px; transform: rotate(8deg); }
.brand-mark i:nth-child(4) { right: 0; top: 10px; transform: rotate(28deg); }
.brand-mark b {
  left: 8px;
  bottom: 1px;
  width: 20px;
  height: 17px;
  border-radius: 55% 55% 48% 48%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.7vw, 42px);
  font-size: 15px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu {
  display: none;
}

.hero {
  width: min(100% - 96px, 1360px);
  min-height: min(760px, calc(100vh - 92px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(30px, 4vw, 72px);
  padding: 64px 0 72px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 24px;
  color: #657d70;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--forest);
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(54px, 5.25vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero-text {
  max-width: 590px;
  margin: 30px 0 0;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.button {
  min-height: 58px;
  padding: 0 30px;
  border: 1.5px solid transparent;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease,
    border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 12px 28px rgba(183, 71, 48, 0.18);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 14px 32px rgba(183, 71, 48, 0.25);
}

.button-secondary {
  border-color: #91a38f;
  background: rgba(255, 253, 248, 0.45);
  color: var(--forest);
}

.button-secondary:hover {
  border-color: var(--forest);
  background: var(--paper);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 470px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero-note p {
  margin: 0;
}

.heart-dot {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage-light);
  color: var(--forest);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-image-wrap {
  position: absolute;
  z-index: 2;
  inset: 20px 0 8px 18px;
  overflow: hidden;
  border-radius: 46% 38% 48% 42% / 32% 30% 56% 54%;
  background: #cfd5c5;
  box-shadow: 0 24px 70px rgba(40, 62, 49, 0.17);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% 50%;
}

.shape {
  position: absolute;
  display: block;
}

.shape-coral {
  z-index: 1;
  top: 0;
  right: -40px;
  width: 43%;
  height: 39%;
  border-radius: 44% 56% 28% 72% / 44% 39% 61% 56%;
  background: var(--coral);
  transform: rotate(8deg);
}

.shape-sage {
  z-index: 3;
  bottom: -20px;
  left: -42px;
  width: 37%;
  height: 37%;
  border-radius: 58% 42% 58% 42% / 62% 46% 54% 38%;
  background: color-mix(in srgb, var(--sage) 75%, var(--ivory));
  opacity: 0.92;
}

.hero-badge {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 24px;
  width: 150px;
  min-height: 112px;
  padding: 22px;
  border-radius: 24px 0 0 24px;
  display: grid;
  align-content: center;
  gap: 4px;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(24, 57, 48, 0.16);
  color: var(--forest);
}

.hero-badge strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
}

.hero-badge span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.impact-strip {
  width: min(100% - 96px, 1360px);
  margin: 0 auto 42px;
  padding: 30px clamp(28px, 4vw, 60px);
  border-radius: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--forest);
  color: white;
}

.impact-strip div {
  display: grid;
  gap: 3px;
  text-align: center;
}

.impact-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.23);
}

.impact-strip strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
}

.impact-strip span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.section {
  width: min(100% - 96px, 1240px);
  margin: 0 auto;
  padding: 118px 0;
}

.section-heading h2,
.documents-intro h2,
.faq-title h2,
.contact-heading h2 {
  margin: 0;
  font-size: clamp(43px, 4.6vw, 68px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.section-heading .eyebrow,
.documents-intro .eyebrow,
.faq-title .eyebrow,
.contact-heading .eyebrow,
.volunteer-copy .eyebrow,
.process-intro .eyebrow {
  margin-bottom: 16px;
  color: #748878;
  font-size: 17px;
}

.about {
  padding-bottom: 132px;
}

.about-heading {
  max-width: 780px;
}

.about-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(56px, 8vw, 120px);
}

.about-lead {
  padding-left: clamp(24px, 4vw, 54px);
  border-left: 4px solid var(--coral);
}

.about-lead p {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.78;
}

.about-lead p + p {
  margin-top: 25px;
  color: var(--muted);
  font-size: 16px;
}

.about-values {
  display: grid;
}

.about-values article {
  padding: 24px 0;
  border-bottom: 1px solid var(--sand);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
}

.about-values article:first-child { padding-top: 0; }

.about-values article > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage-light);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.about-values h3,
.about-values p {
  margin: 0;
}

.about-values h3 {
  font-size: 23px;
}

.about-values p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.about blockquote {
  max-width: 920px;
  margin: 96px auto 0;
  padding: 0;
  border: 0;
  color: var(--forest);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(31px, 3.35vw, 48px);
  font-weight: 600;
  line-height: 1.28;
  text-align: center;
}

.adoptions {
  position: relative;
  background: var(--paper);
}

.adoptions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7%;
  width: 150px;
  height: 9px;
  border-radius: 0 0 9px 9px;
  background: var(--coral);
}

.adoptions-inner {
  padding-bottom: 132px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.adoption-paths {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.path-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--sand);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.path-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -48px;
  bottom: -58px;
  width: 190px;
  height: 190px;
  border-radius: 44% 56% 50% 50%;
  background: color-mix(in srgb, var(--sage) 28%, transparent);
  transform: rotate(18deg);
}

.path-card > * {
  position: relative;
  z-index: 1;
}

.path-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(35, 58, 49, 0.11);
}

.path-card h3 {
  margin: 28px 0 0;
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.12;
}

.path-card p {
  margin: 20px 0 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.path-card a {
  margin-top: auto;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.path-card a span {
  margin-left: 7px;
  color: var(--coral);
  font-size: 17px;
}

.path-dog {
  background: var(--forest);
  color: white;
}

.path-dog h3,
.path-dog a { color: white; }
.path-dog p { color: rgba(255, 255, 255, 0.72); }
.path-dog::after { background: rgba(180, 192, 167, 0.18); }

.path-cat {
  background: #e7ddcf;
}

.path-heart {
  background: #f7d8cf;
}

.path-heart::after {
  background: rgba(222, 93, 67, 0.15);
}

.card-kicker {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.path-dog .card-kicker {
  background: rgba(255, 255, 255, 0.13);
  color: white;
}

.adoption-process {
  margin-top: 96px;
  padding-top: 82px;
  border-top: 1px solid var(--sand);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 8vw, 110px);
}

.process-intro h3 {
  margin: 0;
  font-size: clamp(36px, 3.5vw, 50px);
  line-height: 1.08;
}

.process-intro > p:last-child {
  max-width: 390px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.adoption-process ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 34px;
  list-style: none;
}

.adoption-process li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.adoption-process li > span {
  color: var(--coral);
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.adoption-process h4,
.adoption-process p {
  margin: 0;
}

.adoption-process h4 {
  color: var(--forest);
  font-size: 16px;
}

.adoption-process p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.volunteer {
  padding-top: 118px;
  padding-bottom: 118px;
}

.volunteer-card {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 7vw, 92px);
  border-radius: 36px;
  display: grid;
  grid-template-columns: 1.02fr 0.78fr;
  gap: clamp(50px, 8vw, 120px);
  background: var(--coral);
  color: white;
}

.volunteer-card::before,
.volunteer-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.volunteer-card::before {
  top: -150px;
  right: -100px;
  width: 420px;
  height: 420px;
}

.volunteer-card::after {
  right: 35px;
  bottom: -220px;
  width: 500px;
  height: 500px;
}

.volunteer-card > * {
  position: relative;
  z-index: 1;
}

.volunteer-copy .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.volunteer-copy h2 {
  margin: 0;
  color: white;
  font-size: clamp(41px, 4.6vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.volunteer-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.button-light {
  background: white;
  color: var(--forest);
}

.button-light:hover {
  background: var(--forest);
  color: white;
}

.volunteer-list {
  align-self: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 26px;
  background: rgba(130, 38, 24, 0.14);
  backdrop-filter: blur(8px);
}

.volunteer-list > p {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.volunteer-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.volunteer-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
}

.volunteer-list li:last-child { border-bottom: 0; }

.volunteer-list li span {
  color: rgba(255, 255, 255, 0.64);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}

.help {
  position: relative;
  background: var(--forest-deep);
  color: white;
}

.help::before {
  content: "";
  position: absolute;
  top: 0;
  right: 9%;
  width: 130px;
  height: 8px;
  border-radius: 0 0 8px 8px;
  background: var(--sage);
}

.help .section {
  padding-top: 120px;
  padding-bottom: 132px;
}

.help-heading {
  max-width: 790px;
}

.help-heading .eyebrow {
  color: var(--sage);
}

.help-heading h2 {
  color: white;
}

.help-heading > p:last-child {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 16px;
  line-height: 1.72;
}

.support-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.support-grid article {
  min-height: 470px;
  padding: clamp(36px, 5vw, 62px);
  border-radius: 30px;
}

.support-grid h3 {
  margin: 27px 0 0;
  font-size: clamp(35px, 3.6vw, 50px);
  line-height: 1.08;
}

.tax-card {
  background: var(--sage-light);
  color: var(--ink);
}

.tax-card > p {
  max-width: 530px;
  margin: 22px 0 32px;
  color: #5c675f;
  font-size: 15px;
  line-height: 1.72;
}

.support-code {
  padding: 18px 0;
  border-top: 1px solid rgba(23, 61, 50, 0.18);
  border-bottom: 1px solid rgba(23, 61, 50, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.support-code span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-code strong {
  color: var(--forest);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(23px, 2.2vw, 31px);
  letter-spacing: 0.02em;
}

.donation-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.donation-card .card-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.donation-card h3 {
  color: white;
}

.donation-card dl {
  margin: 32px 0 0;
}

.donation-card dl > div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
}

.donation-card dt {
  color: rgba(255, 255, 255, 0.47);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donation-card dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.copy-button {
  width: 100%;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 4px 0 0;
  border: 0;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.copy-button b {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: white;
  font-size: 18px;
}

.tax-card .copy-button {
  color: var(--forest);
}

.donation-card .copy-button {
  color: white;
}

.documents {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.documents-intro > p:last-child {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.documents-intro a {
  color: var(--coral-dark);
  font-weight: 700;
}

.document-list {
  display: grid;
  gap: 16px;
}

.document-list > a {
  min-height: 116px;
  padding: 22px 24px;
  border: 1px solid var(--sand);
  border-radius: 21px;
  display: grid;
  grid-template-columns: 52px 1fr 40px;
  align-items: center;
  gap: 18px;
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
}

.document-list > a:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(35, 58, 49, 0.08);
}

.pdf-mark {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f5d4cb;
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.document-list > a > span:nth-child(2) {
  display: grid;
  gap: 7px;
}

.document-list strong {
  color: var(--forest);
  font-size: 15px;
}

.document-list small {
  color: var(--muted);
  font-size: 12px;
}

.document-list > a > b {
  width: 38px;
  height: 38px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest);
}

.faq {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: clamp(60px, 10vw, 150px);
}

.faq-title {
  position: sticky;
  top: 40px;
  align-self: start;
}

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

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  list-style: none;
  color: var(--forest);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 23px;
  right: 4px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage-light);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--coral);
  color: white;
}

.faq-list details p {
  max-width: 650px;
  margin: -5px 48px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact {
  background: var(--sage-light);
}

.contact-inner {
  padding-top: 122px;
  padding-bottom: 128px;
}

.contact-heading {
  max-width: 880px;
}

.contact-heading > p:last-child {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.contact-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-people,
.contact-details {
  padding: 20px 34px;
  border-radius: 26px;
}

.contact-people {
  background: var(--forest);
  color: white;
}

.contact-details {
  border: 1px solid rgba(23, 61, 50, 0.11);
  background: rgba(255, 253, 248, 0.55);
}

.contact-people a,
.contact-details a {
  min-height: 88px;
  padding: 17px 0;
  border-bottom: 1px solid;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.contact-people a:last-child,
.contact-details a:last-child { border-bottom: 0; }

.contact-people a { border-color: rgba(255, 255, 255, 0.15); }
.contact-details a { border-color: rgba(23, 61, 50, 0.11); }

.contact-people span,
.contact-details span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-details span { color: var(--muted); }

.contact-people strong,
.contact-details strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(17px, 1.75vw, 23px);
  text-align: right;
}

.contact-details strong {
  color: var(--forest);
}

.contact-map {
  margin-top: 22px;
  padding: 34px;
  border: 1px solid rgba(23, 61, 50, 0.11);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.55);
}

.contact-map-heading {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.contact-map-heading .eyebrow {
  margin-bottom: 10px;
}

.contact-map-heading h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.08;
}

.contact-map-heading a {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(23, 61, 50, 0.35);
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.contact-map-frame {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  border-radius: 20px;
  background: #d9dfd6;
}

.contact-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 64px max(48px, calc((100vw - 1240px) / 2));
  background: var(--forest-deep);
  color: white;
}

.site-footer .brand {
  color: white;
}

.footer-main {
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: 1fr 1.15fr auto;
  align-items: center;
  gap: 50px;
}

.footer-main > p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
}

@media (max-width: 1050px) {
  .header-inner,
  .hero,
  .impact-strip {
    width: min(100% - 48px, 920px);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    min-width: 92px;
    min-height: 44px;
    border: 1px solid var(--sage);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    list-style: none;
    color: var(--forest);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-menu summary::-webkit-details-marker { display: none; }

  .mobile-menu summary i,
  .mobile-menu summary i::before,
  .mobile-menu summary i::after {
    width: 15px;
    height: 2px;
    display: block;
    background: var(--forest);
    content: "";
  }

  .mobile-menu summary i { position: relative; }
  .mobile-menu summary i::before { position: absolute; top: -5px; }
  .mobile-menu summary i::after { position: absolute; top: 5px; }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(78vw, 300px);
    padding: 12px;
    border: 1px solid var(--sand);
    border-radius: 18px;
    display: grid;
    background: var(--paper);
    box-shadow: 0 18px 50px rgba(34, 56, 47, 0.16);
  }

  .mobile-menu nav a {
    padding: 13px 14px;
    border-radius: 10px;
    font-weight: 600;
  }

  .mobile-menu nav a:hover { background: var(--ivory); }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr 0.95fr;
    gap: 32px;
  }

  h1 { font-size: clamp(46px, 6vw, 62px); }
  .hero-visual { min-height: 520px; }
  .hero-badge { display: none; }

  .section {
    width: min(100% - 48px, 920px);
  }

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

  .path-heart {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .volunteer-card {
    grid-template-columns: 1fr;
  }

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

  .support-grid article {
    min-height: auto;
  }

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

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

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

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

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 32px, 680px);
    min-height: 76px;
  }

  .brand small { display: none; }
  .brand strong { font-size: 24px; }

  .hero {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
    padding: 48px 0 46px;
    overflow: visible;
  }

  .eyebrow { margin-bottom: 18px; font-size: 18px; }
  h1 { font-size: clamp(44px, 13.8vw, 60px); }
  .hero-text { margin-top: 22px; font-size: 17px; line-height: 1.65; }
  .hero-actions { margin-top: 30px; }
  .button { min-height: 54px; padding: 0 23px; font-size: 15px; }
  .hero-note { margin-top: 28px; }

  .hero-visual {
    min-height: 445px;
    margin-top: 6px;
  }

  .hero-image-wrap { inset: 12px 0 0; }
  .shape-coral { right: -16px; }
  .shape-sage { left: -12px; bottom: -14px; }

  .impact-strip {
    width: min(100% - 32px, 680px);
    margin-bottom: 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-strip div + div {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.23);
    border-left: 0;
  }

  .section {
    width: min(100% - 32px, 680px);
    padding: 82px 0;
  }

  .section-heading h2,
  .documents-intro h2,
  .faq-title h2,
  .contact-heading h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .about-grid,
  .split-heading,
  .adoption-process,
  .documents,
  .faq {
    grid-template-columns: 1fr;
  }

  .about-grid {
    margin-top: 46px;
    gap: 56px;
  }

  .about-lead {
    padding-left: 24px;
  }

  .about blockquote {
    margin-top: 66px;
  }

  .split-heading {
    gap: 28px;
  }

  .adoption-paths {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .path-heart {
    grid-column: auto;
  }

  .path-card {
    min-height: 330px;
    padding: 30px;
  }

  .adoption-process {
    margin-top: 70px;
    padding-top: 62px;
    gap: 48px;
  }

  .adoption-process ol {
    grid-template-columns: 1fr;
  }

  .volunteer-card {
    padding: 42px 26px;
    border-radius: 26px;
    gap: 48px;
  }

  .volunteer-copy h2 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .volunteer-list {
    padding: 25px;
  }

  .help .section {
    padding-top: 88px;
    padding-bottom: 92px;
  }

  .support-grid {
    margin-top: 46px;
  }

  .support-grid article {
    padding: 34px 25px;
    border-radius: 24px;
  }

  .support-code {
    align-items: flex-start;
    flex-direction: column;
  }

  .donation-card dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .document-list > a {
    grid-template-columns: 48px 1fr;
    padding: 20px;
  }

  .document-list > a > b {
    display: none;
  }

  .faq {
    gap: 34px;
  }

  .faq-title {
    position: static;
  }

  .contact-inner {
    padding-top: 88px;
    padding-bottom: 90px;
  }

  .contact-grid {
    margin-top: 42px;
  }

  .contact-people,
  .contact-details {
    padding: 12px 20px;
  }

  .contact-people a,
  .contact-details a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  .contact-people strong,
  .contact-details strong {
    text-align: left;
  }

  .contact-map {
    padding: 20px;
  }

  .contact-map-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .contact-map-frame {
    min-height: 390px;
  }

  .site-footer {
    padding: 58px 24px 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-visual { min-height: 370px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
