@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Geist:wght@300;400;500;600&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --lch-ink: #1c1917;
  --lch-ink-soft: #292524;
  --lch-body: #57534e;
  --lch-muted: #7c756e;
  --lch-line: #e7e3dd;
  --lch-line-soft: #f1ede7;
  --lch-surface: #ffffff;
  --lch-bg: #faf8f4;
  --lch-bg-alt: #f4f0ea;
  --lch-accent: #15625a;
  --lch-accent-deep: #0f4a44;
  --lch-accent-soft: #e5efeb;
  --lch-accent-line: #cfe0da;
  --lch-on-accent: #f7fbf9;
  --lch-warn: #8a5a20;
  --lch-font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --lch-font-sans: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --lch-font-mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', monospace;
  --lch-radius-xs: 8px;
  --lch-radius-sm: 12px;
  --lch-radius: 18px;
  --lch-radius-lg: 28px;
  --lch-shadow-sm: 0 10px 24px -18px rgba(28, 25, 23, 0.4);
  --lch-shadow: 0 22px 46px -26px rgba(28, 25, 23, 0.32);
  --lch-shadow-lg: 0 34px 70px -32px rgba(28, 25, 23, 0.34);
  --lch-container: 1180px;
  --lch-reading: 68ch;
  --lch-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--lch-font-sans);
  font-weight: 400;
  color: var(--lch-body);
  background-color: var(--lch-bg);
  line-height: 1.65;
  font-size: 1rem;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  font-family: var(--lch-font-display);
  color: var(--lch-ink);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}

h4 {
  font-size: 1.08rem;
}

p {
  margin: 0 0 1.1rem;
}

a {
  color: var(--lch-accent-deep);
  text-decoration: none;
  transition: color 0.25s var(--lch-ease);
}

a:hover {
  color: var(--lch-accent);
}

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

ul,
ol {
  margin: 0 0 1.1rem;
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.4rem;
}

strong {
  color: var(--lch-ink-soft);
  font-weight: 600;
}

figure {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--lch-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.lch-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--lch-ink);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--lch-radius-xs) 0;
  z-index: 1200;
}

.lch-skip:focus {
  left: 0;
}

.lch-shell {
  width: 100%;
  max-width: var(--lch-container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.4rem);
}

.lch-eyebrow {
  font-family: var(--lch-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--lch-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.lch-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--lch-accent-line);
}

.lch-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--lch-ink-soft);
  max-width: var(--lch-reading);
  line-height: 1.6;
}

.lch-section {
  padding-block: clamp(3.4rem, 7vw, 6rem);
}

.lch-section--tint {
  background: var(--lch-bg-alt);
}

.lch-section--ink {
  background: var(--lch-ink);
  color: #d8d2ca;
}

.lch-section--ink h2,
.lch-section--ink h3 {
  color: #fdfbf7;
}

.lch-section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 1rem;
}

.lch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--lch-font-sans);
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: var(--lch-radius-xs);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--lch-ease), background-color 0.25s var(--lch-ease), border-color 0.25s var(--lch-ease), color 0.25s var(--lch-ease);
  text-align: center;
}

.lch-btn svg {
  width: 1.05em;
  height: 1.05em;
  flex: none;
}

.lch-btn--primary {
  background: var(--lch-accent);
  color: var(--lch-on-accent);
}

.lch-btn--primary:hover {
  background: var(--lch-accent-deep);
  color: var(--lch-on-accent);
  transform: translateY(-2px);
}

.lch-btn--primary:active {
  transform: translateY(0) scale(0.985);
}

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

.lch-btn--ghost:hover {
  border-color: var(--lch-ink);
  color: var(--lch-ink);
  transform: translateY(-2px);
}

.lch-btn--light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}

.lch-btn--light:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-2px);
}

.lch-btn--block {
  width: 100%;
}

.lch-textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  color: var(--lch-accent-deep);
}

