/* =========================================================
   Herzhorner Pfötchen — Redesign (Editorial Magazine)
   Preview-Kopie · nicht live deployen
   ========================================================= */

:root {
  --brand: #b48a61;
  --brand-deep: #8f6640;
  --brand-soft: #d4b896;
  --brand-glow: rgba(180, 138, 97, 0.18);
  --rose: #c9897a;
  --bg: #faf6f0;
  --bg-warm: #f3ebe0;
  --bg-cream: #fffaf4;
  --bg-soft: #f7f0e6;
  --ink: #2c2420;
  --ink-soft: #5a4a3e;
  --ink-muted: #8a7a6e;
  --line: rgba(44, 36, 32, 0.1);
  --white: #fffefb;
  --shadow-soft: 0 18px 50px rgba(44, 36, 32, 0.08);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.45s;
  --t-fast: 0.22s;
  --nav-h: 4.25rem;
  --prose: 62ch;
  --font-display: 'Tangerine', cursive;
  --font-body: 'Nunito', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-deep); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--brand); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

/* ---- Typography ---- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.6rem;
}
h1, h2, h3 { margin: 0 0 0.75rem; color: var(--ink); }
h2.display { font-size: clamp(2.8rem, 1.8rem + 4vw, 4.6rem); }
h3.display { font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem); }
.lede, .prose-block p {
  max-width: var(--prose);
  color: var(--ink-soft);
}
.prose-block p { margin: 0 0 1.1rem; }
.prose-block blockquote {
  margin: 1.5rem 0;
  padding: 0.2rem 0 0.2rem 1.25rem;
  border-left: 3px solid var(--brand-soft);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.4rem);
  line-height: 1.2;
  color: var(--brand-deep);
}
.paw-divider {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  margin: 0.85rem 0 1.75rem;
  color: var(--brand);
  opacity: 0.75;
}
.paw-divider svg { width: 18px; height: 18px; }

.wrapper {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}
.wrapper-narrow {
  width: min(720px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ---- Skip / Nav ---- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(250, 246, 240, 0.88);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.site-nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(44, 36, 32, 0.05);
}
.site-nav .nav-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo img { width: 42px; height: auto; }
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
}
.nav-links {
  display: none;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--brand-deep); }
.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--bg-warm);
  color: var(--ink);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform var(--t-fast) var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(250, 246, 240, 0.97);
  padding: 2rem 1.5rem;
  z-index: 99;
}
.nav-drawer.is-open { display: block; }
.nav-drawer ul { list-style: none; margin: 0; padding: 0; }
.nav-drawer a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-drawer { display: none !important; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  min-height: 100svh;
  display: grid;
  place-items: end center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(44,36,32,0.25) 0%, rgba(44,36,32,0.15) 35%, rgba(44,36,32,0.72) 100%),
    url('../assets/hero-phone.jpg') center/cover no-repeat;
}
@media (min-width: 768px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(44,36,32,0.22) 0%, rgba(44,36,32,0.12) 40%, rgba(44,36,32,0.7) 100%),
      url('../assets/hero-tablet.jpg') center/cover no-repeat;
  }
}
@media (min-width: 1200px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(44,36,32,0.2) 0%, rgba(44,36,32,0.1) 42%, rgba(44,36,32,0.68) 100%),
      url('../assets/hero-desktop.jpg') center/cover no-repeat;
  }
}
.hero-inner {
  width: min(720px, calc(100% - 2.5rem));
  text-align: center;
  padding: 0 0 5.5rem;
  position: relative;
  z-index: 2;
}
.hero-logo {
  width: clamp(120px, 22vw, 200px);
  margin: 0 auto 1rem;
  opacity: 0.9;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 2rem + 5vw, 5.5rem);
  margin-bottom: 0.35rem;
  text-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.hero .subtitle {
  margin: 0 auto 1.5rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 36ch;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: rgba(255,254,251,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.hero-cta:hover {
  background: rgba(255,254,251,0.24);
  color: var(--white);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 22px; height: 22px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Sections common ---- */
.section {
  padding: clamp(3.5rem, 2.5rem + 4vw, 6.5rem) 0;
}
.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.25rem);
}
.section-head .lede {
  margin: 0 auto;
}

/* ---- Welcome ---- */
#welcome { background: var(--bg-soft); }
#welcome .welcome-body {
  text-align: center;
}
#welcome .welcome-body p {
  margin: 0 auto 1.15rem;
  max-width: var(--prose);
  color: var(--ink-soft);
}
#welcome .welcome-body p:last-child { margin-bottom: 0; }

