/* Eldy — premium theme (the v3 landing-page look, applied site-wide).
 *
 * The public pages are standalone templates, but they all declare the same
 * token names in their own :root. This file is linked AFTER each page's inline
 * <style>, so redefining the tokens here retints the whole site without
 * touching a single page's layout.
 *
 * Only tokens and typography live here. Anything structural (grids, spacing,
 * components) stays in the page that owns it.
 */

:root {
  /* Type: a warm old-style serif for headings, a squared grotesque for text. */
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Karla", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Deepened brick red: the coral logo's family, but mature. */
  --primary: #9e3f3a;
  --primary-dark: #83322e;

  /* Buttons keep the logo coral, a touch darker so white text holds. */
  --button: #cd5251;
  --button-dark: #b44544;

  /* Warm ink and parchment instead of cool greys. */
  --text: #2a2420;
  --muted: #5e5550;
  --bg: #faf6ef;
  --ivory: #f6f1e8;
  --sand: #f5eee3;
  --border: #e3d9c8;

  /* Brass: the premium accent, used sparingly. */
  --brass: #b08d57;
  --brass-dark: #7a5c34;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fffdf9;
  -webkit-font-smoothing: antialiased;
}

/* Headings: one weight everywhere (600), so the serif reads as confident
   rather than shouty. The v2 pages used 700-900 in a dozen places. */
h1, h2, h3, h4, h5, h6,
.section-heading, .section-title, .hero-title, .page-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: normal;
  color: var(--text);
  text-wrap: balance;
}

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

/* Body copy sits slightly larger and looser than v2's, matching the v3 hero. */
p, li {
  font-family: var(--font-body);
}

/* Small uppercase labels above a heading become brass instead of coral: it is
   the accent that makes the palette feel expensive, precisely because it is
   rare. */
.eyebrow, .kicker, .overline, .label-uppercase {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-dark);
}

/* Buttons: pill, coral, never pure black text on colour. */
.button:not(.button--jobs):not(.button--outline):not(.button--ghost),
.btn-primary, .cta-button, button.primary, input[type="submit"] {
  font-family: var(--font-body);
  font-weight: 700;
  background: var(--button);
  border-color: var(--button);
  color: #fff;
  border-radius: 50px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.button:not(.button--jobs):not(.button--outline):not(.button--ghost):hover,
.btn-primary:hover, .cta-button:hover,
button.primary:hover, input[type="submit"]:hover {
  background: var(--button-dark);
  border-color: var(--button-dark);
  color: #fff;
}

.button--outline, .btn-outline-primary {
  background: transparent;
  color: var(--button);
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--button);
}

.button--outline:hover, .btn-outline-primary:hover {
  background: var(--button);
  color: #fff;
}

/* Quiet the pure-white cards: parchment reads warmer next to the serif. */
.card, .panel, .box-shadow, .feature-card {
  border-radius: 12px;
}

a {
  color: inherit;
}

/* Links inside running text keep the brick red, underlined on hover only.
   Scoped to paragraphs: a bare `li a` also matched the navbar, whose items
   live in a <ul>, and turned the menu red. */
p a:not(.button):not(.btn) {
  color: var(--primary);
  text-decoration: none;
}

p a:not(.button):not(.btn):hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Navbar items stay ink, as they were before the restyle, and warm to brick
   on hover. The page's own rule is more specific than a bare element one. */
.header-top-wrapper .header-top .header-navigation .navigation__item a,
.header-top-wrapper .header-top .header-navigation .navigation__item button {
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
}

.header-top-wrapper .header-top .header-navigation .navigation__item a:hover,
.header-top-wrapper .header-top .header-navigation .navigation__item button:hover {
  color: var(--primary);
}

/* ── Page-specific classes the v2 templates share ───────────────────────────
   These carry their own weights inline (h1.home-stage__teaser-title is 700,
   .section-heading is 900), which outranks the element selectors above. They
   are listed here so one file still holds the whole type scale. */

