/* =============================================================
   ClerZ Kennel, design system
   ============================================================= */

:root {
  /* Surfaces */
  --cream: #f8f3ec;
  --ivory: #f2ebe0;
  --linen: #fdfaf6;
  --white: #fffdfa;

  /* Ink, all values below are AA-compliant on --cream */
  --ink: #2e2118;        /* 13.1:1 */
  --ink-soft: #63503f;   /*  6.9:1 */
  --ink-faint: #7d6a5a;  /*  4.9:1, 16px and up only */

  /* Accents */
  --clay: #96663b;       /* 4.6:1 against white, safe for button text */
  --clay-deep: #7a5230;
  --sage: #6f7a62;       /* 4.9:1 on cream */
  --gold: #c9a76a;       /* decorative only */
  --sand: #e2d2b8;
  --border: #e4d8c6;
  --border-soft: #ece2d3;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(46, 33, 24, 0.04);
  --shadow-sm: 0 2px 12px rgba(46, 33, 24, 0.06);
  --shadow: 0 10px 34px rgba(46, 33, 24, 0.09);
  --shadow-lg: 0 26px 70px rgba(46, 33, 24, 0.15);

  /* Geometry */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 26px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.22s var(--ease);
  --t: 0.4s var(--ease);
  --t-slow: 0.8s var(--ease-out);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: 0.72rem;
  --fs-sm: 0.875rem;
  --fs-base: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  --fs-lead: clamp(1.075rem, 1rem + 0.4vw, 1.28rem);
  --fs-h3: clamp(1.35rem, 1.2rem + 0.6vw, 1.75rem);
  --fs-h2: clamp(2.1rem, 1.6rem + 2.1vw, 3.4rem);
  --fs-h1: clamp(2.75rem, 1.9rem + 4.1vw, 5.6rem);

  /* Rhythm */
  --header-h: 74px;
  --trust-h: 4.75rem;
  --section-y: clamp(72px, 9vw, 132px);
  --gutter: clamp(20px, 4vw, 32px);
  --maxw: 1240px;
  --maxw-narrow: 760px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

img {
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2.5px solid var(--clay);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection {
  background: var(--sand);
  color: var(--ink);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 300;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--linen);
  font-size: var(--fs-sm);
  font-weight: 600;
  transform: translate(-50%, -180%);
  transition: transform var(--t-fast);
}

.skip-link:focus-visible {
  transform: translate(-50%, 0);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: var(--maxw-narrow);
}

.section {
  padding-block: var(--section-y);
}

.section--cream {
  background: var(--cream);
}

.section--ivory {
  background: var(--ivory);
}

.section--linen {
  background: var(--linen);
}

.section__header {
  max-width: 62ch;
  margin-bottom: clamp(40px, 5vw, 68px);
}

.section__header--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--sage);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section__title {
  font-size: var(--fs-h2);
}

.section__desc {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: var(--fs-lead);
  line-height: 1.62;
}

.gold-line {
  width: 64px;
  height: 2px;
  margin-top: 30px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section__header--center .gold-line {
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border: 1.5px solid var(--clay);
  border-radius: var(--r-pill);
  background: var(--clay);
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  transition: background var(--t-fast), border-color var(--t-fast),
    transform var(--t-fast), box-shadow var(--t-fast);
}

.btn:hover {
  background: var(--clay-deep);
  border-color: var(--clay-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--linen);
}

.btn--on-dark {
  background: rgba(255, 253, 250, 0.1);
  border-color: rgba(255, 253, 250, 0.7);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.btn--on-dark:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.btn--full {
  width: 100%;
}

.btn .icon {
  width: 17px;
  height: 17px;
  flex: none;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: rgba(248, 243, 236, 0.9);
  border-bottom-color: var(--border-soft);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(14px) saturate(150%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
  text-shadow: 0 1px 14px rgba(46, 33, 24, 0.45);
  transition: color var(--t), text-shadow var(--t);
}

.header--scrolled .nav__logo {
  color: var(--ink);
  text-shadow: none;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 44px);
}

.nav__link {
  position: relative;
  padding-block: 6px;
  color: rgba(255, 253, 250, 0.94);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 10px rgba(46, 33, 24, 0.4);
  transition: color var(--t), text-shadow var(--t), opacity var(--t-fast);
}

.header--scrolled .nav__link {
  color: var(--ink-soft);
  text-shadow: none;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease-out);
}

.nav__link:hover::after,
.nav__link[aria-current="true"]::after {
  transform: scaleX(1);
}

.header--scrolled .nav__link[aria-current="true"] {
  color: var(--clay);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid rgba(255, 253, 250, 0.6);
  border-radius: var(--r-pill);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--t-fast), color var(--t-fast),
    border-color var(--t);
}

