:root {
  --ink: #17100c;
  --muted: #756a60;
  --paper: #ffffff;
  --soft: #f7f1e9;
  --warm: #fff3ed;
  --rose: #a41627;
  --sage: #80101d;
  --sage-dark: #17100c;
  --gold: #c79b44;
  --line: rgba(200, 155, 85, 0.2);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
  --shadow-hover: 0 28px 74px rgba(0, 0, 0, 0.24);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  transform: translateY(-140%);
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  row-gap: 6px;
  padding: 8px 24px;
  color: #fff;
  background: var(--sage-dark);
  font-size: 0.88rem;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.topbar a {
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.topbar svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 220ms var(--ease), filter 220ms var(--ease);
}

.brand img {
  width: clamp(230px, 27vw, 340px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
  transition: transform 260ms var(--ease);
}

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

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.nav-links a::after {
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--sage-dark);
  background: var(--soft);
}

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  place-items: center;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  transform: translateX(-120%);
  transition: transform 520ms var(--ease);
}

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

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 180ms var(--ease);
}

.button--primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 15px 28px rgba(128, 16, 29, 0.28);
}

.button--primary:hover {
  background: var(--sage-dark);
}

.button--secondary {
  background: #fff;
  color: var(--sage-dark);
  border-color: rgba(128, 16, 29, 0.25);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.button--nav {
  min-height: 42px;
  padding: 10px 14px;
  color: #fff;
  background: var(--rose);
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(620px, 84vh, 760px);
  overflow: hidden;
  isolation: isolate;
}

.page-hero {
  min-height: clamp(440px, 60vh, 590px);
}

.hero > img,
.page-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.86), rgba(5, 4, 3, 0.46) 46%, rgba(5, 4, 3, 0.08)),
    linear-gradient(0deg, rgba(5, 4, 3, 0.24), rgba(5, 4, 3, 0.24));
}

.hero-content {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0;
  color: #fff;
}

.hero-content h1 {
  max-width: 850px;
  margin: 10px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero .hero-content h1 {
  font-size: clamp(2.6rem, 7vw, 6rem);
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow {
  color: #ffd49f;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-band {
  width: min(1120px, calc(100% - 32px));
  margin: -56px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--line);
}

.proof-band div {
  min-height: 132px;
  padding: 24px;
  background: #fff;
  transition: transform 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
}

.proof-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sage-dark);
  font-size: 1.08rem;
}

.proof-band span {
  color: var(--muted);
}

.section {
  padding: clamp(66px, 9vw, 112px) 0;
}

.section--tint {
  background: var(--soft);
}

.section--warm {
  background: var(--warm);
}

.section--gallery {
  background: #fbfbf8;
}

.section--map {
  background: linear-gradient(180deg, #fff, #f7f8f4);
  scroll-margin-top: 130px;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

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

h2,
h3,
p {
  text-wrap: pretty;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack p {
  margin: 0;
  font-size: 1.05rem;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--soft);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease), filter 320ms var(--ease);
}

.feature-grid,
.check-list,
.two-grid,
.three-grid,
.dog-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

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

.feature-grid span,
.check-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--sage-dark);
  font-weight: 800;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}

.feature-grid svg,
.check-list svg {
  width: 19px;
  height: 19px;
  color: var(--rose);
  flex: 0 0 auto;
}

.check-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.check-list--stack {
  grid-template-columns: 1fr;
}

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

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

.info-card,
.dog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 15px 35px rgba(20, 26, 24, 0.08);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.info-card {
  padding: 26px;
}

.info-card p {
  margin: 0;
}

.icon-pill {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--sage);
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}

.icon-pill svg {
  width: 22px;
  height: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-dark);
  font-weight: 900;
  text-decoration: none;
  transition: color 180ms var(--ease);
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms var(--ease);
}

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

.timeline article {
  min-height: 170px;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.timeline strong {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.timeline p {
  margin: 0;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.map-details {
  display: grid;
  gap: 10px;
}

.map-details span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--sage-dark);
  font-weight: 800;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}

.map-details svg {
  width: 19px;
  height: 19px;
  color: var(--rose);
  flex: 0 0 auto;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #eee6dc;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 52vw, 520px);
  border: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 26, 24, 0.07);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), transform 200ms var(--ease);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--sage-dark);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  background: var(--soft);
  box-shadow: 0 12px 32px rgba(20, 26, 24, 0.08);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.gallery-grid figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(22, 32, 29, 0), rgba(22, 32, 29, 0.22));
  opacity: 0;
  transition: opacity 240ms var(--ease);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease), filter 320ms var(--ease);
}

.dog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dog-grid--hall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dog-card {
  overflow: hidden;
}

.dog-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 500ms var(--ease), filter 280ms var(--ease);
}

.dog-card div {
  padding: 20px;
}

.dog-card p {
  margin: 0 0 5px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dog-card span {
  display: block;
  color: var(--muted);
}

.application-form {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-heading {
  max-width: 680px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.application-form label,
.application-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbf8;
  color: var(--ink);
  padding: 12px 13px;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.application-form textarea {
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbf8;
  font-weight: 700;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.choice-grid input {
  width: auto;
}

.hide-field {
  position: absolute;
  left: -9999px;
}

.form-submit {
  justify-self: start;
  min-width: 220px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: clamp(66px, 9vw, 112px) auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(200, 155, 85, 0.42);
  border-radius: 0;
  color: #fff;
  background:
    radial-gradient(circle at 10% 14%, rgba(128, 16, 29, 0.34), transparent 34%),
    linear-gradient(135deg, #080604, #17100c 68%, #080604);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 38px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr;
  gap: 34px;
}

.footer-logo {
  width: min(360px, 100%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.site-footer p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.site-footer a:hover {
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(199, 155, 68, 0.75);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .topbar a:hover {
    color: #ffd49f;
    transform: translateY(-1px);
  }

  .brand:hover {
    filter: drop-shadow(0 12px 18px rgba(20, 26, 24, 0.18));
    transform: translateY(-2px);
  }

  .brand:hover img {
    transform: scale(1.04);
  }

  .nav-links a:hover {
    box-shadow: 0 10px 24px rgba(128, 16, 29, 0.12);
    transform: translateY(-1px);
  }

  .nav-links a:hover::after {
    transform: scaleX(1);
  }

  .nav-toggle:hover {
    border-color: rgba(199, 155, 68, 0.65);
    box-shadow: 0 12px 28px rgba(20, 26, 24, 0.12);
    transform: translateY(-1px);
  }

  .button:hover {
    box-shadow: 0 18px 38px rgba(20, 26, 24, 0.2);
    transform: translateY(-2px);
  }

  .button:hover::before {
    transform: translateX(120%);
  }

  .button:hover svg {
    transform: translateX(2px) scale(1.04);
  }

  .button--primary:hover,
  .button--nav:hover {
    box-shadow: 0 20px 42px rgba(128, 16, 29, 0.32);
  }

  .button--secondary:hover {
    border-color: rgba(199, 155, 68, 0.55);
    color: var(--ink);
  }

  .button--ghost:hover {
    border-color: #ffd49f;
    background: rgba(255, 255, 255, 0.18);
  }

  .proof-band div:hover {
    z-index: 1;
    background: #fffaf2;
    box-shadow: 0 22px 52px rgba(20, 26, 24, 0.14);
    transform: translateY(-4px);
  }

  .image-panel:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
  }

  .image-panel:hover img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.045);
  }

  .feature-grid span:hover,
  .check-list span:hover {
    background: #fffaf2;
    border-color: rgba(199, 155, 68, 0.42);
    box-shadow: 0 16px 34px rgba(20, 26, 24, 0.1);
    transform: translateY(-2px);
  }

  .info-card:hover,
  .dog-card:hover,
  .timeline article:hover {
    border-color: rgba(199, 155, 68, 0.5);
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
  }

  .info-card:hover .icon-pill {
    background: var(--rose);
    transform: rotate(-3deg) scale(1.06);
  }

  .text-link:hover {
    color: var(--rose);
  }

  .text-link:hover svg {
    transform: translateX(4px);
  }

  .gallery-grid figure:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
  }

  .gallery-grid figure:hover::after {
    opacity: 1;
  }

  .gallery-grid figure:hover img,
  .dog-card:hover img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.055);
  }

  .map-details span:hover {
    background: #fffaf2;
    border-color: rgba(199, 155, 68, 0.42);
    box-shadow: 0 16px 34px rgba(20, 26, 24, 0.1);
    transform: translateY(-2px);
  }

  .map-card:hover {
    border-color: rgba(199, 155, 68, 0.5);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
  }

  .faq-list details:hover {
    border-color: rgba(199, 155, 68, 0.5);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
  }

  .choice-grid label:hover {
    background: #fff;
    border-color: rgba(199, 155, 68, 0.45);
    box-shadow: 0 12px 28px rgba(20, 26, 24, 0.08);
    transform: translateY(-1px);
  }

  .cta-band:hover {
    box-shadow: 0 30px 82px rgba(20, 26, 24, 0.22);
    transform: translateY(-3px);
  }

  .footer-logo:hover {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    transform: translateY(-3px) scale(1.02);
  }

  .site-footer a:hover {
    transform: translateX(3px);
  }
}

.application-form input:hover,
.application-form select:hover,
.application-form textarea:hover {
  border-color: rgba(128, 16, 29, 0.35);
  background: #fff;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(199, 155, 68, 0.16);
  outline: none;
}

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

.footer-bottom {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .topbar {
    flex-wrap: wrap;
    gap: 8px 18px;
  }

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

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    inset: 100% 16px auto;
    display: none;
    grid-template-columns: 1fr;
    justify-content: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    justify-content: flex-start;
  }

  .proof-band,
  .three-grid,
  .check-list,
  .dog-grid,
  .dog-grid--hall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split--reverse,
  .map-layout,
  .cta-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .topbar span,
  .topbar a.topbar-location {
    display: none;
  }

  .topbar {
    padding: 7px 12px;
    font-size: 0.84rem;
  }

  .nav {
    min-height: 60px;
    width: min(100% - 24px, 1120px);
    gap: 8px;
  }

  .button--nav {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.92rem;
  }

  .brand img {
    width: clamp(150px, 52vw, 224px);
    max-height: 50px;
  }

  .hero {
    min-height: 78vh;
  }

  .page-hero {
    min-height: clamp(410px, 54vh, 480px);
    align-items: end;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding: 42px 0;
  }

  .page-hero .hero-content {
    padding: 34px 0 40px;
  }

  .page-hero .hero-content h1 {
    margin-bottom: 14px;
    font-size: clamp(2.5rem, 12vw, 4.4rem);
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-band,
  .feature-grid,
  .two-grid,
  .three-grid,
  .check-list,
  .timeline,
  .gallery-grid,
  .map-layout,
  .dog-grid,
  .dog-grid--hall,
  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .proof-band {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .section-inner,
  .footer-inner,
  .footer-bottom,
  .cta-band {
    width: min(100% - 28px, 1120px);
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .topbar a.topbar-social {
    display: none;
  }
}

@media (max-width: 380px) {
  .nav {
    gap: 8px;
  }

  .button--nav {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .brand img {
    width: 142px;
  }
}

/* Dorenlee revised local proof */
.proof-page {
  --proof-ink: #151716;
  --proof-panel: #1d2020;
  --proof-burgundy: #8c1d35;
  --proof-burgundy-bright: #a8233f;
  --proof-gold: #d1ae67;
  --proof-teal: #80101d;
  --proof-mint: #75a89c;
  --proof-cream: #fff7f1;
  --proof-paper: #fffdf9;
  background: var(--proof-paper);
}

.proof-page .proof-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.97);
  border-bottom: 1px solid rgba(21, 23, 22, 0.12);
  box-shadow: 0 14px 36px rgba(21, 23, 22, 0.08);
  backdrop-filter: blur(18px);
}

.proof-topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 8px 24px;
  background: #050403;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.proof-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.proof-topbar svg {
  width: 15px;
  height: 15px;
}

.proof-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(1240px, calc(100% - 32px));
  min-height: 88px;
  margin: 0 auto;
}