h1.home-stage__teaser-title,
.home-stage__teaser-title {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: normal;
}

.home-stage__teaser-content {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5556;
  color: var(--muted);
}

.home-stage__eyebrow {
  color: var(--brass-dark);
}

.section-heading,
.v2-section-title,
.teaser-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: normal;
}

/* ── Service hero (31 pages share it) ───────────────────────────────────────
   Was a navy-blue gradient with white text — the cool, corporate look v3 moves
   away from. Same markup, now parchment with warm ink, a brass rule and the
   coral CTA, so a service page opens like the landing page. */

.service-hero {
  background: linear-gradient(180deg, var(--ivory) 0%, #fffdf9 100%);
  border-bottom: 1px solid rgba(176, 141, 87, 0.28);
}

.service-hero__bg {
  /* Quiet by default; see the 24h/24 page for the brighter treatment on trial. */
  opacity: 0.22;
  filter: saturate(0.85);
}

/* Hero text on parchment: ink, not the white the navy-gradient version used.
   Scoped through .service-hero so it beats each page's own rule, several of
   which sit in a second <style> block after this file. */
.service-hero .service-hero__content {
  color: var(--text);
}

.service-hero .service-hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.06;
  color: var(--text);
  text-wrap: balance;
}

.service-hero .service-hero__subtitle {
  font-family: var(--font-body);
  font-size: max(1.25rem, 20px);
  line-height: 1.55;
  color: var(--muted);
}

.service-hero .service-hero__note {
  color: var(--brass-dark);
}

/* Category mark above the headline: a thin brass line icon in a parchment
   disc, the same family as the welcome modal's. */
/* The emblem stands on its own — no disc, no shadow. An ornament this fine
   only reads as luxury when nothing frames it. */
.service-hero__mark {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 0 1.75rem;
  color: var(--button);
}