.nav__cta:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.header--scrolled .nav__cta {
  border-color: var(--clay);
  background: var(--clay);
  color: var(--white);
}

.header--scrolled .nav__cta:hover {
  background: var(--clay-deep);
  border-color: var(--clay-deep);
}

.nav__cta .icon {
  width: 15px;
  height: 15px;
}

/* Hamburger */
.nav__toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  border-radius: 50%;
}

.nav__toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t-fast), background var(--t);
}

.nav__toggle span:nth-child(1) {
  transform: translate(-50%, -5px);
}

.nav__toggle span:nth-child(2) {
  transform: translate(-50%, 5px);
}

.header--scrolled .nav__toggle span,
.nav--open .nav__toggle span {
  background: var(--ink);
}

.nav--open .nav__toggle span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.nav--open .nav__toggle span:nth-child(2) {
  transform: translate(-50%, 0) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  align-items: start;
  /* Leave room so the trust strip sits in the first viewport */
  min-height: calc(100svh - var(--trust-h));
  max-height: 880px;
  padding: calc(var(--header-h) + clamp(36px, 6vh, 72px)) 0 clamp(28px, 4vh, 48px);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  animation: heroDrift 32s var(--ease) infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}

/* Dark overlay so white headline stays readable on pale fur */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(14, 9, 6, 0.55);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  /* Match .container max-width so left edge aligns with the ClerZ logo */
  max-width: var(--maxw);
  color: var(--white);
}

.hero__copy {
  max-width: 34rem;
}

.hero__location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 253, 250, 0.9);
}

.hero__location::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(2.6rem, 1.7rem + 3.2vw, 4.35rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 28px rgba(18, 12, 8, 0.55), 0 1px 2px rgba(18, 12, 8, 0.4);
}

.hero__title span,
.hero__title em {
  display: block;
  white-space: nowrap;
}

.hero__title em {
  font-style: italic;
  color: #f0e2c9;
}

.hero__subtitle {
  max-width: 46ch;
  margin: 24px 0 0;
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 253, 250, 0.95);
  text-shadow: 0 1px 18px rgba(18, 12, 8, 0.5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* CTA card is mobile-only - desktop keeps the inline action buttons */
.hero-cta {
  display: none;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(255, 253, 250, 0.18);
  border-radius: var(--r-lg);
  background: rgba(253, 250, 246, 0.94);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  backdrop-filter: blur(10px) saturate(140%);
}

.hero-cta__eyebrow {
  margin: 0;
  color: var(--sage);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-cta__title {
  margin: 10px 0 0;
  font-size: clamp(1.55rem, 1.35rem + 0.7vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

.hero-cta__text {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-cta__actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hero-cta__actions .btn {
  padding-inline: 18px;
}

.hero-cta__actions .btn .icon {
  width: 16px;
  height: 16px;
}

.hero-cta__note {
  margin: 16px 0 0;
  color: var(--ink-faint);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--ink);
  color: rgba(255, 253, 250, 0.9);
  min-height: var(--trust-h);
  padding-block: clamp(14px, 1.6vw, 18px);
  display: flex;
  align-items: center;
}

.trust__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 40px);
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.845rem;
  line-height: 1.4;
  letter-spacing: 0.015em;
}

.trust__item .icon {
  width: 21px;
  height: 21px;
  flex: none;
  color: var(--gold);
}

/* ---------- Puppy cards ---------- */
.puppies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(22px, 2.6vw, 34px);
}

.puppy-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--linen);
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease-out), box-shadow var(--t),
    border-color var(--t);
}

