:root {
  --ink: #24170f;
  --muted: #6d5a4b;
  --paper: #f6efe4;
  --cream: #fffaf1;
  --sage: #4d6242;
  --sage-dark: #2f412b;
  --clay: #a85b34;
  --gold: #d6a45f;
  --line: rgba(36, 23, 15, .12);
  --shadow: 0 24px 70px rgba(47, 33, 22, .18);
  --max: 1180px;
  --side: clamp(18px, 4vw, 56px);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, .88), rgba(246, 239, 228, .94)),
    url("../backgrounds/bg-enduit-guirlande.png.webp") center top / cover;
}

img,
video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button,
input,
textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  color: var(--cream);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 241, .88);
  box-shadow: 0 14px 34px rgba(36, 23, 15, .08);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, .42);
  border-radius: 50%;
  background: var(--cream);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 250, 241, .22);
  border-radius: 999px;
  background: rgba(36, 23, 15, .18);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .nav-links {
  border-color: var(--line);
  background: rgba(255, 250, 241, .72);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: inherit;
  font-size: .9rem;
  font-weight: 750;
  opacity: .84;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(77, 98, 66, .88);
  color: var(--cream);
  opacity: 1;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .22s ease, background .22s ease;
}

.nav-cta,
.button.primary {
  color: var(--cream);
  background: var(--clay);
  box-shadow: 0 12px 30px rgba(168, 91, 52, .24);
}

.button.ghost {
  color: var(--cream);
  background: rgba(255, 250, 241, .14);
  border: 1px solid rgba(255, 250, 241, .38);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--cream);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: #1b130d;
  --hero-mx: 76%;
  --hero-my: 28%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at var(--hero-mx) var(--hero-my), rgba(214, 164, 95, .24), transparent 22%);
  mix-blend-mode: screen;
  opacity: .75;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 50%;
  transform: translateY(var(--hero-shift, 0px)) scale(1.02);
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 24%, rgba(214, 164, 95, .14), transparent 24%),
    linear-gradient(90deg, rgba(22, 14, 9, .84), rgba(22, 14, 9, .42) 42%, rgba(22, 14, 9, .18)),
    linear-gradient(180deg, rgba(22, 14, 9, .22), transparent 42%, rgba(22, 14, 9, .76));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - var(--side) * 2));
  margin: 0 auto;
  padding: 148px 0 clamp(62px, 9vh, 104px);
}

.hero-dog-stack {
  position: absolute;
  right: clamp(70px, 12vw, 180px);
  top: 16%;
  z-index: 3;
  width: min(520px, 42vw);
  height: min(600px, 66vh);
  pointer-events: none;
  --stack-x: 0px;
  --stack-y: 0px;
}

.taped-photo {
  position: absolute;
  margin: 0;
  overflow: visible;
  border: 8px solid rgba(255, 250, 241, .95);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
  pointer-events: auto;
}

.taped-photo::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  z-index: 4;
  width: 126px;
  height: 44px;
  background: url("../accessories/tape-clean.png.webp") center / contain no-repeat;
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, .16));
  transform: translateX(-50%) rotate(var(--tape-rotate, -4deg));
}

.taped-photo img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 3px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.taped-photo figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 250, 241, .9);
  font-weight: 850;
  text-align: center;
}

.hero-dog-card {
  transition: transform .34s ease, box-shadow .34s ease;
}

.hero-dog-card:hover {
  box-shadow: 0 34px 90px rgba(0, 0, 0, .4);
}

.hero-dog-one {
  top: 0;
  right: 4%;
  width: 70%;
  height: 58%;
  --tape-rotate: -7deg;
  transform: translate(calc(var(--stack-x) * .34), calc(var(--stack-y) * .28)) rotate(3deg);
}

.hero-dog-one img { object-position: center 48%; }

.hero-dog-two {
  left: 0;
  bottom: 7%;
  width: 61%;
  height: 46%;
  --tape-rotate: 5deg;
  transform: translate(calc(var(--stack-x) * -.22), calc(var(--stack-y) * .2)) rotate(-5deg);
}

