@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500&display=swap');

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --green-dark:   #0C4F68;
  --green:        #116F91;
  --green-mid:    #1890B8;
  --green-pale:   #D8EEF6;
  --brown:        #4A3425;
  --terra:        #C9933A;
  --terra-light:  #E8BE78;
  --cream:        #FAF8F3;
  --white:        #FFFFFF;
  --ink:          #1A1A18;
  --ink-muted:    #6A6A60;
  --border:       #E2DDD4;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1280px;
  --nav-h: 72px;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 100;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav--scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
}

.nav__logo {
  width: 52px;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
  transition: width 0.3s;
}
.nav--scrolled .nav__logo {
  width: 44px;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav__brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.35s;
  letter-spacing: 0.01em;
}
.nav--scrolled .nav__brand-name { color: var(--brown); }
.nav__brand-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.35s;
  margin-top: 2px;
}
.nav--scrolled .nav__brand-sub { color: var(--ink-muted); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--terra-light);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav--scrolled .nav__links a { color: var(--ink-muted); }
.nav--scrolled .nav__links a:hover { color: var(--ink); }
.nav--scrolled .nav__links a::after { background: var(--terra); }

.nav__cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav__cta:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.nav--scrolled .nav__cta {
  border-color: var(--green);
  color: var(--green);
}
.nav--scrolled .nav__cta:hover {
  background: var(--green);
  color: var(--white);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.35s;
}
.nav--scrolled .nav__hamburger span { background: var(--ink); }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12,79,104,0.92) 0%,
    rgba(12,79,104,0.60) 50%,
    rgba(12,79,104,0.15) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.5rem;
  max-width: 640px;
  margin-left: max(2.5rem, calc(50vw - var(--max-w)/2));
}
.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--terra-light);
}
.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--green {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
}
.btn--green:hover { background: var(--green-mid); border-color: var(--green-mid); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--terra {
  background: var(--terra);
  color: var(--white);
  border: 1px solid var(--terra);
}
.btn--terra:hover { background: #B3754C; }

/* ─── Container ───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ─── Section base ────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section--tight { padding: 4rem 0; }
.section--dark {
  background: var(--green-dark);
  color: var(--white);
}
.section--white { background: var(--white); }

.section__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section--dark .section__title { color: var(--white); }
.section__lead {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 540px;
  margin-top: 1rem;
  line-height: 1.7;
}
.section--dark .section__lead { color: rgba(255,255,255,0.65); }

/* ─── Pillars ─────────────────────────────────────────────── */
.pillars { background: var(--white); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.pillar {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
}
.pillar:last-child { border-right: none; }
.pillar__icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green-pale);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: relative;
}
.pillar__icon::after {
  content: attr(data-icon);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.pillar__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.pillar__text {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ─── Dogs Grid ───────────────────────────────────────────── */
.dogs__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
}
.dogs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.dog-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 3/4;
  background: var(--border);
  cursor: pointer;
}
.dog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}
.dog-card:hover .dog-card__img { transform: scale(1.06); }
.dog-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(20,35,28,0.9) 0%, transparent 100%);
  transition: padding 0.3s;
}
.dog-card:hover .dog-card__overlay { padding-bottom: 1.5rem; }
.dog-card__role {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 0.3rem;
}
.dog-card__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

/* ─── Story Split ─────────────────────────────────────────── */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.story__img-wrap {
  position: relative;
}
.story__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 14px;
}
.story__accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  aspect-ratio: 1;
  border: 8px solid var(--cream);
  border-radius: 4px;
  background: var(--green-pale);
  z-index: -1;
}
.story__body { padding: 2rem 0; }
.story__text {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin: 1.25rem 0 2rem;
}
.story__sig {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--green);
  margin-top: 2.5rem;
}