.service-hero__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* The eyebrow above a service title, wherever the page calls it. */
.service-hero__eyebrow,
.service-hero .eyebrow,
.service-hero__label {
  color: var(--brass-dark);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Legal and blog heroes follow the same rule so no page keeps the old navy. */
.legal-hero, .blog-hero {
  background: linear-gradient(180deg, var(--ivory) 0%, #fffdf9 100%);
  border-bottom: 1px solid rgba(176, 141, 87, 0.28);
}

.legal-hero__title, .blog-hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
}

.legal-hero p, .blog-hero p, .legal-hero__subtitle, .blog-hero__subtitle {
  color: var(--muted);
}

/* The header's secondary button (Emploi) stays quiet: parchment on parchment,
   so the phone button is the only filled thing up there. */
.button--jobs {
  background: rgba(255, 253, 249, 0.6);
  color: var(--muted);
  box-shadow: inset 0 0 0 1px rgba(42, 36, 32, 0.12);
  border-radius: 50px;
  font-weight: 600;
}

.button--jobs:hover {
  background: #fffdf9;
  color: var(--text);
}

.button--ghost {
  background: transparent;
  color: var(--button);
  box-shadow: inset 0 0 0 2px var(--button);
  border-radius: 50px;
}

/* ── Hero geometry, v3 pattern (home + /aide-a-domicile/) ───────────────────
   Photo full-bleed, parchment card ending on the navbar's right edge, one
   column narrower than before so the caregiver stays visible. */

@media (min-width: 48rem) {
  .home-stage__grid {
    max-width: calc(87.5rem + 3rem);
  }
}

@media (min-width: 64rem) {
  .home-stage__grid {
    max-width: calc(87.5rem + 4rem);
  }
  .home-stage__teasers {
    grid-column: 7/13;
    padding: 36px 44px 36px;
  }
  .home-stage__teaser-title {
    font-size: clamp(2.25rem, calc(2.9vw * var(--eldy-scale, 1)), 3.25rem);
    line-height: 1.06;
  }
}

/* The eyebrow above the headline, with the brass rule that trails it. */
.home-stage__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

/* Without its own grid area the eyebrow auto-placed into one half of the
   card and wrapped onto two lines; v3 gives it the full row. */
.home-stage__teasers .home-stage__eyebrow {
  grid-area: eyebrow;
}
.home-stage__eyebrow::after {
  content: "";
  flex: 0 0 2.5rem;
  height: 1px;
  background: var(--brass);
}
.home-stage__teaser-button {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.eyebrow-flag {
  width: 1em;
  height: 1em;
  margin-left: -0.25rem;
  border-radius: 3px;
  background: #DA291C;
  box-shadow: 0 1px 2px rgba(42, 36, 32, 0.15);
  flex: none;
}

/* Hero bullets: the dot becomes brick red and the copy sits on muted ink. */
.home-stage__teaser-content li:before {
  color: var(--primary);
}

/* ── Chrome: navbar and footer, matching v3 ─────────────────────────────────
   v2 used a white navbar and a navy footer; v3 is beige on top and warm ink
   below, which is what makes the page read as one warm object. */

.header-top-wrapper {
  background-color: var(--sand);
}

.v2-footer {
  background: var(--text);
  color: #fff;
}

/* Nav links: the same size and weight as v3's, quieter than v2's. */
.header-navigation .navigation__item button,
.header-navigation .navigation__item a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

/* Section headings across the site: one scale, from v3. */
.section-heading {
  font-size: clamp(1.875rem, calc(2.7vw * var(--eldy-scale, 1)), 2.625rem);
  line-height: 1.15;
}

/* Body copy in sections: v2 ran at 1rem/1.6, v3 at 1.125rem with muted ink. */
.section-intro, .section-subtitle, .lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
}

/* The eyebrow needs its own row, or it lands after the card's last area. */
.home-stage__teasers .home-stage__teaser {
  grid: "eyebrow eyebrow" "heading heading" "content content" "button button" "pagination pagination";
  grid-template-rows: auto auto auto auto auto;
}

/* Without a named area the testimonial auto-places into the first free cell —
   top-right of the card. Pin it to the last row, under the buttons, as in v3. */
.home-stage__teaser .hero-testimonial {
  grid-area: pagination;
  border-top: 1px solid rgba(122, 92, 52, 0.22);
}

/* ── Readable body copy ─────────────────────────────────────────────────────
   v2 set paragraphs at 13-14px in most sections, which the warm palette makes
   look even lighter. A px floor holds the size whatever the root scaling does,
   so laptops stop getting 12-13px prose. Labels, eyebrows, badges and legal
   notes keep their own (deliberately small) size. */

p:not(.home-stage__eyebrow):not(.eyebrow):not(.kicker):not(.overline):not(.service-hero__note):not([class*="badge"]):not([class*="label"]):not([class*="caption"]):not([class*="legal"]):not([class*="note"]):not([class*="meta"]):not([class*="disclaimer"]),
.card p, .feature-card p, .faq-answer, .faq-answer p {
  font-size: max(1.0625rem, 17.5px);
  line-height: 1.65;
}

li:not(.navigation__item):not(.step-indicator__item):not([class*="badge"]):not([class*="tag"]) {
  font-size: max(1.0625rem, 17.5px);
  line-height: 1.6;
}

/* Section intros stay one step above the body, as on the landing page. */
.section-intro, .section-subtitle, .lead, .service-hero__subtitle {
  font-size: max(1.1875rem, 20px);
  line-height: 1.6;
}

/* Footer text was the smallest on the page; lift it to a readable 16px. */
.v2-footer, .v2-footer p, .v2-footer li, .v2-footer a {
  font-size: max(1rem, 16.5px);
  line-height: 1.6;
}

/* The page rules above reach most prose, but these classes set their own size
   in rem, so at the site's 13px root they land at 11-12px. Floors, not fixed
   sizes: they still scale up on large screens. */
.teaser-card-icon-half-height .text,
.hwd-flow-desc,
.pricing-card__list li,
.comparison-table, .comparison-table td, .comparison-table th,
.resource-list li span,
.ems-card__address, .ems-card__region,
.team-member-role,
.canton-hero__testimonial-quote,
.hero-testimonial-quote,
.faq-answer p,
.vetting-list span {
  font-size: max(1.0625rem, 17px);
  line-height: 1.6;
}

/* Prices and figures carry weight, so they get a touch more. */
.ems-card__price {
  font-size: max(1.125rem, 18.5px);
}

/* Footer links and legal lines: readable, still secondary. */
.v2-footer__tagline,
.v2-footer__nav-col a,
.v2-footer__bottom {
  font-size: max(1rem, 16px);
  line-height: 1.6;
}

.v2-footer__disclaimer p {
  font-size: max(0.9375rem, 14px);
  line-height: 1.6;
}

/* Small caps labels stay small — that is the point of them. */
.section-badge, .pricing-card__badge, .swiss-badge, .city-tag,
.hero-testimonial-count {
  font-size: max(0.8125rem, 12.5px);
}

/* Hero photo height, from v3: the home page stopped at 48rem, which pushed the
   card down and cropped the scene. 52rem (54rem on very wide screens) is what
   the v3 hero is tuned to. */
@media (min-width: 64rem) {
  .home-stage__background-images-wrapper {
    height: 52rem;
  }
}

@media (min-width: 100rem) {
  .home-stage__background-images-wrapper {
    height: 54rem;
  }
}

/* The card is sand — the same parchment as the navbar — not the cooler #f7f5f1
   the v2 pages used. */
.home-stage__teasers,
.home-stage__teasers--sand {
  background-color: var(--sand);
}

/* The card hangs from just under the header and ends where its content ends:
   anchoring it to the photo's bottom edge too left a large empty band above
   the testimonial on pages with less copy. */
@media (min-width: 48rem) {
  .home-stage__grid {
    top: 7rem;
    bottom: auto;
    align-items: start;
  }
  .home-stage__teasers {
    overflow: visible;
  }
}

/* ── Chrome: navbar and footer, matching v3 ─────────────────────────────────
   v2 used a white navbar and a navy footer; v3 is beige on top and warm ink
   below, which is what makes the page read as one warm object. */

.header-top-wrapper {
  background-color: var(--sand);
}

.v2-footer {
  background: var(--text);
  color: #fff;
}

/* Nav links: the same size and weight as v3's, quieter than v2's. */
.header-navigation .navigation__item button,
.header-navigation .navigation__item a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

/* Section headings across the site: one scale, from v3. */
.section-heading {
  font-size: clamp(1.875rem, calc(2.7vw * var(--eldy-scale, 1)), 2.625rem);
  line-height: 1.15;
}

/* Body copy in sections: v2 ran at 1rem/1.6, v3 at 1.125rem with muted ink. */
.section-intro, .section-subtitle, .lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
}

