:root {
  --cream: #FFF8E1;
  --paper: #FBF6EA;
  --wheat: #E8C79D;
  --honey: #C9A227;
  --honey-deep: #A8841A;
  --bark: #4A3428;
  --ink: #3A2A22;
  --sage: #6B7F5A;
  --sage-dark: #556447;
  --muted: #7A6A5C;
  --line: rgba(74, 52, 40, 0.12);
  --white: #FFFcf6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--sage-dark); text-decoration: none; }
a:hover { color: var(--honey-deep); }

.preview-banner {
  background: var(--bark);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 0.55rem 1rem;
  text-transform: uppercase;
}

.wrap { width: min(1120px, calc(100% - 2.4rem)); margin: 0 auto; }

header.site {
  background: rgba(255, 248, 225, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--bark);
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--wheat);
}
.brand-text { line-height: 1.15; }
.brand-text strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  display: block;
}
.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
nav.main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.15rem;
  font-size: 0.92rem;
}
nav.main a { color: var(--ink); }
nav.main a.active,
nav.main a:hover { color: var(--honey-deep); }

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: end start;
  color: var(--cream);
  background: #3a2a22 center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,42,34,0.08) 20%, rgba(58,42,34,0.62) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 0 4.5rem;
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}
.kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--wheat);
  margin-bottom: 0.6rem;
}
h1, h2, h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  max-width: 16ch;
  margin-bottom: 0.7rem;
}
.hero p.lede {
  max-width: 38ch;
  font-size: 1.12rem;
  color: #f3e6c8;
  margin-bottom: 1.4rem;
}
.btns { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.btn {
  display: inline-block;
  padding: 0.72rem 1.15rem;
  border-radius: 2px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
}
.btn-gold { background: var(--honey); color: var(--bark); }
.btn-gold:hover { background: var(--honey-deep); color: var(--cream); }
.btn-ghost { border-color: var(--wheat); color: var(--cream); }
.btn-ghost:hover { background: rgba(255,248,225,0.12); color: var(--cream); }
.btn-outline {
  border: 1px solid var(--bark);
  color: var(--bark);
}
.btn-outline:hover { background: var(--bark); color: var(--cream); }

section { padding: 4.2rem 0; }
.section-head { max-width: 42rem; margin-bottom: 2rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 0.5rem; }
.muted { color: var(--muted); }

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.tile {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.4rem;
}
.tile h3 { margin-bottom: 0.4rem; font-size: 1.25rem; }
.tile p { color: var(--muted); font-size: 0.95rem; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}
.split.rev { grid-template-columns: 0.95fr 1.05fr; }
.split img { width: 100%; height: 420px; object-fit: cover; }
.prose h2 { margin-bottom: 0.7rem; }
.prose p + p { margin-top: 0.9rem; }

.strip {
  background: var(--bark);
  color: var(--cream);
  padding: 2rem 0;
}
.strip-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.strip h3 { font-size: 1.35rem; }
.strip p { color: var(--wheat); max-width: 46ch; }

.dogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
}
.card img { width: 100%; height: 320px; object-fit: cover; }
.card-body { padding: 1.1rem 1.15rem 1.3rem; }
.card-body .meta { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.25rem; }
.card-body h3 { font-size: 1.25rem; }
.card-body p { color: var(--muted); font-size: 0.92rem; margin-top: 0.35rem; }

.page-hero {
  padding: 3.4rem 0 2rem;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.45rem; }

table.health {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}
table.health th, table.health td {
  text-align: left;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--line);
}
table.health th { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.form {
  display: grid;
  gap: 0.85rem;
  max-width: 36rem;
}
label { font-size: 0.85rem; }
input, textarea, select {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }

footer.site {
  background: var(--bark);
  color: #e8d7b8;
  padding: 2.4rem 0 1.6rem;
  margin-top: 2rem;
}
footer.site .foot {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
footer.site strong { color: var(--cream); font-family: "Source Serif 4", Georgia, serif; }
.badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.8rem; }
.badge {
  border: 1px solid rgba(232, 199, 157, 0.35);
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tiny { margin-top: 1.4rem; font-size: 0.75rem; opacity: 0.7; }

@media (max-width: 860px) {
  .tiles, .dogs, .split, .split.rev { grid-template-columns: 1fr; }
  .split img { height: 280px; }
  nav.main { font-size: 0.82rem; }
  .hero { min-height: 70vh; }
}