.puppy-card:hover {
  transform: translateY(-7px);
  border-color: var(--sand);
  box-shadow: var(--shadow-lg);
}

.puppy-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ivory);
}

.puppy-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.puppy-card:hover .puppy-card__img {
  transform: scale(1.06);
}

.puppy-card__status {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  background: rgba(255, 253, 250, 0.94);
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-xs);
}

.puppy-card__status--reserved {
  color: #8a6a2f;
}

.puppy-card__status--adopted {
  color: var(--ink-soft);
}

.puppy-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 30px);
}

.puppy-card__name {
  font-size: var(--fs-h3);
}

.puppy-card__tagline {
  margin: 8px 0 0;
  color: var(--ink-faint);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
}

.puppy-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
  margin: 22px 0 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.puppy-card__meta dt {
  color: var(--ink-faint);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.puppy-card__meta dd {
  margin-top: 4px;
  font-size: 0.925rem;
  font-weight: 500;
}

.puppy-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--clay);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.puppy-card__cta svg {
  width: 15px;
  height: 15px;
  transition: transform var(--t);
}

.puppy-card:hover .puppy-card__cta svg {
  transform: translateX(5px);
}

/* ---------- Story ---------- */
.story__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
}

.story__visual {
  position: relative;
  padding-bottom: 60px;
}

.story__img-main,
.story__img-accent {
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}

.story__img-main img,
.story__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__img-main {
  aspect-ratio: 4 / 5;
}

.story__img-accent {
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 47%;
  aspect-ratio: 1 / 1;
  border: 7px solid var(--cream);
  box-shadow: var(--shadow-lg);
}

.story__signature {
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-style: italic;
  color: var(--clay);
}

.story__lead {
  font-size: var(--fs-lead);
  line-height: 1.62;
}

.story__content p:not(.story__lead) {
  color: var(--ink-soft);
}

/* ---------- Process (timeline) ---------- */
.process__layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.process__intro {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  max-width: 36ch;
}

.process__intro .section__desc {
  margin-top: 18px;
}

.process__cta {
  margin-top: 34px;
}

.process__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Continuous gold line behind the markers */
.process__timeline::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  bottom: 1.1rem;
  left: 1.55rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--gold) 8%,
    var(--gold) 92%,
    transparent 100%
  );
}

.process__step {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: clamp(18px, 2.4vw, 28px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.process__step:last-child {
  padding-bottom: 0;
}

.process__marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--linen);
  border: 1px solid var(--sand);
  box-shadow: 0 0 0 6px var(--ivory);
}

.process__num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--clay);
  line-height: 1;
}

.process__body {
  padding-top: 0.45rem;
}

.process__body h3 {
  font-size: clamp(1.35rem, 1.15rem + 0.6vw, 1.7rem);
}

.process__body p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.985rem;
  max-width: 46ch;
}

.process__body a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--sand);
  transition: color var(--t-fast), border-color var(--t-fast);
}

.process__body a:hover {
  color: var(--clay);
  border-color: var(--clay);
}

/* ---------- Family album ---------- */
.album__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
}

.album__item {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--r-sm);
  background: var(--ivory);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  isolation: isolate;
}

.album__item:focus-visible {
  outline: 2.5px solid var(--clay);
  outline-offset: 3px;
}

/* Lead photo fills the 2×2 area sized by the square tiles beside it -
   so the right-side images stay tightly spaced. */
.album__item--feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: unset;
  height: 100%;
  align-self: stretch;
  border-radius: var(--r);
}