.lch-textlink svg {
  width: 1em;
  height: 1em;
  transition: transform 0.25s var(--lch-ease);
}

.lch-textlink:hover svg {
  transform: translateX(4px);
}

.lch-topbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 248, 244, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lch-line);
}

.lch-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}

.lch-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--lch-ink);
  font-family: var(--lch-font-display);
  font-weight: 600;
  font-size: 1.16rem;
  letter-spacing: -0.01em;
}

.lch-brand:hover {
  color: var(--lch-ink);
}

.lch-brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--lch-accent);
  color: var(--lch-on-accent);
  display: grid;
  place-items: center;
  flex: none;
}

.lch-brand__mark svg {
  width: 20px;
  height: 20px;
}

.lch-brand small {
  display: block;
  font-family: var(--lch-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lch-muted);
  font-weight: 400;
}

.lch-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.lch-nav__list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lch-nav__link {
  color: var(--lch-ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-block: 0.4rem;
}

.lch-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--lch-accent);
  transition: width 0.3s var(--lch-ease);
}

.lch-nav__link:hover::after,
.lch-nav__link[aria-current="page"]::after {
  width: 100%;
}

.lch-nav__item--has-menu {
  position: relative;
}

.lch-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--lch-ink-soft);
  cursor: pointer;
  padding-block: 0.4rem;
}

.lch-nav__trigger svg {
  width: 0.85em;
  height: 0.85em;
  transition: transform 0.3s var(--lch-ease);
}

.lch-nav__item--has-menu[data-open="true"] .lch-nav__trigger svg {
  transform: rotate(180deg);
}

.lch-nav__panel {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(30rem, 78vw);
  background: var(--lch-surface);
  border: 1px solid var(--lch-line);
  border-radius: var(--lch-radius);
  box-shadow: var(--lch-shadow-lg);
  padding: 1.2rem;
  display: grid;
  gap: 0.35rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--lch-ease), transform 0.28s var(--lch-ease), visibility 0.28s;
}

.lch-nav__item--has-menu[data-open="true"] .lch-nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lch-nav__panel-head {
  font-family: var(--lch-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.66rem;
  color: var(--lch-muted);
  padding: 0.3rem 0.6rem 0.5rem;
}

.lch-nav__menu-link {
  display: grid;
  gap: 0.12rem;
  padding: 0.6rem;
  border-radius: var(--lch-radius-xs);
  color: var(--lch-ink);
  transition: background-color 0.2s var(--lch-ease);
}

.lch-nav__menu-link:hover {
  background: var(--lch-accent-soft);
  color: var(--lch-ink);
}

.lch-nav__menu-link span {
  font-size: 0.98rem;
  font-weight: 500;
}

.lch-nav__menu-link small {
  font-size: 0.8rem;
  color: var(--lch-muted);
}

.lch-nav__cta {
  display: inline-flex;
}

.lch-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--lch-line);
  border-radius: var(--lch-radius-xs);
  background: var(--lch-surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.lch-burger span {
  width: 20px;
  height: 2px;
  background: var(--lch-ink);
  transition: transform 0.3s var(--lch-ease), opacity 0.3s var(--lch-ease);
}

.lch-hero {
  position: relative;
  min-height: clamp(560px, 78vh, 720px);
  display: flex;
  align-items: flex-end;
  color: #f6f1ea;
  background-color: var(--lch-ink);
  background-image: linear-gradient(90deg, rgba(15, 13, 12, 0.9) 0%, rgba(15, 13, 12, 0.62) 46%, rgba(15, 13, 12, 0.28) 100%), url('../img/hero-forfaits-hotels-france.jpg');
  background-size: cover;
  background-position: center 38%;
  overflow: hidden;
}

.lch-hero__grid {
  position: relative;
  z-index: 2;
  padding-block: clamp(3.6rem, 9vw, 6.4rem);
  display: grid;
  gap: 1.6rem;
  max-width: 44rem;
}

.lch-hero__eyebrow {
  color: #a9d9cd;
}

.lch-hero__eyebrow::before {
  background: rgba(169, 217, 205, 0.6);
}

.lch-hero h1 {
  color: #fdfaf5;
  max-width: 18ch;
}

.lch-hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  color: #e4dcd1;
  max-width: 42ch;
  margin: 0;
}

