/* ==========================================================
   Chiffrier — cabinet d'expertise comptable, Nantes
   Light friendly-modern: white, forest green, lime, soft grey
   ========================================================== */
:root {
  --chf-white: #FFFFFF;
  --chf-forest: #1E5B4F;
  --chf-forest-d: #143F37;
  --chf-forest-l: #2F7466;
  --chf-lime: #C6E77A;
  --chf-lime-l: #EAF6CF;
  --chf-sage: #DCE8D3;
  --chf-grey: #F3F5F2;
  --chf-grey-2: #E4E8E2;
  --chf-ink: #1B2A26;
  --chf-muted: #55635E;
  --chf-err: #B3261E;
  --chf-radius: 22px;
  --chf-radius-lg: 36px;
  --chf-shadow: 0 18px 40px -18px rgba(20, 63, 55, .28);
  --chf-font: "Plus Jakarta Sans", "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --chf-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --chf-header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--chf-header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--chf-white);
  color: var(--chf-ink);
  font-family: var(--chf-font);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--chf-forest); }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.02em; }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--chf-forest); outline-offset: 3px; border-radius: 6px; }

.chf-wrap { width: min(1240px, 100% - 32px); margin-inline: auto; }
.chf-section { padding-block: clamp(64px, 5vw + 40px, 128px); }
.chf-skip { position: absolute; left: -999px; top: 8px; background: var(--chf-forest); color: #fff; padding: 10px 16px; border-radius: 999px; z-index: 100; }
.chf-skip:focus { left: 8px; }

/* ---------- buttons, pills ---------- */
.chf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .9em 1.5em; border-radius: 999px; border: 2px solid transparent;
  font: 700 .98rem/1.1 var(--chf-font); text-decoration: none; cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.chf-btn:hover { transform: translateY(-2px); }
.chf-btn--primary { background: var(--chf-forest); color: #fff; box-shadow: 0 10px 22px -10px rgba(30, 91, 79, .7); }
.chf-btn--primary:hover { background: var(--chf-forest-d); }
.chf-btn--lime { background: var(--chf-lime); color: var(--chf-forest-d); }
.chf-btn--lime:hover { background: #b6dc5f; }
.chf-btn--ghost { background: transparent; color: var(--chf-forest); border-color: var(--chf-grey-2); }
.chf-btn--ghost:hover { border-color: var(--chf-forest); }
.chf-btn--sm { padding: .6em 1.1em; font-size: .9rem; }
.chf-btn--full { width: 100%; }

.chf-pill {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .45em 1em; border-radius: 999px; background: var(--chf-lime-l);
  color: var(--chf-forest-d); font-size: .85rem; font-weight: 600; margin-bottom: 1.4rem;
}
.chf-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--chf-forest); box-shadow: 0 0 0 4px rgba(30, 91, 79, .15); }
.chf-kicker { font-family: var(--chf-mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--chf-forest-l); margin-bottom: .8rem; }
.chf-kicker::before { content: "// "; color: #8DBA3F; }
.chf-kicker--light { color: var(--chf-lime); }
.chf-tag { display: inline-block; margin-top: auto; padding: .3em .85em; border-radius: 999px; background: var(--chf-grey); font-family: var(--chf-mono); font-size: .75rem; color: var(--chf-forest); }

/* ---------- header ---------- */
.chf-header {
  position: sticky; top: 0; z-index: 50; height: var(--chf-header-h);
  background: rgba(255, 255, 255, .88); backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  transition: box-shadow .25s ease;
}
.chf-header.is-scrolled { box-shadow: 0 6px 24px -12px rgba(20, 63, 55, .25); }
.chf-header__in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.chf-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--chf-forest-d); font-weight: 800; font-size: 1.35rem; letter-spacing: -.03em; }
.chf-logo--light { color: #fff; }
.chf-nav { display: flex; align-items: center; gap: 28px; }
.chf-nav ul { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.chf-nav ul a { display: block; padding: .5em .9em; border-radius: 999px; text-decoration: none; color: var(--chf-ink); font-weight: 600; font-size: .95rem; transition: background-color .2s; }
.chf-nav ul a:hover { background: var(--chf-grey); color: var(--chf-forest); }
.chf-burger { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; background: var(--chf-grey); cursor: pointer; padding: 12px; flex-direction: column; justify-content: space-between; }
.chf-burger span { display: block; height: 2.5px; border-radius: 2px; background: var(--chf-forest-d); transition: transform .25s, opacity .25s; }
.chf-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.8px) rotate(45deg); }
.chf-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.chf-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.8px) rotate(-45deg); }

