:root {
  --lqhc-primary: #9f4147;
  --lqhc-primary-dark: #7f3038;
  --lqhc-ink: #2e3d43;
  --lqhc-ink-deep: #202d32;
  --lqhc-sage: #647765;
  --lqhc-cream: #f4f0ea;
  --lqhc-blush: #f2dfdc;
  --lqhc-white: #fff;
  --lqhc-muted: #647077;
  --lqhc-radius: 28px;
  --lqhc-shadow: 0 22px 70px rgba(46, 61, 67, .11);
  --lqhc-serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --lqhc-sans: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #e9e5df;
  color: var(--lqhc-ink);
  font-family: var(--lqhc-sans);
  font-size: 17px;
  line-height: 1.7;
  text-wrap: pretty;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
  color: var(--lqhc-ink);
  font-family: var(--lqhc-serif);
  font-weight: 600;
  letter-spacing: -.015em;
}

a {
  text-underline-offset: .18em;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  letter-spacing: -.01em;
  min-height: 50px;
  padding: .78rem 1.35rem;
}

.btn-lg {
  min-height: 58px;
  padding: .92rem 1.6rem;
}

.btn-primary {
  --bs-btn-bg: var(--lqhc-primary);
  --bs-btn-border-color: var(--lqhc-primary);
  --bs-btn-hover-bg: var(--lqhc-primary-dark);
  --bs-btn-hover-border-color: var(--lqhc-primary-dark);
  --bs-btn-active-bg: var(--lqhc-primary-dark);
  --bs-btn-active-border-color: var(--lqhc-primary-dark);
}

.lqhc-stage-note {
  background: var(--lqhc-ink-deep);
  color: rgba(255, 255, 255, .8);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .32rem 1rem;
  text-align: center;
  text-transform: uppercase;
}

.lqhc-header {
  background: rgba(255, 255, 255, .95);
  border: 0;
  box-shadow: 0 1px 0 rgba(46, 61, 67, .1);
  backdrop-filter: blur(14px);
}

.lqhc-header .navbar {
  min-height: 88px;
  padding: 0;
}

.lqhc-nav-wrap {
  gap: 1.5rem;
  max-width: 1510px;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
}

.lqhc-brand {
  align-items: center;
  color: var(--lqhc-ink);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--lqhc-sans);
  gap: .75rem;
  text-decoration: none;
}

.lqhc-brand:hover {
  color: var(--lqhc-primary);
}

.lqhc-brand-mark {
  align-items: center;
  background: var(--lqhc-primary);
  border-radius: 50% 50% 50% 16%;
  color: #fff;
  display: inline-flex;
  font-size: 1rem;
  height: 44px;
  justify-content: center;
  margin: 0;
  transform: rotate(-4deg);
  width: 44px;
}

.lqhc-brand-mark i {
  transform: rotate(4deg);
}

.lqhc-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.lqhc-brand-copy strong {
  font-family: var(--lqhc-serif);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  letter-spacing: -.02em;
}

.lqhc-brand-copy small {
  color: var(--lqhc-muted);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
  margin-top: .28rem;
  text-transform: uppercase;
}

.lqhc-header .nav-link {
  border-radius: 999px;
  color: var(--lqhc-ink);
  font-size: .91rem;
  font-weight: 750;
  padding: .58rem .8rem !important;
}

.lqhc-header .nav-link:hover,
.lqhc-header .nav-link:focus,
.lqhc-header .current-menu-item .nav-link {
  background: var(--lqhc-cream);
  color: var(--lqhc-primary);
}

.lqhc-btn-phone {
  background: var(--lqhc-ink);
  color: #fff;
  gap: .55rem;
}

.lqhc-btn-phone:hover {
  background: var(--lqhc-primary);
  color: #fff;
}

.lqhc-main {
  padding-bottom: 18px;
}

.lqhc-rounded-section {
  border-radius: var(--lqhc-radius);
  margin: 18px 18px 0;
  overflow: hidden;
}

.lqhc-home-hero {
  align-items: center;
  background-color: var(--lqhc-ink);
  color: #fff;
  display: flex;
  min-height: min(760px, calc(100vh - 110px));
  position: relative;
}