.lch-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.lch-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(246, 241, 234, 0.18);
}

.lch-hero__meta div {
  display: grid;
  gap: 0.15rem;
}

.lch-hero__meta dt {
  font-family: var(--lch-font-mono);
  font-size: 1.5rem;
  color: #fdfaf5;
  font-weight: 500;
}

.lch-hero__meta dd {
  margin: 0;
  font-size: 0.82rem;
  color: #cabfb2;
  letter-spacing: 0.02em;
}

.lch-disclaimer-strip {
  background: var(--lch-accent-soft);
  border-block: 1px solid var(--lch-accent-line);
  color: var(--lch-accent-deep);
  font-size: 0.9rem;
}

.lch-disclaimer-strip .lch-shell {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-block: 0.85rem;
}

.lch-disclaimer-strip svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
}

.lch-grid-2 {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}

.lch-figure {
  border-radius: var(--lch-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lch-line);
  box-shadow: var(--lch-shadow);
  position: relative;
}

.lch-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lch-figure figcaption {
  font-size: 0.82rem;
  color: var(--lch-muted);
  padding: 0.8rem 1rem;
  background: var(--lch-surface);
  border-top: 1px solid var(--lch-line);
}

.lch-pillars {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

.lch-pillar {
  display: grid;
  gap: 0.6rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--lch-line);
}

.lch-pillar__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lch-accent-soft);
  color: var(--lch-accent-deep);
  display: grid;
  place-items: center;
}

.lch-pillar__icon svg {
  width: 22px;
  height: 22px;
}

.lch-pillar h3 {
  margin: 0;
  font-size: 1.18rem;
}

.lch-pillar p {
  margin: 0;
  font-size: 0.96rem;
}

.lch-steps {
  display: grid;
  gap: 1.1rem;
  counter-reset: lch-step;
}

.lch-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.3rem 1.4rem;
  background: var(--lch-surface);
  border: 1px solid var(--lch-line);
  border-radius: var(--lch-radius);
  transition: transform 0.3s var(--lch-ease), box-shadow 0.3s var(--lch-ease);
}

.lch-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--lch-shadow);
}

.lch-step::before {
  counter-increment: lch-step;
  content: counter(lch-step, decimal-leading-zero);
  font-family: var(--lch-font-mono);
  font-size: 0.95rem;
  color: var(--lch-accent);
  background: var(--lch-accent-soft);
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-weight: 500;
}

.lch-step h3 {
  margin: 0 0 0.3rem;
  font-size: 1.12rem;
}

.lch-step p {
  margin: 0;
  font-size: 0.95rem;
}

.lch-cardgrid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
}

.lch-card {
  display: flex;
  flex-direction: column;
  background: var(--lch-surface);
  border: 1px solid var(--lch-line);
  border-radius: var(--lch-radius);
  overflow: hidden;
  transition: transform 0.35s var(--lch-ease), box-shadow 0.35s var(--lch-ease), border-color 0.35s var(--lch-ease);
  height: 100%;
}

.lch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lch-shadow);
  border-color: var(--lch-accent-line);
}

.lch-card__media {
  position: relative;
  overflow: hidden;
}

.lch-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s var(--lch-ease);
}

.lch-card:hover .lch-card__media img {
  transform: scale(1.05);
}

.lch-card__tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(250, 248, 244, 0.92);
  color: var(--lch-accent-deep);
  font-family: var(--lch-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

.lch-card__body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.lch-card__meta {
  font-family: var(--lch-font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--lch-muted);
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.lch-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.lch-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.2;
}

.lch-card h3 a {
  color: var(--lch-ink);
}

.lch-card h3 a:hover {
  color: var(--lch-accent-deep);
}

.lch-card p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}