/* ---- Dogs editorial flow ---- */
#dogs { background: var(--bg); overflow: hidden; }
.dog-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.dog-filters button {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.dog-filters button.active,
.dog-filters button:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.dog-rail-wrap {
  position: relative;
}
.dog-rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 1.25rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-soft) transparent;
}
.dog-rail::-webkit-scrollbar { height: 6px; }
.dog-rail::-webkit-scrollbar-thumb {
  background: var(--brand-soft);
  border-radius: 999px;
}

.dog-portrait {
  flex: 0 0 min(78vw, 340px);
  scroll-snap-align: center;
  border: 0;
  padding: 0;
  text-align: left;
  background: transparent;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform var(--t) var(--ease);
}
.dog-portrait:hover { transform: translateY(-4px); }
.dog-portrait figure {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--bg-warm);
}
.dog-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.dog-portrait:hover img { transform: scale(1.04); }
.dog-portrait figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3.5rem 1.15rem 1.15rem;
  background: linear-gradient(transparent, rgba(44,36,32,0.82));
  color: var(--white);
}
.dog-portrait .dog-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0.25rem;
}
.dog-portrait .dog-meta {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.9;
}
.dog-portrait.is-hidden { display: none; }

.rail-nav {
  display: none;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.rail-nav button {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--bg-warm);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  transition: background var(--t-fast) var(--ease);
}
.rail-nav button:hover { background: var(--brand); color: var(--white); }
@media (min-width: 768px) {
  .dog-portrait { flex-basis: min(42vw, 360px); }
  .rail-nav { display: flex; }
}
@media (min-width: 1100px) {
  .dog-portrait { flex-basis: 320px; }
}

/* Dog detail panel */
.detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 32, 0.55);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t) var(--ease);
  display: grid;
  place-items: center;
  padding: 1rem;
}
.detail-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.detail-panel {
  width: min(920px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  background: var(--bg-cream);
  border-radius: calc(var(--radius) + 0.25rem);
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform var(--t) var(--ease);
}
.detail-overlay.is-open .detail-panel {
  transform: none;
}
.detail-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(250,246,240,0.92);
  color: var(--ink);
  font-size: 1.2rem;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
}
.detail-media {
  min-height: 280px;
  background: var(--bg-warm) center/cover no-repeat;
}
.detail-body { padding: 1.75rem 1.5rem 2rem; }
.detail-body h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2rem + 2vw, 3.6rem);
  margin-bottom: 0.2rem;
}
.detail-breed {
  color: var(--ink-muted);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}
.detail-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}
.detail-facts li {
  padding: 0.65rem 0.75rem;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
}
.detail-facts strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 0.15rem;
}
.detail-facts span { color: var(--ink-soft); font-size: 0.95rem; }
.detail-desc { color: var(--ink-soft); margin: 0 0 1.1rem; max-width: 58ch; }
.detail-status {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--brand-glow);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.85rem;
}
@media (min-width: 800px) {
  .detail-layout { grid-template-columns: 1.05fr 1fr; }
  .detail-media { min-height: 100%; }
  .detail-body { padding: 2.25rem 2rem; }
}

