:root {
  --ink: #25373a;
  --muted: #667271;
  --cream: #f7efe1;
  --paper: #fffaf0;
  --sand: #dfc8a6;
  --sage: #8ea58c;
  --sage-dark: #596f55;
  --rust: #c4663f;
  --clay: #9b5839;
  --gold: #e2b65c;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(37, 55, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background: var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 20px 20px, rgba(196, 102, 63, 0.08) 0 3px, transparent 4px),
    radial-gradient(circle at 54px 52px, rgba(89, 111, 85, 0.12) 0 3px, transparent 4px);
  background-size: 74px 74px;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
.brand,
.button,
nav,
.kicker {
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  max-width: 950px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 7.5vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.4vw, 4.65rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

p,
li {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 16px clamp(18px, 5vw, 70px);
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid rgba(37, 55, 58, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #d7edf3;
  box-shadow: 0 5px 0 var(--gold);
}

.dog-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(0.9);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.12rem;
}

.brand small {
  margin-top: 4px;
  color: var(--sage-dark);
  font-size: 0.88rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.96rem;
  font-weight: 800;
}

nav a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--clay);
  border-color: var(--clay);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  min-height: calc(100vh - 92px);
  padding: clamp(54px, 8vw, 104px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(rgba(255, 250, 240, 0.7), rgba(255, 250, 240, 0.78)),
    linear-gradient(135deg, rgba(223, 200, 166, 0.55), rgba(142, 165, 140, 0.38));
}

.hero-copy {
  max-width: 980px;
}

.kicker {
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  color: #536260;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.hero-image {
  justify-self: end;
  width: min(100%, 520px);
  padding: 18px;
  border: 2px solid rgba(37, 55, 58, 0.18);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hero-image img {
  display: block;
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
  background: #d7edf3;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-row.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 55, 58, 0.16);
}

.button.primary {
  color: var(--white);
  background: var(--clay);
}

.button.ghost {
  background: transparent;
}

.button.light {
  color: var(--ink);
  background: var(--paper);
}

.button.light:hover {
  background: var(--cream);
}

.cta-section .button.light {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--ink);
}

.cta-section .button.light:hover {
  background: #f0c974;
}

.section-intro {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-intro.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.beliefs,
.steps,
.service-preview,
.program-section,
.about-layout,
.values,
.contact-layout,
.promise {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 86px);
}

.belief-grid,
.step-grid,
.program-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.belief-grid article,
.step-grid article,
.program-grid article,
.detail-grid article,
.quote-card,
.contact-card,
.request-form {
  border: 1px solid rgba(37, 55, 58, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(37, 55, 58, 0.07);
}

.belief-grid article,
.step-grid article,
.program-grid article,
.detail-grid article {
  padding: 26px;
}

.belief-grid span,
.step-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  background: var(--sage-dark);
  border-radius: 50%;
}

.story-band,
.cta-section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 86px);
  color: var(--white);
  text-align: center;
  background: var(--sage-dark);
}

.story-band div {
  max-width: 940px;
  margin: 0 auto;
}

.story-band .kicker,
.cta-section .kicker {
  color: var(--gold);
}

.story-band h2,
.story-band p,
.cta-section h2,
.cta-section p {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
}

.text-link,
.program-grid a {
  color: var(--clay);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.story-band .text-link {
  color: var(--paper);
}

.service-preview,
.values,
.program-section.tan {
  background: var(--cream);
}

.page-hero {
  padding: clamp(64px, 10vw, 132px) clamp(20px, 6vw, 86px);
  text-align: center;
  background:
    linear-gradient(rgba(247, 239, 225, 0.76), rgba(247, 239, 225, 0.78)),
    linear-gradient(135deg, rgba(142, 165, 140, 0.35), rgba(196, 102, 63, 0.17));
}

.page-hero h1 {
  margin-right: auto;
  margin-left: auto;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.quote-card {
  padding: clamp(28px, 5vw, 50px);
  background: var(--sage-dark);
}

.quote-card p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.15;
}

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

.detail-grid ul,
.promise ul {
  margin: 0;
  padding-left: 20px;
}

.promise {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.12fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.contact-card {
  position: sticky;
  top: 116px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--cream);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.contact-list a {
  color: var(--clay);
}

.request-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.9);
}

.form-row {
  display: grid;
  gap: 8px;
}

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

label,
legend {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  border: 2px solid rgba(37, 55, 58, 0.18);
  border-radius: 6px;
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(226, 182, 92, 0.45);
  border-color: var(--ink);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 2px solid rgba(37, 55, 58, 0.14);
  border-radius: 6px;
}

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

.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 700;
  line-height: 1.25;
}

.checkbox-grid input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--clay);
}

.form-submit {
  width: fit-content;
  min-width: 170px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px clamp(20px, 6vw, 86px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.footer-links a {
  color: var(--white);
}

@media (max-width: 920px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .about-layout,
  .promise,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    justify-self: start;
    width: min(100%, 380px);
  }

  .belief-grid,
  .step-grid,
  .program-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  .two-column,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .form-submit {
    width: 100%;
  }
}