.album__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.album__item:hover img,
.album__item:focus-visible img {
  transform: scale(1.045);
}

.album__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(30, 21, 14, 0.28) 100%
  );
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}

.album__item:hover::after,
.album__item:focus-visible::after {
  opacity: 1;
}

.album__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: none;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(253, 250, 246, 0.92);
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-fast), transform var(--t-fast);
  pointer-events: none;
  box-shadow: var(--shadow-xs);
}

@media (hover: hover) and (pointer: fine) {
  .album__zoom {
    display: grid;
  }
}

.album__zoom svg {
  width: 15px;
  height: 15px;
}

.album__item:hover .album__zoom,
.album__item:focus-visible .album__zoom {
  opacity: 1;
  transform: none;
}

.album__note {
  margin-top: 28px;
  color: var(--ink-faint);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ---------- Clients ---------- */
.clients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}

.client {
  margin: 0;
}

.client__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--cream);
  aspect-ratio: 3 / 4;
}

.client__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.85s var(--ease-out);
}

.client:hover .client__media img,
.client:focus-within .client__media img {
  transform: scale(1.04);
}

.client__caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding-inline: 2px;
}

.client__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.client__ig {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--clay);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color var(--t-fast), opacity var(--t-fast);
}

.client__ig:hover,
.client__ig:focus-visible {
  color: var(--clay-deep);
}

.client__ig:hover span,
.client__ig:focus-visible span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.client__ig-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.88;
}

.client__ig:hover .client__ig-icon,
.client__ig:focus-visible .client__ig-icon {
  opacity: 1;
}

/* ---------- Parents ---------- */
.parents__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(22px, 2.6vw, 34px);
}

.parent-card {
  padding: clamp(30px, 3.2vw, 46px);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--linen);
  box-shadow: var(--shadow-sm);
}

.parent-card__media {
  overflow: hidden;
  margin: 0 0 22px;
  border-radius: var(--r);
  aspect-ratio: 4 / 5;
  background: var(--cream);
}

.parent-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.parent-card__media--stella img {
  object-position: center 72%;
}

.parent-card__media--charm img {
  object-position: 28% center;
}

.parent-card__role {
  margin: 0;
  color: var(--sage);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.parent-card__name {
  margin-top: 12px;
  font-size: clamp(1.9rem, 1.6rem + 1vw, 2.5rem);
}

.parent-card__breed {
  margin: 6px 0 0;
  color: var(--clay);
  font-size: 0.94rem;
  font-weight: 500;
}

.parent-card__details {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  display: grid;
  gap: 18px;
}

.parent-card__details dt {
  color: var(--ink-faint);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.parent-card__details dd {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.955rem;
}

/* ---------- Our Home ---------- */
.home__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(36px, 5vw, 76px);
}

.home__visual {
  position: sticky;
  top: calc(var(--header-h) + 34px);
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

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

.home__list {
  display: grid;
  gap: 0;
}

.home__item {
  padding-block: clamp(24px, 2.6vw, 32px);
  border-top: 1px solid var(--border);
}

.home__item:last-child {
  border-bottom: 1px solid var(--border);
}

.home__item h3 {
  font-size: var(--fs-h3);
}

.home__item p {
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 0.985rem;
}

/* ---------- Features ---------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: clamp(22px, 2.6vw, 36px);
}

.feature {
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--linen);
  transition: transform var(--t) var(--ease-out), box-shadow var(--t),
    border-color var(--t);
}

.feature:hover {
  transform: translateY(-5px);
  border-color: var(--sand);
  box-shadow: var(--shadow);
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--clay);
}

.feature__icon svg {
  width: 23px;
  height: 23px;
}

.feature h3 {
  font-size: 1.28rem;
}

.feature p {
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 0.955rem;
}

/* ---------- FAQ ---------- */
.faq__list {
  border-top: 1px solid var(--border);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding: clamp(21px, 2.3vw, 27px) 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.45vw, 1.4rem);
  font-weight: 500;
  line-height: 1.32;
  text-align: left;
  transition: color var(--t-fast);
}

.faq__question:hover {
  color: var(--clay);
}

.faq__icon {
  width: 19px;
  height: 19px;
  flex: none;
  color: var(--clay);
  transition: transform var(--t) var(--ease-out);
}

.faq__item--open .faq__icon {
  transform: rotate(135deg);
}

.faq__answer {
  overflow: hidden;
  height: 0;
  transition: height var(--t) var(--ease-out);
}

.faq__answer p {
  padding: 0 clamp(24px, 5vw, 60px) clamp(22px, 2.4vw, 30px) 0;
  color: var(--ink-soft);
}

/* ---------- Contact ---------- */
.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 12% 20%, rgba(201, 167, 106, 0.16), transparent 60%),
    radial-gradient(ellipse 55% 50% at 88% 80%, rgba(111, 122, 98, 0.1), transparent 55%),
    linear-gradient(165deg, var(--ivory) 0%, var(--cream) 48%, #ebe3d4 100%);
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  column-gap: clamp(40px, 6vw, 80px);
  row-gap: clamp(32px, 4vw, 48px);
  align-items: start;
}

