:root {
  --ink: #f7efe4;
  --muted: #cabca9;
  --paper: #12100e;
  --panel: #211b17;
  --line: #4b3d32;
  --accent: #c69255;
  --accent-dark: #9b6738;
  --sage: #4f6759;
  --soft-sage: #1e2a24;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --dark-band: #0b0a09;
  --warm-panel: #2d241e;
  --chip: #3a2d22;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #0e0c0b 0%, var(--paper) 44%, #17110e 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(17, 13, 11, 0.9);
  border-bottom: 1px solid rgba(198, 146, 85, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.24));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #f2dfc3;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand small {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.site-nav a {
  padding: 10px 10px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 44%, rgba(198, 146, 85, 0.24), transparent 36%),
    linear-gradient(120deg, #0b0a09 0%, #17120f 48%, #2b1f18 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.78) contrast(1.08) brightness(0.82);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.86) 0%, rgba(10, 8, 7, 0.68) 36%, rgba(10, 8, 7, 0.2) 68%, rgba(10, 8, 7, 0.48) 100%),
    linear-gradient(0deg, rgba(18, 16, 14, 0.88) 0%, rgba(18, 16, 14, 0) 54%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: 86px;
}

.hero-logo {
  width: min(240px, 58vw);
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  margin: 0 0 24px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.38));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c8ad;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3.6rem, 10vw, 8.6rem);
  letter-spacing: 0;
}

h2 {
  max-width: 860px;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.28rem;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.inline-cta {
  width: fit-content;
  color: #f0a66f;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 38px;
  width: min(330px, calc(100% - 36px));
  padding: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.hero-panel span {
  color: #f1c8ad;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 1.25rem;
}

.hero-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.conversion-strip {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--dark-band);
}

.conversion-strip div {
  display: grid;
  gap: 4px;
}

.conversion-strip span {
  color: #f1c8ad;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.conversion-strip strong {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
}

.conversion-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(66px, 10vw, 124px) clamp(18px, 5vw, 72px);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.strip-item {
  min-height: 210px;
  padding: 34px;
  background: var(--paper);
}

.strip-item span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 850;
}

.strip-item strong {
  display: block;
  margin-top: 44px;
  font-size: 1.18rem;
}

.strip-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
}

.portrait-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.portrait-card div {
  padding: 24px;
}