/* ─── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 7rem 2.5rem;
  text-align: center;
}
.cta-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 30, 0.78);
}
.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.cta-banner__text {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 0.4rem;
}
.footer__brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 1.2rem;
}
.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer__heading {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer__location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.85rem;
  align-items: center;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.45);
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
}
.footer__social-link:hover {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
}
.footer__social-link svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  display: block;
  flex-shrink: 0;
  overflow: visible;
}

/* ─── Mobile Drawer ───────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,35,28,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: var(--white);
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nav-drawer.open { pointer-events: all; }
.nav-drawer.open .nav-drawer__backdrop { opacity: 1; }
.nav-drawer.open .nav-drawer__panel { transform: translateX(0); }
.nav-drawer__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink-muted);
  line-height: 1;
}
.nav-drawer__link {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-drawer__link:hover { color: var(--green); }
.nav-drawer__cta {
  margin-top: 1.5rem;
  text-align: center;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dogs__grid { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; gap: 3rem; }
  .story__accent { display: none; }
  :root { --nav-h: 60px; }
  .nav { padding: 0 1.5rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 768px) {
  .hero__content {
    padding: 0 1.5rem;
    margin-left: 0;
    max-width: 100%;
  }
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .dogs__header { flex-direction: column; align-items: flex-start; }
  .dogs__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
  .dogs__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 3rem; }
}

/* ─── Nav Dropdown ────────────────────────────────────────── */
.nav__has-dropdown { position: relative; }
.nav__has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 1.25rem;
}
.nav__caret {
  font-size: 0.55rem;
  opacity: 0.65;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  transition: transform 0.2s;
}
.nav__has-dropdown:hover .nav__caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0;
  min-width: 200px;
  box-shadow: 0 10px 36px rgba(12,79,104,0.13);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0s 0.2s;
  z-index: 201;
}
.nav__has-dropdown:hover .nav__dropdown,
.nav__has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s, transform 0.2s, visibility 0s 0s;
}
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}
.nav__dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--ink-muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  position: relative;
}
.nav__dropdown a::after { display: none !important; }
.nav__dropdown a:hover { color: var(--green); background: var(--cream); }
.nav__dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.3rem 0;
}

/* ─── Nav Drawer Sub-links ────────────────────────────────── */
.nav-drawer__sub {
  font-size: 0.88rem;
  color: var(--ink-muted);
  padding: 0.35rem 0 0.35rem 1.25rem;
  border-bottom: none;
  display: block;
  transition: color 0.2s;
}
.nav-drawer__sub:hover { color: var(--green); }
.nav-drawer__sub.active { color: var(--green); }