.lch-card__cta {
  margin-top: 0.4rem;
}

.lch-card--feature {
  grid-row: span 2;
}

.lch-card--feature .lch-card__media img {
  aspect-ratio: 16 / 11;
}

.lch-card--feature h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.lch-card--feature .lch-card__body {
  padding: 1.8rem 1.9rem 2rem;
  gap: 0.9rem;
}

.lch-primer {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.lch-primer__item {
  padding: 1.4rem 0;
  border-top: 1px solid var(--lch-line);
  display: grid;
  gap: 0.5rem;
}

.lch-primer__item dt {
  font-family: var(--lch-font-display);
  font-size: 1.15rem;
  color: var(--lch-ink);
  font-weight: 600;
}

.lch-primer__item dd {
  margin: 0;
  font-size: 0.96rem;
}

.lch-faq {
  display: grid;
  gap: 0.8rem;
  max-width: 52rem;
}

.lch-faq__item {
  border: 1px solid var(--lch-line);
  border-radius: var(--lch-radius-sm);
  background: var(--lch-surface);
  overflow: hidden;
}

.lch-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--lch-font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--lch-ink);
  padding: 1.15rem 1.3rem;
}

.lch-faq__q svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
  transition: transform 0.3s var(--lch-ease);
  color: var(--lch-accent);
}

.lch-faq__item[data-open="true"] .lch-faq__q svg {
  transform: rotate(45deg);
}

.lch-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--lch-ease);
}

.lch-faq__a-inner {
  padding: 0 1.3rem 1.3rem;
  font-size: 0.96rem;
}

.lch-cta-panel {
  display: grid;
  gap: 1.6rem;
  align-items: center;
  padding: clamp(2.2rem, 5vw, 3.4rem);
  border-radius: var(--lch-radius-lg);
  background: linear-gradient(135deg, var(--lch-accent-deep), #123f3a);
  color: #eaf3ef;
}

.lch-cta-panel h2 {
  color: #fdfbf7;
  margin: 0;
}

.lch-cta-panel p {
  margin: 0;
  color: #cfe1db;
  max-width: 46ch;
}

.lch-cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.lch-footer {
  background: var(--lch-ink);
  color: #b9b1a7;
  padding-block: clamp(3rem, 6vw, 4.6rem) 2rem;
}

.lch-footer a {
  color: #d6cfc5;
}

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

.lch-footer__top {
  display: grid;
  gap: 2.6rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lch-footer__brand {
  display: grid;
  gap: 1rem;
  max-width: 26rem;
}

.lch-footer__brand .lch-brand {
  color: #fdfbf7;
}

.lch-footer__brand p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.lch-footer__cols {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.lch-footer__col h4 {
  color: #fdfbf7;
  font-family: var(--lch-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  margin: 0 0 1rem;
  font-weight: 500;
}

.lch-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.lch-footer__col li {
  margin: 0;
  font-size: 0.92rem;
}

.lch-footer__contact {
  display: grid;
  gap: 0.7rem;
  font-size: 0.92rem;
  font-style: normal;
}

.lch-footer__contact span {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.lch-footer__contact svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  color: #a9d9cd;
  flex: none;
}

.lch-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: #8f877d;
}

.lch-footer__bottom button {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #d6cfc5;
  font: inherit;
  font-size: 0.82rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.25s var(--lch-ease), color 0.25s var(--lch-ease);
}

.lch-footer__bottom button:hover {
  border-color: #a9d9cd;
  color: #fff;
}

.lch-pagehero {
  padding-block: clamp(3rem, 7vw, 5.2rem) clamp(2rem, 4vw, 3rem);
  background: var(--lch-bg-alt);
  border-bottom: 1px solid var(--lch-line);
}

.lch-pagehero__inner {
  display: grid;
  gap: 1.1rem;
  max-width: 52rem;
}

.lch-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--lch-muted);
  list-style: none;
  padding: 0;
  margin: 0 0 0.4rem;
}

.lch-breadcrumb li {
  margin: 0;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.lch-breadcrumb li::after {
  content: "/";
  color: var(--lch-line);
}

.lch-breadcrumb li:last-child::after {
  content: none;
}

.lch-article {
  padding-block: clamp(2.6rem, 6vw, 4.4rem);
}

.lch-article__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.4rem);
  grid-template-columns: 1fr;
}