.contact__phone {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  color: var(--ink);
  transition: color var(--t-fast), transform var(--t-fast);
}

.contact__phone:hover,
.contact__phone:focus-visible {
  color: var(--clay-deep);
  transform: translateY(-1px);
}

.contact__phone-label {
  color: var(--sage);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact__phone-number {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.15rem + 1.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  word-break: break-word;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact__note {
  margin-top: 22px;
  color: var(--ink-faint);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.contact__side {
  display: flex;
  flex-direction: column;
}

.contact__channels {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.contact__channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
  color: inherit;
  transition: background var(--t-fast), padding-left var(--t-fast);
}

a.contact__channel:hover,
a.contact__channel:focus-visible {
  background: rgba(253, 250, 246, 0.55);
  padding-left: 10px;
}

.contact__channel-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(253, 250, 246, 0.85);
  color: var(--sage);
  box-shadow: var(--shadow-xs);
}

.contact__channel-icon svg {
  width: 18px;
  height: 18px;
}

.contact__channel-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.contact__channel-label {
  color: var(--ink-faint);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact__channel-value {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact__map {
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--border-soft);
  aspect-ratio: 21 / 9;
  background: var(--linen);
  box-shadow: var(--shadow-sm);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.75) contrast(0.96) brightness(1.02);
}

/* ---------- Footer ---------- */
.footer {
  padding-top: clamp(56px, 7vw, 92px);
  background: var(--ink);
  color: rgba(255, 253, 250, 0.72);
  font-size: 0.925rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(34px, 5vw, 68px);
  padding-bottom: clamp(44px, 5vw, 64px);
}

.footer__logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--white);
}

.footer__tagline {
  margin: 10px 0 0;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
}

.footer__quote {
  max-width: 40ch;
  margin: 26px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 253, 250, 0.86);
}

.footer__col h4 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__col a,
.footer__col span {
  display: block;
  margin-bottom: 12px;
  transition: color var(--t-fast);
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 26px;
  border-top: 1px solid rgba(255, 253, 250, 0.13);
  font-size: 0.8rem;
  color: rgba(255, 253, 250, 0.55);
}

.footer__bottom p {
  margin: 0;
}

/* ---------- Puppy profile dialog ---------- */
.profile {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
}

.profile--open {
  visibility: visible;
}

.profile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 21, 14, 0.55);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity var(--t);
}

.profile--open .profile__backdrop {
  opacity: 1;
}

.profile__panel {
  position: absolute;
  inset: auto 0 0;
  max-height: 94svh;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  transform: translateY(100%);
  transition: transform 0.55s var(--ease-out);
}

.profile--open .profile__panel {
  transform: translateY(0);
}

.profile__close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 14px 14px 0 auto;
  border-radius: 50%;
  background: rgba(255, 253, 250, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition: background var(--t-fast), transform var(--t-fast);
}