/* ─── Contract / Printable Pages ─────────────────────────── */
.contract-page { max-width: 800px; margin: 0 auto; }
.contract-header {
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--ink);
}
.contract-header h1 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.contract-header p { font-size: 0.88rem; color: var(--ink-muted); }
.contract-section {
  margin-bottom: 2.5rem;
}
.contract-section h2 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.contract-field {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1rem;
}
.contract-field label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 160px;
}
.contract-field input,
.contract-field select,
.contract-field textarea {
  flex: 1;
  border: none;
  border-bottom: 1px solid var(--ink);
  padding: 0.3rem 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink);
  background: transparent;
  outline: none;
}
.contract-field input:focus,
.contract-field textarea:focus { border-bottom-color: var(--green); }
.contract-field textarea { resize: none; min-height: 40px; }
.contract-field-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contract-terms {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.8;
  counter-reset: terms;
}
.contract-term {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.contract-term-num {
  font-weight: 600;
  flex-shrink: 0;
  min-width: 1.5rem;
}
.contract-sig-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.contract-sig-block { display: flex; flex-direction: column; gap: 0.5rem; }
.contract-sig-line {
  border-bottom: 1px solid var(--ink);
  height: 2.5rem;
  width: 100%;
}
.contract-sig-label { font-size: 0.75rem; color: var(--ink-muted); }
.contract-print-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  cursor: pointer;
}
@media print {
  .nav, .nav-drawer, .footer, .page-banner, .btn, .contract-print-btn { display: none !important; }
  body { background: white; }
  .section { padding: 0 !important; }
  .contract-page { max-width: 100%; }
}
@media (max-width: 768px) {
  .contract-field { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .contract-field label { min-width: auto; }
  .contract-field-2col { grid-template-columns: 1fr; gap: 0; }
  .contract-sig-row { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── Nav Active State ────────────────────────────────────── */
.nav__links a.active { color: var(--white); }
.nav__links a.active::after { transform: scaleX(1) !important; }
.nav--scrolled .nav__links a.active,
.nav--static .nav__links a.active { color: var(--ink); }
.nav-drawer__link.active { color: var(--green); }

/* ─── Nav Static (inner pages — always white) ─────────────── */
.nav--static {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
.nav--static .nav__brand-name { color: var(--brown); }
.nav--static .nav__brand-sub  { color: var(--ink-muted); }
.nav--static .nav__links a    { color: var(--ink-muted); }
.nav--static .nav__links a:hover { color: var(--ink); }
.nav--static .nav__links a::after { background: var(--terra); }
.nav--static .nav__cta { border-color: var(--green); color: var(--green); }
.nav--static .nav__cta:hover { background: var(--green); color: var(--white); }
.nav--static .nav__hamburger span { background: var(--ink); }

/* ─── Page Banner ─────────────────────────────────────────── */
.page-banner {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  background: var(--green-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(24,144,184,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 1rem;
}
.page-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.page-banner__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 1.25rem auto 0;
  line-height: 1.7;
}

/* ─── Tabs ────────────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tab {
  padding: 0.85rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  background: none;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--green); border-bottom-color: var(--green); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ─── Parent Profile Cards ────────────────────────────────── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.profile-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.profile-card:hover {
  box-shadow: 0 12px 40px rgba(12,79,104,0.1);
  transform: translateY(-3px);
}
.profile-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.profile-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}
.profile-card:hover .profile-card__img { transform: scale(1.04); }
.profile-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  background: var(--green);
  color: var(--white);
}
.profile-card__badge--sire { background: var(--terra); }
.profile-card__body { padding: 1.5rem; }
.profile-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.profile-card__meta {
  font-size: 0.78rem;
  color: var(--ink-muted);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.profile-card__bio {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.profile-card__clearances { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.clearance-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  background: #e8f4e8;
  border: 1px solid #9cc99c;
  border-radius: 20px;
  color: #2d5a2d;
}
.profile-card__genetics {
  font-size: 0.68rem;
  color: var(--ink-muted);
  font-style: italic;
  margin: 0.25rem 0 0.6rem;
  line-height: 1.5;
}
.profile-card__subtitle {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.profile-card__details {
  margin-bottom: 0.75rem;
  border-top: 1px solid var(--cream-border, #e8e0d5);
}
.profile-card__detail {
  display: flex;
  gap: 0.75rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--cream-border, #e8e0d5);
  font-size: 0.8rem;
}
.profile-card__detail-label {
  color: var(--ink-muted);
  font-weight: 500;
  min-width: 5.5rem;
  flex-shrink: 0;
}
.profile-card__detail-value {
  color: var(--ink);
  line-height: 1.5;
}
.profile-card__section-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1rem 0 0.3rem;
}

/* ─── Puppy Cards ─────────────────────────────────────────── */
.puppy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.puppy-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.puppy-card__img-wrap { aspect-ratio: 1; overflow: hidden; }
.puppy-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.puppy-card:hover .puppy-card__img { transform: scale(1.05); }
.puppy-card__body { padding: 1.5rem; }
.puppy-card__status {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.puppy-card__status--available { background: #e8f5e9; color: #2e7d32; }
.puppy-card__status--reserved  { background: #fff3e0; color: #e65100; }
.puppy-card__status--pending   { background: var(--green-pale); color: var(--green-dark); }
.puppy-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.puppy-card__details {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.puppy-card__price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}

/* ─── Empty State ─────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.empty-state__icon { font-size: 3rem; margin-bottom: 1.5rem; display: block; }
.empty-state__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.empty-state__text {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 400px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ─── Litter Cards ────────────────────────────────────────── */
.litter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.litter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}
.litter-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.litter-card__expected {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(201,147,58,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.litter-card__parents {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.litter-card__parents em {
  font-style: italic;
  color: var(--ink-muted);
  font-size: 0.9em;
}
.litter-card__details {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.litter-card__spots {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}

/* ─── Highlight Box ───────────────────────────────────────── */
.highlight-box {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 2rem 2.5rem;
}
.highlight-box__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}
.highlight-box__text {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ─── Process Steps (horizontal) ─────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 1rem;
}
.steps::before {
  content: '';
  position: absolute;
  top: 1.9rem;
  left: calc(10% + 0.5rem);
  right: calc(10% + 0.5rem);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step { text-align: center; padding: 0 0.5rem; position: relative; z-index: 1; }
.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green);
  margin: 0 auto 1.5rem;
}
.step__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.step__text { font-size: 0.8rem; color: var(--ink-muted); line-height: 1.6; }

/* ─── Process Detail Grid ─────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.process-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.process-item__num {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
}
.process-item h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.process-item p { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.7; }

/* ─── Included Items ──────────────────────────────────────── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.included-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.included-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.included-item h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.included-item p { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.6; }

/* ─── Gallery Grid ────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 1.25rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1rem 0.85rem;
  background: linear-gradient(to top, rgba(12,79,104,0.85), transparent);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__caption { opacity: 1; }

/* ─── Lightbox ────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,18,22,0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 2rem;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 6px;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: rgba(255,255,255,0.55);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox__close:hover { color: var(--white); }
.lightbox__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  white-space: nowrap;
}

/* ─── Accordion / FAQ ─────────────────────────────────────── */
.faq-group { margin-bottom: 3.5rem; }
.faq-group__heading {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.2s;
}
.accordion-trigger:hover { background: var(--cream); }
.accordion-item.open .accordion-trigger { background: var(--green-pale); color: var(--green-dark); }
.accordion-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--ink-muted);
  transition: transform 0.3s, background 0.2s, border-color 0.2s, color 0.2s;
}
.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-body__inner {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}
.accordion-body__inner a { color: var(--green); text-decoration: underline; }
.accordion-body__inner a:hover { color: var(--green-dark); }

/* ─── Contact Form Layout ─────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(17,111,145,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-group--checkbox input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
  padding: 0;
  cursor: pointer;
}
.form-group--checkbox label {
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ink-muted);
  cursor: pointer;
}
.form-group--checkbox label a { color: var(--green); text-decoration: underline; }
.form__note { font-size: 0.8rem; color: var(--ink-muted); line-height: 1.6; }
.form__success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 1.75rem;
  text-align: center;
  color: #2e7d32;
  font-size: 0.95rem;
  line-height: 1.7;
}
.form__success.visible { display: block; }

/* ─── Contact Info Sidebar ────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}
.contact-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}
.contact-card__row {
  display: flex;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.contact-card__row:last-child { margin-bottom: 0; }
.contact-card__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 0.15rem;
}

/* ─── Values Grid ─────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.value-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.value-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: 8px;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.value-card p { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.7; }

/* ─── Health Table ────────────────────────────────────────── */
.health-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.health-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--white);
}
.health-table th {
  text-align: left;
  padding: 0.85rem 1.25rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.health-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  line-height: 1.5;
}
.health-table tr:last-child td { border-bottom: none; }
.health-pass { color: #2e7d32; font-weight: 500; }

/* ─── Legal Pages ─────────────────────────────────────────── */
.legal-content { max-width: 740px; margin: 0 auto; }
.legal-effective {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2.5rem 0 0.85rem;
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.5rem 0 0.5rem;
}
.legal-content p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
}
.legal-content ul li {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.legal-content a { color: var(--green); text-decoration: underline; }

/* ─── Responsive: new components ─────────────────────────── */
@media (max-width: 1024px) {
  .profile-grid    { grid-template-columns: repeat(2, 1fr); }
  .litter-grid     { grid-template-columns: repeat(2, 1fr); }
  .included-grid   { grid-template-columns: repeat(2, 1fr); }
  .process-grid    { grid-template-columns: 1fr; }
  .steps           { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps::before   { display: none; }
  .contact-layout  { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .profile-grid    { grid-template-columns: 1fr; }
  .puppy-grid      { grid-template-columns: repeat(2, 1fr); }
  .litter-grid     { grid-template-columns: 1fr; }
  .gallery-grid    { columns: 2; }
  .form-row        { grid-template-columns: 1fr; }
  .included-grid   { grid-template-columns: 1fr; }
  .steps           { grid-template-columns: 1fr; }
  .page-banner     { padding: calc(var(--nav-h) + 3rem) 0 3rem; }
}
@media (max-width: 480px) {
  .puppy-grid   { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .values-grid  { grid-template-columns: 1fr; }
}

/* ─── Priority Waiting List ───────────────────────────────── */
.pwl-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.pwl-how-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pwl-how-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pwl-how-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.pwl-how-item p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
.pwl-how-item a { color: var(--green); text-decoration: underline; }

.pwl-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: start;
}
.pwl-form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.pwl-form-section:last-of-type { border-bottom: none; }
.pwl-form-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}

.pwl-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.pwl-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.pwl-sidebar-card__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.pwl-sidebar-card__stat {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.pwl-sidebar-card__note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.6;
}
.pwl-sidebar-list {
  list-style: none;
  margin: 0 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pwl-sidebar-list li { font-size: 0.85rem; color: var(--ink); }
.pwl-sidebar-link {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
  text-decoration: underline;
  display: inline-block;
  margin-top: 0.25rem;
}

@media (max-width: 1024px) {
  .pwl-how-grid { grid-template-columns: 1fr 1fr; }
  .pwl-layout { grid-template-columns: 1fr; }
  .pwl-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .pwl-how-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .pwl-sidebar { grid-template-columns: 1fr; }
}

/* ─── Deposit Agreement / Contract Form ───────────────────── */
.contract-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--green-dark);
}
.contract-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contract-header__meta p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 0.2rem;
  text-align: right;
}
.contract-intro {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.8;
  padding: 1.25rem 1.5rem;
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  margin-bottom: 2.5rem;
}
.contract-section__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.contract-section__lead {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.contract-term {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  line-height: 1.8;
}
.contract-term h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contract-term p { color: var(--ink-muted); margin-bottom: 0.5rem; }
.contract-term ul {
  margin: 0.5rem 0 0.5rem 1.5rem;
  color: var(--ink-muted);
}
.contract-term ul li { margin-bottom: 0.3rem; }
.contract-term--highlight {
  background: #FFF8F0;
  border: 1px solid var(--terra-light);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
}
.contract-term--highlight h4 { color: var(--terra); }

/* Form fields inside contract */
.contract-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.contract-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  min-width: auto;
  white-space: normal;
  flex-shrink: unset;
}
.contract-field input,
.contract-field select,
.contract-field textarea {
  flex: unset;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contract-field input:focus,
.contract-field select:focus,
.contract-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(17,111,145,0.1);
}
.contract-field textarea { resize: vertical; min-height: 80px; }
.contract-field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; }
.contract-field-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.field--error {
  border-color: #D44 !important;
  box-shadow: 0 0 0 3px rgba(221,68,68,0.12) !important;
}
.req { color: var(--terra); }

/* Acknowledgment checkboxes */
.contract-ack-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.contract-ack-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.6;
}
.contract-ack-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}
.contract-ack-item a { color: var(--green); text-decoration: underline; }

/* Submit area */
.contract-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}
.contract-submit-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 380px;
}