/* The eyebrow needs its own row, or it lands after the card's last area. */
.home-stage__teasers .home-stage__teaser {
  grid: "eyebrow eyebrow" "heading heading" "content content" "button button" "pagination pagination";
  grid-template-rows: auto auto auto auto auto;
}

/* Without a named area the testimonial auto-places into the first free cell —
   top-right of the card. Pin it to the last row, under the buttons, as in v3. */
.home-stage__teaser .hero-testimonial {
  grid-area: pagination;
  border-top: 1px solid rgba(122, 92, 52, 0.22);
}

/* ── Readable body copy ─────────────────────────────────────────────────────
   v2 set paragraphs at 13-14px in most sections, which the warm palette makes
   look even lighter. A px floor holds the size whatever the root scaling does,
   so laptops stop getting 12-13px prose. Labels, eyebrows, badges and legal
   notes keep their own (deliberately small) size. */

p:not(.home-stage__eyebrow):not(.eyebrow):not(.kicker):not(.overline):not(.service-hero__note):not([class*="badge"]):not([class*="label"]):not([class*="caption"]):not([class*="legal"]):not([class*="note"]):not([class*="meta"]):not([class*="disclaimer"]),
.card p, .feature-card p, .faq-answer, .faq-answer p {
  font-size: max(1.0625rem, 17.5px);
  line-height: 1.65;
}