.hero-dog-two img { object-position: center 42%; }

.hero-dog-three {
  right: 3%;
  bottom: 1%;
  width: 48%;
  height: 40%;
  --tape-rotate: -2deg;
  transform: translate(calc(var(--stack-x) * .18), calc(var(--stack-y) * -.18)) rotate(5deg);
}

.hero-dog-three img { object-position: 38% 58%; }

.hero-dog-four {
  left: 31%;
  top: 42%;
  width: 42%;
  height: 36%;
  --tape-rotate: 8deg;
  transform: translate(calc(var(--stack-x) * -.12), calc(var(--stack-y) * -.26)) rotate(1deg);
  z-index: 2;
}

.hero-dog-four img { object-position: center 54%; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero .eyebrow { color: #cbd9b6; }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0;
  line-height: .96;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 10vw, 8.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5.3vw, 5.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 250, 241, .84);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-acaced-badge {
  width: clamp(112px, 10vw, 158px);
  aspect-ratio: 1.42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  overflow: hidden;
  background: transparent;
  transform: rotate(-3deg);
}

.hero-acaced-badge img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .22));
  transform: scale(1.16);
}

.proof-strip {
  width: min(var(--max), calc(100% - var(--side) * 2));
  margin: -28px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, .94);
  box-shadow: var(--shadow);
}

.proof-strip div {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child { border-right: 0; }
.proof-strip strong { font-family: Fraunces, Georgia, serif; font-size: 1.7rem; }
.proof-strip span { color: var(--muted); font-weight: 650; }

.section {
  width: min(var(--max), calc(100% - var(--side) * 2));
  margin: 0 auto;
  padding: clamp(84px, 12vw, 142px) 0;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.about-portrait {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage-dark);
  box-shadow: var(--shadow);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 26%;
  filter: saturate(1.05) contrast(1.04);
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(36, 23, 15, .62));
}

.about-portrait span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 241, .9);
  font-weight: 850;
}

.about-copy {
  max-width: 660px;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.08rem;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-points span {
  padding: 10px 13px;
  border: 1px solid rgba(77, 98, 66, .2);
  border-radius: 999px;
  color: var(--sage-dark);
  background: #dce6c9;
  font-weight: 850;
}

.house-section {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.stories-copy p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.check-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, .68);
  font-weight: 750;
}

.house-visual {
  position: relative;
  min-height: 640px;
}

.house-main,
.house-secondary,
.contact-photo img,
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.house-main {
  position: absolute;
  inset: 0 0 12% 10%;
  width: 90%;
  height: 88%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.house-secondary {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34%;
  height: 42%;
  border: 8px solid var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(47, 33, 22, .18);
}

.visual-accent {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.visual-accent.ivy {
  top: -8%;
  right: -9%;
  width: min(210px, 28%);
  opacity: .28;
  filter: drop-shadow(0 12px 18px rgba(47, 33, 22, .12));
}

.services-section {
  padding-top: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 310px;
  display: grid;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, .82);
  box-shadow: 0 14px 42px rgba(47, 33, 22, .08);
  transition: transform .24s ease, box-shadow .24s ease;
}

.service-card span {
  width: fit-content;
  margin-bottom: 42px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--sage-dark);
  background: #dce6c9;
  font-size: .78rem;
  font-weight: 850;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.service-card.future {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(47, 65, 43, .92), rgba(36, 23, 15, .84)),
    url("../backgrounds/bg-brique-lierre.png.webp") center / cover;
}

.service-card.future p { color: rgba(255, 250, 241, .78); }
.service-card.future span { color: var(--ink); background: var(--gold); }

.stories-section {
  padding: clamp(84px, 12vw, 138px) var(--side);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(28, 18, 12, .94), rgba(47, 65, 43, .78)),
    url("../backgrounds/bg-brique-guirlande.png.webp") center / cover;
}