/* Button size variant */
.btn--lg {
  padding: 0.9rem 2.5rem;
  font-size: 0.82rem;
}

/* Contract notice bar */
.contract-notice {
  background: var(--green-pale);
  border-bottom: 1px solid rgba(17,111,145,0.15);
  padding: 0.75rem 0;
}
.contract-notice .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.contract-notice p {
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.contract-notice a { color: var(--green); text-decoration: underline; }

/* Printable inline fields */
.contract-printable-block {
  margin-bottom: 1.5rem;
}
.contract-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.contract-field-inline {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
}
.contract-field-label {
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--ink);
  min-width: 150px;
  flex-shrink: 0;
}
.contract-field-line {
  flex: 1;
  font-size: 0.88rem;
  color: var(--ink-muted);
  min-height: 1.2rem;
}
.contract-dog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contract-price-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.contract-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-style: italic;
}
.contract-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contract-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--ink);
}
.contract-check {
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.contract-actions {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media print {
  .contract-notice, #printActions, .nav, .nav-drawer, .footer, .page-banner, .btn, .contract-ack-item input { display: none !important; }
  .contract-ack-item { break-inside: avoid; }
  .contract-section { break-inside: avoid; page-break-inside: avoid; }
  .contract-sig-row { break-inside: avoid; page-break-inside: avoid; margin-top: 4rem !important; }
  body { background: white !important; font-size: 11pt; }
  .section { padding: 0 !important; }
  .contract-page { max-width: 100% !important; padding: 0 !important; }
}

@media (max-width: 768px) {
  .contract-header { flex-direction: column; gap: 1rem; }
  .contract-header__meta p { text-align: left; }
  .contract-field-2col { grid-template-columns: 1fr; }
  .contract-dog-grid { grid-template-columns: 1fr; }
  .contract-submit-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .contract-submit-row .btn { width: 100%; text-align: center; }
  .contract-notice .container { flex-direction: column; align-items: flex-start; }
  .contract-field-label { min-width: 110px; }
}

/* ─── Parent Cards (minimal, link to profile) ──────────────────── */
.parent-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.parent-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}
.parent-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.parent-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.45s ease;
}
.parent-card:hover .parent-card__img { transform: scale(1.04); }
.parent-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--brown);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 2px;
}
.parent-card__badge--sire { background: var(--green); }
.parent-card__body {
  padding: 1rem 1.2rem 1.2rem;
  text-align: center;
}
.parent-card__name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--brown);
  margin: 0 0 0.2rem;
}
.parent-card__desc {
  font-size: 0.76rem;
  color: var(--ink-muted);
  margin: 0 0 0.65rem;
  line-height: 1.4;
}
.parent-card__certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
  min-height: 1.5rem;
}
.parent-card__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-block;
}
.parent-card:hover .parent-card__link { color: var(--terra); }