.lch-article__body {
  max-width: var(--lch-reading);
  font-size: 1.06rem;
}

.lch-article__body h2 {
  margin-top: 2.6rem;
  padding-top: 0.4rem;
}

.lch-article__body h3 {
  margin-top: 1.9rem;
}

.lch-article__body figure {
  margin: 2rem 0;
  border-radius: var(--lch-radius);
  overflow: hidden;
  border: 1px solid var(--lch-line);
}

.lch-article__body figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lch-article__lead {
  font-size: 1.2rem;
  color: var(--lch-ink-soft);
  line-height: 1.55;
}

.lch-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.86rem;
  color: var(--lch-muted);
  font-family: var(--lch-font-mono);
  letter-spacing: 0.03em;
  margin-bottom: 1.6rem;
}

.lch-byline__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lch-accent);
}

.lch-callout {
  background: var(--lch-accent-soft);
  border: 1px solid var(--lch-accent-line);
  border-radius: var(--lch-radius);
  padding: 1.3rem 1.5rem;
  margin: 2rem 0;
  display: grid;
  gap: 0.5rem;
}

.lch-callout strong {
  color: var(--lch-accent-deep);
  font-family: var(--lch-font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lch-callout p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--lch-ink-soft);
}

.lch-keyfacts {
  border: 1px solid var(--lch-line);
  border-radius: var(--lch-radius);
  padding: 1.4rem 1.6rem;
  background: var(--lch-surface);
  display: grid;
  gap: 0.9rem;
}

.lch-keyfacts h2 {
  font-size: 1.1rem;
  margin: 0;
}

.lch-keyfacts ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.lch-keyfacts li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.92rem;
  margin: 0;
}

.lch-keyfacts li svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--lch-accent);
  flex: none;
  margin-top: 0.15rem;
}

.lch-prevnext {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--lch-line);
}

.lch-prevnext a {
  display: grid;
  gap: 0.3rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--lch-line);
  border-radius: var(--lch-radius);
  transition: border-color 0.25s var(--lch-ease), transform 0.25s var(--lch-ease);
}

.lch-prevnext a:hover {
  border-color: var(--lch-accent-line);
  transform: translateY(-2px);
}

.lch-prevnext small {
  font-family: var(--lch-font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lch-muted);
}

.lch-prevnext strong {
  color: var(--lch-ink);
  font-family: var(--lch-font-display);
  font-weight: 600;
  font-size: 1.02rem;
}

.lch-prevnext .lch-prevnext__next {
  text-align: right;
}

.lch-infocards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.lch-infocard {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--lch-line);
  border-radius: var(--lch-radius);
  background: var(--lch-surface);
}

.lch-infocard__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lch-accent-soft);
  color: var(--lch-accent-deep);
  display: grid;
  place-items: center;
  flex: none;
}

.lch-infocard__icon svg {
  width: 21px;
  height: 21px;
}

.lch-infocard h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.lch-infocard p,
.lch-infocard a {
  margin: 0;
  font-size: 0.94rem;
  color: var(--lch-body);
}

.lch-infocard a:hover {
  color: var(--lch-accent-deep);
}

.lch-form {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.6rem, 4vw, 2.2rem);
  border: 1px solid var(--lch-line);
  border-radius: var(--lch-radius-lg);
  background: var(--lch-surface);
  box-shadow: var(--lch-shadow-sm);
}

.lch-field {
  display: grid;
  gap: 0.45rem;
}

.lch-field label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--lch-ink-soft);
}