/* ---- About ---- */
#about {
  background: var(--ink);
  color: var(--white);
  padding: 0;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
}
.about-copy {
  padding: clamp(3rem, 2rem + 4vw, 5.5rem) clamp(1.25rem, 1rem + 2vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-copy .section-label { color: var(--brand-soft); }
.about-copy h2 { color: var(--white); }
.about-copy .paw-divider { color: var(--brand); justify-content: flex-start; }
.about-copy p {
  color: rgba(255,255,255,0.86);
  max-width: var(--prose);
  margin: 0 0 1.1rem;
}
.about-photo {
  min-height: 380px;
  background: url('../assets/about-christin-v2.webp') center/cover no-repeat;
}
.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 184, 150, 0.35);
  color: var(--brand-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.cert-badge:hover {
  background: rgba(212, 184, 150, 0.15);
  color: var(--white);
}
.cert-badge svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (min-width: 900px) {
  .about-split { grid-template-columns: 1.05fr 0.95fr; }
  .about-photo { min-height: auto; }
}

/* Cert lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(20, 14, 10, 0.82);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t) var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-inner {
  position: relative;
  max-width: min(720px, 100%);
  max-height: 90vh;
}
.lightbox-inner img {
  max-height: 85vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lightbox-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.15rem;
}

/* ---- Zucht editorial features ---- */
#zucht-info { background: var(--bg-warm); }
.zucht-features {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 2rem + 3vw, 4.5rem);
}
.zucht-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
.zucht-feature figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 11;
  background: var(--bg);
}
.zucht-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zucht-feature .feature-copy { padding: 0.25rem 0.15rem; }
.zucht-feature .feature-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.4rem;
}
.zucht-feature h3 { margin-bottom: 0.65rem; }
.zucht-feature .excerpt {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  max-width: 48ch;
}
.feature-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--brand-deep);
  padding: 0;
}
.feature-more:hover { color: var(--brand); }
.feature-body {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.zucht-feature.is-open .feature-body { display: block; }
.zucht-feature.is-open .feature-more .chevron { transform: rotate(90deg); }
.feature-more .chevron {
  display: inline-block;
  transition: transform var(--t-fast) var(--ease);
}
.feature-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  background: linear-gradient(145deg, var(--bg-cream), var(--brand-glow));
  color: var(--brand-deep);
  font-weight: 600;
  text-align: center;
  padding: 1.5rem;
}
@media (min-width: 860px) {
  .zucht-feature {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
  .zucht-feature:nth-child(even) {
    grid-template-columns: 0.95fr 1.05fr;
  }
  .zucht-feature:nth-child(even) figure { order: 2; }
  .zucht-feature:nth-child(even) .feature-copy { order: 1; }
}

/* ---- Puppies / Q-Wurf ---- */
#puppies { background: var(--bg-soft); }
.litter-feature {
  background: var(--bg-cream);
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(180, 138, 97, 0.12);
}
.litter-hero {
  padding: clamp(1.75rem, 1.25rem + 2vw, 2.75rem);
  background:
    radial-gradient(ellipse at top right, rgba(180,138,97,0.18), transparent 55%),
    linear-gradient(135deg, #fffaf4, #f3ebe0);
  text-align: center;
}
.litter-hero h3 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 2rem + 3vw, 4rem);
  margin-bottom: 0.35rem;
}
.litter-meta {
  color: var(--brand-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 0.85rem;
}
.litter-desc {
  margin: 0 auto;
  max-width: 52ch;
  color: var(--ink-soft);
}
.puppy-flow {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.puppy-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
  text-align: left;
  width: 100%;
  color: inherit;
  background: transparent;
}
.puppy-row:hover { background: rgba(180, 138, 97, 0.06); }
.puppy-thumb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-warm);
  border: 2px solid rgba(180,138,97,0.2);
}
.puppy-row h4 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}
.puppy-row .sub {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}
.puppy-status {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(90, 140, 100, 0.14);
  color: #3f6b48;
}
@media (max-width: 560px) {
  .puppy-row { grid-template-columns: 64px 1fr; }
  .puppy-status { grid-column: 2; justify-self: start; }
}

.puppy-detail .detail-facts { grid-template-columns: 1fr; }
.puppy-detail .detail-media {
  min-height: 200px;
  display: grid;
  place-items: center;
  background: var(--bg-warm);
}
.puppy-detail .detail-media img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---- Contact ---- */
#contact {
  background:
    radial-gradient(ellipse at top, rgba(180,138,97,0.12), transparent 50%),
    var(--bg);
  text-align: center;
}
#contact .subtitle {
  margin: 0 auto 1.75rem;
  color: var(--ink-soft);
  max-width: 40ch;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--brand);
  color: var(--white);
}
.btn-primary:hover { background: var(--brand-deep); color: var(--white); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-deep); }
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.social-links a {
  font-weight: 700;
  text-decoration: none;
  color: var(--ink-soft);
}
.social-links a:hover { color: var(--brand-deep); }
.contact-phone {
  margin: 1.25rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.contact-phone a {
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: none;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 3rem 0 2rem;
}
.footer-legal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-legal h4 {
  color: var(--brand-soft);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.footer-legal p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 58ch;
}
.footer-legal a { color: var(--brand-soft); }
.footer-copy {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 800px) {
  .footer-legal { grid-template-columns: 1fr 1.2fr; gap: 3rem; }
}

/* ---- Reveal motion ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-scroll { animation: none; }
  .dog-portrait:hover, .dog-portrait:hover img { transform: none; }
}

/* body lock when modal open */
body.is-locked { overflow: hidden; }