/* ─── Dog Profile Pages ─────────────────────────────────────────── */
.dog-profile { background: var(--cream); }
.dog-profile__back-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
}
.dog-profile__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
}
.dog-profile__back:hover { color: var(--green); }
.dog-profile__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
  display: flex;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}
.dog-profile__image-col {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  opacity: 0;
  animation: dpFadeIn 1.1s ease-out 0.3s forwards;
}
@keyframes dpFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}
.dog-profile__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.dog-profile__text-col {
  flex: 0 0 50%;
  padding: 2.5rem 2.5rem 2.5rem 2.75rem;
  background: var(--white);
  border-radius: 0 8px 8px 0;
  box-shadow: 4px 0 24px rgba(74,52,37,0.08);
  overflow-y: auto;
  transform: translateX(-60px);
  opacity: 0;
  animation: dpSlideIn 1.3s cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
}
@keyframes dpSlideIn {
  from { transform: translateX(-60px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.dog-profile__role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 0.55rem;
}
.dog-profile__divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--terra), var(--brown));
  margin-bottom: 1.25rem;
}
.dog-profile__details { margin-bottom: 1.25rem; }
.dog-profile__detail-row {
  display: flex;
  gap: 0.75rem;
  padding: 0.32rem 0;
  border-bottom: 1px solid var(--cream-border, #e8e0d5);
  font-size: 0.83rem;
}
.dog-profile__detail-label {
  color: var(--ink-muted);
  font-weight: 600;
  min-width: 108px;
  flex-shrink: 0;
}
.dog-profile__detail-value { color: var(--ink); }
.dog-profile__section-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  margin: 1.1rem 0 0.35rem;
}
.dog-profile__bio {
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0 0 0.5rem;
}
.dog-profile__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.dog-profile__embark {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.76rem;
  color: var(--green);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .dog-profile__wrapper { flex-direction: column; min-height: auto; }
  .dog-profile__image-col {
    flex: none;
    height: 400px;
    border-radius: 8px 8px 0 0;
  }
  .dog-profile__text-col {
    flex: none;
    border-radius: 0 0 8px 8px;
    animation: dpSlideInMobile 1.3s cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
  }
  @keyframes dpSlideInMobile {
    from { transform: translateY(-30px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }
}
@media (max-width: 600px) {
  .dog-profile__text-col { padding: 1.75rem 1.25rem; }
  .dog-profile__image-col { height: 320px; }
  .dog-profile__back-bar { padding: 0.75rem 1rem 0; }
  .dog-profile__wrapper { padding: 1rem 1rem 3rem; }
}