.stories-section .eyebrow { color: #dce6c9; }

.stories-section {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(540px, 1.28fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.stories-copy {
  max-width: 520px;
  justify-self: end;
}

.stories-copy p { color: rgba(255, 250, 241, .76); }

.stories-stage {
  display: grid;
  grid-template-columns: minmax(220px, 310px) minmax(260px, 420px);
  gap: 24px;
  align-items: end;
}

.story-phone {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 10px solid rgba(255, 250, 241, .96);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
}

.story-phone video,
.story-phone img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-phone video {
  z-index: 2;
  opacity: 0;
  transition: opacity .28s ease;
}

.story-phone.is-video-ready video { opacity: 1; }

.story-phone span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 250, 241, .88);
  font-weight: 850;
  text-align: center;
}

.story-panel {
  padding: 24px;
  border: 1px solid rgba(255, 250, 241, .18);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, .1);
  backdrop-filter: blur(16px);
  transition: transform .24s ease, border-color .24s ease;
}

.story-panel strong {
  display: block;
  margin-bottom: 10px;
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
}

.story-panel p {
  color: rgba(255, 250, 241, .76);
  line-height: 1.6;
}

.story-hint {
  display: inline-flex;
  margin-top: 18px;
  color: rgba(255, 250, 241, .58);
  font-size: .9rem;
  font-weight: 750;
}

.story-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.story-buttons button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 250, 241, .22);
  border-radius: 50%;
  color: var(--cream);
  background: transparent;
  font-weight: 850;
}

.story-buttons button.is-active {
  color: var(--ink);
  background: var(--cream);
}

.modern-stories-stage {
  grid-template-columns: minmax(340px, 470px) minmax(260px, 420px);
  align-items: center;
}

.story-deck {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.story-main {
  z-index: 5;
  width: min(340px, 72%);
  box-shadow: 0 42px 110px rgba(0, 0, 0, .48);
}

.story-thumb {
  position: absolute;
  z-index: 2;
  width: 156px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 7px solid rgba(255, 250, 241, .88);
  border-radius: 22px;
  padding: 0;
  color: var(--cream);
  background: var(--cream);
  box-shadow: 0 26px 68px rgba(0, 0, 0, .34);
  opacity: .68;
  transform: translate3d(var(--tx, 0), var(--ty, 0), -80px) rotate(var(--rot, 0deg)) scale(.9);
  transition: transform .34s ease, opacity .34s ease, filter .34s ease;
}

.story-thumb:hover,
.story-thumb.is-active {
  z-index: 4;
  opacity: 1;
  filter: saturate(1.1);
  transform: translate3d(var(--tx, 0), var(--ty, 0), -30px) rotate(var(--rot, 0deg)) scale(.98);
}

.story-thumb-one {
  --tx: -190px;
  --ty: -54px;
  --rot: -8deg;
  --from-tx: -44px;
  --from-ty: 10px;
}

.story-thumb-two {
  --tx: 190px;
  --ty: -38px;
  --rot: 7deg;
  --from-tx: 46px;
  --from-ty: 0px;
}

.story-thumb-three {
  --tx: 170px;
  --ty: 174px;
  --rot: 10deg;
  --from-tx: 36px;
  --from-ty: 52px;
}

.story-deck:not(.is-deployed) .story-thumb {
  opacity: 0;
  transform: translate3d(var(--from-tx), var(--from-ty), -160px) rotate(0deg) scale(.72);
}

.story-deck.is-deployed .story-thumb {
  transition-delay: var(--deploy-delay, 0ms);
}

.story-thumb-one { --deploy-delay: 80ms; }
.story-thumb-two { --deploy-delay: 180ms; }
.story-thumb-three { --deploy-delay: 280ms; }

.story-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-thumb span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 250, 241, .9);
  font-weight: 850;
}

.gallery-section {
  padding-bottom: clamp(84px, 12vw, 132px);
}

.dog-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc((min(var(--max), calc(100vw - var(--side) * 2)) - 100vw) / 2);
  overflow: hidden;
  padding: 12px 0 34px;
  --dog-shift: 0px;
  --marquee-glow-x: 50%;
}

.dog-marquee:hover {
  background: radial-gradient(circle at var(--marquee-glow-x) 46%, rgba(214, 164, 95, .18), transparent 28%);
}