/* ---------- hero ---------- */
.chf-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(40px, 5vw, 88px) clamp(64px, 7vw, 120px);
  background-color: var(--chf-white);
  /* ledger grid */
  background-image:
    linear-gradient(rgba(30, 91, 79, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 91, 79, .07) 1px, transparent 1px),
    linear-gradient(90deg, transparent 0 calc(100% - 1px), rgba(198, 231, 122, .0) 0);
  background-size: 32px 32px, 32px 32px, 100% 100%;
}
.chf-hero::after { /* fade grid toward bottom */
  content: ""; position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff); pointer-events: none;
}
.chf-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.chf-hero h1 { font-size: clamp(2.4rem, 1.4rem + 4.4vw, 4.6rem); font-weight: 800; letter-spacing: -.045em; line-height: 1.02; color: var(--chf-forest-d); }
.chf-hl { position: relative; white-space: nowrap; }
.chf-hl::after { content: ""; position: absolute; left: -.08em; right: -.08em; bottom: .06em; height: .32em; background: var(--chf-lime); border-radius: 999px; z-index: -1; }
.chf-hero__lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem); color: var(--chf-muted); max-width: 36em; }
.chf-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.8rem 0 1.6rem; }
.chf-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.chf-hero__tags li { padding: .35em .9em; border-radius: 999px; border: 1px solid var(--chf-grey-2); background: #fff; font-size: .85rem; color: var(--chf-muted); }
.chf-hero__tags li::before { content: "✓ "; color: var(--chf-forest); font-weight: 700; }

.chf-hero__visual { position: relative; padding: 28px 18px 36px; }
.chf-blob {
  position: relative; aspect-ratio: 1 / .92;
  border-radius: 58% 42% 46% 54% / 48% 56% 44% 52%;
  overflow: hidden; background: var(--chf-sage);
  box-shadow: 0 40px 80px -40px rgba(20, 63, 55, .45);
  animation: chf-morph 16s ease-in-out infinite alternate;
}
.chf-blob::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(198, 231, 122, .25), transparent 40%); z-index: 1; }
.chf-blob img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 60%; }
@keyframes chf-morph {
  to { border-radius: 44% 56% 58% 42% / 56% 44% 56% 44%; }
}
.chf-float {
  position: absolute; z-index: 2; background: #fff; border-radius: 18px; padding: 14px 16px;
  box-shadow: var(--chf-shadow); border: 1px solid var(--chf-grey-2);
  animation: chf-bob 6s ease-in-out infinite;
}
.chf-float p { margin: 0; }
.chf-float__label { font-size: .75rem; font-weight: 600; color: var(--chf-muted); }
.chf-float__num { font-family: var(--chf-mono); font-weight: 600; font-size: 1.35rem; color: var(--chf-forest-d); letter-spacing: -.02em; }
.chf-float__num--sm { font-size: 1.1rem; }
.chf-float__small { font-family: var(--chf-mono); font-size: .75rem; color: var(--chf-forest); }
.chf-float--a { top: 4%; left: -4%; min-width: 190px; }
.chf-float--b { bottom: 8%; left: 2%; display: flex; gap: 12px; align-items: center; animation-delay: -2s; }
.chf-float--c { top: 42%; right: -2%; min-width: 150px; animation-delay: -4s; background: var(--chf-forest); border-color: var(--chf-forest); }
.chf-float--c .chf-float__label { color: var(--chf-sage); }
.chf-float--c .chf-float__num { color: var(--chf-lime); }
.chf-spark { display: flex; align-items: flex-end; gap: 5px; height: 38px; margin-top: 8px; }
.chf-spark i { flex: 1; height: var(--h); border-radius: 4px 4px 2px 2px; background: var(--chf-sage); }
.chf-spark i:last-child { background: var(--chf-lime); }
.chf-meter { height: 6px; border-radius: 99px; background: rgba(255, 255, 255, .2); margin-top: 8px; overflow: hidden; }
.chf-meter span { display: block; height: 100%; background: var(--chf-lime); border-radius: inherit; }
.chf-check { display: inline-grid; place-items: center; width: 34px; height: 34px; flex: none; border-radius: 50%; background: var(--chf-lime); color: var(--chf-forest-d); font-weight: 800; }
@keyframes chf-bob { 50% { transform: translateY(-8px); } }

