:root {
  --bg: #ffffff;
  --ink: #111315;
  --soft-ink: #60646a;
  --muted: #f2f4f1;
  --muted-2: #f8f8f6;
  --line: #e3e5e1;
  --gold: #967242;
  --gold-dark: #705533;
  --sage: #dce4da;
  --stone: #edece7;
  --charcoal: #121314;
  --shadow: 0 18px 44px rgba(17, 19, 21, 0.08);
  --radius: 8px;
  --shell: min(1180px, calc(100vw - 40px));
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(17, 19, 21, 0.025) 1px, transparent 1px);
  background-size: 100% 8px;
}

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

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(227, 227, 223, 0.84);
  backdrop-filter: blur(16px);
}

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

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--soft-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 7px);
  gap: 6px;
  width: 28px;
  height: 28px;
  place-content: center;
  border: 1px solid var(--ink);
  border-radius: 7px;
}

.brand-mark span {
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.menu-toggle svg,
.button svg,
.trust-bar svg,
.health-grid svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 52px;
  min-height: calc(100vh - 70px);
  align-items: center;
  padding: 50px 0 28px;
}

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

.hero h1,
.section-heading h2,
.about h2,
.achievement-copy h2,
.health-copy h2,
.contact-cta h2 {
  margin: 0;
  font-weight: 720;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.91;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--soft-ink);
  font-size: 19px;
  line-height: 1.65;
}

.hero-proof {
  display: grid;
  gap: 0;
  max-width: 560px;
  margin: 36px 0 0;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.hero-proof dt,
.hero-proof dd {
  margin: 0;
}

.hero-proof dt {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof dd {
  color: var(--soft-ink);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(17, 19, 21, 0.12);
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-secondary {
  background: #fff;
  color: var(--ink);
}

.button-small {
  min-height: 40px;
  padding-inline: 18px;
}

.hero-media {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: end center;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, transparent 0 72%, rgba(255, 255, 255, 0.78) 72%),
    linear-gradient(135deg, var(--sage), #f7f7f4);
  box-shadow: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(17, 19, 21, 0.12);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.92), transparent);
  pointer-events: none;
}

.hero-media img {
  position: relative;
  z-index: 2;
  width: min(70%, 430px);
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.18));
}

.spot-field {
  position: absolute;
  right: 42px;
  top: 42px;
  width: 148px;
  height: 148px;
  opacity: 0.24;
  background-image:
    radial-gradient(circle, #111315 0 2.5px, transparent 3.5px);
  background-size: 24px 24px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 0 2px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.trust-bar article {
  min-height: 112px;
  padding: 22px 26px 22px 0;
  text-align: left;
  border-right: 0;
  background: transparent;
}

.trust-bar article:last-child {
  border-right: 0;
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  font-size: 14px;
}

.trust-bar span {
  margin-top: 5px;
  color: var(--soft-ink);
  font-size: 13px;
}

.split-section,
.dogs,
.health,
.gallery {
  padding: 88px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2,
.about h2,
.achievement-copy h2,
.health-copy h2,
.contact-cta h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.text-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: " ->";
}

.litter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.litter-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  gap: 28px;
  min-height: 220px;
  align-items: center;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.litter-card img {
  width: 100%;
  height: 100%;
  min-height: 172px;
  object-fit: cover;
  border-radius: 0;
}

.litter-card div {
  align-self: center;
  padding-right: 0;
}

.meta-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.litter-card h3,
.dog-card h3,
.health-grid h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.litter-card p:not(.meta-label) {
  margin: 12px 0 20px;
  color: var(--soft-ink);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 70px;
  align-items: center;
  padding-block: 96px;
  border-bottom: 1px solid var(--line);
}

.about-copy p,
.health-copy p,
.contact-cta p {
  color: var(--soft-ink);
  font-size: 17px;
}

.about-panel {
  display: grid;
  gap: 16px;
  padding: 0;
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}

.about-panel div {
  padding: 22px 0;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.about-panel strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.about-panel span {
  color: var(--soft-ink);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tabs button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.filter-tabs button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.dog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.dog-card {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
  transition: opacity 180ms ease, transform 180ms ease;
}

.dog-card.is-hidden {
  display: none;
}

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

.dog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--muted);
}

.dog-card:first-child img {
  object-fit: contain;
  padding-top: 18px;
}

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

.dog-card h3 {
  font-size: 18px;
}

.dog-card p {
  margin: 8px 0 12px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 850;
}

.dog-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.dog-card li {
  padding: 5px 8px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 700;
}

.achievements {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  overflow: hidden;
  margin-top: 74px;
  border-radius: 0;
  background: var(--charcoal);
  color: #fff;
}

.achievement-copy {
  padding: clamp(32px, 5vw, 64px);
}

.achievement-copy ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.achievement-copy li {
  display: grid;
  gap: 3px;
  padding-left: 18px;
  border-left: 2px solid var(--sage);
}

.achievement-copy span {
  color: rgba(255, 255, 255, 0.72);
}

.achievements img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.health {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.health-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
}

.health-grid article {
  min-height: 220px;
  padding: 26px;
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.health-grid article:nth-child(2n) {
  border-right: 0;
}

.health-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.health-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--ink);
}

.health-grid h3 {
  font-size: 21px;
}

.health-grid p {
  margin: 10px 0 0;
  color: var(--soft-ink);
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 0.9fr 1.4fr;
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 0;
  background: var(--muted);
}

.gallery-grid img:first-child {
  object-fit: contain;
  padding: 12px;
}