.profile__close:hover {
  background: var(--white);
  transform: rotate(90deg);
}

.profile__close svg {
  width: 19px;
  height: 19px;
}

.profile__body {
  max-width: 1080px;
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(46px, 6vw, 76px);
}

.profile__hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 3.6vw, 52px);
  margin-top: -30px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.profile__hero-media {
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

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

.profile__status {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: var(--ivory);
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile__name {
  font-size: clamp(2.4rem, 1.9rem + 2.2vw, 3.7rem);
}

.profile__breed {
  margin: 8px 0 0;
  color: var(--clay);
  font-size: 1rem;
  font-weight: 500;
}

.profile__personality {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: var(--fs-lead);
  line-height: 1.6;
}

.profile__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px 22px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.profile__stats dt {
  color: var(--ink-faint);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile__stats dd {
  margin-top: 5px;
  font-size: 0.98rem;
  font-weight: 500;
}

.profile__sections {
  display: grid;
  gap: clamp(34px, 4vw, 52px);
}

.profile__section h3 {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-size: 1.45rem;
}

.profile__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.profile__gallery button {
  padding: 0;
  overflow: hidden;
  border-radius: var(--r);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}

.profile__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.profile__gallery button:hover img {
  transform: scale(1.07);
}

.profile__list {
  display: grid;
  gap: 12px;
}

.profile__list li {
  display: flex;
  gap: 13px;
  color: var(--ink-soft);
  font-size: 0.985rem;
}

.profile__list li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 11px;
  border-radius: 50%;
  background: var(--gold);
}

.profile__parents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.profile__parent {
  padding: 22px 24px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  background: var(--linen);
}

.profile__parent h4 {
  font-size: 1.3rem;
}

.profile__parent p {
  margin: 5px 0 0;
  color: var(--ink-faint);
  font-size: 0.88rem;
}

.profile__inquire {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--r-lg);
  background: var(--ivory);
  text-align: center;
}

.profile__inquire .btn {
  flex: 1 1 220px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(22, 15, 10, 0.93);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(6px);
  transition: opacity var(--t), visibility var(--t);
}

.lightbox--open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 100%;
  max-height: 82svh;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox__caption {
  max-width: 62ch;
  margin-top: 20px;
  color: rgba(255, 253, 250, 0.8);
  font-size: 0.9rem;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 253, 250, 0.12);
  color: var(--white);
  transition: background var(--t-fast);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 253, 250, 0.28);
}

.lightbox__close {
  top: clamp(14px, 3vw, 30px);
  right: clamp(14px, 3vw, 30px);
}

.lightbox__nav--prev {
  left: clamp(10px, 2.5vw, 28px);
}

.lightbox__nav--next {
  right: clamp(10px, 2.5vw, 28px);
}

.lightbox__close svg,
.lightbox__nav svg {
  width: 21px;
  height: 21px;
}

/* ---------- Mobile call bar ---------- */
.callbar {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(248, 243, 236, 0.95);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transform: translateY(110%);
  transition: transform var(--t) var(--ease-out);
}

.callbar--visible {
  transform: translateY(0);
}