/* ---------- about ---------- */
.chf-about { background: var(--chf-grey); border-radius: var(--chf-radius-lg) var(--chf-radius-lg) 0 0; }
.chf-about__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.chf-about__text p { color: var(--chf-muted); }
.chf-about__note { padding: 14px 18px; border-left: 4px solid var(--chf-lime); background: #fff; border-radius: 0 14px 14px 0; font-size: .95rem; }
.chf-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0; }
.chf-stat {
  background: #fff; border-radius: var(--chf-radius); padding: 22px 20px; display: flex; flex-direction: column-reverse; gap: 4px;
  border: 1px solid var(--chf-grey-2);
  background-image: linear-gradient(rgba(30, 91, 79, .05) 1px, transparent 1px); background-size: 100% 22px;
}
.chf-stat dt { font-size: .85rem; color: var(--chf-muted); }
.chf-stat dd { margin: 0; font-family: var(--chf-mono); font-weight: 600; font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem); color: var(--chf-forest-d); letter-spacing: -.04em; }
.chf-stat--lime { background-color: var(--chf-lime); border-color: var(--chf-lime); }
.chf-stat--lime dt { color: var(--chf-forest-d); }

/* ---------- section heads ---------- */
.chf-head { max-width: 680px; margin-bottom: clamp(32px, 4vw, 56px); }
.chf-head p:not(.chf-kicker) { color: var(--chf-muted); }
.chf-head--center { margin-inline: auto; text-align: center; }
.chf-head--split { max-width: none; display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: end; }

