/* Furry Friends - site styles */
:root {
  --cream: #f7f1e8;
  --cream-deep: #efe6d8;
  --paper: #fffdf9;
  --ink: #2c241c;
  --ink-soft: #5a4f44;
  --muted: #7a6e62;
  --terracotta: #c86b3f;
  --terracotta-deep: #a85532;
  --terracotta-soft: #e8b89a;
  --sage: #5f7a5a;
  --sage-soft: #d7e2d4;
  --earth: #8b6b4a;
  --line: rgba(44, 36, 28, 0.1);
  --shadow: 0 12px 40px rgba(44, 36, 28, 0.08);
  --shadow-soft: 0 6px 20px rgba(44, 36, 28, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --header-h: 76px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(200, 107, 63, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(95, 122, 90, 0.1), transparent 45%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 40%, var(--cream-deep) 100%);
  background-attachment: fixed;
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--terracotta-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--terracotta);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(200, 107, 63, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 650;
  font-size: 0.92rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--terracotta-deep);
  background: rgba(200, 107, 63, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--terracotta-deep);
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s;
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: var(--sage-soft);
  color: var(--sage);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
  padding: 0 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.25rem;
  background: rgba(255, 253, 249, 0.98);
}

.nav-mobile.is-open {
  display: block;
  animation: slideDown 0.35s var(--ease);
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.nav-mobile a:last-child {
  border-bottom: 0;
}

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

@media (min-width: 980px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.45rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 750;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s;
}

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

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 8px 24px rgba(200, 107, 63, 0.28);
}

.btn-primary:hover {
  background: var(--terracotta-deep);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(44, 36, 28, 0.2);
}

.btn-secondary:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn-sage {
  background: var(--sage);
  color: #fff;
}

.btn-sage:hover {
  background: #4d6649;
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 253, 249, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 253, 249, 0.35);
  color: #fff;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(44, 36, 28, 0.25) 0%, rgba(44, 36, 28, 0.55) 45%, rgba(44, 36, 28, 0.82) 100%),
    radial-gradient(ellipse at 30% 70%, rgba(200, 107, 63, 0.25), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  max-width: 720px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.15s forwards;
}

.hero-content p {
  color: rgba(255, 253, 249, 0.92);
  font-size: 1.12rem;
  max-width: 36rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.3s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.45s forwards;
}

.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 253, 249, 0.88);
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.55s forwards;
}

.trust-line::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--terracotta-soft);
}

.page-hero {
  min-height: min(52vh, 420px);
  align-items: flex-end;
}

.page-hero .hero-content {
  padding-top: 5rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: rgba(255, 253, 249, 0.65);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head.centered {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.65rem;
}

.lead {
  font-size: 1.15rem;
}

/* Intro list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.feature-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background: var(--sage-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235f7a5a'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
  .split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }
  .split.reverse .split-media {
    order: -1;
  }
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Service cards */
.service-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 780px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}

.service-card-body {
  padding: 1.6rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body ul {
  margin: 0 0 1.4rem;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  flex: 1;
}

.service-card-body li {
  margin-bottom: 0.35rem;
}

/* Why cards */
.why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--sage);
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.why-card h3 {
  margin-bottom: 0.4rem;
}

.why-card p {
  margin: 0;
  font-size: 0.98rem;
}

/* Content blocks */
.content-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}

.content-block h3 {
  color: var(--terracotta-deep);
}