.proof-brand {
  display: inline-flex;
  align-items: center;
}

.proof-brand img {
  width: clamp(250px, 27vw, 382px);
  max-height: 78px;
  object-fit: contain;
  transition: transform 240ms var(--ease), filter 240ms var(--ease);
}

.proof-nav-links {
  justify-content: flex-end;
}

.proof-nav-links a {
  color: #4b4b47;
}

.proof-nav-links a:hover,
.proof-nav-links a:focus-visible {
  color: var(--proof-burgundy);
  background: #fff5ef;
}

.proof-apply {
  background: var(--proof-burgundy);
}

.proof-hero {
  position: relative;
  min-height: clamp(680px, 84vh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--proof-ink);
}

.proof-hero > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.84) contrast(1.08);
}

.proof-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 15, 14, 0.96), rgba(20, 20, 18, 0.78) 42%, rgba(20, 20, 18, 0.18) 100%),
    radial-gradient(circle at 20% 25%, rgba(140, 29, 53, 0.28), rgba(140, 29, 53, 0) 34%),
    linear-gradient(0deg, rgba(12, 15, 14, 0.45), rgba(12, 15, 14, 0.04));
}

.proof-hero-inner {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0 126px;
}

.proof-hero-copy {
  max-width: 760px;
  color: #fff;
}

.proof-brandline {
  margin: 0 0 12px;
  color: var(--proof-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 8.6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.proof-hero-copy > p:not(.proof-brandline) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
}

.proof-feature-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: -76px auto 0;
  overflow: hidden;
  border: 1px solid rgba(209, 174, 103, 0.34);
  border-radius: 8px;
  background: rgba(209, 174, 103, 0.45);
  box-shadow: 0 28px 76px rgba(21, 23, 22, 0.24);
}

.proof-feature-row a {
  min-height: 178px;
  padding: clamp(22px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(145deg, rgba(31, 32, 31, 0.97), rgba(21, 23, 22, 0.97)),
    var(--proof-panel);
  text-decoration: none;
  transition: background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease), color 220ms var(--ease);
}

.proof-feature-row strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.proof-feature-row span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
}

.proof-section {
  padding: clamp(78px, 9vw, 128px) 0;
  scroll-margin-top: 124px;
}

.proof-section-inner,
.proof-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.proof-section-heading {
  max-width: 850px;
  margin: 0 0 42px;
}

.proof-section-heading h2,
.proof-copy h2,
.proof-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.8vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.proof-section-heading p:not(.proof-kicker),
.proof-copy p:not(.proof-kicker),
.proof-cta p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #665d55;
  font-size: 1.08rem;
}

.proof-kicker {
  margin: 0 0 12px;
  color: var(--proof-burgundy);
  font-size: 0.83rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}

.proof-split--wide {
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
}

.proof-image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: #241c19;
  border: 1px solid rgba(209, 174, 103, 0.28);
  box-shadow: 0 26px 70px rgba(21, 23, 22, 0.18);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.proof-image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(21, 23, 22, 0), rgba(21, 23, 22, 0.28));
  opacity: 0.55;
  pointer-events: none;
}

.proof-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms var(--ease), filter 280ms var(--ease);
}

.proof-dark,
.proof-program,
.proof-connections {
  color: #fff;
  background:
    radial-gradient(circle at 14% 8%, rgba(140, 29, 53, 0.2), transparent 32%),
    linear-gradient(135deg, #151716, #242220 56%, #080604);
}

.proof-dark .proof-kicker,
.proof-program .proof-kicker,
.proof-connections .proof-kicker {
  color: var(--proof-gold);
}

.proof-dark h2,
.proof-dark h3,
.proof-program h2,
.proof-program h3,
.proof-connections h2,
.proof-connections h3 {
  color: #fff;
}

.proof-dark p,
.proof-program p,
.proof-connections p {
  color: rgba(255, 255, 255, 0.78);
}

.proof-card-grid,
.proof-dog-grid,
.proof-litter-grid,
.proof-process,
.proof-timeline {
  display: grid;
  gap: 18px;
}

.proof-card-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.proof-card {
  min-height: 265px;
  padding: 24px;
  border: 1px solid rgba(209, 174, 103, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
}

.proof-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--proof-gold);
  font-weight: 950;
}

.proof-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.05;
}

.proof-card p {
  margin: 0;
}

.proof-dog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-dog {
  overflow: hidden;
  border: 1px solid rgba(21, 23, 22, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(21, 23, 22, 0.1);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.proof-dog img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 520ms var(--ease), filter 260ms var(--ease);
}

.proof-dog div {
  padding: 20px;
}

.proof-dog h3 {
  margin: 0 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.proof-dog p {
  margin: 0 0 8px;
  color: var(--proof-burgundy);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-dog span {
  display: block;
  color: #665d55;
}

.proof-timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.proof-timeline article,
.proof-litter-grid article,
.proof-process article {
  border-radius: 8px;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease);
}

.proof-timeline article {
  min-height: 245px;
  padding: 22px;
  border: 1px solid rgba(209, 174, 103, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.proof-timeline strong {
  display: block;
  margin-bottom: 26px;
  color: var(--proof-gold);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-litter-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.proof-litter-grid article {
  display: grid;
  align-content: start;
  min-height: 285px;
  padding: 24px;
  border: 1px solid rgba(21, 23, 22, 0.12);
  background: #fff;
  box-shadow: 0 18px 48px rgba(21, 23, 22, 0.08);
}

.proof-litter-grid h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.proof-litter-grid p {
  margin: 0 0 13px;
  color: var(--proof-burgundy);
  font-weight: 900;
}

.proof-litter-grid span {
  display: block;
  margin-bottom: 8px;
  color: #665d55;
}

.proof-litter-grid a,
.proof-text-button {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 13px;
  border-radius: 8px;
  background: var(--proof-burgundy);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.proof-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-process article {
  min-height: 235px;
  padding: 24px;
  border: 1px solid rgba(209, 174, 103, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.proof-process span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--proof-gold);
  color: #151716;
  font-weight: 950;
}

.proof-faq {
  background: #f7f1eb;
}

.proof-faq .faq-list {
  max-width: 960px;
}

.proof-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: clamp(78px, 9vw, 128px);
  margin-bottom: clamp(78px, 9vw, 128px);
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(209, 174, 103, 0.28);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(140, 29, 53, 0.94), rgba(21, 23, 22, 0.98)),
    var(--proof-burgundy);
  box-shadow: 0 28px 78px rgba(21, 23, 22, 0.22);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.proof-cta h2 {
  color: #fff;
}

.proof-cta p:not(.proof-kicker) {
  color: rgba(255, 255, 255, 0.8);
}

.proof-footer {
  background: #151716;
}

.proof-footer .footer-logo {
  background: transparent;
  border: 1px solid rgba(209, 174, 103, 0.22);
}

@media (hover: hover) and (pointer: fine) {
  .proof-topbar a:hover {
    color: var(--proof-gold);
    transform: translateY(-1px);
  }

  .proof-brand:hover img {
    filter: drop-shadow(0 16px 22px rgba(140, 29, 53, 0.18));
    transform: translateY(-2px) scale(1.02);
  }

  .proof-feature-row a:hover {
    z-index: 1;
    color: #fff;
    background:
      linear-gradient(145deg, rgba(140, 29, 53, 0.96), rgba(21, 23, 22, 0.98)),
      var(--proof-burgundy);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.28);
    transform: translateY(-6px);
  }

  .proof-image-frame:hover,
  .proof-dog:hover,
  .proof-litter-grid article:hover,
  .proof-card:hover,
  .proof-timeline article:hover,
  .proof-process article:hover {
    border-color: rgba(209, 174, 103, 0.62);
    box-shadow: 0 30px 84px rgba(21, 23, 22, 0.2);
    transform: translateY(-6px);
  }

  .proof-image-frame:hover img,
  .proof-dog:hover img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.055);
  }

  .proof-card:hover,
  .proof-timeline article:hover,
  .proof-process article:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .proof-litter-grid a:hover,
  .proof-text-button:hover {
    background: var(--proof-burgundy-bright);
    box-shadow: 0 14px 30px rgba(140, 29, 53, 0.24);
    transform: translateY(-2px);
  }

  .proof-cta:hover {
    box-shadow: 0 34px 92px rgba(21, 23, 22, 0.28);
    transform: translateY(-4px);
  }
}

@media (max-width: 1180px) {
  .proof-card-grid--five,
  .proof-timeline,
  .proof-litter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1040px) {
  .proof-nav {
    grid-template-columns: 1fr auto auto;
  }

  .proof-split,
  .proof-split--wide,
  .proof-cta {
    grid-template-columns: 1fr;
  }

  .proof-nav-links {
    inset: 100% 16px auto;
    background: #fffdf9;
  }
}

@media (max-width: 760px) {
  .proof-topbar {
    gap: 10px 16px;
    padding-inline: 12px;
    font-size: 0.84rem;
  }

  .proof-topbar a:nth-child(n+3) {
    display: none;
  }

  .proof-nav {
    min-height: 68px;
    width: min(100% - 24px, 1180px);
    gap: 8px;
  }

  .proof-brand img {
    width: clamp(166px, 50vw, 230px);
    max-height: 52px;
  }

  .proof-hero {
    min-height: 78vh;
    align-items: end;
  }

  .proof-hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 58px 0 80px;
  }

  .proof-hero h1 {
    max-width: calc(100vw - 28px);
    font-size: clamp(2.75rem, 12vw, 4.4rem);
    overflow-wrap: break-word;
  }

  .proof-feature-row {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .proof-feature-row a {
    min-height: auto;
  }

  .proof-section-inner,
  .proof-cta {
    width: min(100% - 28px, 1180px);
  }

  .proof-card-grid--five,
  .proof-dog-grid,
  .proof-timeline,
  .proof-litter-grid,
  .proof-process {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .proof-timeline article,
  .proof-process article,
  .proof-litter-grid article {
    min-height: auto;
  }
}

@media (max-width: 430px) {
  .proof-apply {
    padding-inline: 10px;
    font-size: 0.88rem;
  }

  .proof-brand img {
    width: 150px;
  }
}

/* Rendered mockup alignment pass */
.proof-page {
  --proof-ink: #060504;
  --proof-panel: #100d0b;
  --proof-panel-soft: #17120f;
  --proof-burgundy: #80101d;
  --proof-burgundy-bright: #9d1729;
  --proof-gold: #c89b55;
  --proof-gold-soft: #dfc08b;
  --proof-cream: #f5ead7;
  --proof-muted: #d9c7ad;
  --proof-line: rgba(200, 155, 85, 0.42);
  color: var(--proof-cream);
  background:
    radial-gradient(circle at 12% 0%, rgba(128, 16, 29, 0.15), transparent 34%),
    radial-gradient(circle at 92% 32%, rgba(200, 155, 85, 0.1), transparent 30%),
    linear-gradient(180deg, #060504 0%, #120e0b 48%, #070605 100%);
}

.proof-page .proof-header {
  background: rgba(5, 4, 3, 0.96);
  border-bottom: 1px solid var(--proof-line);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.proof-topbar {
  justify-content: flex-end;
  gap: 26px;
  padding: 7px max(22px, calc((100vw - 1240px) / 2));
  background: #050403;
  border-bottom: 1px solid rgba(200, 155, 85, 0.2);
  color: rgba(245, 234, 215, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 500;
}

.proof-nav {
  min-height: 96px;
}

.proof-brand {
  position: relative;
  padding: 8px 0;
}

.proof-brand::after {
  position: absolute;
  right: 10%;
  bottom: 1px;
  left: 10%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 155, 85, 0.52), transparent);
}

.proof-brand img {
  width: clamp(236px, 24vw, 356px);
  max-height: 76px;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.72));
}

.proof-nav-links {
  gap: 20px;
}

.proof-nav-links a {
  position: relative;
  color: rgba(245, 234, 215, 0.86);
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-nav-links a::after {
  position: absolute;
  right: 16px;
  bottom: 5px;
  left: 16px;
  height: 1px;
  content: "";
  background: var(--proof-gold);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.proof-nav-links a:hover,
.proof-nav-links a:focus-visible {
  color: var(--proof-gold-soft);
  background: transparent;
}

.proof-nav-links a:hover::after,
.proof-nav-links a:focus-visible::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.proof-apply,
.proof-page .button--primary,
.proof-page .button--ghost {
  border: 1px solid rgba(200, 155, 85, 0.72);
  border-radius: 0;
  background: rgba(6, 5, 4, 0.4);
  color: var(--proof-cream);
  box-shadow: none;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-page .button--primary:hover,
.proof-page .button--ghost:hover,
.proof-apply:hover {
  border-color: var(--proof-gold-soft);
  background: rgba(128, 16, 29, 0.72);
  color: #fff;
  transform: translateY(-2px);
}

.proof-hero {
  min-height: clamp(560px, 58vh, 680px);
  background: #050403;
  border-bottom: 1px solid var(--proof-line);
}

.proof-hero > img {
  object-position: center;
  opacity: 0.94;
  filter: sepia(0.18) saturate(0.86) contrast(1.1) brightness(0.92);
}

.proof-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.99) 0%, rgba(5, 4, 3, 0.91) 34%, rgba(5, 4, 3, 0.44) 62%, rgba(5, 4, 3, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.22), rgba(5, 4, 3, 0.58)),
    radial-gradient(circle at 34% 48%, rgba(200, 155, 85, 0.16), transparent 34%);
}

.proof-hero-inner {
  position: relative;
  padding: 64px 0 78px;
}

.proof-hero-inner::before {
  display: block;
  width: 172px;
  height: 1px;
  margin: 0 0 28px 74px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 155, 85, 0.8), transparent);
}