.dog-marquee::before,
.dog-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: min(160px, 18vw);
  pointer-events: none;
}

.dog-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.dog-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), transparent);
}

.dog-track {
  display: flex;
  width: max-content;
  gap: 16px;
  transform: translate3d(var(--dog-shift), 0, 0);
  will-change: transform;
}

.dog-card {
  position: relative;
  flex: 0 0 clamp(230px, 24vw, 340px);
  height: clamp(330px, 38vw, 460px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
  box-shadow: 0 18px 48px rgba(47, 33, 22, .12);
  transform: translateY(var(--lift, 0px)) rotate(var(--tilt, 0deg));
  transition: transform .32s ease, box-shadow .32s ease;
}

.dog-card:hover {
  --lift: -10px;
  box-shadow: 0 30px 80px rgba(47, 33, 22, .24);
}

.dog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.035);
  transition: transform .5s ease, filter .5s ease;
}

.dog-card:hover img {
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.085);
}

.dog-card div {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(255, 250, 241, .28);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(36, 23, 15, .58);
  opacity: 0;
  transform: translateY(14px);
  backdrop-filter: blur(14px);
  transition: opacity .28s ease, transform .28s ease;
}

.dog-card:hover div {
  opacity: 1;
  transform: translateY(0);
}

.dog-card strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.dog-card span {
  color: rgba(255, 250, 241, .78);
  font-size: .92rem;
  font-weight: 750;
}

.portrait-marquee {
  padding-top: 26px;
  padding-bottom: 48px;
}

.portrait-marquee .dog-track {
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.dog-portrait {
  flex-basis: clamp(168px, 17vw, 238px);
  width: clamp(168px, 17vw, 238px);
  height: clamp(168px, 17vw, 238px);
  border: 8px solid rgba(255, 250, 241, .92);
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 18px 46px rgba(47, 33, 22, .16);
}

.dog-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, transparent 38%, rgba(36, 23, 15, .74));
  opacity: 0;
  transition: opacity .28s ease;
}

.dog-portrait:hover::after {
  opacity: 1;
}

.dog-portrait img {
  border-radius: 50%;
  transform: scale(1.18);
}

.dog-portrait .dog-noopy { object-position: 44% 34%; }
.dog-portrait .dog-truffe { object-position: 50% 30%; }
.dog-portrait .dog-armata { object-position: 52% 38%; }
.dog-portrait .dog-lapaye { object-position: 58% 56%; }
.dog-portrait .dog-aika { object-position: 40% 68%; }
.dog-portrait .dog-vroom { object-position: 25% 38%; }
.dog-portrait .dog-mishka { object-position: 72% 46%; }
.dog-portrait .dog-rikki { object-position: 42% 58%; }

.dog-portrait:hover img {
  transform: scale(1.28);
}

.dog-portrait div {
  inset: 50% auto auto 50%;
  z-index: 3;
  width: calc(100% - 22px);
  min-height: 0;
  justify-items: center;
  padding: 0;
  border: 0;
  color: var(--cream);
  background: transparent;
  text-align: center;
  transform: translate(-50%, -32%);
}

.dog-portrait:hover div {
  transform: translate(-50%, -50%);
}

.dog-portrait strong {
  font-size: clamp(1.1rem, 1.7vw, 1.48rem);
  text-shadow: 0 3px 12px rgba(0, 0, 0, .42);
}

.dog-portrait span {
  color: rgba(255, 250, 241, .86);
  text-shadow: 0 3px 12px rgba(0, 0, 0, .42);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 14px;
}

.photo-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}

.photo-grid figure.wide {
  grid-column: span 2;
}