.mission-box {
  background: linear-gradient(135deg, var(--sage) 0%, #4a6346 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.mission-box h3,
.mission-box p {
  color: #fff;
}

.mission-box p {
  margin: 0;
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.45;
}

.placeholder-note {
  background: #fff8e8;
  border: 1px dashed var(--earth);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  color: var(--earth);
  margin-top: 1rem;
}

/* Reviews */
.reviews-track-wrap {
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.15rem 1.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.review-card {
  flex: 0 0 min(88%, 380px);
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.stars {
  color: #d4a017;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
  quotes: "“" "”";
}

.review-card blockquote::before {
  content: open-quote;
}

.review-card blockquote::after {
  content: close-quote;
}

.review-meta {
  font-weight: 750;
  color: var(--ink);
  font-size: 0.95rem;
}

.review-meta span {
  display: block;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.carousel-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.carousel-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--ink);
}

.carousel-nav button:hover {
  background: var(--sage-soft);
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

.gallery-grid {
  columns: 1;
  column-gap: 1rem;
}

@media (min-width: 560px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    columns: 3;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--paper);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 22, 16, 0.88);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(96vw, 1000px);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  margin-bottom: 0.4rem;
}

.contact-card a {
  font-weight: 750;
  text-decoration: none;
  color: var(--terracotta-deep);
  word-break: break-word;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Forms */
.notice {
  background: #fff6ea;
  border: 1px solid var(--terracotta-soft);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.notice strong {
  color: var(--ink);
}

.form-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}

.form-progress .step-pill {
  flex: 1 1 auto;
  min-width: 120px;
  text-align: center;
  padding: 0.55rem 0.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 750;
  background: var(--cream-deep);
  color: var(--muted);
  border: 1px solid transparent;
}

.form-progress .step-pill.is-active {
  background: var(--terracotta);
  color: #fff;
}

.form-progress .step-pill.is-done {
  background: var(--sage-soft);
  color: var(--sage);
}

.form-panel {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  animation: riseIn 0.4s var(--ease);
}

.form-panel.is-active {
  display: block;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid.three {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label,
.fieldset-legend {
  font-weight: 750;
  font-size: 0.92rem;
  color: var(--ink);
}

.field .hint {
  font-size: 0.82rem;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(44, 36, 28, 0.18);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  width: 100%;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--terracotta-soft);
  border-color: var(--terracotta);
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: #b33;
}

.field .error-msg {
  color: #b33;
  font-size: 0.82rem;
  display: none;
}

.field.error .error-msg {
  display: block;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

.choice input:focus-visible + span {
  outline: 2px solid var(--terracotta);
}

.choice input:checked + span {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

.service-select {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .service-select {
    grid-template-columns: 1fr 1fr;
  }
}

.service-option {
  position: relative;
  height: 100%;
}

.service-option input {
  position: absolute;
  opacity: 0;
}

.service-option label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 2px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-option input:checked + label {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(200, 107, 63, 0.15);
}

.service-option h3 {
  margin-bottom: 0.35rem;
}

.schedule-table {
  display: grid;
  gap: 0.75rem;
}

.schedule-day {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  background: #fff;
}

.schedule-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  font-weight: 750;
}

.schedule-day-fields {
  display: none;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.schedule-day.is-on .schedule-day-fields {
  display: grid;
}

@media (min-width: 700px) {
  .schedule-day.is-on .schedule-day-fields {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
}

.check-list {
  display: grid;
  gap: 0.45rem;
}

.check-list label {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.check-list input {
  margin-top: 0.25rem;
  accent-color: var(--terracotta);
}

.form-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.form-nav .btn {
  min-width: 12.5rem;
  flex: 1 1 12.5rem;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

.dog-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  margin-bottom: 1rem;
  background: var(--cream);
}

.dog-block h4 {
  margin-bottom: 1rem;
  color: var(--terracotta-deep);
}

.review-summary {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  white-space: pre-wrap;
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-height: 420px;
  overflow: auto;
  border: 1px solid var(--line);
}

.form-success {
  display: none;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--sage-soft);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow);
}

.form-success.is-visible {
  display: block;
  animation: riseIn 0.5s var(--ease);
}

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

.security-note {
  background: var(--sage-soft);
  color: var(--sage);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  margin: 0.75rem 0 1rem;
}

.loading-btn[disabled] {
  opacity: 0.7;
  cursor: wait;
}

/* Footer */
.site-footer {
  background: #2c241c;
  color: rgba(247, 241, 232, 0.85);
  padding: 3.5rem 0 1.75rem;
  margin-top: 2rem;
}

.site-footer a {
  color: rgba(247, 241, 232, 0.9);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--terracotta-soft);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.footer-brand p {
  color: rgba(247, 241, 232, 0.72);
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

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

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 241, 232, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(247, 241, 232, 0.6);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.paw-deco {
  opacity: 0.12;
  pointer-events: none;
}

.cta-band {
  background: linear-gradient(120deg, var(--terracotta) 0%, #b45a35 50%, var(--sage) 130%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: #fff;
  margin: 0;
}

.cta-band p {
  margin-top: 0.4rem;
  opacity: 0.92;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.legal-content {
  max-width: 740px;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

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