.callbar .btn {
  flex: 1;
  padding-block: 13px;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --trust-h: 7.25rem; /* 2×2 trust grid */
  }

  .hero__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__actions {
    display: none;
  }

  .hero-cta {
    display: block;
    max-width: 420px;
  }

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

  .process__layout,
  .story__layout,
  .home__layout {
    grid-template-columns: 1fr;
  }

  .process__intro {
    position: static;
    max-width: 52ch;
  }

  .story__visual {
    max-width: 520px;
    margin-inline: auto;
  }

  .home__visual {
    position: static;
    max-width: 460px;
    margin-inline: auto;
    aspect-ratio: 4 / 3;
  }

  .profile__hero {
    grid-template-columns: 1fr;
  }

  .profile__hero-media {
    max-width: 400px;
    aspect-ratio: 1 / 1;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

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

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

  .contact__layout {
    grid-template-columns: 1fr;
    gap: clamp(36px, 5vw, 48px);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 62px;
  }

  /* backdrop-filter makes position:fixed children resolve against the header
     instead of the viewport - which collapses the full-screen menu. */
  .header--scrolled {
    background: rgba(248, 243, 236, 0.97);
    backdrop-filter: none;
  }

  .header:has(.nav--open) {
    background: var(--cream);
    border-bottom-color: transparent;
    box-shadow: none;
  }

  .nav__toggle {
    display: block;
    order: 3;
    position: relative;
    z-index: 210;
  }

  .nav__cta {
    display: none;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding: calc(var(--header-h) + 28px) 30px calc(40px + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--t), visibility var(--t);
  }

  .nav--open .nav__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav--open .nav__logo {
    position: relative;
    z-index: 210;
    color: var(--ink);
    text-shadow: none;
  }

  .nav__menu li {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
    border-bottom: 1px solid var(--border-soft);
  }

  .nav__link {
    display: block;
    padding: 15px 4px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(1.28rem, 5.5vw, 1.45rem);
    text-shadow: none;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link[aria-current="true"] {
    color: var(--clay);
  }

  .hero {
    min-height: calc(100svh - var(--trust-h));
    max-height: none;
    padding-top: calc(var(--header-h) + clamp(28px, 4vh, 48px));
    align-items: start;
  }

  .hero__img {
    /* Portrait hero: dogs sit low; keep them anchored while text sits above */
    object-position: center bottom;
  }

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

  /* Full-width lead photo, then a tight 2-up grid */
  .album__item--feature {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 4 / 5;
    height: auto;
    align-self: auto;
  }

  .clients__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .client__name {
    font-size: 1.05rem;
  }

  .client__ig {
    font-size: 0.8rem;
    gap: 5px;
  }

  .client__ig-icon {
    width: 14px;
    height: 14px;
  }

  .contact__phone {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .contact__phone-number {
    font-size: clamp(1.25rem, 5.5vw, 1.7rem);
  }

  /* Email is already covered by the primary CTA and sticky bar */
  .contact__channels li:nth-child(1) {
    display: none;
  }

  .contact__actions {
    flex-direction: column;
  }

  .contact__actions .btn {
    width: 100%;
  }

  .contact__map {
    aspect-ratio: 16 / 10;
  }

  .contact {
    padding-bottom: calc(var(--section-y) + 72px);
  }

  .callbar {
    display: flex;
  }

  .footer {
    padding-bottom: 76px;
  }

  .profile__panel {
    max-height: 96svh;
  }

  .section {
    padding-bottom: calc(var(--section-y) * 0.85);
  }
}

@media (max-width: 520px) {
  :root {
    --trust-h: 0px; /* trust stacks tall, don't force it into the fold */
    --gutter: 18px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero__title {
    font-size: clamp(2.1rem, 8.5vw, 2.75rem);
  }

  .hero__subtitle {
    font-size: 0.98rem;
  }

  .trust {
    min-height: 0;
    padding-block: 18px;
  }

  .trust__list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .clients__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .client__media {
    aspect-ratio: 4 / 5;
  }

  .album__zoom {
    width: 30px;
    height: 30px;
    right: 8px;
    bottom: 8px;
  }

  .puppy-card__meta {
    gap: 13px 16px;
  }

  .contact__map {
    border-radius: var(--r-sm);
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .story__img-accent {
    width: 44%;
    right: 0;
  }

  .lightbox__nav {
    bottom: 18px;
    top: auto;
  }

  .callbar .btn {
    padding-inline: 12px;
    font-size: 0.82rem;
  }
}

/* ---------- Motion & contrast preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__img {
    animation: none;
  }
}

@media print {
  .header,
  .callbar,
  .hero__media,
  .contact__map,
  .profile,
  .lightbox {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