.lch-field input,
.lch-field textarea {
  font: inherit;
  font-size: 0.98rem;
  color: var(--lch-ink);
  padding: 0.85rem 1rem;
  border: 1px solid var(--lch-line);
  border-radius: var(--lch-radius-xs);
  background: var(--lch-bg);
  transition: border-color 0.25s var(--lch-ease), box-shadow 0.25s var(--lch-ease);
  width: 100%;
}

.lch-field input:focus,
.lch-field textarea:focus {
  outline: none;
  border-color: var(--lch-accent);
  box-shadow: 0 0 0 3px var(--lch-accent-soft);
}

.lch-field textarea {
  min-height: 140px;
  resize: vertical;
}

.lch-field small {
  font-size: 0.8rem;
  color: var(--lch-muted);
}

.lch-field__error {
  font-size: 0.8rem;
  color: #a23b2f;
  display: none;
}

.lch-field[data-invalid="true"] input,
.lch-field[data-invalid="true"] textarea {
  border-color: #c65a4b;
}

.lch-field[data-invalid="true"] .lch-field__error {
  display: block;
}

.lch-consent-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--lch-body);
}

.lch-consent-row input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  flex: none;
  accent-color: var(--lch-accent);
}

.lch-map {
  border-radius: var(--lch-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lch-line);
  box-shadow: var(--lch-shadow-sm);
}

.lch-map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

.lch-map__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  background: var(--lch-surface);
  border-top: 1px solid var(--lch-line);
  font-size: 0.88rem;
}

.lch-legal {
  padding-block: clamp(2.4rem, 5vw, 3.8rem);
}

.lch-legal__body {
  max-width: var(--lch-reading);
  font-size: 1rem;
}

.lch-legal__body h2 {
  margin-top: 2.4rem;
  font-size: 1.5rem;
}

.lch-legal__body h3 {
  margin-top: 1.6rem;
  font-size: 1.15rem;
}

.lch-legal__updated {
  font-family: var(--lch-font-mono);
  font-size: 0.82rem;
  color: var(--lch-muted);
  letter-spacing: 0.03em;
}

.lch-defs {
  display: grid;
  gap: 0;
}

.lch-defs > div {
  padding: 1.1rem 0;
  border-top: 1px solid var(--lch-line);
  display: grid;
  gap: 0.35rem;
}

.lch-defs dt {
  font-weight: 600;
  color: var(--lch-ink);
}

.lch-defs dd {
  margin: 0;
  font-size: 0.95rem;
}

.lch-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  transform: translateY(120%);
  transition: transform 0.45s var(--lch-ease);
}

.lch-cookie[data-visible="true"] {
  transform: translateY(0);
}

.lch-cookie__bar {
  background: var(--lch-ink);
  color: #ded7cd;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lch-cookie__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  padding-block: 1.1rem;
}

.lch-cookie__text {
  flex: 1 1 22rem;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.lch-cookie__text a {
  color: #a9d9cd;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lch-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.lch-cookie__btn {
  font: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.7rem 1.1rem;
  border-radius: var(--lch-radius-xs);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s var(--lch-ease), background-color 0.2s var(--lch-ease), border-color 0.2s var(--lch-ease);
}

.lch-cookie__btn--accept {
  background: var(--lch-accent);
  color: var(--lch-on-accent);
}

.lch-cookie__btn--accept:hover {
  background: #1a746a;
}

.lch-cookie__btn--deny {
  background: #34302b;
  color: #f3ede4;
  border-color: rgba(255, 255, 255, 0.22);
}

.lch-cookie__btn--deny:hover {
  border-color: #fff;
}

.lch-cookie__btn--manage {
  background: transparent;
  color: #ded7cd;
  border-color: rgba(255, 255, 255, 0.28);
}

.lch-cookie__btn--manage:hover {
  border-color: #a9d9cd;
  color: #fff;
}

.lch-cookie__panel {
  display: none;
  background: var(--lch-surface);
  color: var(--lch-body);
  border-top: 3px solid var(--lch-accent);
  max-height: min(82vh, 640px);
  overflow-y: auto;
}

.lch-cookie[data-mode="panel"] .lch-cookie__bar {
  display: none;
}

.lch-cookie[data-mode="panel"] .lch-cookie__panel {
  display: block;
}

.lch-cookie__panel-inner {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
  padding-block: clamp(1.6rem, 4vw, 2.4rem);
}

.lch-cookie__intro h2 {
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
}

.lch-cookie__intro p {
  margin: 0;
  font-size: 0.92rem;
  max-width: 42ch;
}

.lch-cookie__cats {
  display: grid;
  gap: 0.8rem;
}

.lch-cookie__cat {
  border: 1px solid var(--lch-line);
  border-radius: var(--lch-radius-sm);
  overflow: hidden;
}

.lch-cookie__cat-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
}