.proof-hero-copy {
  max-width: 720px;
}

.proof-brandline {
  margin-bottom: 18px;
  color: var(--proof-gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.45vw, 1.5rem);
  font-weight: 500;
  text-transform: uppercase;
}

.proof-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--proof-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.7vw, 4.05rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.proof-hero h1 .proof-script {
  display: block;
  margin: 0 0 6px;
  color: #dbc09c;
  font-family: "Snell Roundhand", "Bickham Script Pro 3", "Zapfino", cursive;
  font-size: clamp(4rem, 8vw, 8.8rem);
  font-weight: 400;
  line-height: 0.88;
  text-transform: none;
}

.proof-hero h1::after {
  display: block;
  width: min(380px, 70%);
  height: 1px;
  margin: 28px auto 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 155, 85, 0.72), transparent);
}

.proof-hero-copy > p:not(.proof-brandline) {
  max-width: 640px;
  color: rgba(245, 234, 215, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  line-height: 1.55;
}

.proof-feature-row {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  border-color: var(--proof-line);
  border-top: 0;
  border-radius: 0;
  background: #080604;
  box-shadow: none;
}

.proof-feature-row a {
  min-height: 150px;
  padding: clamp(22px, 2.6vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--proof-panel);
  border-right: 1px solid rgba(200, 155, 85, 0.22);
  color: rgba(245, 234, 215, 0.76);
}

.proof-feature-row a:last-child {
  border-right: 0;
}

.proof-feature-row strong {
  color: var(--proof-gold-soft);
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  font-weight: 500;
  text-transform: uppercase;
}

.proof-feature-row span {
  color: rgba(245, 234, 215, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.45;
}

.proof-section {
  position: relative;
  padding: clamp(76px, 8vw, 118px) 0;
  border-bottom: 1px solid rgba(200, 155, 85, 0.22);
  background:
    radial-gradient(circle at 18% 10%, rgba(128, 16, 29, 0.12), transparent 30%),
    linear-gradient(180deg, #100d0b, #080604);
}

.proof-section:nth-of-type(odd) {
  background:
    radial-gradient(circle at 84% 18%, rgba(200, 155, 85, 0.08), transparent 28%),
    linear-gradient(180deg, #080604, #120e0b);
}

.proof-section-heading {
  max-width: 900px;
}

.proof-section-heading h2,
.proof-copy h2,
.proof-cta h2 {
  color: var(--proof-cream);
  font-weight: 500;
  line-height: 1.02;
}

.proof-section-heading p:not(.proof-kicker),
.proof-copy p:not(.proof-kicker),
.proof-cta p {
  color: rgba(245, 234, 215, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

.proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--proof-gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
}

.proof-kicker::before,
.proof-kicker::after {
  display: inline-block;
  width: 58px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 155, 85, 0.74));
}

.proof-kicker::after {
  background: linear-gradient(90deg, rgba(200, 155, 85, 0.74), transparent);
}

.proof-image-frame {
  border-color: var(--proof-line);
  border-radius: 0;
  background: #050403;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.proof-image-frame::before {
  position: absolute;
  inset: 10px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(200, 155, 85, 0.34);
  pointer-events: none;
}

.proof-image-frame img,
.proof-dog img {
  filter: sepia(0.12) saturate(0.86) contrast(1.08) brightness(0.84);
}

.proof-dark,
.proof-program,
.proof-connections {
  background:
    radial-gradient(circle at 10% 14%, rgba(128, 16, 29, 0.18), transparent 31%),
    linear-gradient(135deg, #050403, #15100d 58%, #080604);
}

.proof-card,
.proof-dog,
.proof-timeline article,
.proof-litter-grid article,
.proof-process article,
.proof-faq details {
  border: 1px solid var(--proof-line);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    var(--proof-panel);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.26);
}

.proof-card {
  min-height: 250px;
}

.proof-card span,
.proof-timeline strong,
.proof-litter-grid p,
.proof-dog p {
  color: var(--proof-burgundy-bright);
}

.proof-card h3,
.proof-dog h3,
.proof-litter-grid h3,
.proof-process h3,
.proof-timeline h3 {
  color: var(--proof-gold-soft);
  font-weight: 500;
}

.proof-card p,
.proof-dog span,
.proof-litter-grid span,
.proof-timeline p,
.proof-process p {
  color: rgba(245, 234, 215, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.52;
}

.proof-dog img {
  border-bottom: 1px solid rgba(200, 155, 85, 0.28);
}

.proof-litter-grid a,
.proof-text-button {
  border: 1px solid rgba(200, 155, 85, 0.58);
  border-radius: 0;
  background: transparent;
  color: var(--proof-gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

.proof-process span {
  width: 58px;
  height: 58px;
  border: 1px solid var(--proof-gold);
  background: var(--proof-burgundy);
  color: var(--proof-gold-soft);
  font-family: Georgia, "Times New Roman", serif;
}

.proof-faq {
  background:
    radial-gradient(circle at 88% 0%, rgba(200, 155, 85, 0.09), transparent 30%),
    linear-gradient(180deg, #100d0b, #080604);
}

.proof-faq summary {
  color: var(--proof-cream);
  font-family: Georgia, "Times New Roman", serif;
}

.proof-faq details p {
  color: rgba(245, 234, 215, 0.72);
}

.proof-cta {
  border-color: var(--proof-line);
  border-radius: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(128, 16, 29, 0.34), transparent 34%),
    linear-gradient(135deg, #080604, #17100c);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.proof-footer {
  border-top: 1px solid var(--proof-line);
  background: #050403;
}

.proof-footer .footer-logo {
  border-color: rgba(200, 155, 85, 0.28);
  border-radius: 0;
}

@media (hover: hover) and (pointer: fine) {
  .proof-feature-row a:hover {
    background:
      linear-gradient(180deg, rgba(128, 16, 29, 0.24), rgba(255, 255, 255, 0.025)),
      var(--proof-panel-soft);
    box-shadow: inset 0 0 0 1px rgba(200, 155, 85, 0.22);
    transform: translateY(-3px);
  }

  .proof-card:hover,
  .proof-timeline article:hover,
  .proof-process article:hover,
  .proof-dog:hover,
  .proof-litter-grid article:hover,
  .proof-image-frame:hover {
    border-color: rgba(223, 192, 139, 0.74);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
  }

  .proof-litter-grid a:hover,
  .proof-text-button:hover {
    background: rgba(128, 16, 29, 0.6);
    color: #fff;
  }
}

@media (max-width: 1040px) {
  .proof-nav-links {
    background: rgba(5, 4, 3, 0.98);
    border: 1px solid var(--proof-line);
  }
}

@media (max-width: 760px) {
  .proof-topbar {
    justify-content: center;
  }

  .proof-brand img {
    width: clamp(168px, 50vw, 230px);
  }

  .proof-hero {
    min-height: 78vh;
  }

  .proof-hero > img {
    object-position: 68% center;
    opacity: 0.58;
  }

  .proof-hero-inner::before {
    margin-left: 0;
  }

  .proof-brandline {
    font-size: 0.98rem;
  }

  .proof-hero h1 {
    font-size: clamp(1.75rem, 8vw, 3.1rem);
  }

  .proof-hero h1 .proof-script {
    font-size: clamp(3.1rem, 16vw, 5.6rem);
  }

  .proof-feature-row {
    width: 100%;
  }

  .proof-feature-row a {
    border-right: 0;
    border-bottom: 1px solid rgba(200, 155, 85, 0.22);
  }

  .proof-kicker::before,
  .proof-kicker::after {
    width: 32px;
  }
}

/* Closer pass against Michelle's rendered mockup */
.proof-page::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
  mix-blend-mode: screen;
}

.proof-topbar {
  display: none;
}

.proof-nav {
  min-height: 112px;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr) auto;
  width: min(1390px, calc(100% - 72px));
}

.proof-brand {
  min-height: 92px;
  align-self: stretch;
}

.proof-brand img {
  display: none;
}

.proof-brand-lockup {
  display: grid;
  grid-template-columns: 86px auto;
  gap: 12px;
  align-items: center;
  color: var(--proof-gold-soft);
  text-transform: uppercase;
}

.proof-brand-mark {
  position: relative;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border: 1px solid rgba(200, 155, 85, 0.86);
  border-radius: 50%;
  color: var(--proof-gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.proof-brand-mark::before,
.proof-brand-mark::after {
  position: absolute;
  inset: -8px;
  content: "";
  border-top: 1px solid rgba(200, 155, 85, 0.52);
  border-bottom: 1px solid rgba(200, 155, 85, 0.52);
  border-radius: 50%;
}

.proof-brand-mark::after {
  inset: 16px -42px;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.proof-brand-name {
  display: grid;
  gap: 3px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.proof-brand-name strong {
  color: var(--proof-gold-soft);
  font-size: clamp(1.75rem, 2.35vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.16em;
}

.proof-brand-name span {
  color: rgba(245, 234, 215, 0.9);
  font-size: clamp(0.82rem, 1.2vw, 1.18rem);
  letter-spacing: 0.15em;
}

.proof-nav-links {
  justify-content: center;
  gap: clamp(18px, 2.3vw, 36px);
}

.proof-nav-links a {
  padding-inline: 0;
  color: rgba(245, 234, 215, 0.78);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.proof-nav-links a::after {
  right: 0;
  bottom: -10px;
  left: 0;
}

.proof-page .button--nav {
  min-width: 178px;
  justify-content: center;
}

.proof-page .nav-toggle {
  border: 1px solid rgba(200, 155, 85, 0.72);
  border-radius: 0;
  background: rgba(6, 5, 4, 0.72);
  color: var(--proof-cream);
}

.proof-hero {
  min-height: clamp(584px, 62vh, 720px);
}

.proof-hero-inner {
  width: min(1390px, calc(100% - 72px));
  padding: 74px 0 84px;
}

.proof-hero-inner::before {
  width: 210px;
  margin: 0 0 22px 74px;
}

.proof-hero-copy {
  max-width: 760px;
  margin-left: clamp(0px, 3.6vw, 58px);
}

.proof-brandline {
  font-size: clamp(1.05rem, 1.2vw, 1.38rem);
}

.proof-hero h1 {
  max-width: 770px;
  color: #f7ead6;
  font-size: clamp(2.28rem, 3.95vw, 4.7rem);
  letter-spacing: 0.055em;
}

.proof-hero h1 .proof-script {
  color: #d7b38b;
  font-size: clamp(4.3rem, 6.8vw, 7.45rem);
  letter-spacing: 0;
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.5);
}

.proof-hero h1::after {
  margin-top: 22px;
}

.proof-hero-copy > p:not(.proof-brandline) {
  max-width: 675px;
}

.proof-feature-row {
  width: min(1240px, calc(100% - 92px));
  transform: translateY(-1px);
}

.proof-feature-row a {
  min-height: 116px;
  padding: 22px 28px;
}

.proof-feature-row strong {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  letter-spacing: 0.08em;
}

.proof-feature-row span {
  font-size: 0.96rem;
}

.proof-split {
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.8fr) minmax(220px, 0.48fr);
  gap: clamp(28px, 4vw, 58px);
}

.proof-story .proof-section-inner {
  width: min(1360px, calc(100% - 92px));
}

.proof-story .proof-image-frame {
  aspect-ratio: 1.28 / 1;
}

.proof-story-seal {
  display: grid;
  justify-items: center;
  gap: 22px;
  align-self: center;
  padding: 34px 22px;
  color: var(--proof-gold-soft);
  text-align: center;
}

.proof-story-seal span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(200, 155, 85, 0.78);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
}

.proof-story-seal strong {
  display: block;
  color: var(--proof-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.6vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 1.36;
  text-transform: uppercase;
}

.proof-story-seal strong::after {
  display: block;
  width: 150px;
  height: 1px;
  margin: 18px auto 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 155, 85, 0.72), transparent);
}

.proof-story-seal em {
  color: #cfa783;
  font-family: "Snell Roundhand", "Bickham Script Pro 3", "Zapfino", cursive;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
}

.proof-section-heading h2,
.proof-copy h2,
.proof-cta h2 {
  font-size: clamp(2.6rem, 5vw, 5.7rem);
}

.proof-card,
.proof-dog,
.proof-timeline article,
.proof-litter-grid article,
.proof-process article {
  position: relative;
}

.proof-card::after,
.proof-dog::after,
.proof-timeline article::after,
.proof-litter-grid article::after,
.proof-process article::after {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(200, 155, 85, 0.13);
  pointer-events: none;
}

.proof-card span {
  color: #a41627;
  font-size: 1.02rem;
}

.proof-litter-grid article {
  padding-top: 32px;
}

.proof-footer .footer-logo {
  filter: sepia(0.45) saturate(0.75) brightness(0.82);
}

@media (max-width: 1180px) {
  .proof-nav {
    grid-template-columns: minmax(220px, 0.3fr) 1fr auto;
    width: min(100% - 36px, 1390px);
  }

  .proof-brand-lockup {
    grid-template-columns: 62px auto;
  }

  .proof-brand-mark {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .proof-brand-name strong {
    font-size: 1.55rem;
  }

  .proof-brand-name span {
    font-size: 0.72rem;
  }
}

@media (max-width: 1040px) {
  .proof-nav {
    grid-template-columns: 1fr auto auto;
  }

  .proof-split {
    grid-template-columns: 1fr;
  }

  .proof-story-seal {
    border: 1px solid rgba(200, 155, 85, 0.28);
  }
}

@media (max-width: 760px) {
  .proof-nav {
    min-height: 96px;
    width: min(100% - 28px, 1390px);
  }

  .proof-brand-lockup {
    grid-template-columns: 44px auto;
    gap: 8px;
  }

  .proof-brand-mark {
    width: 44px;
    height: 44px;
    font-size: 1.45rem;
  }

  .proof-brand-mark::after,
  .proof-brand-mark::before {
    display: none;
  }

  .proof-brand-name strong {
    font-size: clamp(1rem, 5vw, 1.26rem);
    letter-spacing: 0.1em;
  }

  .proof-brand-name span {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .proof-page .button--nav {
    min-width: 88px;
    padding-inline: 10px;
  }

  .proof-hero-inner {
    width: min(100% - 28px, 1390px);
  }

  .proof-feature-row {
    width: 100%;
    transform: none;
  }

  .proof-story .proof-section-inner {
    width: min(100% - 28px, 1360px);
  }
}

@media (max-width: 430px) {
  .proof-brand-name strong {
    max-width: 116px;
  }

  .proof-brand-name span {
    max-width: 120px;
  }
}

/* Close-fidelity header and hero corrections */
.proof-nav {
  grid-template-columns: minmax(320px, 0.32fr) minmax(0, 1fr) auto;
}

.proof-nav-links {
  gap: clamp(14px, 1.85vw, 30px);
}

.proof-brand-lockup {
  grid-template-columns: 76px auto;
}

.proof-brand-mark {
  width: 70px;
  height: 70px;
  font-size: 2.3rem;
}

.proof-brand-name strong {
  font-size: clamp(1.48rem, 1.92vw, 2.28rem);
}

.proof-brand-name span {
  font-size: clamp(0.74rem, 0.95vw, 1rem);
}

.proof-hero h1 {
  max-width: 940px;
  font-size: clamp(2.1rem, 3.25vw, 3.9rem);
}

.proof-hero h1 span:not(.proof-script) {
  display: block;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .proof-nav {
    grid-template-columns: minmax(250px, 0.28fr) minmax(0, 1fr) auto;
  }
}

@media (max-width: 760px) {
  .proof-nav {
    grid-template-columns: minmax(0, 1fr) 38px minmax(82px, max-content);
    gap: 6px;
  }

  .proof-brand {
    grid-column: 1;
  }

  .proof-page .nav-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 38px;
    height: 38px;
  }

  .proof-apply {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .proof-hero h1 span:not(.proof-script) {
    white-space: normal;
  }

  .proof-hero-copy {
    margin-left: 0;
  }
}

/* Literal rendered-reference pass */
@media (min-width: 761px) {
  .proof-page .proof-header {
    position: absolute;
    inset: 0 0 auto;
    background: linear-gradient(180deg, rgba(4, 3, 2, 0.98), rgba(4, 3, 2, 0.78) 70%, rgba(4, 3, 2, 0));
    border-bottom: 0;
    box-shadow: none;
  }

  .proof-nav {
    width: min(1436px, calc(100% - 96px));
    min-height: 186px;
    grid-template-columns: 300px minmax(0, 1fr) 200px;
    align-items: start;
    gap: 34px;
    padding-top: 24px;
  }

  .proof-brand {
    min-height: 160px;
    justify-content: center;
    padding: 0;
  }

  .proof-brand::after {
    right: 16%;
    bottom: 4px;
    left: 16%;
  }

  .proof-brand-lockup {
    width: 270px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    text-align: center;
  }

  .proof-brand-mark {
    width: 88px;
    height: 88px;
    font-size: 3rem;
  }

  .proof-brand-mark::after {
    inset: 20px -62px;
  }

  .proof-brand-name strong {
    font-size: clamp(2.1rem, 2.55vw, 3rem);
    letter-spacing: 0.19em;
  }

  .proof-brand-name span {
    font-size: clamp(0.95rem, 1.1vw, 1.25rem);
    letter-spacing: 0.16em;
  }

  .proof-nav-links {
    justify-self: center;
    margin-top: 30px;
    gap: clamp(26px, 3vw, 50px);
  }

  .proof-nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
  }

  .proof-page .button--nav {
    min-width: 192px;
    margin-top: 11px;
  }

  .proof-hero {
    min-height: clamp(610px, 61vh, 660px);
    border-bottom-color: rgba(200, 155, 85, 0.54);
  }

  .proof-hero > img {
    inset: 0 0 0 auto;
    width: min(62vw, 950px);
    height: 100%;
    object-position: center 43%;
    opacity: 0.9;
    filter: sepia(0.18) saturate(0.86) contrast(1.12) brightness(0.82);
    transform: none;
  }

  .proof-hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 3, 2, 1) 0%, rgba(4, 3, 2, 0.98) 34%, rgba(4, 3, 2, 0.64) 59%, rgba(4, 3, 2, 0.14) 100%),
      linear-gradient(180deg, rgba(4, 3, 2, 0.74) 0%, rgba(4, 3, 2, 0.08) 45%, rgba(4, 3, 2, 0.82) 100%),
      radial-gradient(circle at 84% 43%, rgba(200, 155, 85, 0.22), rgba(200, 155, 85, 0) 35%);
  }

  .proof-hero-inner {
    width: min(1436px, calc(100% - 96px));
    padding: 208px 0 60px;
  }

  .proof-hero-copy {
    max-width: 760px;
    margin-left: clamp(54px, 7.5vw, 130px);
  }

  .proof-brandline {
    display: none;
  }

  .proof-hero-inner::before {
    width: 176px;
    margin: 0 0 22px 74px;
  }

  .proof-hero h1 {
    max-width: 940px;
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 3.25vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.075em;
  }

  .proof-hero h1 .proof-script {
    margin-bottom: 8px;
    font-size: clamp(4.55rem, 5.85vw, 6.95rem);
    white-space: nowrap;
  }

  .proof-hero h1::after {
    width: 390px;
    margin: 24px auto 0;
  }

  .proof-hero-copy > p:not(.proof-brandline) {
    max-width: 650px;
    margin-left: 62px;
    font-size: clamp(1.15rem, 1.45vw, 1.42rem);
  }

  .proof-hero .hero-actions {
    justify-content: center;
    max-width: 650px;
    margin-left: 62px;
  }

  .proof-hero .button--primary {
    min-width: 232px;
    padding-inline: 38px;
  }

  .proof-hero .button--primary svg {
    display: none;
  }

  .proof-feature-row {
    display: none;
  }

  .proof-story {
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .proof-story .proof-section-inner {
    grid-template-columns: minmax(360px, 0.86fr) minmax(420px, 0.98fr) minmax(250px, 0.54fr);
    align-items: center;
    gap: clamp(42px, 5.4vw, 86px);
  }

  .proof-story .proof-kicker {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .proof-story .proof-copy h2 {
    max-width: 470px;
    font-size: clamp(2.05rem, 2.8vw, 3.2rem);
    line-height: 1.12;
  }

  .proof-story .proof-copy p {
    max-width: 500px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .proof-story .proof-text-button {
    min-width: 164px;
    justify-content: center;
    margin-left: 130px;
  }

  .proof-story-seal em {
    font-size: clamp(2.1rem, 2.6vw, 3rem);
  }
}

.proof-pricing {
  border-top: 1px solid rgba(200, 155, 85, 0.34);
  border-bottom: 1px solid rgba(200, 155, 85, 0.34);
  background:
    linear-gradient(90deg, rgba(128, 16, 29, 0.16), transparent 38%),
    #0b0806;
}

.proof-pricing .proof-section-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
}

.proof-pricing-heading h2 {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--proof-cream, #f7ead6);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.2vw, 4.9rem);
  font-weight: 500;
  line-height: 0.98;
}

.proof-pricing-copy {
  display: grid;
  gap: 22px;
  max-width: 760px;
  padding-left: clamp(26px, 4vw, 54px);
  border-left: 1px solid rgba(200, 155, 85, 0.5);
}

.proof-pricing-copy p {
  margin: 0;
  color: rgba(245, 234, 215, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.75;
}

.proof-pricing-copy strong {
  color: #f0d49c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16em;
}

@media (max-width: 760px) {
  .proof-pricing .proof-section-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .proof-pricing-heading h2 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
  }

  .proof-pricing-copy {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(200, 155, 85, 0.5);
    border-left: 0;
  }
}

.proof-cta.proof-cta--photo {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.proof-cta-content {
  display: grid;
  flex: 1 1 560px;
  align-content: center;
  justify-items: start;
  padding: clamp(36px, 5vw, 68px);
}

.proof-cta-content .button {
  min-width: 156px;
  margin-top: 30px;
}

.proof-cta-photo {
  flex: 1 1 380px;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid rgba(200, 155, 85, 0.42);
  background: #090705;
}

.proof-cta-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.9) contrast(1.04) brightness(0.88);
  transition: transform 520ms var(--ease), filter 320ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .proof-cta--photo:hover .proof-cta-photo img {
    filter: saturate(0.98) contrast(1.04) brightness(0.94);
    transform: scale(1.025);
  }
}

@media (max-width: 760px) {
  .proof-cta-content {
    padding: 32px 24px 36px;
  }

  .proof-cta-content .button {
    width: 100%;
  }

  .proof-cta-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-top: 1px solid rgba(200, 155, 85, 0.42);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .proof-hero > img {
    object-position: 56% 45%;
    opacity: 0.76;
    filter: sepia(0.18) saturate(0.76) contrast(1.12) brightness(0.68);
  }

  .proof-hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 3, 2, 0.94) 0%, rgba(4, 3, 2, 0.78) 58%, rgba(4, 3, 2, 0.48) 100%),
      linear-gradient(180deg, rgba(4, 3, 2, 0.62) 0%, rgba(4, 3, 2, 0.08) 38%, rgba(4, 3, 2, 0.8) 100%);
  }

  .proof-hero .button--primary svg {
    display: none;
  }
}

.proof-page .proof-brandline,
.proof-page .proof-feature-row {
  display: none;
}

/* Restore the real local logo in the proof header */
.proof-page .proof-brand-lockup {
  display: none;
}

.proof-page .proof-brand img {
  display: block;
  width: clamp(290px, 30vw, 450px);
  max-height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.62));
}

@media (min-width: 761px) {
  .proof-page .proof-nav {
    grid-template-columns: minmax(430px, 0.4fr) minmax(0, 1fr) 190px;
    align-items: center;
    min-height: 156px;
    padding-top: 18px;
  }

  .proof-page .proof-brand {
    min-height: 112px;
    justify-content: flex-start;
  }

  .proof-page .proof-brand::after {
    display: none;
  }

  .proof-page .proof-nav-links {
    margin-top: 0;
  }

  .proof-page .button--nav {
    margin-top: 0;
  }
}

.proof-page .proof-nav-links a[aria-current="page"] {
  color: var(--proof-gold-soft);
  background: transparent;
}

.proof-page .proof-nav-links a[aria-current="page"]::after {
  opacity: 0.9;
  transform: scaleX(1);
}

@media (max-width: 760px) {
  .proof-page .proof-brand img {
    width: clamp(176px, 48vw, 220px);
    max-height: 52px;
  }
}

@media (max-width: 430px) {
  .proof-page .proof-brand img {
    width: clamp(160px, 48vw, 204px);
    max-height: 48px;
  }
}

/* Dark homepage map section */
.proof-page .section--map {
  border-top: 1px solid rgba(200, 155, 85, 0.24);
  border-bottom: 1px solid rgba(200, 155, 85, 0.24);
  background:
    radial-gradient(circle at 12% 18%, rgba(128, 16, 29, 0.18), transparent 30%),
    linear-gradient(180deg, #080604, #120e0b);
  scroll-margin-top: 110px;
}

.proof-page .section--map .section-inner {
  width: min(1180px, calc(100% - 32px));
}

.proof-page .section--map h2 {
  color: var(--proof-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.proof-page .section--map .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--proof-gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
}

.proof-page .section--map .eyebrow::before,
.proof-page .section--map .eyebrow::after {
  display: inline-block;
  width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 155, 85, 0.74));
}

.proof-page .section--map .eyebrow::after {
  background: linear-gradient(90deg, rgba(200, 155, 85, 0.74), transparent);
}

.proof-page .section--map p {
  color: rgba(245, 234, 215, 0.74);
  font-family: Georgia, "Times New Roman", serif;
}

.proof-page .section--map .map-details span {
  border-color: rgba(200, 155, 85, 0.34);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    var(--proof-panel);
  color: rgba(245, 234, 215, 0.86);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.proof-page .section--map .map-details svg {
  color: var(--proof-gold-soft);
}

.proof-page .section--map .map-card {
  border-color: rgba(200, 155, 85, 0.42);
  border-radius: 0;
  background: #050403;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.proof-page .section--map .map-card iframe {
  filter: sepia(0.16) saturate(0.82) contrast(1.04);
}

.proof-page .section--map .text-link {
  width: fit-content;
  padding: 11px 14px;
  border: 1px solid rgba(200, 155, 85, 0.58);
  color: var(--proof-gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .proof-page .section--map .map-details span:hover,
  .proof-page .section--map .map-card:hover {
    border-color: rgba(223, 192, 139, 0.74);
    background:
      linear-gradient(180deg, rgba(128, 16, 29, 0.18), rgba(255, 255, 255, 0.025)),
      var(--proof-panel-soft);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4);
  }

  .proof-page .section--map .text-link:hover {
    background: rgba(128, 16, 29, 0.6);
    color: #fff;
  }
}

@media (max-width: 760px) {
  .proof-page .section--map .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .proof-page .section--map .eyebrow::before,
  .proof-page .section--map .eyebrow::after {
    width: 32px;
  }
}

/* Michelle homepage direction: black editorial layout */
.proof-page .proof-brand {
  display: grid;
  justify-items: start;
  gap: 4px;
  text-decoration: none;
}

.proof-page .proof-hero {
  min-height: clamp(500px, 66vh, 680px);
}

.proof-page .proof-hero-inner {
  padding: clamp(58px, 7vw, 86px) 0 clamp(68px, 8vw, 98px);
}

.proof-page .brand-tagline {
  display: block;
  margin-left: clamp(54px, 5vw, 84px);
  color: var(--proof-gold-soft, #d7b38b);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.58rem, 0.72vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.proof-page .proof-subheading {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--proof-gold-soft, #d7b38b);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-page .proof-hero h1 {
  max-width: 790px;
  color: #f7ead6;
  font-size: clamp(3.2rem, 6.2vw, 7.4rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: none;
}

.proof-page .proof-hero h1 span {
  display: block;
  white-space: normal;
}

.proof-page .proof-hero-copy > p:not(.proof-brandline):not(.proof-subheading) {
  max-width: 700px;
  color: rgba(245, 234, 215, 0.86);
  font-family: Georgia, "Times New Roman", serif;
}

.proof-page .proof-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1240px, calc(100% - 92px));
  margin: 0 auto;
  border: 1px solid rgba(200, 155, 85, 0.28);
  border-top: 0;
  border-radius: 0;
  background: #080604;
  box-shadow: none;
  transform: none;
}

.proof-page .proof-feature-row a {
  min-height: 142px;
  padding: clamp(24px, 2.8vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--proof-panel, #1d2020);
  border-right: 1px solid rgba(200, 155, 85, 0.22);
  color: rgba(245, 234, 215, 0.76);
}

.proof-page .proof-feature-row a:last-child {
  border-right: 0;
}

.proof-page .proof-feature-row strong {
  color: var(--proof-gold-soft, #d7b38b);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-page .proof-feature-row span {
  color: rgba(245, 234, 215, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  line-height: 1.48;
}

.proof-page .proof-story .proof-section-inner,
.proof-page .proof-connections .proof-section-inner {
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 0.94fr) minmax(220px, 0.44fr);
}

.proof-page .proof-story-panel,
.proof-page .proof-connections-panel {
  display: grid;
  min-height: clamp(300px, 32vw, 430px);
  align-content: center;
  gap: 12px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(200, 155, 85, 0.44);
  background:
    linear-gradient(145deg, rgba(128, 16, 29, 0.18), rgba(255, 255, 255, 0.025)),
    #080604;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
}

.proof-page .proof-story-panel span,
.proof-page .proof-connections-panel span {
  color: var(--proof-gold-soft, #d7b38b);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-page .proof-story-panel strong,
.proof-page .proof-story-panel em,
.proof-page .proof-story-panel b,
.proof-page .proof-connections-panel strong,
.proof-page .proof-connections-panel em,
.proof-page .proof-connections-panel b {
  color: #f7ead6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-style: normal;
  font-weight: 500;
  line-height: 0.98;
}

.proof-page .proof-story-panel em,
.proof-page .proof-connections-panel em {
  color: var(--proof-gold-soft, #d7b38b);
  font-family: "Snell Roundhand", "Bickham Script Pro 3", "Zapfino", cursive;
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  line-height: 0.82;
}

.proof-page #our-dogs .proof-section-heading h2 {
  color: var(--proof-cream, #f7ead6);
}

.proof-page .proof-dog:hover {
  border-color: rgba(128, 16, 29, 0.4);
}

@media (hover: hover) and (pointer: fine) {
  .proof-page .proof-feature-row a:hover {
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(128, 16, 29, 0.26), rgba(255, 255, 255, 0.03)),
      var(--proof-panel-soft, #29201c);
    box-shadow: 0 26px 66px rgba(0, 0, 0, 0.34);
    color: #fff;
    transform: translateY(-4px);
  }

  .proof-page .proof-story-panel:hover,
  .proof-page .proof-connections-panel:hover {
    border-color: rgba(223, 192, 139, 0.7);
    transform: translateY(-4px);
  }
}

@media (max-width: 1040px) {
  .proof-page .proof-story .proof-section-inner,
  .proof-page .proof-connections .proof-section-inner {
    grid-template-columns: 1fr;
  }

  .proof-page .proof-story-seal {
    max-width: 360px;
  }
}

@media (min-width: 761px) {
  .proof-page .proof-nav {
    grid-template-columns: minmax(360px, 0.34fr) minmax(0, 1fr) 170px;
    min-height: 118px;
    padding-top: 10px;
  }

  .proof-page .proof-brand {
    min-height: 88px;
  }

  .proof-page .proof-brand img {
    width: clamp(260px, 25vw, 365px);
    max-height: 76px;
  }
}

@media (max-width: 760px) {
  .proof-page .proof-brand {
    gap: 2px;
  }

  .proof-page .brand-tagline {
    margin-left: 0;
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }

  .proof-page .proof-subheading {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .proof-page .proof-hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.6rem);
  }

  .proof-page .proof-hero {
    min-height: clamp(520px, 72vh, 620px);
  }

  .proof-page .proof-hero-inner {
    padding: 54px 0 70px;
  }

  .proof-page .proof-feature-row {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1180px);
  }

  .proof-page .proof-feature-row a {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 155, 85, 0.22);
  }

  .proof-page .proof-feature-row a:last-child {
    border-bottom: 0;
  }

  .proof-page .proof-story-panel,
  .proof-page .proof-connections-panel {
    min-height: 260px;
  }
}

/* Editable header logo lockup with Michelle's updated wording */
.proof-page .proof-brand-lockup {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 12px;
  align-items: center;
}

.proof-page .proof-brand .proof-brand-lockup img {
  display: block;
  width: clamp(60px, 6vw, 78px);
  max-height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.5));
}

.proof-page .proof-brand-name {
  display: grid;
  gap: 2px;
  color: #f4dfbd;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.95;
}

.proof-page .proof-brand-name strong {
  color: #9b213a;
  font-size: clamp(1.55rem, 2.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-page .proof-brand-name span {
  color: #f0d49c;
  font-size: clamp(0.94rem, 1.28vw, 1.34rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-page .brand-tagline {
  margin-left: clamp(78px, 7.2vw, 96px);
}

.proof-page .proof-hero-inner {
  padding-top: clamp(86px, 9vw, 112px);
}

@media (min-width: 761px) {
  .proof-page .proof-brand {
    min-height: 92px;
  }

  .proof-page .proof-brand .proof-brand-lockup img {
    width: clamp(64px, 6.5vw, 82px);
    max-height: 82px;
  }
}

@media (max-width: 760px) {
  .proof-page {
    overflow-x: hidden;
  }

  .proof-page .proof-nav {
    width: min(100% - 18px, 1120px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
    min-height: 86px;
  }

  .proof-page .proof-brand-lockup {
    gap: 6px;
    min-width: 0;
  }

  .proof-page .proof-brand .proof-brand-lockup img {
    width: clamp(34px, 10vw, 44px);
    max-height: 44px;
  }

  .proof-page .proof-brand-name strong {
    font-size: clamp(0.96rem, 4.7vw, 1.2rem);
    white-space: nowrap;
  }

  .proof-page .proof-brand-name span {
    font-size: clamp(0.58rem, 2.9vw, 0.72rem);
    white-space: nowrap;
  }

  .proof-page .brand-tagline {
    margin-left: 0;
    max-width: 174px;
    font-size: 0.5rem;
  }

  .proof-page .proof-apply {
    display: none;
  }

  .proof-page .nav-toggle {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }

  .proof-page .proof-hero-copy {
    max-width: 100%;
    margin-left: 0;
  }

  .proof-page .proof-hero-inner,
  .proof-page .proof-section-inner,
  .proof-page .proof-feature-row,
  .proof-page .proof-cta {
    width: min(calc(100vw - 28px), 1180px);
  }

  .proof-page .proof-hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 8.9vw, 2.85rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .proof-page .proof-hero-copy > p:not(.proof-brandline):not(.proof-subheading) {
    max-width: 100%;
    font-size: 1rem;
  }
}

/* Final content-page polish for the Michelle mockup direction */
.proof-page .page-hero {
  min-height: clamp(520px, 62vh, 720px);
  align-items: end;
  border-top: 1px solid rgba(200, 155, 85, 0.18);
  border-bottom: 1px solid rgba(200, 155, 85, 0.28);
  background: #050403;
}

.proof-page .page-hero > img {
  opacity: 0.9;
  object-position: 70% center;
  filter: sepia(0.1) saturate(0.98) contrast(1.06) brightness(1.02);
}

.proof-page .page-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.78) 42%, rgba(5, 4, 3, 0.24) 72%, rgba(5, 4, 3, 0.04)),
    linear-gradient(0deg, rgba(5, 4, 3, 0.36), rgba(5, 4, 3, 0.02));
}

.proof-page .page-hero .hero-content {
  width: min(1240px, calc(100% - 72px));
  padding: clamp(120px, 13vw, 168px) 0 clamp(72px, 8vw, 104px);
}

.proof-page .page-hero .hero-content h1 {
  color: var(--proof-cream, #f7ead6);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.4vw, 6.1rem);
  font-weight: 500;
  line-height: 0.96;
}

.proof-page .copy-stack--long {
  max-width: 980px;
}

.proof-page .copy-stack--long p {
  max-width: 900px;
}

.proof-page .section:not(.section--map) {
  background:
    radial-gradient(circle at 84% 8%, rgba(200, 155, 85, 0.06), transparent 34%),
    linear-gradient(180deg, #100d0b, #080604);
}

.proof-page .section--tint,
.proof-page .section--warm {
  background:
    radial-gradient(circle at 10% 14%, rgba(128, 16, 29, 0.18), transparent 32%),
    linear-gradient(135deg, #050403, #15100d 58%, #080604);
}

.proof-page .section-heading h2,
.proof-page .copy-stack h2 {
  color: var(--proof-cream, #f7ead6);
}

.proof-page .section-heading p:not(.eyebrow),
.proof-page .copy-stack p,
.proof-page .split p {
  color: rgba(245, 234, 215, 0.74);
}

.proof-page .section--map {
  background: linear-gradient(180deg, #f8f1ea, #fffaf4);
}

.proof-page .section--map .copy-stack h2 {
  color: var(--ink);
}

.proof-page .section--map .copy-stack p {
  color: var(--muted);
}

.proof-page .dog-card,
.proof-page .info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--proof-line, rgba(200, 155, 85, 0.28));
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    var(--proof-panel, #17100c);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.26);
}

.proof-page .dog-card::after,
.proof-page .info-card::after {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(200, 155, 85, 0.13);
  pointer-events: none;
}

.proof-page .dog-card h3,
.proof-page .info-card h3 {
  color: var(--proof-gold-soft, #d7b38b);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.proof-page .dog-card p {
  color: var(--proof-burgundy-bright, #a41627);
}

.proof-page .dog-card span,
.proof-page .info-card p {
  color: rgba(245, 234, 215, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.52;
}

.proof-page .dog-card img,
.proof-page .dog-card-placeholder {
  border-bottom: 1px solid rgba(200, 155, 85, 0.28);
}

.proof-page .dog-card-placeholder {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  color: var(--proof-gold-soft, #d7b38b);
  background:
    radial-gradient(circle at 50% 42%, rgba(128, 16, 29, 0.36), transparent 42%),
    linear-gradient(135deg, #080604, #201611);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 1;
}

.proof-page .dog-card--text {
  display: grid;
}

.proof-page .dog-stats,
.proof-detail-list,
.proof-future-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.proof-page .dog-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-page .dog-stats li,
.proof-detail-list li,
.proof-future-list li {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(200, 155, 85, 0.2);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 234, 215, 0.82);
  font-size: 0.9rem;
}

.proof-page .dog-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--proof-gold, #c89b55);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-future-list {
  align-self: stretch;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--proof-line, rgba(200, 155, 85, 0.28));
  background:
    radial-gradient(circle at 12% 14%, rgba(128, 16, 29, 0.24), transparent 34%),
    linear-gradient(135deg, #080604, #17100c);
}

.proof-page .proof-litter-grid .proof-card-number {
  display: inline-flex;
  margin: 0 0 26px;
  color: var(--proof-gold, #c89b55);
  font-weight: 950;
}

.proof-page .proof-detail-list {
  margin-bottom: 12px;
}

.proof-page .application-form {
  max-width: 1120px;
  border: 1px solid var(--proof-line, rgba(200, 155, 85, 0.28));
  border-radius: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(128, 16, 29, 0.2), transparent 32%),
    linear-gradient(135deg, #080604, #17100c);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.proof-page .application-form .form-heading h2 {
  color: var(--proof-cream, #f7ead6);
  font-family: Georgia, "Times New Roman", serif;
}

.proof-page .application-form label,
.proof-page .application-form fieldset {
  color: var(--proof-gold-soft, #d7b38b);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
}

.proof-page .application-form input,
.proof-page .application-form select,
.proof-page .application-form textarea {
  border-color: rgba(200, 155, 85, 0.24);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
  color: #fffaf4;
  font-size: 1rem;
}

.proof-page .application-form input::placeholder,
.proof-page .application-form textarea::placeholder {
  color: rgba(245, 234, 215, 0.5);
}

.proof-page .application-form select option {
  color: #15100d;
}

.proof-page .choice-grid label {
  border-color: rgba(200, 155, 85, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 234, 215, 0.88);
}

.proof-page .application-form input:focus,
.proof-page .application-form select:focus,
.proof-page .application-form textarea:focus {
  border-color: rgba(223, 192, 139, 0.82);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(200, 155, 85, 0.16);
  outline: none;
}

@media (hover: hover) and (pointer: fine) {
  .proof-page .dog-card:hover,
  .proof-page .info-card:hover {
    border-color: rgba(223, 192, 139, 0.74);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
  }

  .proof-page .dog-card:hover img {
    filter: sepia(0.12) saturate(0.9) contrast(1.1) brightness(0.9);
    transform: scale(1.045);
  }
}

@media (max-width: 760px) {
  .proof-page .page-hero {
    min-height: clamp(500px, 62vh, 620px);
  }

  .proof-page .page-hero > img {
    opacity: 0.76;
    object-position: 62% center;
  }

  .proof-page .page-hero .hero-content {
    width: min(calc(100vw - 28px), 1240px);
    padding: 112px 0 62px;
  }

  .proof-page .page-hero .hero-content h1 {
    font-size: clamp(2rem, 9vw, 3.05rem);
  }

  .proof-page .dog-stats {
    grid-template-columns: 1fr;
  }

  .proof-page .application-form {
    padding: 22px;
  }

  .proof-page .application-form label,
  .proof-page .application-form fieldset,
  .proof-page .application-form input,
  .proof-page .application-form select,
  .proof-page .application-form textarea {
    font-size: 0.98rem;
  }
}

@media (min-width: 761px) {
  .proof-page .proof-hero > img {
    opacity: 1;
    filter: sepia(0.12) saturate(0.92) contrast(1.08) brightness(1.04);
  }

  .proof-page .proof-hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 3, 2, 1) 0%, rgba(4, 3, 2, 0.98) 32%, rgba(4, 3, 2, 0.54) 58%, rgba(4, 3, 2, 0.04) 100%),
      linear-gradient(180deg, rgba(4, 3, 2, 0.56) 0%, rgba(4, 3, 2, 0.02) 45%, rgba(4, 3, 2, 0.68) 100%),
      radial-gradient(circle at 84% 43%, rgba(200, 155, 85, 0.2), rgba(200, 155, 85, 0) 35%);
  }
}

/* July 2026 client content and puppy-process update */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.proof-story-secondary {
  align-self: center;
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.proof-story-secondary img {
  object-position: center;
}

.proof-path-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.proof-path-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 520ms var(--ease), filter 260ms var(--ease);
}

.proof-path-card > div {
  padding: 22px 20px 26px;
}

.proof-path-card span {
  margin-bottom: 18px;
}

.proof-path-card h3 {
  min-height: 2.1em;
}

.process-intro {
  max-width: 900px;
}

.process-intro p:not(.eyebrow) {
  max-width: 820px;
}

.process-carousel {
  width: min(1120px, 100%);
  margin: clamp(36px, 6vw, 70px) auto 0;
}

.process-carousel-viewport {
  overflow: hidden;
  border: 1px solid rgba(200, 155, 85, 0.46);
  background: #050403;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  touch-action: pan-y;
}

.process-carousel-track {
  display: flex;
  gap: 18px;
  padding: 18px;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.process-slide {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  overflow: hidden;
  background: #0a0705;
}

.process-slide.is-active {
  box-shadow: inset 0 0 0 1px rgba(222, 184, 117, 0.72);
}

.process-slide > img {
  width: 100%;
  height: clamp(390px, 35vw, 470px);
  object-fit: cover;
  object-position: center 34%;
  filter: sepia(0.08) saturate(0.9) contrast(1.04) brightness(0.84);
}

.process-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(5, 4, 3, 0.9) 100%);
}

.process-slide-caption {
  position: absolute;
  right: clamp(18px, 2.4vw, 30px);
  bottom: clamp(20px, 3vw, 34px);
  left: clamp(18px, 2.4vw, 30px);
  z-index: 2;
}

.process-slide-caption span {
  color: #d7b38b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-slide-caption h2 {
  margin: 8px 0 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.05;
}

@media (max-width: 1040px) {
  .process-slide {
    flex-basis: calc((100% - 18px) / 2);
  }
}

.process-carousel-controls {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}

.process-arrow,
.process-dot {
  border: 1px solid rgba(200, 155, 85, 0.56);
  background: transparent;
  color: #f7ead6;
  cursor: pointer;
}

.process-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
}

.process-arrow svg {
  width: 20px;
  height: 20px;
}

.process-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.process-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
}

.process-dot.is-active {
  border-color: #d7b38b;
  background: #d7b38b;
  transform: scale(1.28);
}

.process-detail-list {
  border-top: 1px solid rgba(200, 155, 85, 0.38);
}

.process-detail {
  display: grid;
  grid-template-columns: minmax(110px, 0.22fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(40px, 6vw, 74px) 0;
  border-bottom: 1px solid rgba(200, 155, 85, 0.25);
}

.process-detail-number {
  display: grid;
  align-content: start;
  color: #d7b38b;
  text-transform: uppercase;
}

.process-detail-number span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-detail-number strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 400;
  line-height: 0.92;
}

.process-detail-copy {
  max-width: 820px;
}

.process-detail-copy h2 {
  margin: 0 0 24px;
  color: #f7ead6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.06;
}

.process-detail-copy p {
  margin: 0 0 16px;
  color: rgba(245, 234, 215, 0.76);
  font-size: 1.04rem;
  line-height: 1.72;
}

.process-detail-copy strong {
  color: #f0d49c;
}

@media (hover: hover) and (pointer: fine) {
  .proof-path-card:hover > img {
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.045);
  }

  .process-arrow:hover,
  .process-arrow:focus-visible {
    border-color: #dfc08b;
    background: #80101d;
    color: #fff;
  }
}

@media (min-width: 761px) {
  .proof-page .proof-hero--story-driven > img {
    top: 0;
    width: min(68vw, 1080px);
    height: 100%;
    object-position: 64% 45%;
  }

  .proof-hero--story-driven .proof-hero-copy {
    max-width: 690px;
  }

  .proof-hero--story-driven .proof-hero-copy > p:not(.proof-brandline):not(.proof-subheading) {
    max-width: 610px;
  }
}

@media (max-width: 1040px) {
  .proof-story-secondary {
    width: min(480px, 100%);
    aspect-ratio: 3 / 2;
  }

  .proof-path-card h3 {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .proof-page .proof-hero--story-driven > img {
    height: 100%;
    object-position: 68% center;
  }

  .proof-path-card > img {
    aspect-ratio: 16 / 10;
  }

  .process-carousel-track {
    gap: 12px;
    padding: 12px;
  }

  .process-slide {
    flex-basis: 100%;
  }

  .process-slide > img {
    height: 440px;
  }

  .process-carousel-controls {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 10px;
  }

  .process-arrow {
    width: 40px;
    height: 40px;
  }

  .process-dots {
    gap: 8px;
  }

  .process-detail {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
  }

  .process-detail-number strong {
    font-size: 3rem;
  }

  .process-detail-copy h2 {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 460px) {
  .process-detail {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-detail-number {
    display: flex;
    gap: 10px;
    align-items: baseline;
  }

  .process-detail-number strong {
    font-size: 2.2rem;
  }
}

/* Final homepage headline proportions */
@media (min-width: 1100px) {
  .proof-page .proof-hero-copy {
    width: min(100%, 1000px);
    max-width: 1000px;
  }

  .proof-page .proof-hero h1 {
    max-width: 1000px;
    font-size: clamp(3.9rem, 4.6vw, 5.75rem);
    line-height: 0.96;
  }

  .proof-page .proof-hero h1 span {
    white-space: nowrap;
  }
}

@media (min-width: 761px) and (max-width: 1099px) {
  .proof-page .proof-hero-copy,
  .proof-page .proof-hero h1 {
    max-width: 660px;
  }

  .proof-page .proof-hero h1 {
    font-size: clamp(3.35rem, 6vw, 4.1rem);
    line-height: 0.96;
  }
}

/* Consistent hero rhythm across every page */
.proof-page .proof-hero,
.proof-page .page-hero {
  height: 680px;
  min-height: 680px;
}

@media (max-width: 760px) {
  .proof-page .proof-hero,
  .proof-page .page-hero {
    height: clamp(560px, 72vh, 620px);
    min-height: clamp(560px, 72vh, 620px);
  }
}

/* Customer journey and application usability pass */
.proof-process--home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(30px, 4vw, 54px);
}

.proof-journey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: clamp(28px, 4vw, 46px);
}

.proof-journey-actions .proof-text-button {
  margin: 0 0 0 4px;
}

.application-form .form-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(245, 234, 215, 0.72);
  line-height: 1.65;
}

.application-form {
  scroll-margin-top: 118px;
}

.application-form .form-section {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(200, 155, 85, 0.26);
  background: rgba(255, 255, 255, 0.025);
}

.application-form .form-section > legend {
  padding: 0 12px 0 0;
  color: var(--proof-cream, #f7ead6);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
}

.application-form .form-section > legend span {
  margin-right: 9px;
  color: var(--proof-gold, #c89b55);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72em;
  letter-spacing: 0.08em;
}

.application-form .form-section-intro {
  max-width: 760px;
  margin: 0;
  color: rgba(245, 234, 215, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}

.application-form .required-note {
  margin-left: 7px;
  color: rgba(245, 234, 215, 0.56);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.application-form .form-privacy {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin: 0;
  color: rgba(245, 234, 215, 0.64);
  font-size: 0.86rem;
}

.application-form .form-privacy svg {
  width: 16px;
  height: 16px;
  color: var(--proof-gold, #c89b55);
}

.proof-page .dog-card-placeholder {
  align-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}

.proof-page .dog-card-placeholder strong {
  color: var(--proof-gold-soft, #d7b38b);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
}

.proof-page .dog-card-placeholder span {
  color: rgba(245, 234, 215, 0.58);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .proof-page .proof-nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .proof-page .proof-apply {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    min-width: 72px;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .proof-page .proof-apply svg {
    display: none;
  }

  .proof-page .nav-toggle {
    grid-column: 3;
  }

  .proof-page .proof-nav-links {
    grid-column: 1 / -1;
  }

  .proof-process--home {
    grid-template-columns: 1fr;
  }

  .proof-journey-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-journey-actions .button,
  .proof-journey-actions .proof-text-button {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    text-align: center;
  }

  .application-form .form-section {
    padding: 18px 14px;
  }
}

@media (max-width: 360px) {
  .proof-page .proof-nav {
    width: min(100% - 12px, 1120px);
    gap: 4px;
  }

  .proof-page .proof-brand .proof-brand-lockup img {
    width: 32px;
    max-height: 38px;
  }

  .proof-page .proof-brand-name strong {
    font-size: 0.9rem;
  }

  .proof-page .proof-brand-name span {
    font-size: 0.54rem;
  }

  .proof-page .proof-apply {
    min-width: 60px;
    padding-inline: 8px;
    font-size: 0.72rem;
  }
}

/* Local doodle photography and organized FAQ layout */
.editorial-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(200, 155, 85, 0.42);
  background: #090705;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease), transform 240ms var(--ease);
}

.editorial-photo::after {
  position: absolute;
  inset: 10px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(245, 234, 215, 0.18);
  pointer-events: none;
}

.editorial-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.08) saturate(0.9) contrast(1.06) brightness(0.92);
  transition: filter 420ms var(--ease), transform 620ms var(--ease);
}

.editorial-photo--story {
  min-height: 430px;
  aspect-ratio: 4 / 5;
}

.editorial-photo--story img {
  object-position: 50% center;
}

.editorial-photo--wide {
  width: 100%;
  margin-bottom: clamp(38px, 5vw, 62px);
  aspect-ratio: 16 / 7;
}

.split--editorial {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
}

.split--editorial .editorial-photo {
  margin-top: 8px;
}

.proof-page .image-panel {
  border: 1px solid rgba(200, 155, 85, 0.42);
  border-radius: 0;
  background: #090705;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.proof-page .image-panel img {
  filter: sepia(0.08) saturate(0.9) contrast(1.06) brightness(0.92);
}

.section--faq {
  scroll-behavior: smooth;
}

.faq-overview {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  margin-bottom: clamp(68px, 9vw, 112px);
}

.faq-overview-photo {
  min-height: 440px;
  aspect-ratio: 4 / 5;
}

.faq-overview-photo img {
  object-position: 58% center;
}

.faq-overview-copy h2 {
  max-width: 700px;
  margin: 0;
  color: var(--proof-cream, #f7ead6);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 500;
  line-height: 1;
}

.faq-overview-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(245, 234, 215, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.65;
}

.faq-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.faq-directory a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid rgba(200, 155, 85, 0.3);
  color: rgba(245, 234, 215, 0.9);
  background: rgba(255, 255, 255, 0.025);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  text-decoration: none;
  transition: border-color 200ms var(--ease), color 200ms var(--ease), background 200ms var(--ease), transform 200ms var(--ease);
}

.faq-directory span {
  color: var(--proof-gold, #c89b55);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.faq-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(46px, 6vw, 78px) clamp(28px, 4vw, 52px);
  align-items: start;
}

.faq-group {
  min-width: 0;
  scroll-margin-top: 120px;
}

.faq-group-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 118px;
  margin-bottom: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(200, 155, 85, 0.42);
}

.faq-group-heading > span {
  color: var(--proof-burgundy-bright, #a41627);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.faq-group-heading h3 {
  margin: 0;
  color: var(--proof-gold-soft, #d7b38b);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
  font-weight: 500;
  line-height: 1.06;
}

.faq-group-heading p {
  margin: 10px 0 0;
  color: rgba(245, 234, 215, 0.62);
  font-size: 0.94rem;
  line-height: 1.5;
}

.faq-group .faq-list {
  gap: 8px;
  max-width: none;
  margin: 0;
}

.faq-group .faq-list details {
  overflow: hidden;
  border: 1px solid rgba(200, 155, 85, 0.24);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.faq-group .faq-list details[open] {
  border-color: rgba(200, 155, 85, 0.62);
  background: rgba(128, 16, 29, 0.08);
}

.faq-group .faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 16px;
  align-items: center;
  min-height: 68px;
  padding: 15px 16px 15px 18px;
  color: rgba(245, 234, 215, 0.94);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
}

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

.faq-group .faq-list summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  content: "+";
  place-items: center;
  border: 1px solid rgba(200, 155, 85, 0.54);
  border-radius: 50%;
  color: var(--proof-gold-soft, #d7b38b);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  transition: background 200ms var(--ease), color 200ms var(--ease), transform 220ms var(--ease);
}

.faq-group .faq-list details[open] summary::after {
  content: "-";
  background: var(--proof-burgundy, #80101d);
  color: #fff8ed;
  transform: rotate(180deg);
}

.faq-answer {
  border-top: 1px solid rgba(200, 155, 85, 0.18);
}

.faq-group .faq-list .faq-answer p {
  margin: 0;
  padding: 18px;
  color: rgba(245, 234, 215, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  line-height: 1.62;
}

@media (hover: hover) and (pointer: fine) {
  .editorial-photo:hover {
    border-color: rgba(223, 192, 139, 0.76);
    box-shadow: 0 38px 96px rgba(0, 0, 0, 0.42);
    transform: translateY(-4px);
  }

  .editorial-photo:hover img {
    filter: sepia(0.04) saturate(1) contrast(1.05) brightness(0.98);
    transform: scale(1.035);
  }

  .faq-directory a:hover {
    border-color: rgba(223, 192, 139, 0.74);
    color: #fff8ed;
    background: rgba(128, 16, 29, 0.18);
    transform: translateY(-2px);
  }

  .faq-group .faq-list details:hover {
    border-color: rgba(223, 192, 139, 0.58);
    transform: translateY(-1px);
  }
}

@media (max-width: 920px) {
  .split--editorial,
  .faq-overview {
    grid-template-columns: 1fr;
  }

  .faq-overview-photo {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .faq-groups {
    grid-template-columns: 1fr;
  }

  .faq-group-heading {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .editorial-photo--story,
  .faq-overview-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .editorial-photo--wide {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .faq-directory {
    grid-template-columns: 1fr;
  }

  .faq-group .faq-list summary {
    min-height: 64px;
    padding: 14px;
    font-size: 0.96rem;
  }
}

/* Site-wide landing-page palette */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(200, 155, 85, 0.48);
  background:
    radial-gradient(circle at 8% 12%, rgba(128, 16, 29, 0.42), transparent 36%),
    radial-gradient(circle at 94% 88%, rgba(200, 155, 85, 0.08), transparent 32%),
    linear-gradient(135deg, #070504, #17100c 66%, #080604);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.cta-band::before {
  position: absolute;
  inset: 10px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(200, 155, 85, 0.14);
  pointer-events: none;
}

.cta-band .eyebrow {
  color: #d7b38b;
}

.cta-band h2 {
  color: #f7ead6;
  font-family: Georgia, "Times New Roman", serif;
}

.cta-band p:not(.eyebrow) {
  color: rgba(245, 234, 215, 0.76);
}

.cta-band .button--primary,
.proof-page .cta-band .button--primary {
  border: 1px solid rgba(200, 155, 85, 0.78);
  border-radius: 0;
  background: rgba(128, 16, 29, 0.78);
  color: #fff8ed;
  box-shadow: none;
}

.cta-band .button--secondary,
.proof-page .cta-band .button--secondary {
  border: 1px solid rgba(200, 155, 85, 0.62);
  border-radius: 0;
  background: rgba(6, 5, 4, 0.46);
  color: #f0d49c;
  box-shadow: none;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.site-footer,
.proof-footer {
  border-top: 1px solid rgba(200, 155, 85, 0.3);
  background: #050403;
}

.footer-logo,
.proof-footer .footer-logo {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .cta-band:hover {
    border-color: rgba(223, 192, 139, 0.7);
    box-shadow: 0 38px 100px rgba(0, 0, 0, 0.44);
  }

  .cta-band .button--primary:hover,
  .cta-band .button--secondary:hover {
    border-color: #dfc08b;
    background: #80101d;
    color: #fff;
  }

  .footer-logo:hover,
  .proof-footer .footer-logo:hover {
    box-shadow: none;
    transform: translateY(-2px);
  }
}

/* Keep every doodle face clear of the navigation and mobile crop */
@media (min-width: 761px) {
  .proof-page .page-hero > img {
    top: 96px;
    bottom: auto;
    height: calc(100% - 96px);
    object-position: 70% top;
  }

  .proof-page .proof-hero > img {
    top: 96px;
    bottom: auto;
    height: calc(100% - 96px);
    object-position: 68% top;
  }
}

@media (max-width: 760px) {
  .proof-page .page-hero > img {
    object-position: 82% top;
    opacity: 0.86;
    filter: sepia(0.08) saturate(0.92) contrast(1.06) brightness(0.88);
  }

  .proof-page .proof-hero > img {
    top: 0;
    bottom: auto;
    height: 74%;
    object-position: 82% top;
    opacity: 0.94;
    filter: sepia(0.1) saturate(0.9) contrast(1.06) brightness(0.92);
  }

  .proof-page .proof-hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 3, 2, 0.88) 0%, rgba(4, 3, 2, 0.62) 58%, rgba(4, 3, 2, 0.24) 100%),
      linear-gradient(180deg, rgba(4, 3, 2, 0.3) 0%, rgba(4, 3, 2, 0.04) 40%, rgba(4, 3, 2, 0.72) 100%);
  }
}

@media (min-width: 1041px) {
  .proof-page .proof-story .proof-story-secondary {
    width: 100%;
    min-height: 360px;
    aspect-ratio: 4 / 5;
  }

  .proof-page .proof-story .proof-story-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* Homepage ten-step journey slider */
.home-journey-slider {
  margin-top: clamp(30px, 4vw, 54px);
}

.home-journey-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.proof-process--home.home-journey-track {
  display: flex;
  gap: 18px;
  margin-top: 0;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.proof-process--home.home-journey-track article {
  display: grid;
  flex: 0 0 calc((100% - 36px) / 3);
  grid-template-rows: auto minmax(2.4em, auto) 1fr;
  min-height: 270px;
}

.proof-process--home.home-journey-track h3 {
  margin: 0 0 14px;
  color: #f0d49c;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.14;
}

.proof-process--home.home-journey-track p {
  margin: 0;
  color: rgba(245, 234, 215, 0.76);
  line-height: 1.55;
}

.home-journey-controls {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.home-journey-controls p {
  margin: 0;
  color: rgba(245, 234, 215, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.home-journey-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(200, 155, 85, 0.62);
  border-radius: 0;
  background: rgba(5, 4, 3, 0.46);
  color: #f7ead6;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.home-journey-arrow svg {
  width: 20px;
  height: 20px;
}

@media (hover: hover) and (pointer: fine) {
  .home-journey-arrow:hover,
  .home-journey-arrow:focus-visible {
    border-color: #dfc08b;
    background: #80101d;
    color: #fff;
  }
}

@media (max-width: 1180px) {
  .proof-process--home.home-journey-track article {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 760px) {
  .proof-process--home.home-journey-track article {
    flex-basis: 100%;
    min-height: 250px;
  }

  .home-journey-controls {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 10px;
  }

  .home-journey-arrow {
    width: 40px;
    height: 40px;
  }
}

/* Keep the desktop navigation available while the page scrolls */
@media (min-width: 761px) {
  .proof-page .proof-header {
    position: sticky;
    inset: auto;
    top: 0;
    z-index: 500;
    border-bottom: 1px solid rgba(200, 155, 85, 0.34);
    background: rgba(5, 4, 3, 0.96);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(16px);
  }

  .proof-page .proof-nav {
    min-height: 98px;
    padding-top: 0;
  }

  .proof-page .proof-brand {
    min-height: 76px;
  }

  .proof-page .proof-brand img {
    max-height: 66px;
  }

  .proof-page .page-hero > img,
  .proof-page .proof-hero > img {
    top: 0;
    height: 100%;
  }
}