/* ---------- services ---------- */
.chf-services { background: var(--chf-grey); padding-top: 0; }
.chf-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.chf-card {
  display: flex; flex-direction: column; gap: 4px; background: #fff; border-radius: var(--chf-radius);
  padding: 28px 26px 24px; border: 1px solid var(--chf-grey-2);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.chf-card:hover { transform: translateY(-4px); box-shadow: var(--chf-shadow); border-color: var(--chf-sage); }
.chf-card p { color: var(--chf-muted); font-size: .97rem; }
.chf-emoji { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: var(--chf-lime-l); font-size: 1.7rem; margin-bottom: 14px; }
.chf-card:nth-child(2) .chf-emoji, .chf-card:nth-child(6) .chf-emoji { background: var(--chf-sage); }

/* ---------- why ---------- */
.chf-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.chf-why__item { display: flex; flex-direction: column; border-radius: var(--chf-radius-lg); background: #fff; border: 1px solid var(--chf-grey-2); overflow: hidden; }
.chf-why__item:nth-child(3n+2) { transform: translateY(28px); }
.chf-why__item figure { margin: 10px 10px 0; border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 3; }
.chf-why__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.chf-why__item:hover img { transform: scale(1.05); }
.chf-why__body { padding: 22px 24px 26px; }
.chf-why__body p { color: var(--chf-muted); font-size: .97rem; margin: 0; }
.chf-why__num { display: inline-block; font-family: var(--chf-mono); font-size: .8rem; font-weight: 600; background: var(--chf-forest); color: var(--chf-lime); border-radius: 999px; padding: .2em .8em; margin-bottom: .8rem; }

/* ---------- reviews ---------- */
.chf-reviews { background: linear-gradient(180deg, #fff 0, var(--chf-lime-l) 100%); }
.chf-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.chf-review { margin: 0; background: #fff; border-radius: var(--chf-radius-lg); padding: 30px 28px; box-shadow: var(--chf-shadow); display: flex; flex-direction: column; gap: 14px; }
.chf-review--lime { background: var(--chf-forest); color: #EAF1EE; }
.chf-review--lime .chf-stars { color: var(--chf-lime); }
.chf-review--lime small { color: var(--chf-sage) !important; }
.chf-review blockquote { margin: 0; }
.chf-review blockquote p { margin: 0; }
.chf-stars { color: #8DBA3F; letter-spacing: .15em; font-size: 1.05rem; }
.chf-stars__off { opacity: .3; }
.chf-review figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.chf-review figcaption img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--chf-lime); }
.chf-review figcaption span { display: flex; flex-direction: column; line-height: 1.3; }
.chf-review small { color: var(--chf-muted); font-size: .85rem; }

/* ---------- contact ---------- */
.chf-contact__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 22px; align-items: stretch; }
.chf-contact__panel {
  background: var(--chf-forest); color: #E6EEEA; border-radius: var(--chf-radius-lg); padding: clamp(28px, 4vw, 48px);
  background-image: linear-gradient(rgba(198, 231, 122, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(198, 231, 122, .08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.chf-contact__panel h2 { color: #fff; }
.chf-contact__warn { font-size: .88rem; color: var(--chf-sage); border: 1px dashed rgba(198, 231, 122, .45); border-radius: 16px; padding: 12px 14px; }
.chf-coords { list-style: none; padding: 0; margin: 1.6rem 0; display: grid; gap: 12px; }
.chf-coords li { display: flex; gap: 12px; align-items: flex-start; }
.chf-coords a { color: #fff; font-weight: 600; }
.chf-coords a:hover { color: var(--chf-lime); }
.chf-hours { background: rgba(255, 255, 255, .08); border-radius: var(--chf-radius); padding: 18px 20px; }
.chf-hours h3 { color: var(--chf-lime); font-size: 1rem; margin-bottom: .6rem; }
.chf-hours dl { margin: 0; display: grid; gap: 6px; }
.chf-hours dl div { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .95rem; }
.chf-hours dd { margin: 0; font-family: var(--chf-mono); font-size: .88rem; }

.chf-form { position: relative; background: #fff; border: 1px solid var(--chf-grey-2); border-radius: var(--chf-radius-lg); padding: clamp(24px, 4vw, 44px); box-shadow: var(--chf-shadow); }
.chf-form__title { font-size: 1.4rem; }
.chf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.chf-field { margin-bottom: 14px; min-width: 0; }
.chf-field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.chf-field label small { font-weight: 400; color: var(--chf-muted); }
.chf-field input, .chf-field select, .chf-field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--chf-ink);
  padding: .8em 1em; border-radius: 14px; border: 1.5px solid var(--chf-grey-2); background: var(--chf-grey);
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.chf-field textarea { resize: vertical; min-height: 120px; }
.chf-field input:focus, .chf-field select:focus, .chf-field textarea:focus { outline: none; border-color: var(--chf-forest); background: #fff; box-shadow: 0 0 0 4px rgba(198, 231, 122, .55); }
.chf-field .is-invalid, .chf-consent .is-invalid { border-color: var(--chf-err) !important; }
.chf-err { color: var(--chf-err); font-size: .82rem; margin: 4px 0 0; min-height: 0; }
.chf-err:empty { display: none; }
.chf-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--chf-muted); margin: 6px 0 4px; }
.chf-consent input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--chf-forest); }
.chf-form .chf-btn--full { margin-top: 16px; }
.chf-form__mention { font-size: .8rem; color: var(--chf-muted); margin: 12px 0 0; }
.chf-success { display: flex; gap: 14px; align-items: flex-start; margin-top: 18px; padding: 16px 18px; border-radius: 18px; background: var(--chf-lime-l); color: var(--chf-forest-d); }
.chf-success[hidden] { display: none; }
.chf-success p { margin: 4px 0 0; font-size: .92rem; }

/* ---------- footer ---------- */
.chf-footer { background: var(--chf-forest-d); color: #C8D6D0; padding-top: 64px; border-radius: var(--chf-radius-lg) var(--chf-radius-lg) 0 0; }
.chf-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.chf-footer a { color: #fff; }
.chf-footer a:hover { color: var(--chf-lime); }
.chf-footer p { font-size: .95rem; margin-top: 12px; }
.chf-footer__h { font-size: .8rem; font-family: var(--chf-mono); text-transform: uppercase; letter-spacing: .14em; color: var(--chf-lime); margin-bottom: .8rem; font-weight: 600; }
.chf-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.chf-footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid rgba(255, 255, 255, .12); padding-block: 20px 28px; font-size: .85rem; }
.chf-footer__bottom p { margin: 0; }

/* ---------- cookie ---------- */
.chf-cookie {
  position: fixed; z-index: 60; left: 16px; right: 16px; bottom: 16px; margin-inline: auto; max-width: 620px;
  background: #fff; border-radius: 24px; padding: 18px 20px; box-shadow: 0 24px 60px -20px rgba(20, 63, 55, .45);
  border: 1px solid var(--chf-grey-2); display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.chf-cookie[hidden] { display: none; }
.chf-cookie p { margin: 0; flex: 1 1 280px; font-size: .92rem; }
.chf-cookie__btns { display: flex; gap: 8px; }

/* ---------- reveal ---------- */
.chf-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.chf-reveal.is-in { opacity: 1; transform: none; }
.chf-why__item.chf-reveal.is-in:nth-child(3n+2) { transform: translateY(28px); }
.no-js .chf-reveal { opacity: 1; transform: none; }

/* ---------- breakpoints ---------- */
@media (max-width: 1080px) {
  .chf-services__grid, .chf-why__grid { grid-template-columns: repeat(2, 1fr); }
  .chf-why__item:nth-child(3n+2), .chf-why__item.chf-reveal.is-in:nth-child(3n+2) { transform: none; }
  .chf-reviews__grid { grid-template-columns: 1fr 1fr; }
  .chf-reviews__grid .chf-review:last-child { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  :root { --chf-header-h: 68px; }
  .chf-burger { display: flex; }
  .chf-nav {
    position: fixed; top: var(--chf-header-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 16px;
    background: #fff; padding: 16px 16px 24px; border-radius: 0 0 28px 28px; box-shadow: 0 30px 40px -20px rgba(20, 63, 55, .3);
    transform: translateY(-120%); visibility: hidden; transition: transform .3s ease, visibility .3s;
  }
  .chf-nav.is-open { transform: none; visibility: visible; }
  .chf-nav ul { flex-direction: column; }
  .chf-nav ul a { padding: .8em 1em; font-size: 1.05rem; }
  .chf-hero__grid, .chf-about__grid, .chf-contact__grid, .chf-head--split { grid-template-columns: 1fr; }
  .chf-hero__visual { max-width: 620px; width: 100%; margin-inline: auto; }
}
@media (max-width: 640px) {
  .chf-services__grid, .chf-why__grid, .chf-reviews__grid { grid-template-columns: 1fr; }
  .chf-row { grid-template-columns: 1fr; gap: 0; }
  .chf-footer__grid { grid-template-columns: 1fr; }
  .chf-float--a { left: 0; min-width: 160px; padding: 10px 12px; }
  .chf-float--c { right: 0; min-width: 120px; padding: 10px 12px; }
  .chf-float--b { left: 0; padding: 10px 12px; }
  .chf-float__num { font-size: 1.1rem; }
  .chf-hl { white-space: normal; }
  .chf-cookie__btns { width: 100%; }
  .chf-cookie__btns .chf-btn { flex: 1; }
}
@media (max-width: 400px) {
  .chf-stats { grid-template-columns: 1fr; }
  .chf-float--c { display: none; }
}
@media (min-width: 1440px) {
  .chf-wrap { width: min(1320px, 100% - 64px); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .chf-reveal { opacity: 1; transform: none; }
}