li:not(.navigation__item):not(.step-indicator__item):not([class*="badge"]):not([class*="tag"]) {
  font-size: max(1.0625rem, 17.5px);
  line-height: 1.6;
}

/* Section intros stay one step above the body, as on the landing page. */
.section-intro, .section-subtitle, .lead, .service-hero__subtitle {
  font-size: max(1.1875rem, 20px);
  line-height: 1.6;
}

/* Footer text was the smallest on the page; lift it to a readable 16px. */
.v2-footer, .v2-footer p, .v2-footer li, .v2-footer a {
  font-size: max(1rem, 16.5px);
  line-height: 1.6;
}

/* The page rules above reach most prose, but these classes set their own size
   in rem, so at the site's 13px root they land at 11-12px. Floors, not fixed
   sizes: they still scale up on large screens. */
.teaser-card-icon-half-height .text,
.hwd-flow-desc,
.pricing-card__list li,
.comparison-table, .comparison-table td, .comparison-table th,
.resource-list li span,
.ems-card__address, .ems-card__region,
.team-member-role,
.canton-hero__testimonial-quote,
.hero-testimonial-quote,
.faq-answer p,
.vetting-list span {
  font-size: max(1.0625rem, 17px);
  line-height: 1.6;
}

/* Prices and figures carry weight, so they get a touch more. */
.ems-card__price {
  font-size: max(1.125rem, 18.5px);
}

/* Footer links and legal lines: readable, still secondary. */
.v2-footer__tagline,
.v2-footer__nav-col a,
.v2-footer__bottom {
  font-size: max(1rem, 16px);
  line-height: 1.6;
}

.v2-footer__disclaimer p {
  font-size: max(0.9375rem, 14px);
  line-height: 1.6;
}

/* Small caps labels stay small — that is the point of them. */
.section-badge, .pricing-card__badge, .swiss-badge, .city-tag,
.hero-testimonial-count {
  font-size: max(0.8125rem, 12.5px);
}

/* Hero photo height, from v3: the home page stopped at 48rem, which pushed the
   card down and cropped the scene. 52rem (54rem on very wide screens) is what
   the v3 hero is tuned to. */
@media (min-width: 64rem) {
  .home-stage__background-images-wrapper {
    height: 52rem;
  }
}

@media (min-width: 100rem) {
  .home-stage__background-images-wrapper {
    height: 54rem;
  }
}

/* The card is sand — the same parchment as the navbar — not the cooler #f7f5f1
   the v2 pages used. */
.home-stage__teasers,
.home-stage__teasers--sand {
  background-color: var(--sand);
}

/* The card was bottom-anchored only, so its top depended on how much copy the
   page had — the home card (one bullet fewer than v3) started ~120px lower.
   Anchor the top as well: the card now runs from just under the header to the
   bottom of the photo on every page, whatever the copy. */
@media (min-width: 48rem) {
  .home-stage__grid {
    top: 7rem;
    /* start, not stretch: the card may grow past the photo's bottom edge
       rather than clipping its own last line (the rating under the quote). */
    align-items: start;
  }
  .home-stage__teasers {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: visible;
  }
  .home-stage__teasers .home-stage__teaser {
    flex: 1;
    grid-template-rows: auto auto auto auto 1fr;
  }
  /* Content stays at the top; the testimonial holds the bottom edge. */
  .home-stage__teaser .hero-testimonial {
    align-self: end;
    width: 100%;
  }
}


/* The layout runs at 80%, so anything still sized purely in rem would shrink
   with it. These are reading text, not chrome: they keep a px floor. */
.home-stage__teaser-content,
.home-stage__teaser-content li {
  font-size: max(1.125rem, 17.5px);
  line-height: 1.55;
}

.service-hero__subtitle {
  font-size: max(1.25rem, 20px);
}