.portrait-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.admin {
  background: var(--soft-sage);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.admin-grid article {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-grid span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-grid strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
  line-height: 1.08;
}

.admin-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.method {
  background: var(--panel);
}

.breed {
  background: var(--soft-sage);
}

.info-grid,
.parent-grid,
.timeline,
.step-grid {
  display: grid;
  gap: 18px;
}

.info-grid,
.timeline,
.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.parent-card,
.timeline article,
.step-grid article {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-card,
.timeline article,
.step-grid article {
  padding: 26px;
}

.info-card span,
.timeline span,
.step-grid span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 0 11px;
  color: var(--accent);
  background: var(--chip);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.timeline span,
.step-grid span {
  min-width: 34px;
  padding: 0;
}

.info-card h3,
.timeline h3,
.step-grid h3 {
  margin-bottom: 12px;
}

.info-card p,
.parent-card p,
.timeline p,
.step-grid p,
.faq-list p {
  color: var(--muted);
}

.parents {
  background: var(--paper);
}

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

.parent-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
}

.parent-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.parent-card > div {
  padding: 30px;
}

.parent-card .eyebrow {
  margin-bottom: 10px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 999px;
}

.health {
  color: #fff;
  background: var(--dark-band);
}

.health .eyebrow {
  color: #f1c8ad;
}

.health .section-heading p,
.health .timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.timeline span {
  color: #fff;
  background: var(--accent);
}

.puppies {
  background: var(--panel);
}

.puppy-grid,
.price-grid,
.law-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.puppy-card,
.price-card,
.law-grid article {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.litter-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 22px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.litter-notice h3 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.litter-notice p {
  max-width: 760px;
  color: var(--muted);
}

.puppy-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.puppy-body {
  padding: 22px;
}

.status {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.available {
  color: #d7f5df;
  background: #1d4a2e;
}

.reserved {
  color: #ffe0b4;
  background: #5a351d;
}

.option {
  color: #d6e6ff;
  background: #273e5c;
}

.puppy-body p,
.price-card p,
.law-grid p {
  color: var(--muted);
}

dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
}

.pricing {
  background: var(--soft-sage);
}

.booking {
  background: var(--panel);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.booking-form,
.booking-panel,
.mini-faq-box {
  padding: 28px;
  background: var(--warm-panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-form label:nth-of-type(5),
.booking-form label:nth-of-type(6),
.booking-actions,
.booking-form .form-note {
  grid-column: 1 / -1;
}

.booking-panel span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.booking-panel h3 {
  margin-top: 12px;
}

.booking-panel p {
  color: var(--muted);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.adoption {
  background: var(--panel);
}

.children {
  background: var(--paper);
}

.children-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.children-copy {
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.children-copy p {
  color: var(--muted);
}

.children-groups {
  display: grid;
  gap: 24px;
}

.children-group {
  display: grid;
  gap: 14px;
}

.children-group-heading {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.children-group-heading span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.children-group-heading h3 {
  margin-top: 10px;
}

.children-group-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.children-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.children-gallery article {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.children-gallery img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  background: var(--warm-panel);
}

.children-gallery strong,
.children-gallery p {
  display: block;
  margin: 0;
  padding: 0 18px;
}

.children-gallery strong {
  padding-top: 18px;
}

.children-gallery p {
  padding-bottom: 18px;
  color: var(--muted);
}

.price-card {
  padding: 28px;
}

.price-card.featured {
  color: #fff;
  background: var(--sage);
  border-color: var(--sage);
}

.price-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-card.featured span,
.price-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.price-card h3 {
  margin-top: 16px;
  font-size: 1.7rem;
}

.price-tax {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 850;
}

.price-card.featured .price-tax {
  color: #fff;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.price-card li {
  padding-top: 10px;
  border-top: 1px solid rgba(108, 103, 95, 0.2);
}

.price-card.featured li {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.reservation-callout {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reservation-callout h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

.reservation-callout p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.law {
  background: var(--panel);
}

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

.law-grid article {
  padding: 24px;
  background: var(--warm-panel);
}

.law-grid h3 {
  min-height: 58px;
  font-size: 1.08rem;
}

.source-box {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 24px;
  background: var(--dark-band);
  border-radius: 8px;
  color: #fff;
}

.source-box h3 {
  margin-bottom: 4px;
}

.source-box a {
  width: fit-content;
  color: #f1c8ad;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mini-faq {
  background: var(--soft-sage);
}

.mini-faq-box {
  display: grid;
  gap: 16px;
}

.mini-faq-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-faq-prompts button {
  padding: 9px 12px;
  color: #f0a66f;
  background: var(--chip);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.mini-faq-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.mini-faq-answer {
  margin: 0;
  padding: 16px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.material-page {
  padding-top: 76px;
}

.material-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.54fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  min-height: 560px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.88), rgba(33, 27, 23, 0.78)),
    url("assets/photo-accueil.jpg") center / cover;
}

.material-hero h1 {
  max-width: 920px;
}

.material-hero .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.material-note,
.checklist-panel {
  padding: 28px;
  background: var(--warm-panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.material-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  text-transform: uppercase;
}

.material-note p {
  margin: 0;
  color: var(--muted);
}

.material-section {
  background: var(--panel);
}

.material-section:nth-of-type(3) {
  background: var(--soft-sage);
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.recommendation-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  padding: 26px;
  background: var(--warm-panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.recommendation-card.featured {
  background: var(--sage);
  border-color: rgba(255, 255, 255, 0.16);
}

.recommendation-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.recommendation-card.featured span,
.recommendation-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.recommendation-card p {
  color: var(--muted);
}

.recommendation-card .button {
  align-self: end;
  margin-top: 6px;
}

.material-checklist {
  background: var(--paper);
}

.checklist-panel {
  max-width: 980px;
}

.faq {
  background: var(--soft-sage);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  background: var(--paper);
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-details a,
.contact-details span {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.hidden-field {
  display: none;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--warm-panel);
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(176, 100, 55, 0.26);
  border-color: var(--accent);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #9bb8a4;
  font-weight: 750;
}

.site-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--dark-band);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #f1c8ad;
}

.sticky-contact {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sticky-contact a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  color: #fff;
  background: var(--dark-band);
  font-size: 0.88rem;
  font-weight: 850;
}

.sticky-contact a + a {
  background: var(--accent);
}

.site-tools {
  position: fixed;
  z-index: 35;
  right: 18px;
  bottom: 78px;
  display: grid;
  gap: 10px;
}

.tool-button {
  display: inline-flex;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #fff;
  background: var(--sage);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.chat-open {
  background: var(--accent);
}

.chatbox {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 138px;
  width: min(380px, calc(100vw - 36px));
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.chatbox.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chatbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: #fff;
  background: var(--dark-band);
}

.chatbox-header strong,
.chatbox-header span {
  display: block;
}

.chatbox-header span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.chatbox-header button {
  width: 34px;
  height: 34px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-size: 1.2rem;
  cursor: pointer;
}

.chatbox-messages {
  display: grid;
  max-height: 280px;
  gap: 10px;
  overflow: auto;
  padding: 16px;
  background: var(--warm-panel);
}

.bot-message,
.user-message {
  width: fit-content;
  max-width: 92%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.bot-message {
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
}

.user-message {
  justify-self: end;
  color: #fff;
  background: var(--accent);
}

.chatbox-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 0;
  background: var(--panel);
}

.chatbox-quick button {
  padding: 8px 10px;
  color: #f0a66f;
  background: var(--chip);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.chatbox-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 16px 16px;
}

.chatbox-form input {
  min-width: 0;
}

.chatbox-form button {
  padding: 0 12px;
  color: #fff;
  background: var(--dark-band);
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(17, 13, 11, 0.97);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .intro-strip,
  .split,
  .contact,
  .booking-layout,
  .booking-form,
  .material-hero,
  .recommendation-grid,
  .admin-grid,
  .puppy-grid,
  .litter-notice,
  .price-grid,
  .law-grid,
  .info-grid,
  .parent-grid,
  .timeline,
  .step-grid,
  .children-layout,
  .children-gallery {
    grid-template-columns: 1fr;
  }

  .parent-card {
    grid-template-columns: 1fr;
  }

  .parent-card img {
    min-height: 320px;
  }

  .strip-item {
    min-height: auto;
  }

  .strip-item strong {
    margin-top: 20px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-bottom: 190px;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    bottom: 28px;
    width: auto;
  }

  .conversion-strip,
  .reservation-callout {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .hero {
    min-height: 760px;
    padding: 104px 18px 30px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  .hero-actions,
  .site-footer,
  .sticky-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .conversion-strip .button {
    width: 100%;
  }

  .booking-actions,
  .mini-faq-form {
    grid-template-columns: 1fr;
  }

  .sticky-contact {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .site-tools {
    right: 12px;
    bottom: 126px;
    grid-template-columns: repeat(2, auto);
  }

  .chatbox {
    right: 12px;
    bottom: 190px;
    width: calc(100vw - 24px);
  }

  .section {
    padding: 58px 18px;
  }

  .intro-strip {
    padding: 0;
  }

  .strip-item,
  .admin-grid article,
  .children-copy,
  .contact-form,
  .price-card,
  .law-grid article,
  .info-card,
  .timeline article,
  .step-grid article,
  .parent-card > div {
    padding: 22px;
  }

  .portrait-card img {
    height: 320px;
  }

  dl div {
    display: grid;
  }

  dd {
    text-align: left;
  }
}