.lch-cookie__cat-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--lch-muted);
  display: grid;
  place-items: center;
  padding: 0.55rem;
}

.lch-cookie__cat-toggle svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s var(--lch-ease);
}

.lch-cookie__cat[data-open="true"] .lch-cookie__cat-toggle svg {
  transform: rotate(180deg);
}

.lch-cookie__cat-label {
  flex: 1;
  display: grid;
  gap: 0.15rem;
}

.lch-cookie__cat-label strong {
  color: var(--lch-ink);
  font-size: 1rem;
}

.lch-cookie__cat-label span {
  font-size: 0.82rem;
  color: var(--lch-muted);
}

.lch-cookie__always {
  font-family: var(--lch-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lch-accent-deep);
  background: var(--lch-accent-soft);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

.lch-switch {
  position: relative;
  width: 46px;
  height: 26px;
  flex: none;
}

.lch-switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.lch-switch__track {
  position: absolute;
  inset: 0;
  background: #d6d0c8;
  border-radius: 999px;
  transition: background-color 0.25s var(--lch-ease);
}

.lch-switch__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s var(--lch-ease);
}

.lch-switch input:checked + .lch-switch__track {
  background: var(--lch-accent);
}

.lch-switch input:checked + .lch-switch__track::after {
  transform: translateX(20px);
}

.lch-switch input:focus-visible + .lch-switch__track {
  outline: 3px solid var(--lch-accent);
  outline-offset: 2px;
}

.lch-cookie__cat-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--lch-ease);
}

.lch-cookie__cat-detail-inner {
  padding: 0 1.2rem 1.1rem;
  font-size: 0.86rem;
  display: grid;
  gap: 0.4rem;
}

.lch-cookie__cat-detail-inner dl {
  margin: 0;
  display: grid;
  gap: 0.3rem;
}

.lch-cookie__cat-detail-inner dt {
  font-family: var(--lch-font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lch-muted);
}

.lch-cookie__cat-detail-inner dd {
  margin: 0 0 0.4rem;
}

.lch-cookie__panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-content: start;
}

.lch-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  place-items: center;
  padding: 1.4rem;
  background: rgba(24, 21, 19, 0.55);
  backdrop-filter: blur(4px);
}

.lch-modal[data-open="true"] {
  display: grid;
}

.lch-modal__card {
  background: var(--lch-surface);
  border-radius: var(--lch-radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  max-width: 30rem;
  width: 100%;
  text-align: center;
  box-shadow: var(--lch-shadow-lg);
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.lch-modal__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lch-accent-soft);
  color: var(--lch-accent-deep);
  display: grid;
  place-items: center;
}

.lch-modal__icon svg {
  width: 28px;
  height: 28px;
}

.lch-modal__card h2 {
  margin: 0;
  font-size: 1.4rem;
}

.lch-modal__card p {
  margin: 0;
  font-size: 0.95rem;
}

.lch-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--lch-ease), transform 0.7s var(--lch-ease);
}

.lch-reveal[data-shown="true"] {
  opacity: 1;
  transform: none;
}