/* Inline rem sizes in the markup can't be overridden by a stylesheet, so the
   few paragraphs carrying them get a floor here by attribute. Uppercase labels
   set their own letter-spacing, which is how they stay excluded above. */
p[style*="font-size: 1.0625rem"],
p[style*="font-size:1.0625rem"],
p[style*="font-size: 1.1rem"],
p[style*="font-size: 1.125rem"] {
  font-size: max(1.0625rem, 17.5px) !important;
}
/* Service introductions: readable copy beside a contained benefits list. */
.service-reassurance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, calc(5vw * var(--eldy-scale, 1)), 5rem);
}
.service-reassurance .section-heading {
  max-width: 23ch;
  text-wrap: balance;
  margin-bottom: 1.5rem;
}
.service-reassurance__intro > p:last-child {
  max-width: 54ch !important;
}
.service-reassurance > .included-list {
  margin: 0;
  padding: clamp(1.25rem, calc(2.5vw * var(--eldy-scale, 1)), 2.5rem);
  background: #f6f1e8;
  border: 1px solid #e8dfd3;
  border-radius: 1rem;
}
.service-reassurance > .included-list li {
  padding: 1rem 0 1rem 2.5rem;
  border-bottom: 1px solid #e4dace;
  line-height: 1.5;
}
.service-reassurance > .included-list li:first-child { padding-top: 0; }
.service-reassurance > .included-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.service-reassurance > .included-list li::before {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  top: 1.15rem;
  border-radius: 50%;
  background: #eadbd1;
  color: #a34638;
  font-size: 0.875rem;
  line-height: 1;
}
.service-reassurance > .included-list li:first-child::before { top: 0.15rem; }
.service-reassurance > p { grid-column: 1 / -1; margin-top: 0 !important; }
@media (max-width: 56rem) {
  .service-reassurance { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .service-reassurance .section-heading { max-width: 28ch; }
}

/* ── "Ce qui est inclus" lists (23 pages) ───────────────────────────────────
   A bare column of ticks with hairlines read as a spec sheet. Same markup,
   now parchment cards, each with a drawn check in a brass ring. The row is a
   flex line, so long labels wrap beside the mark instead of under it. */

.included-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 48rem) {
  :not(.service-reassurance) > .included-list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
  }
}

:not(.service-reassurance) > .included-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: static;
  margin: 0;
  padding: 1.35rem 1.6rem;
  min-height: 4.5rem;
  background: #fffdf9;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(42, 36, 32, 0.04);
  font-size: max(1.0625rem, 17px);
  line-height: 1.5;
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

:not(.service-reassurance) > .included-list li:hover {
  border-color: var(--brass);
  box-shadow: 0 8px 22px rgba(42, 36, 32, 0.07);
}

/* A drawn check, not the ✓ glyph: the character sat off-centre in the ring and
   its weight changed with the font. */
.included-list li::before,
.service-reassurance > .included-list li::before {
  content: "";
  flex: none;
  /* The page rules place this absolutely at left:0; in a flex row it has to
     sit in the flow, or it lands outside the card and leaves a blank gap. */
  position: static;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background-color: var(--ivory);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a5c34' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.95rem 0.95rem;
  box-shadow: inset 0 0 0 1px rgba(176, 141, 87, 0.5);
}

/* The intro above the list gets air, and the section a warm floor. */
.service-reassurance__intro {
  max-width: 720px;
}

.service-reassurance .section-badge {
  color: var(--brass-dark);
}


/* The reassurance panel keeps its hairline rows, but the mark is the same
   drawn check as everywhere else — the ✓ glyph in a pink disc looked like a
   placeholder. */
.service-reassurance > .included-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  position: static;
}

.service-reassurance > .included-list li::before {
  position: static;
  width: 1.7rem;
  height: 1.7rem;
  background-color: var(--ivory);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a5c34' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.95rem 0.95rem;
  box-shadow: inset 0 0 0 1px rgba(176, 141, 87, 0.5);
  color: transparent;
  font-size: 0;
}