.photo-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 250, 241, .86);
  font-weight: 850;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(420px, 1fr);
  width: min(var(--max), calc(100% - var(--side) * 2));
  min-height: 0;
  margin: 0 auto clamp(80px, 10vw, 120px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.contact-photo {
  min-height: 460px;
}

.contact-card {
  align-self: center;
  width: min(100%, 560px);
  padding: clamp(28px, 5vw, 54px);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.contact-details span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-details strong {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  min-height: 104px;
  resize: vertical;
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.site-footer {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px var(--side);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(47, 65, 43, .98), rgba(34, 54, 31, .96)),
    url("../backgrounds/bg-brique-lierre.png.webp") center / cover;
}

.site-footer p { margin: 0; color: rgba(255, 250, 241, .7); }
.site-footer div { display: flex; gap: 18px; color: rgba(255, 250, 241, .76); font-weight: 750; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .nav-links,
  .nav-cta { display: none; }

  .menu-toggle { display: block; }

  .nav-links.is-open {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: grid;
    padding: 10px;
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 250, 241, .96);
    box-shadow: var(--shadow);
  }

  .proof-strip,
  .service-grid,
  .stories-section,
  .stories-stage,
  .about-section,
  .house-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .stories-copy {
    max-width: 760px;
    justify-self: start;
  }

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

  .house-visual {
    min-height: 560px;
  }

  .hero-dog-stack {
    right: 40px;
    top: 23%;
    width: min(410px, 48vw);
    opacity: .9;
  }

  .modern-stories-stage {
    grid-template-columns: 1fr;
  }

  .story-deck {
    min-height: 620px;
  }

  .about-portrait {
    min-height: 430px;
  }

  .contact-section {
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .nav { min-height: 72px; }
  .brand-mark { width: 42px; height: 42px; }

  .hero {
    min-height: 88svh;
  }

  .hero-media img {
    object-position: 44% center;
  }

  .hero-inner {
    padding-top: 112px;
    padding-bottom: 260px;
  }

  h1 {
    font-size: clamp(4.2rem, 24vw, 6.8rem);
  }

  h2 {
    font-size: clamp(2.3rem, 14vw, 3.8rem);
  }

  .hero-acaced-badge {
    width: 118px;
    margin-left: 0;
  }

  .dog-marquee {
    margin-left: calc(var(--side) * -1);
  }

  .dog-card {
    flex-basis: 250px;
    height: 350px;
  }

  .hero-dog-stack {
    top: auto;
    right: 16px;
    bottom: 98px;
    width: min(330px, 82vw);
    height: 244px;
  }

  .hero-dog-one {
    right: 4%;
    width: 54%;
    height: 68%;
  }

  .hero-dog-two {
    width: 42%;
    height: 52%;
  }

  .hero-dog-three {
    width: 38%;
    height: 48%;
  }

  .hero-dog-four {
    left: 28%;
    top: 40%;
    width: 34%;
    height: 42%;
  }

  .taped-photo {
    border-width: 6px;
  }

  .taped-photo::before {
    width: 92px;
    height: 32px;
    top: -24px;
  }

  .taped-photo figcaption {
    font-size: .78rem;
  }

  .story-deck {
    min-height: 520px;
  }

  .story-main {
    width: min(300px, 72%);
  }

  .story-thumb {
    width: 118px;
  }

  .story-thumb-one {
    --tx: -114px;
    --ty: -42px;
  }

  .story-thumb-two {
    --tx: 116px;
    --ty: -30px;
  }

  .story-thumb-three {
    --tx: 96px;
    --ty: 146px;
  }

  .dog-portrait {
    flex-basis: 168px;
    width: 168px;
    height: 168px;
  }

  .about-portrait {
    min-height: 360px;
  }

  .contact-section {
    width: min(var(--max), calc(100% - var(--side) * 2));
  }

  .contact-photo {
    min-height: 320px;
  }

  .proof-strip,
  .service-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .house-visual {
    min-height: 500px;
  }

  .house-main {
    inset: 0 0 16% 0;
    width: 100%;
    height: 84%;
  }

  .house-secondary {
    width: 44%;
    height: 34%;
  }

  .visual-accent.ivy {
    display: none;
  }

  .service-card {
    min-height: auto;
  }

  .stories-section {
    padding-inline: var(--side);
  }

  .story-phone {
    width: min(100%, 330px);
  }

  .photo-grid {
    grid-auto-rows: 270px;
  }

  .photo-grid figure.wide {
    grid-column: auto;
  }

  .contact-details span,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer div {
    flex-wrap: wrap;
  }
}