.lch-reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.lch-reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.lch-reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

.lch-reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

@media (min-width: 640px) {
  .lch-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .lch-infocards {
    grid-template-columns: repeat(3, 1fr);
  }

  .lch-prevnext {
    grid-template-columns: 1fr 1fr;
  }

  .lch-primer {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.4rem;
  }
}

@media (min-width: 768px) {
  .lch-footer__top {
    grid-template-columns: 1.4fr 2fr;
  }

  .lch-footer__cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .lch-cta-panel {
    grid-template-columns: 1.5fr auto;
  }

  .lch-cta-panel__actions {
    justify-content: flex-end;
  }

  .lch-cookie__panel-inner {
    grid-template-columns: 1fr 1.5fr auto;
    gap: 2rem;
  }

  .lch-cookie__panel-actions {
    flex-direction: column;
    width: 12rem;
  }

  .lch-cookie__panel-actions .lch-cookie__btn {
    width: 100%;
  }
}

@media (min-width: 900px) {
  .lch-burger {
    display: none;
  }

  .lch-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .lch-grid-2--media-first .lch-figure {
    order: -1;
  }

  .lch-cardgrid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
  }

  .lch-card--feature {
    grid-column: span 2;
    grid-row: span 1;
    flex-direction: row;
  }

  .lch-card--feature .lch-card__media {
    flex: 1 1 52%;
  }

  .lch-card--feature .lch-card__media img {
    height: 100%;
    aspect-ratio: auto;
  }

  .lch-card--feature .lch-card__body {
    flex: 1 1 48%;
    justify-content: center;
  }

  .lch-pillars {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .lch-article__layout {
    grid-template-columns: minmax(0, 1fr) 19rem;
    align-items: start;
  }

  .lch-article__aside {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 1.2rem;
  }
}

@media (max-width: 899px) {
  .lch-nav {
    position: fixed;
    inset: 72px 0 auto;
    background: var(--lch-surface);
    border-bottom: 1px solid var(--lch-line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.2rem clamp(1.1rem, 4vw, 2.4rem) 1.8rem;
    box-shadow: var(--lch-shadow);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--lch-ease), transform 0.3s var(--lch-ease), visibility 0.3s;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }

  .lch-topbar[data-nav-open="true"] .lch-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .lch-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .lch-nav__item {
    border-bottom: 1px solid var(--lch-line-soft);
  }

  .lch-nav__link,
  .lch-nav__trigger {
    display: flex;
    width: 100%;
    padding-block: 1rem;
    font-size: 1.05rem;
  }

  .lch-nav__link::after {
    display: none;
  }

  .lch-nav__panel {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0.8rem;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .lch-nav__item--has-menu[data-open="true"] .lch-nav__panel {
    display: grid;
    transform: none;
  }

  .lch-nav__cta {
    margin-top: 1.1rem;
  }

  .lch-nav__cta .lch-btn {
    width: 100%;
  }

  .lch-burger {
    display: inline-flex;
  }

  .lch-topbar[data-nav-open="true"] .lch-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .lch-topbar[data-nav-open="true"] .lch-burger span:nth-child(2) {
    opacity: 0;
  }

  .lch-topbar[data-nav-open="true"] .lch-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 520px) {
  .lch-hero {
    min-height: 100dvh;
    background-position: center 30%;
  }

  .lch-hero__meta dt {
    font-size: 1.25rem;
  }

  .lch-map iframe {
    height: 300px;
  }

  .lch-footer__cols {
    grid-template-columns: 1fr;
  }

  .lch-hero__actions .lch-btn,
  .lch-cta-panel__actions .lch-btn {
    width: 100%;
  }

  .lch-breadcrumb {
    font-size: 0.78rem;
  }

  .lch-switch {
    height: 30px;
  }

  .lch-switch__track::after {
    width: 24px;
    height: 24px;
  }

  .lch-switch input:checked + .lch-switch__track::after {
    transform: translateX(16px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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