.lqhc-home-hero::before {
  background: linear-gradient(90deg, rgba(31, 43, 49, .99) 0%, rgba(31, 43, 49, .95) 35%, rgba(31, 43, 49, .58) 61%, rgba(31, 43, 49, .1) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.lqhc-hero-photo {
  height: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 64%;
  z-index: 0;
}

.lqhc-hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  width: 100%;
}

.lqhc-home-hero::after {
  background: radial-gradient(circle, rgba(255, 255, 255, .16) 0 1px, transparent 1.8px);
  background-size: 15px 15px;
  bottom: 2.25rem;
  content: "";
  height: 84px;
  opacity: .45;
  position: absolute;
  right: 2.25rem;
  width: 126px;
  z-index: 2;
}

.lqhc-home-hero .container {
  position: relative;
  width: 100%;
  z-index: 3;
}

.lqhc-hero-content {
  max-width: 740px;
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}

.lqhc-kicker {
  color: var(--lqhc-primary);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .13em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.lqhc-home-hero h1 {
  color: #fff;
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
  letter-spacing: 0;
  line-height: 1.01;
  margin: 0 0 1.7rem;
  max-width: 10.5ch;
  text-shadow: 0 8px 34px rgba(0, 0, 0, .2);
}

.lqhc-hero-lead {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  letter-spacing: .006em;
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 640px;
}

.lqhc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.4rem;
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
}

.lqhc-hero-meta li {
  align-items: center;
  color: rgba(255, 255, 255, .78);
  display: flex;
  font-size: .88rem;
  font-weight: 700;
  gap: .5rem;
}

.lqhc-hero-meta i {
  color: #e7b8ad;
}

.lqhc-hero-note {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 20px;
  bottom: 2.2rem;
  box-shadow: 0 18px 50px rgba(24, 33, 37, .22);
  color: var(--lqhc-ink);
  display: flex;
  gap: .9rem;
  max-width: 330px;
  padding: 1rem 1.1rem;
  position: absolute;
  right: .75rem;
}

.lqhc-note-icon {
  align-items: center;
  background: var(--lqhc-primary);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.lqhc-hero-note strong,
.lqhc-hero-note div > span {
  display: block;
}

.lqhc-hero-note strong {
  font-family: var(--lqhc-serif);
  font-size: 1.1rem;
  line-height: 1.2;
}

.lqhc-hero-note div > span {
  color: var(--lqhc-muted);
  font-size: .78rem;
  line-height: 1.35;
  margin-top: .2rem;
}

.lqhc-intro-strip {
  background: #fff;
  margin: 0;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.lqhc-intro-strip h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.05;
  margin: 0;
  max-width: 21ch;
}

.lqhc-text-link {
  align-items: center;
  color: var(--lqhc-ink);
  display: inline-flex;
  font-weight: 800;
  gap: .65rem;
  text-decoration: none;
}

.lqhc-text-link i {
  color: var(--lqhc-primary);
  transition: transform .2s ease;
}

.lqhc-text-link:hover {
  color: var(--lqhc-primary);
}

.lqhc-text-link:hover i {
  transform: translateX(4px);
}

.lqhc-problems,
.lqhc-services,
.lqhc-field,
.lqhc-zone,
.lqhc-faq {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.lqhc-problems {
  background:
    radial-gradient(circle at 90% 0, rgba(159, 65, 71, .08), transparent 32rem),
    linear-gradient(135deg, #f7e8e4, #f5ede7);
}

.lqhc-section-title {
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  line-height: .98;
  margin-bottom: 1.2rem;
  max-width: 14ch;
}

.lqhc-section-copy {
  color: var(--lqhc-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.lqhc-inner-intro strong,
.lqhc-rich-copy p strong,
.lqhc-section-copy strong {
  color: var(--lqhc-ink);
  font-weight: 750;
}

.lqhc-problem-card {
  align-items: center;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(46, 61, 67, .08);
  border-radius: 18px;
  color: var(--lqhc-ink);
  display: flex;
  gap: 1rem;
  height: 100%;
  min-height: 132px;
  padding: 1.2rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.lqhc-problem-card:hover {
  background: #fff;
  box-shadow: 0 18px 40px rgba(46, 61, 67, .09);
  color: var(--lqhc-ink);
  transform: translateY(-4px);
}

.lqhc-card-icon {
  align-items: center;
  background: var(--lqhc-ink);
  border-radius: 50% 50% 50% 13px;
  color: #fff;
  display: flex;
  flex: 0 0 auto;
  font-size: 1.05rem;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.lqhc-problem-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.lqhc-problem-copy strong {
  font-family: var(--lqhc-serif);
  font-size: 1.22rem;
  letter-spacing: -.02em;
}

.lqhc-problem-copy small {
  color: var(--lqhc-muted);
  font-size: .82rem;
  line-height: 1.45;
  margin-top: .25rem;
}

.lqhc-card-arrow {
  color: var(--lqhc-primary);
  font-size: .82rem;
}

.lqhc-services {
  background: #fff;
}

.lqhc-seo-explainer {
  background: var(--lqhc-cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.lqhc-explainer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lqhc-explainer-grid article {
  background: #fff;
  border: 1px solid rgba(46, 61, 67, .08);
  border-radius: 22px;
  padding: 1.5rem;
}

.lqhc-explainer-grid article > span {
  color: var(--lqhc-primary);
  font-family: var(--lqhc-serif);
  font-size: 1.15rem;
  font-weight: 700;
}

.lqhc-explainer-grid h3 {
  font-size: 1.45rem;
  line-height: 1.15;
  margin: .8rem 0;
}

.lqhc-explainer-grid p {
  color: var(--lqhc-muted);
  line-height: 1.65;
}

.lqhc-centered-heading {
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  max-width: 820px;
  text-align: center;
}

.lqhc-centered-heading .lqhc-section-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 16ch;
}

.lqhc-centered-heading > p:last-child {
  color: var(--lqhc-muted);
  margin: 0 auto;
  max-width: 650px;
}

.lqhc-service-card {
  background: var(--lqhc-cream);
  border: 0;
  border-radius: 22px;
  box-shadow: none;
  height: 100%;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.lqhc-service-card:hover {
  box-shadow: var(--lqhc-shadow);
  transform: translateY(-6px);
}

.lqhc-service-image {
  display: block;
  height: 290px;
  overflow: hidden;
  position: relative;
}

.lqhc-service-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  width: 100%;
}

.lqhc-service-card:hover .lqhc-service-image img {
  transform: scale(1.035);
}

.lqhc-service-image > span {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  bottom: 1rem;
  color: var(--lqhc-primary);
  display: flex;
  font-family: var(--lqhc-serif);
  font-size: 1.15rem;
  height: 52px;
  justify-content: center;
  position: absolute;
  right: 1rem;
  width: 52px;
}

.lqhc-service-body {
  padding: 1.7rem 1.7rem 1.9rem;
}

.lqhc-card-label {
  color: var(--lqhc-primary);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
  margin-bottom: .6rem;
  text-transform: uppercase;
}

.lqhc-service-body h3 {
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: .85rem;
}

.lqhc-service-body h3 a {
  color: var(--lqhc-ink);
  text-decoration: none;
}

.lqhc-service-body > p:not(.lqhc-card-label) {
  color: var(--lqhc-muted);
  min-height: 87px;
}

.lqhc-about {
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, .12), transparent 24rem),
    var(--lqhc-primary);
  color: rgba(255, 255, 255, .8);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.lqhc-about-photo {
  margin: 0 auto;
  max-width: 520px;
  position: relative;
}

.lqhc-about-photo img {
  aspect-ratio: 1 / 1;
  border: 10px solid rgba(255, 255, 255, .14);
  border-radius: 48% 48% 48% 18%;
  box-shadow: 0 26px 65px rgba(70, 18, 24, .28);
  object-fit: cover;
  width: 100%;
}

.lqhc-about-photo span {
  background: #fff;
  border-radius: 999px;
  bottom: 1.2rem;
  color: var(--lqhc-ink);
  font-size: .8rem;
  font-weight: 800;
  left: 50%;
  padding: .68rem 1rem;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}

.lqhc-about-photo span i {
  color: var(--lqhc-primary);
  margin-right: .35rem;
}

.lqhc-about .lqhc-section-title {
  max-width: 12ch;
}

.lqhc-about-lead {
  color: #fff;
  font-family: var(--lqhc-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.45;
}

.lqhc-proof-strip {
  background: var(--lqhc-ink);
  color: rgba(255, 255, 255, .75);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.lqhc-proof-strip .lqhc-section-title {
  font-size: clamp(2.35rem, 5vw, 4.35rem);
}

.lqhc-proof-strip p:not(.lqhc-kicker) {
  font-size: 1.06rem;
  line-height: 1.75;
  max-width: 760px;
}

.lqhc-rating-card {
  align-items: center;
  background: #fff;
  border-radius: 26px;
  color: var(--lqhc-ink);
  display: flex;
  flex-direction: column;
  padding: 2.2rem 1.5rem;
  text-align: center;
}

.lqhc-rating-score {
  color: var(--lqhc-primary);
  font-family: var(--lqhc-serif);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700;
  line-height: .9;
}

.lqhc-rating-score small {
  font-size: .36em;
}

.lqhc-rating-stars {
  color: #d89735;
  font-size: 1.45rem;
  letter-spacing: .12em;
  margin: 1rem 0 .6rem;
}

.lqhc-rating-card > small {
  color: var(--lqhc-muted);
  margin-top: .35rem;
}

.lqhc-field {
  background: #fff;
}

.lqhc-field-collage {
  min-height: 570px;
  position: relative;
}

.lqhc-field-main {
  border-radius: 24px;
  height: 520px;
  object-fit: cover;
  width: 78%;
}

.lqhc-field-small {
  border: 10px solid #fff;
  border-radius: 22px;
  bottom: 0;
  height: 235px;
  object-fit: cover;
  position: absolute;
  right: 0;
  width: 50%;
}

.lqhc-check-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.lqhc-check-list li {
  align-items: center;
  border-bottom: 1px solid rgba(46, 61, 67, .12);
  display: flex;
  font-weight: 750;
  gap: .8rem;
  padding: .8rem 0;
}

.lqhc-check-list i {
  align-items: center;
  background: var(--lqhc-blush);
  border-radius: 50%;
  color: var(--lqhc-primary);
  display: flex;
  font-size: .7rem;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.lqhc-process {
  background:
    radial-gradient(circle at 12% 100%, rgba(159, 65, 71, .42), transparent 30rem),
    var(--lqhc-ink-deep);
  color: rgba(255, 255, 255, .76);
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.lqhc-steps {
  counter-reset: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lqhc-steps li {
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  gap: 1.25rem;
  padding: 1.35rem 0;
}

.lqhc-steps li:first-child {
  padding-top: 0;
}

.lqhc-steps > li > span {
  color: #e7b8ad;
  flex: 0 0 54px;
  font-family: var(--lqhc-serif);
  font-size: 1.55rem;
}

.lqhc-steps strong,
.lqhc-steps small {
  display: block;
}

.lqhc-steps strong {
  color: #fff;
  font-family: var(--lqhc-serif);
  font-size: 1.35rem;
  letter-spacing: -.02em;
}

.lqhc-steps small {
  color: rgba(255, 255, 255, .58);
  font-size: .9rem;
  margin-top: .2rem;
}

.lqhc-zone {
  background: linear-gradient(135deg, #f4f0ea 0%, #e8eee8 100%);
}

.lqhc-service-map-shell {
  background: #fff;
  border: 1px solid rgba(46, 61, 67, .1);
  border-radius: 28px;
  box-shadow: var(--lqhc-shadow);
  overflow: hidden;
}

.lqhc-service-map {
  background: #dfe7df;
  height: 360px;
  isolation: isolate;
  position: relative;
  width: 100%;
  z-index: 0;
}

.lqhc-service-map > p {
  color: var(--lqhc-muted);
  margin: 0;
  padding: 2rem;
}

.lqhc-service-map-caption {
  align-items: flex-start;
  display: flex;
  gap: .9rem;
  padding: 1.2rem 1.35rem 1.35rem;
}

.lqhc-service-map-caption-icon {
  align-items: center;
  background: var(--lqhc-primary);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 2.6rem;
  height: 2.6rem;
  justify-content: center;
}

.lqhc-service-map-caption strong,
.lqhc-service-map-caption div > span {
  display: block;
}

.lqhc-service-map-caption strong {
  color: var(--lqhc-ink);
  font-family: var(--lqhc-serif);
  font-size: 1.12rem;
  line-height: 1.25;
}

.lqhc-service-map-caption div > span {
  color: var(--lqhc-muted);
  font-size: .86rem;
  line-height: 1.45;
  margin-top: .3rem;
}

.lqhc-service-map .leaflet-control-attribution {
  font-size: .62rem;
}

.lqhc-service-map .leaflet-tooltip {
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(27, 49, 50, .14);
  color: var(--lqhc-ink);
  font-family: var(--lqhc-sans);
  font-size: .72rem;
  font-weight: 800;
  padding: .38rem .65rem;
}

.lqhc-contact-map-section {
  border-top: 1px solid rgba(46, 61, 67, .12);
  margin-top: 3.2rem;
  padding-top: 3.2rem;
}

.lqhc-contact-map-heading {
  margin-bottom: 1.5rem;
}

.lqhc-contact-map-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  max-width: 22ch;
}

.lqhc-contact-map-heading > p:last-child {
  color: var(--lqhc-muted);
  max-width: 65ch;
}

.lqhc-faq {
  background: #fff;
}

.lqhc-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(46, 61, 67, .14);
}

.lqhc-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  color: var(--lqhc-ink);
  font-family: var(--lqhc-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  padding: 1.35rem 0;
}

.lqhc-accordion .accordion-button:not(.collapsed) {
  color: var(--lqhc-primary);
}

.lqhc-accordion .accordion-button::after {
  background-size: 1rem;
}

.lqhc-accordion .accordion-body {
  color: var(--lqhc-muted);
  padding: 0 2.5rem 1.4rem 0;
}

.lqhc-final-cta {
  background:
    radial-gradient(circle at 95% 0, rgba(255, 255, 255, .12), transparent 24rem),
    var(--lqhc-primary);
  color: rgba(255, 255, 255, .78);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.lqhc-final-cta h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .98;
  margin-bottom: 1.2rem;
  max-width: 14ch;
}

.lqhc-final-cta p {
  margin-bottom: 0;
  max-width: 720px;
}

.lqhc-footer {
  background: var(--lqhc-ink-deep);
  color: rgba(255, 255, 255, .62);
  padding: 4.5rem 0 1.5rem;
}

.lqhc-footer .lqhc-brand {
  color: #fff;
}

.lqhc-footer a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.lqhc-footer a:hover {
  color: #fff;
}

.lqhc-footer h2 {
  color: #fff;
}

.lqhc-mobile-call {
  align-items: center;
  background: var(--lqhc-primary);
  border: 2px solid #fff;
  border-radius: 999px;
  bottom: 1rem;
  box-shadow: 0 12px 36px rgba(46, 18, 22, .3);
  color: #fff;
  display: none;
  font-size: .86rem;
  font-weight: 800;
  gap: .55rem;
  left: 50%;
  min-height: 52px;
  padding: .7rem 1.2rem;
  position: fixed;
  text-decoration: none;
  transform: translateX(-50%);
  z-index: 1040;
}

.lqhc-mobile-call:hover {
  color: #fff;
}

.lqhc-page-hero {
  background: linear-gradient(135deg, var(--lqhc-ink), #3d4d53);
  color: rgba(255, 255, 255, .72);
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.lqhc-page-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .95;
  max-width: 13ch;
}

.lqhc-page-content {
  background: #fff;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.lqhc-page-content .entry-content {
  font-size: 1.06rem;
  max-width: 850px;
}

.lqhc-page-content .entry-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 2.2rem 0 1rem;
}

.lqhc-inner-hero {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, .11), transparent 30%),
    linear-gradient(135deg, var(--lqhc-ink-deep), #3b4d54);
  color: rgba(255, 255, 255, .78);
  overflow: hidden;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.lqhc-inner-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 5vw, 5.2rem);
  letter-spacing: 0;
  line-height: 1.05;
  max-width: 15ch;
}

.lqhc-inner-lead {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  letter-spacing: .006em;
  line-height: 1.65;
  margin: 1.5rem 0 2rem;
  max-width: 660px;
}

.lqhc-inner-visual {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 34% 66% 48% 52% / 43% 35% 65% 57%;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .22);
  height: clamp(340px, 42vw, 540px);
  overflow: hidden;
  padding: .7rem;
  transform: rotate(2deg);
}

.lqhc-inner-visual img {
  border-radius: inherit;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lqhc-page-education-canine-dordogne .lqhc-inner-visual img {
  object-position: 78% center;
}

.lqhc-page-education-canine-dordogne h1 {
  font-size: clamp(3rem, 4.2vw, 4.5rem);
  line-height: 1.13;
  max-width: 18ch;
  text-wrap: balance;
}

.lqhc-inner-content {
  background: var(--lqhc-cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.lqhc-inner-intro {
  color: var(--lqhc-muted);
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 780px;
}

.lqhc-detail-card {
  background: #fff;
  border: 1px solid rgba(46, 61, 67, .08);
  border-radius: 22px;
  height: 100%;
  padding: 1.6rem;
}

.lqhc-detail-card h3 {
  font-size: 1.42rem;
  margin: 1.1rem 0 .55rem;
}

.lqhc-detail-card p {
  color: var(--lqhc-muted);
  line-height: 1.65;
  margin: 0;
}

.lqhc-contact-form-section {
  background:
    radial-gradient(circle at 100% 0, rgba(159, 65, 71, .1), transparent 20rem),
    #fff;
  border: 1px solid rgba(46, 61, 67, .1);
  border-radius: 28px;
  box-shadow: var(--lqhc-shadow);
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  padding: clamp(1.6rem, 4vw, 3rem);
  position: relative;
}

.lqhc-contact-form-heading {
  margin-bottom: 2rem;
  max-width: 680px;
}

.lqhc-contact-form-heading h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 0 0 .8rem;
}

.lqhc-contact-form-heading > p:last-child {
  color: var(--lqhc-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.lqhc-contact-form-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lqhc-form-field-full {
  grid-column: 1 / -1;
}

.lqhc-form-field label {
  color: var(--lqhc-ink);
  display: block;
  font-weight: 750;
  margin-bottom: .55rem;
}

.lqhc-form-field label span,
.lqhc-form-consent span span {
  color: var(--lqhc-primary);
}

.lqhc-form-field label small {
  color: var(--lqhc-muted);
  font-weight: 500;
}

.lqhc-form-field input,
.lqhc-form-field select,
.lqhc-form-field textarea {
  background: #fcfaf8;
  border: 1px solid rgba(46, 61, 67, .2);
  border-radius: 14px;
  color: var(--lqhc-ink);
  font: inherit;
  min-height: 54px;
  padding: .9rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  width: 100%;
}

.lqhc-form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.lqhc-form-field input:focus,
.lqhc-form-field select:focus,
.lqhc-form-field textarea:focus {
  background: #fff;
  border-color: var(--lqhc-primary);
  box-shadow: 0 0 0 4px rgba(159, 65, 71, .12);
  outline: 0;
}

.lqhc-form-consent {
  align-items: flex-start;
  color: var(--lqhc-muted);
  display: flex;
  font-size: .92rem;
  gap: .75rem;
  line-height: 1.55;
  margin: 1.4rem 0;
}

.lqhc-form-consent input {
  accent-color: var(--lqhc-primary);
  flex: 0 0 auto;
  height: 18px;
  margin-top: .2rem;
  width: 18px;
}

.lqhc-form-submit {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.lqhc-form-submit small {
  color: var(--lqhc-muted);
}

.lqhc-form-alert {
  align-items: center;
  border-radius: 14px;
  display: flex;
  font-weight: 700;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
}

.lqhc-form-alert-success {
  background: #e8f4eb;
  color: #245b33;
}

.lqhc-form-alert-error {
  background: #fae9e8;
  color: #842f35;
}

.lqhc-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.lqhc-side-card {
  background: var(--lqhc-primary);
  border-radius: 26px;
  box-shadow: var(--lqhc-shadow);
  color: rgba(255, 255, 255, .82);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  position: sticky;
  top: 112px;
}

.lqhc-side-card .lqhc-card-icon {
  background: rgba(255, 255, 255, .14);
}

.lqhc-side-card h2 {
  color: #fff;
  font-size: 2rem;
  margin: 1.35rem 0 .8rem;
}

.lqhc-side-card p {
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.lqhc-editor-content {
  border-top: 1px solid rgba(46, 61, 67, .12);
  padding-top: 2rem;
}

.lqhc-content-nav {
  background:
    radial-gradient(circle at 100% 0, rgba(159, 65, 71, .1), transparent 18rem),
    linear-gradient(135deg, #fff, #faf6f2);
  border: 2px solid rgba(159, 65, 71, .17);
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(46, 61, 67, .08);
  margin-top: 3.5rem;
  overflow: hidden;
  padding: 1.8rem;
  position: relative;
}

.lqhc-content-nav::before {
  background: var(--lqhc-primary);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 6px;
}

.lqhc-content-nav-heading {
  align-items: center;
  border-bottom: 1px solid rgba(46, 61, 67, .1);
  display: flex;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
}

.lqhc-content-nav-icon {
  align-items: center;
  background: var(--lqhc-primary);
  border-radius: 16px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 48px;
  font-size: 1.05rem;
  height: 48px;
  justify-content: center;
}

.lqhc-content-nav-heading small {
  color: var(--lqhc-primary);
  display: block;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .13em;
  margin-bottom: .18rem;
  text-transform: uppercase;
}

.lqhc-content-nav-heading strong {
  color: var(--lqhc-ink);
  display: block;
  font-family: var(--lqhc-serif);
  font-size: 1.55rem;
  letter-spacing: -.01em;
  line-height: 1.2;
}

.lqhc-content-nav ul {
  counter-reset: lqhc-toc;
  display: grid;
  gap: .7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.lqhc-content-nav li {
  counter-increment: lqhc-toc;
}

.lqhc-content-nav a {
  align-items: center;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(46, 61, 67, .09);
  border-radius: 14px;
  color: var(--lqhc-ink);
  display: flex;
  font-size: .95rem;
  font-weight: 700;
  gap: .8rem;
  height: 100%;
  line-height: 1.4;
  padding: .85rem 1rem;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.lqhc-content-nav a::before {
  color: var(--lqhc-primary);
  content: counter(lqhc-toc, decimal-leading-zero);
  flex: 0 0 auto;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .06em;
}

.lqhc-content-nav a:hover {
  border-color: rgba(159, 65, 71, .35);
  box-shadow: 0 10px 24px rgba(46, 61, 67, .08);
  color: var(--lqhc-primary);
  transform: translateY(-2px);
}

.lqhc-rich-copy {
  margin-top: 1.5rem;
}

.lqhc-copy-section {
  border-top: 1px solid rgba(46, 61, 67, .13);
  padding: clamp(3rem, 6vw, 5rem) 0;
  scroll-margin-top: 120px;
}

.lqhc-copy-section:first-child {
  border-top: 0;
}

.lqhc-copy-section h2,
.lqhc-page-faq > h2,
.lqhc-related > h2 {
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 19ch;
}

.lqhc-copy-section > p:not(.lqhc-kicker):not(.lqhc-source-link) {
  color: #46565d;
  font-size: 1.06rem;
  line-height: 1.78;
  max-width: 760px;
}

.lqhc-copy-list {
  display: grid;
  gap: .8rem;
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
}

.lqhc-copy-list li {
  align-items: flex-start;
  background: rgba(255, 255, 255, .72);
  border-radius: 14px;
  color: var(--lqhc-ink);
  display: flex;
  gap: .85rem;
  line-height: 1.55;
  padding: .85rem 1rem;
}

.lqhc-copy-list i {
  color: var(--lqhc-primary);
  margin-top: .3rem;
}

.lqhc-source-link {
  align-items: center;
  background: var(--lqhc-blush);
  border-radius: 14px;
  display: flex;
  gap: .8rem;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
}

.lqhc-source-link i,
.lqhc-source-link a {
  color: var(--lqhc-primary-dark);
}

.lqhc-source-link a {
  font-weight: 750;
}

.lqhc-mid-cta {
  align-items: center;
  background: var(--lqhc-ink);
  border-radius: 24px;
  color: rgba(255, 255, 255, .76);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 1rem 0 clamp(4rem, 8vw, 6rem);
  padding: clamp(1.6rem, 4vw, 2.5rem);
}

.lqhc-mid-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  margin: 0 0 .55rem;
}

.lqhc-mid-cta p:last-child {
  margin: 0;
}

.lqhc-mid-cta .btn {
  flex: 0 0 auto;
}

.lqhc-page-faq {
  border-top: 1px solid rgba(46, 61, 67, .13);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.lqhc-page-faq .accordion-item {
  background: #fff;
}

.lqhc-related {
  border-top: 1px solid rgba(46, 61, 67, .13);
  padding-top: clamp(4rem, 8vw, 6rem);
}

.lqhc-related a {
  align-items: center;
  background: #fff;
  border-radius: 16px;
  color: var(--lqhc-ink);
  display: flex;
  font-weight: 750;
  gap: 1rem;
  height: 100%;
  justify-content: space-between;
  line-height: 1.35;
  padding: 1.15rem 1.25rem;
  text-decoration: none;
}

.lqhc-related a:hover {
  box-shadow: 0 12px 36px rgba(46, 61, 67, .1);
  color: var(--lqhc-primary);
}

.lqhc-related i {
  color: var(--lqhc-primary);
}

@media (max-width: 1199.98px) {
  .lqhc-header .offcanvas-body {
    padding: 1.5rem;
  }

  .lqhc-header .navbar-nav {
    gap: .25rem;
  }

  .lqhc-header .nav-link {
    font-size: 1.05rem;
    padding: .75rem 1rem !important;
  }
}

@media (max-width: 991.98px) {
  .lqhc-home-hero {
    min-height: auto;
  }

  .lqhc-home-hero::before {
    background: linear-gradient(90deg, rgba(31, 43, 49, .97) 0%, rgba(31, 43, 49, .85) 64%, rgba(31, 43, 49, .45) 100%);
  }

  .lqhc-hero-photo {
    width: 100%;
  }

  .lqhc-hero-photo img {
    object-position: 52% center;
  }

  .lqhc-hero-content {
    padding-bottom: 9rem;
  }

  .lqhc-hero-note {
    bottom: 1.4rem;
    left: .75rem;
    right: auto;
  }

  .lqhc-field-collage {
    min-height: 510px;
  }

  .lqhc-field-main {
    height: 460px;
  }

  .lqhc-inner-visual {
    height: 460px;
    max-width: 620px;
  }

  .lqhc-side-card {
    position: static;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }

  .lqhc-header .navbar {
    min-height: 74px;
  }

  .lqhc-brand-copy small {
    display: none;
  }

  .lqhc-rounded-section {
    border-radius: 20px;
    margin: 10px 10px 0;
  }

  .lqhc-home-hero {
    background-position: 58% center;
  }

  .lqhc-home-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.25rem);
  }

  .lqhc-hero-meta {
    gap: .6rem 1rem;
  }

  .lqhc-section-title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .lqhc-service-image {
    height: 250px;
  }

  .lqhc-field-collage {
    min-height: 450px;
  }

  .lqhc-field-main {
    height: 420px;
    width: 86%;
  }

  .lqhc-field-small {
    height: 180px;
    width: 55%;
  }

  .lqhc-mobile-call {
    display: inline-flex;
  }

  .lqhc-footer {
    padding-bottom: 5.5rem;
  }

  .lqhc-inner-hero {
    padding: 3.5rem 0;
  }

  .lqhc-inner-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
    line-height: 1.08;
  }

  .lqhc-page-education-canine-dordogne h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.1rem);
    line-height: 1.14;
    max-width: 100%;
  }

  .lqhc-inner-visual {
    height: 350px;
  }

  .lqhc-content-nav ul {
    grid-template-columns: 1fr;
  }

  .lqhc-contact-form-grid {
    grid-template-columns: 1fr;
  }

  .lqhc-form-field-full {
    grid-column: auto;
  }

  .lqhc-copy-section {
    padding: 3rem 0;
  }

  .lqhc-copy-section > p:not(.lqhc-kicker):not(.lqhc-source-link) {
    font-size: 1rem;
  }

  .lqhc-mid-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .lqhc-explainer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .lqhc-problem-card,
  .lqhc-service-card,
  .lqhc-service-image img,
  .lqhc-text-link i {
    transition: none;
  }
}

/* UX refinement: readable scale, direct contact and viewport-sized navigation. */
.lqhc-main h1, .lqhc-main h2, .lqhc-main h3 {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
  text-wrap: balance;
}
.lqhc-main .btn { font-size: .9rem; padding: 12px 20px; min-height: 50px; }
.lqhc-home-hero .btn { white-space: nowrap; }
.lqhc-header {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.lqhc-nav-wrap { gap: 16px; }
.lqhc-header .nav-link { font-size: .8rem; padding: .6rem .5rem !important; }
.lqhc-header .nav-link.active { color: var(--lqhc-primary); background: var(--lqhc-cream); }
.lqhc-nav-contact { margin-left: .4rem; }
.lqhc-nav-contact .btn { font-size: .8rem; padding: .55rem .9rem; min-height: 44px; }
.lqhc-btn-phone { white-space: nowrap; padding: .65rem .85rem; font-size: .85rem; }
.lqhc-brand-copy strong { font-size: 1.05rem; }
.lqhc-brand-copy small { font-size: .55rem; }
.lqhc-home-hero { min-height: 580px; }
.lqhc-hero-content { max-width: 610px; padding: 64px 0; }
.lqhc-home-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  max-width: 19ch;
  margin-bottom: 24px;
}
.lqhc-hero-lead { font-size: 1rem; line-height: 1.6; max-width: 520px; margin-bottom: 28px; }
.lqhc-hero-meta { margin-top: 24px; }
.lqhc-hero-photo { width: 60%; }
.lqhc-hero-photo img { object-position: 62% center; }
.lqhc-hero-note { right: 32px; bottom: 24px; max-width: 270px; padding: 14px; }
.lqhc-home-hero::after { display: none; }
.lqhc-problems, .lqhc-services, .lqhc-zone, .lqhc-faq,
.lqhc-about, .lqhc-process, .lqhc-proof-strip, .lqhc-final-cta {
  padding: clamp(40px, 4.5vw, 72px) 0;
}
.lqhc-section-title, .lqhc-proof-strip .lqhc-section-title,
.lqhc-final-cta h2, .lqhc-intro-strip h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.3rem);
  line-height: 1.15;
  max-width: 28ch;
  margin-bottom: 20px;
}
.lqhc-section-copy, .lqhc-inner-intro { font-size: .95rem; }
.lqhc-centered-heading { max-width: 780px; margin-bottom: 32px; }
.lqhc-centered-heading h2 { margin-inline: auto; }
.lqhc-about-photo { max-width: 350px; margin-inline: auto; }
.lqhc-about-photo img { max-height: 360px; }
.lqhc-about-lead { font-size: 1.15rem; line-height: 1.55; }
.lqhc-service-image { height: 235px; }
.lqhc-service-image img { object-position: 65% center; }
.lqhc-service-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.lqhc-service-card { display: flex; flex-direction: column; }
.lqhc-service-body h3 { font-size: 1.5rem; line-height: 1.2; }
.lqhc-service-body > .lqhc-text-link { margin-top: auto; }
.lqhc-service-body > p { font-size: .9rem; }
.lqhc-rating-card { padding: 24px; }
.lqhc-rating-score { font-size: 3.5rem; }
.lqhc-rating-card small { color: var(--lqhc-ink); }
.lqhc-map-card { min-height: 210px; padding: 24px; }
.lqhc-steps strong { font-size: 1.05rem; }
.lqhc-inner-hero, .lqhc-page-hero { padding: 48px 0; }
.lqhc-inner-hero h1, .lqhc-page-education-canine-dordogne h1, .lqhc-page-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  max-width: 23ch;
  line-height: 1.12;
}
.lqhc-inner-lead { font-size: 1rem; line-height: 1.6; margin: 20px 0 24px; }
.lqhc-inner-visual {
  height: 330px;
  border-radius: 24px;
  transform: none;
  padding: 0;
}
.lqhc-page-education-canine-dordogne .lqhc-inner-visual img { object-position: center; }
.lqhc-inner-content { padding: 48px 0; overflow: visible; }
.lqhc-copy-section { padding: 40px 0; scroll-margin-top: 136px; }
.lqhc-copy-section h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.2; max-width: 32ch; }
.lqhc-copy-section > p:not(.lqhc-kicker):not(.lqhc-source-link) { font-size: .95rem; }
.lqhc-detail-card { padding: 24px; }
.lqhc-detail-card h3 { font-size: 1.2rem; }
.lqhc-content-nav { margin-top: 32px; padding: 24px; }
.lqhc-content-nav a { font-size: .85rem; padding: 12px; }
.lqhc-mid-cta, .lqhc-page-faq { padding-block: 36px; }
.lqhc-mid-cta h2, .lqhc-page-faq > h2, .lqhc-related h2 { font-size: 1.7rem; line-height: 1.2; }
.lqhc-related { padding-top: 32px; }
.lqhc-side-card { top: 136px; padding: 24px; }
.lqhc-side-card h2 { font-size: 1.5rem; }
.lqhc-side-card p { font-size: .9rem; }
.lqhc-main .text-white-50 { color: rgba(255,255,255,.82) !important; }
.lqhc-kicker { font-size: .65rem; letter-spacing: .09em; }
.lqhc-accordion .accordion-button { font-size: 1.05rem; line-height: 1.4; padding: 20px 12px; }
.lqhc-accordion .accordion-body { padding: 0 12px 20px; }
.lqhc-contact-page .lqhc-inner-hero { padding: 32px 0; }
.lqhc-contact-page .lqhc-inner-hero h1 { max-width: none; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.lqhc-contact-page .lqhc-inner-lead { max-width: 760px; margin: 12px 0 20px; }
.lqhc-contact-page .lqhc-inner-content { padding: 32px 0; }
.lqhc-contact-form-section { scroll-margin-top: 136px; }
.lqhc-contact-page .lqhc-contact-form-section { margin-top: 0; padding: 28px; }
.lqhc-contact-form-heading h2 { font-size: 1.6rem; }
.lqhc-contact-form-heading p { font-size: .9rem; }
.lqhc-contact-form-heading > p:not(.lqhc-kicker) { font-size: .85rem; line-height: 1.5; margin: 12px 0 20px; }
.lqhc-contact-form-heading { margin-bottom: 20px; }
.lqhc-contact-form-grid { gap: 20px; }
.lqhc-form-field input, .lqhc-form-field select, .lqhc-form-field textarea { padding: 12px; font-size: 16px; }
.lqhc-form-field label { font-size: .8rem; }
.lqhc-contact-portrait { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; object-position: center; border-radius: 16px; }
.lqhc-contact-practical { border-top: 1px solid rgba(255,255,255,.3); padding-top: 20px; margin-top: 24px; }
.lqhc-contact-practical h3 { color: #fff; font-size: 1.05rem; }
.lqhc-contact-practical a { color: #fff; font-weight: 700; }
.lqhc-main a:focus-visible, .lqhc-header a:focus-visible, .lqhc-header button:focus-visible {
  outline: 3px solid #b66f27;
  outline-offset: 4px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .lqhc-nav-wrap { padding-inline: 20px; gap: 12px; }
  .lqhc-header .nav-link { font-size: .75rem; padding-inline: .35rem !important; }
  .lqhc-brand-copy strong { font-size: .9rem; }
  .lqhc-brand-copy small { font-size: .5rem; }
}
@media (max-width: 1199.98px) {
  .lqhc-header .lqhc-nav-wrap { flex-wrap: nowrap; justify-content: space-between; }
  .lqhc-header .offcanvas {
    top: 0;
    bottom: 0;
    height: 100dvh;
    max-height: 100dvh;
    width: min(380px, 100vw);
    background: #fff;
  }
  .admin-bar .lqhc-header .offcanvas { top: 32px; height: calc(100dvh - 32px); }
  .lqhc-header .offcanvas-header { flex: 0 0 auto; padding: 24px 20px; }
  .lqhc-header .offcanvas-title { font-size: 1.15rem; }
  .lqhc-header .offcanvas-body { flex: 1 1 auto; min-height: 0; padding: 12px 20px 28px; }
  .lqhc-header .nav-link { font-size: 1rem; padding: 12px !important; }
  .lqhc-nav-contact { margin: 16px 0 0; }
  .lqhc-nav-contact .btn { width: 100%; min-height: 48px; font-size: .95rem; }
  .lqhc-hero-content { max-width: 56%; }
  .lqhc-home-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
  .lqhc-hero-note { display: none; }
}
@media (max-width: 991.98px) {
  .lqhc-hero-content { max-width: 620px; padding: 40px 0; }
  .lqhc-home-hero { min-height: 0; }
  .lqhc-hero-photo { width: 100%; }
  .lqhc-about-photo { max-width: 280px; }
  .lqhc-inner-visual { height: 300px; max-width: 560px; }
  .lqhc-side-card { position: static; }
}
@media (max-width: 782px) {
  .admin-bar .lqhc-header .offcanvas { top: 46px; height: calc(100dvh - 46px); }
}
@media (max-width: 767.98px) {
  .lqhc-nav-wrap { padding-inline: 12px; gap: 8px; }
  .lqhc-brand { min-width: 0; flex: 1 1 auto; gap: 8px; }
  .lqhc-brand-mark { width: 32px; height: 32px; flex: 0 0 32px; font-size: .8rem; }
  .lqhc-brand-copy { min-width: 0; max-width: 180px; }
  .lqhc-brand-copy strong { font-size: .82rem; line-height: 1.15; }
  .lqhc-header .navbar { min-height: 68px; }
  .lqhc-header .navbar-toggler { width: 44px; height: 44px; padding: 7px; flex: 0 0 44px; }
  .lqhc-btn-phone { display: inline-flex; width: 44px; min-height: 44px; padding: 0; }
  .lqhc-btn-phone span { display: none; }
  .lqhc-header .offcanvas-title { font-size: 1.05rem; }
  .lqhc-stage-note { font-size: 10px; line-height: 1.4; padding: 6px 12px; }
  .lqhc-home-hero h1 { font-size: clamp(1.8rem, 8.4vw, 2.3rem); max-width: 22ch; }
  .lqhc-hero-content { padding: 32px 0; }
  .lqhc-home-hero .container { padding-inline: 20px; }
  .lqhc-hero-lead { font-size: .9rem; margin-bottom: 22px; }
  .lqhc-hero-meta { gap: 10px 14px; margin-top: 20px; }
  .lqhc-hero-meta li { font-size: .7rem; }
  .lqhc-hero-photo img { object-position: 65% center; }
  .lqhc-section-title, .lqhc-proof-strip .lqhc-section-title, .lqhc-final-cta h2 { font-size: 1.6rem; max-width: 100%; }
  .lqhc-inner-hero h1, .lqhc-page-education-canine-dordogne h1, .lqhc-page-hero h1 { font-size: 1.8rem; max-width: 100%; }
  .lqhc-inner-hero, .lqhc-inner-content { padding: 32px 0; }
  .lqhc-inner-visual { height: 230px; }
  .lqhc-inner-lead { font-size: .9rem; }
  .lqhc-main .row.g-5 { --bs-gutter-y: 28px; --bs-gutter-x: 24px; }
  .lqhc-problem-card { padding: 18px; gap: 12px; }
  .lqhc-problem-copy strong { font-size: 1rem; }
  .lqhc-service-image { height: 220px; }
  .lqhc-service-body h3 { font-size: 1.4rem; }
  .lqhc-copy-section h2 { font-size: 1.45rem; max-width: 100%; }
  .lqhc-copy-section { padding: 28px 0; }
  .lqhc-footer { padding-bottom: 24px; }
  .lqhc-contact-page .lqhc-contact-form-section { padding: 20px; }
  .lqhc-contact-form-heading h2 { font-size: 1.4rem; }
  .lqhc-form-submit { align-items: stretch; }
  .lqhc-form-submit .btn { width: 100%; }
  .btn, .btn-lg { font-size: .85rem; padding: 12px 18px; min-height: 48px; }
  .lqhc-btn-phone { padding: 0; min-height: 44px; }
  .lqhc-home-hero { flex-direction: column; }
  .lqhc-home-hero::before { display: none; }
  .lqhc-home-hero > .container { order: 1; }
  .lqhc-home-hero .lqhc-hero-photo { order: 2; position: relative; height: auto; aspect-ratio: 16 / 9; }
  .lqhc-hero-photo img { object-position: center; }
}

.lqhc-page-tarifs-deroulement .lqhc-inner-visual img,
.lqhc-page-questions-frequentes .lqhc-inner-visual img,
.lqhc-page-yolande-methode .lqhc-inner-visual img { object-position: center top; }

/* Align the hero copy more closely with the desktop brand. */
@media (min-width: 1400px) {
  .lqhc-home-hero .lqhc-hero-content { margin-left: -24px; }
}
@media (min-width: 1600px) {
  .lqhc-home-hero .lqhc-hero-content { margin-left: -116px; }
}
/* Give footer headings enough room without splitting words. */
.lqhc-footer > .container > .row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  margin: 0;
}
.lqhc-footer > .container > .row > div {
  width: auto;
  min-width: 0;
  margin-top: 0;
  padding: 0;
}
.lqhc-footer h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
@media (min-width: 576px) {
  .lqhc-footer > .container > .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .lqhc-footer > .container > .row {
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  }
}


/* A quieter map with a clear, generalized service area. */
.lqhc-service-map { background: #f0eee8; }
.lqhc-service-map .leaflet-tile-pane { filter: grayscale(.9) saturate(.2); opacity: .64; }
.lqhc-service-map-caption-icon { background: #f6e9e7; color: var(--lqhc-primary); display: inline-flex; align-items: center; justify-content: center; }
.lqhc-service-map-caption-icon svg { display: block; flex: none; }
.lqhc-service-map .leaflet-tooltip.lqhc-map-town-label { background: rgba(255,255,255,.94); border-radius: 5px; box-shadow: none; font-size: 11px; font-weight: 700; line-height: 1.3; padding: 3px 6px; }
.lqhc-service-map .lqhc-map-town-label::before { display: none; }
.lqhc-service-map .leaflet-control-zoom { border: 1px solid rgba(46,61,67,.15); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(46,61,67,.08); }
.lqhc-service-map .leaflet-control-zoom a { color: var(--lqhc-ink); }
.lqhc-service-map .leaflet-control-attribution { color: #5d6466; background: rgba(255,255,255,.86); font-size: 9px; }
.lqhc-service-map .leaflet-control-attribution a { color: #576566; }
