/* Hallmark · macrostructure: Workbench · genre: modern-minimal · theme: custom
 * tone: technical/precise · anchor hue: royal-blue (cool) · paper: white (light)
 * pre-emit critique: P5 H4 E4 S5 R4 V4
 * Car2Tour — site vitrine. Tokens locked; no inline colour/font values.
 */

:root {
    /* ---- Palette — ozone-garage's two colors ---- */
    --color-accent: #0058C9;            /* ozone blue */
    --color-accent-strong: #00429A;     /* darker blue (hover) */
    --color-secondary: #E00000;         /* ozone red */
    --color-secondary-strong: #B80000;  /* darker red (hover) */
    --color-support: #0058C9;           /* ozone has 2 colors — support = blue */

    --color-ink: oklch(28% 0 0);                  /* #3F3F3F-ish primary text (ozone) */
    --color-secondary-ink: oklch(20% 0 0);        /* #252525 headings (ozone) */
    --color-ink-soft: oklch(60% 0 0);             /* #989898 body text (ozone) */
    --color-paper: oklch(100% 0 0);               /* white */
    --color-paper-2: oklch(97.5% 0 0);            /* #F8F8F8 section grey (ozone) */
    --color-paper-3: oklch(94% 0 0);
    --color-line: oklch(90% 0 0);                 /* neutral hairline rules */
    --color-focus: #0058C9;

    /* ---- Type — Barlow superfamily (2026-07 refresh) ----
       Display = Barlow Condensed (road-signage DNA, promo-poster impact),
       body = Barlow. Blinker stays loaded ONLY for legacy slide-studio
       designs that inline it — do not use it for new UI. */
    --font-display: 'Barlow Condensed', 'Blinker', system-ui, sans-serif;
    --font-body: 'Barlow', 'Blinker', system-ui, sans-serif;

    /* Condensed display needs more size to carry the same weight on screen */
    --text-display: clamp(2.9rem, 6.5vw, 4.9rem);
    --text-display-s: clamp(2.2rem, 5vw, 3.3rem);
    --text-h2: clamp(1.65rem, 3.2vw, 2.35rem);
    --text-h3: 1.25rem;
    --text-body: 1.0625rem;
    --text-sm: 0.875rem;

    /* ---- Space (4pt scale) ---- */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3.5rem;
    --space-2xl: 6rem;

    --radius: 12px;
    --radius-lg: 20px;
    --rule: 1px solid var(--color-line);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --dur: 220ms;
}

* { box-sizing: border-box; }
html, body { overflow-x: clip; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: 1.6;
    color: var(--color-ink);
    background: var(--color-paper);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-style: normal;          /* roman headings only */
    font-weight: 700;            /* Barlow Condensed 700 = punchy without shouting */
    line-height: 1.04;           /* condensed tolerates a tighter leading */
    letter-spacing: 0.002em;     /* condensed must NOT be tracked negative */
    color: var(--color-secondary-ink, var(--color-ink));
    overflow-wrap: anywhere;
    min-width: 0;
}

a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.c2t-wrap { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: var(--space-xs); }

/* ---- Top utility bar ---- */
.c2t-topbar { background: var(--color-ink); color: oklch(90% 0.01 250); font-size: var(--text-sm); }
.c2t-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); min-height: 38px; }
.c2t-topbar__info { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.c2t-topbar a { color: oklch(90% 0.01 250); }
.c2t-topbar a:hover { color: var(--color-paper); text-decoration: none; }
.c2t-topbar__sep { color: oklch(55% 0.02 250); }
.c2t-topbar__social a { font-weight: 600; }

/* ---- Navbar (N1b canonical service nav) ---- */
.c2t-nav {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in oklch, var(--color-paper) 88%, transparent);
    backdrop-filter: blur(8px);
    border-bottom: var(--rule);
}
/* ozone layout: logo left · menu centered · CTA right */
.c2t-nav__inner {
    display: flex; align-items: center; gap: var(--space-lg);
    min-height: 76px; position: relative;
}
.c2t-brand { display: inline-flex; align-items: center; gap: var(--space-sm); }
.c2t-brand img { height: 50px; width: auto; display: block; }
.c2t-nav__links {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    display: flex; gap: var(--space-xl); align-items: center;
}
.c2t-nav__links a:not(.c2t-btn) { color: var(--color-secondary-ink); font-weight: 600; font-size: 1rem; white-space: nowrap; }
.c2t-nav__links a:not(.c2t-btn):hover { color: var(--color-accent); text-decoration: none; }
.c2t-nav__cta { margin-left: auto; }
.c2t-nav__links .c2t-nav__cta-mobile { display: none; }
.c2t-nav__toggle { display: none; margin-left: auto; background: none; border: var(--rule); border-radius: 8px; padding: .4rem .6rem; cursor: pointer; font-size: 1.2rem; }

/* ---- Buttons ---- */
.c2t-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    /* UI controls use the body face — condensed type is reserved for headlines */
    font-family: var(--font-body); font-weight: 600; font-size: 0.97rem; letter-spacing: 0.01em;
    padding: .7rem 1.2rem; border-radius: var(--radius); border: 2px solid transparent;
    cursor: pointer; white-space: nowrap; transition: background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.c2t-btn--primary { background: var(--color-accent); color: var(--color-paper); }
.c2t-btn--primary:hover { background: var(--color-accent-strong); text-decoration: none; color: var(--color-paper); }
.c2t-btn--primary:active { transform: translateY(1px); }
.c2t-btn--ghost { background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.c2t-btn--ghost:hover { background: var(--color-accent); color: var(--color-paper); text-decoration: none; }
.c2t-btn--accent { background: var(--color-secondary); color: var(--color-paper); }
.c2t-btn--accent:hover { background: var(--color-secondary-strong); color: var(--color-paper); text-decoration: none; }
.c2t-btn--accent:active { transform: translateY(1px); }
.c2t-btn--secondary { background: var(--color-secondary); color: var(--color-paper); }
.c2t-btn--secondary:hover { background: var(--color-secondary-strong); color: var(--color-paper); text-decoration: none; }
.c2t-btn--secondary:active { transform: translateY(1px); }
.c2t-btn--block { width: 100%; }
.c2t-btn:focus-visible { outline: 3px solid var(--color-focus); outline-offset: 2px; }
.c2t-btn[disabled] { opacity: .55; cursor: not-allowed; }

/* (old .c2t-hero block removed — the hero is now the Euromaster slider + action
   card defined below; its .c2t-hero rule lives in the HERO section.) */
.c2t-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); letter-spacing: .04em; text-transform: uppercase; color: var(--color-support); margin-bottom: var(--space-md); }
.c2t-eyebrow::before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: conic-gradient(var(--color-accent) 0 25%, var(--color-secondary) 25% 50%, var(--color-accent) 50% 75%, var(--color-secondary) 75% 100%); }

/* ---- Section scaffold ---- */
.c2t-section { padding: var(--space-2xl) 0; }
.c2t-section--alt { background: var(--color-paper-2); }
.c2t-section__head { max-width: 60ch; margin: 0 auto var(--space-xl); text-align: center; }
.c2t-section__head h2 { font-size: var(--text-h2); margin: 0 0 var(--space-sm); }
.c2t-section__head p { color: var(--color-ink-soft); margin: 0; }

/* ---- Services grid (Workbench) ---- */
.c2t-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-md); }
.c2t-card { border: var(--rule); border-radius: var(--radius-lg); padding: var(--space-lg); background: var(--color-paper); transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out); }
.c2t-card:hover { transform: translateY(-3px); border-color: var(--color-accent); }
.c2t-card h3 { font-size: var(--text-h3); margin: 0 0 var(--space-xs); }
.c2t-card p { color: var(--color-ink-soft); font-size: var(--text-sm); margin: 0; }
.c2t-card__tag { display: inline-block; width: 28px; height: 28px; border-radius: 8px; background: var(--color-paper-3); margin-bottom: var(--space-sm); position: relative; }
.c2t-card__tag::after { content: ""; position: absolute; inset: 8px; border-radius: 50%; border: 3px solid var(--color-accent); }

/* ---- Proof bar (real idGarages data) ---- */
.c2t-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-md); }
.c2t-proof__item { text-align: center; padding: var(--space-md); }
.c2t-proof__num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--color-accent); line-height: 1; }
.c2t-proof__label { color: var(--color-ink-soft); font-size: var(--text-sm); margin-top: var(--space-xs); }

/* ---- Devis form ---- */
.c2t-devis { background: var(--color-paper); border: 2px solid var(--color-line); border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: 0 16px 40px -24px color-mix(in srgb, var(--color-accent) 35%, transparent); }
.c2t-devis__skip { margin: var(--space-sm) 0 0; text-align: center; font-size: var(--text-sm); }
.c2t-devis__skip a { color: var(--color-ink-soft); }
/* Two-step wizard: step 1 (vehicle) shows first; on completion it hides and
   step 2 (service + contact) appears. A back button returns to step 1. */
.c2t-step1 { display: block; }
.c2t-step1.is-off { display: none; }
.c2t-step2 { display: none; }
.c2t-step2.is-on { display: block; }
.c2t-step3 { display: none; }
.c2t-step3.is-on { display: block; }
.c2t-step-back { display: inline-flex; align-items: center; gap: .3rem; margin-bottom: var(--space-sm); background: none; border: none; padding: 0; color: var(--color-accent); font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); cursor: pointer; }
.c2t-step-back:hover { text-decoration: underline; }

/* Identified-vehicle banner (step 2): compact, no dead space below the back link. */
.c2t-vehicle-found { margin-bottom: var(--space-sm); }
.c2t-vehicle-found strong { display: block; color: var(--color-ink); font-family: var(--font-display); font-size: var(--text-h3, 1.15rem); line-height: 1.2; }

.c2t-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--space-md); }
.c2t-field { margin-bottom: var(--space-sm); }
.c2t-field label { display: block; font-weight: 600; font-size: var(--text-sm); margin-bottom: .35rem; }
.c2t-input, .c2t-select, .c2t-textarea {
    width: 100%; padding: .7rem .85rem; font: inherit; color: var(--color-ink);
    background: var(--color-paper); border: var(--rule); border-radius: var(--radius);
    transition: border-color var(--dur) var(--ease-out);
}
.c2t-input:focus, .c2t-select:focus, .c2t-textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px color-mix(in oklch, var(--color-accent) 18%, transparent); }
.c2t-textarea { min-height: 110px; resize: vertical; }

/* License-plate field — "plate-first" euro-plate visual */
.c2t-plate { display: flex; align-items: stretch; border: 2px solid var(--color-ink); border-radius: var(--radius); overflow: hidden; background: var(--color-paper); max-width: 380px; }
.c2t-plate__eu { display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--color-accent); color: var(--color-paper); padding: 0 .6rem; font-family: var(--font-display); font-weight: 800; font-size: .75rem; }
.c2t-plate__eu span { font-size: 1.1rem; }
.c2t-plate input { flex: 1; min-width: 0; border: none; padding: .8rem 1rem; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: .12em; text-transform: uppercase; }
.c2t-plate input:focus { outline: none; }

.c2t-manual { display: none; margin-top: var(--space-xs); }
.c2t-manual.is-on { display: block; }

.c2t-alert { padding: var(--space-sm) var(--space-md); border-radius: var(--radius); margin-bottom: var(--space-md); font-size: var(--text-sm); }
.c2t-alert--ok { background: color-mix(in oklch, var(--color-support) 14%, var(--color-paper)); border: 1px solid var(--color-support); color: var(--color-ink); }
.c2t-alert--err { background: color-mix(in oklch, var(--color-secondary) 14%, var(--color-paper)); border: 1px solid var(--color-secondary); color: var(--color-ink); }

/* Target-spin loader, reused brand motif */
.c2t-spin { width: 18px; height: 18px; border-radius: 50%; border: 3px solid var(--color-paper-3); border-top-color: var(--color-accent); animation: c2t-rot .7s linear infinite; }
@keyframes c2t-rot { to { transform: rotate(360deg); } }

/* ---- Editable CMS content slot ---- */
.c2t-content { padding: var(--space-2xl) 0; }
.c2t-content :is(h2, h3) { margin-top: var(--space-lg); }

/* ---- Footer (statement) ---- */
.c2t-footer { background: var(--color-ink); color: oklch(88% 0.01 250); padding: var(--space-2xl) 0 var(--space-lg); }
.c2t-footer a { color: oklch(88% 0.01 250); }
.c2t-footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: var(--space-lg); }
.c2t-footer h4 { color: var(--color-paper); font-size: var(--text-h3); margin: 0 0 var(--space-sm); }
.c2t-footer__statement { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--color-paper); max-width: 22ch; line-height: 1.1; }
.c2t-footer__nav { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-md); }
.c2t-footer__nav a { font-weight: 600; font-size: var(--text-sm); }
.c2t-footer__meta { border-top: 1px solid oklch(30% 0.01 270); margin-top: var(--space-xl); padding-top: var(--space-md); font-size: var(--text-sm); color: oklch(70% 0.01 250); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-sm); }

/* ---- Blog list (re-skin existing) ---- */
.c2t-posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-lg); }
.c2t-post img { width: 100%; border-radius: var(--radius); margin-bottom: var(--space-sm); }

/* ---- Hero CTA row ---- */
.c2t-hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* ---- Section footer (centered button under a grid) ---- */
.c2t-section__foot { margin-top: var(--space-lg); text-align: center; }

/* ---- Process steps ---- */
.c2t-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-lg); }
.c2t-step { position: relative; padding-top: var(--space-md); }
.c2t-step__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--color-accent); color: var(--color-paper);
    font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}
.c2t-step h3 { font-size: var(--text-h3); margin: 0 0 var(--space-xs); }
.c2t-step p { color: var(--color-ink-soft); margin: 0; }

/* Plain card variant (no hover-lift accent, for reason grid) */
.c2t-card--plain:hover { transform: none; border-color: var(--color-accent); }

/* ---- Avis (testimonials) ---- */
.c2t-avis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-md); margin-top: var(--space-xl); }
.c2t-quote { margin: 0; padding: var(--space-lg); border: var(--rule); border-radius: var(--radius-lg); background: var(--color-paper); }
.c2t-quote blockquote { margin: 0 0 var(--space-sm); font-size: 1.05rem; line-height: 1.5; }
.c2t-quote figcaption { color: var(--color-support); font-size: var(--text-sm); font-weight: 600; }

/* ---- CTA band ---- */
.c2t-cta { background: var(--color-accent); color: var(--color-paper); padding: var(--space-2xl) 0; }
.c2t-cta__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: var(--space-xl); align-items: center; }
.c2t-cta h2 { color: var(--color-paper); font-size: var(--text-h2); margin: 0 0 var(--space-sm); }
.c2t-cta p { color: color-mix(in srgb, var(--color-paper) 80%, var(--color-accent)); margin: 0 0 var(--space-md); }
.c2t-btn--light { background: var(--color-paper); color: var(--color-accent); }
.c2t-btn--light:hover { background: oklch(94% 0.01 250); color: var(--color-accent-strong); text-decoration: none; }
.c2t-cta__hours h3 { color: var(--color-paper); font-size: var(--text-h3); margin: 0 0 var(--space-sm); }
.c2t-cta__hours ul { list-style: none; margin: 0; padding: 0; }
.c2t-cta__hours li { display: flex; justify-content: space-between; gap: var(--space-md); padding: .4rem 0; border-bottom: 1px solid color-mix(in srgb, var(--color-paper) 35%, var(--color-accent)); font-size: var(--text-sm); }
.c2t-cta__hours li span:first-child { font-weight: 600; }

/* ---- Inner page header (À propos / Nos services / Contact) ---- */
.c2t-page-header { padding: var(--space-2xl) 0 var(--space-lg); border-bottom: var(--rule); text-align: center; }
.c2t-page-header .c2t-wrap { max-width: 800px; }
.c2t-page-header h1 { font-size: var(--text-display-s); margin: 0 0 var(--space-sm); }
.c2t-page-header .lede { font-size: 1.15rem; color: var(--color-ink-soft); margin: 0 auto; max-width: 60ch; }
.c2t-page-hero-img { width: 100%; border-radius: var(--radius-lg); margin-top: var(--space-lg); }
.c2t-content--page .c2t-wrap { max-width: 800px; }
.c2t-content--page :is(h2, h3) { margin-top: var(--space-xl); }
.c2t-content--page ul { padding-left: 1.2rem; }
.c2t-content--page li { margin-bottom: var(--space-xs); }

/* ---- Icons ---- */
.c2t-ico { width: 24px; height: 24px; display: inline-block; vertical-align: middle; }
.c2t-ico--star { width: 16px; height: 16px; color: var(--color-secondary); }

/* Icon cards (services with SVG) */
.c2t-card--ico .c2t-card__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 12px;
    background: color-mix(in oklch, var(--color-accent) 10%, var(--color-paper));
    color: var(--color-accent); margin-bottom: var(--space-sm);
}
.c2t-card--ico .c2t-card__icon .c2t-ico { width: 26px; height: 26px; }

/* ---- Stars ---- */
.c2t-stars { display: flex; gap: 2px; margin-bottom: var(--space-sm); }

/* ---- Contact: info + map ---- */
.c2t-contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: var(--space-xl); align-items: start; }
.c2t-contact__info h2 { font-size: var(--text-h2); margin: 0 0 var(--space-md); }
.c2t-subhead { display: flex; align-items: center; gap: .5rem; font-size: var(--text-h3); margin: var(--space-lg) 0 var(--space-sm); color: var(--color-accent); }
.c2t-iconlist, .c2t-hourslist { list-style: none; margin: 0 0 var(--space-md); padding: 0; }
.c2t-iconlist li { display: flex; align-items: center; gap: .65rem; padding: .35rem 0; color: var(--color-ink); }
.c2t-iconlist .c2t-ico { color: var(--color-accent); flex: none; }
.c2t-hourslist li { display: flex; justify-content: space-between; gap: var(--space-md); padding: .35rem 0; border-bottom: var(--rule); font-size: var(--text-sm); }
.c2t-hourslist li span:first-child { font-weight: 600; }
.c2t-contact__cta { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin: var(--space-md) 0; }
.c2t-contact__map iframe { width: 100%; height: 420px; border: 0; border-radius: var(--radius-lg); }

/* ---- Payment methods ---- */
.c2t-pay { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-md); max-width: 640px; }
.c2t-pay__item { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-md); border: var(--rule); border-radius: var(--radius-lg); background: var(--color-paper); }
.c2t-pay__item .c2t-ico { color: var(--color-accent); flex: none; }
.c2t-pay__item span { color: var(--color-ink-soft); font-size: var(--text-sm); }

/* ---- Ratings breakdown ---- */
.c2t-ratings { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-md); margin-bottom: var(--space-xl); }
.c2t-rating { display: flex; flex-direction: column; align-items: center; text-align: center; padding: var(--space-md); border: var(--rule); border-radius: var(--radius); background: var(--color-paper); }
.c2t-rating__score { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--color-accent); }
.c2t-rating__label { font-size: var(--text-sm); color: var(--color-ink-soft); }

/* ---- Photo service cards ---- */
.c2t-card--photo { padding: 0; overflow: hidden; }
.c2t-card--photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.c2t-card--photo .c2t-card__b { padding: var(--space-md) var(--space-lg) var(--space-lg); }
.c2t-card--photo .c2t-card__b h3 { margin: 0 0 var(--space-xs); }

/* ---- Nav phone CTA ---- */
.c2t-nav__call { padding-block: .5rem; }

/* ---- Hero car image (AutoFix red SUV) ---- */
.c2t-hero__car { display: block; width: 100%; max-width: 540px; height: auto; margin-top: var(--space-lg); filter: drop-shadow(0 24px 30px color-mix(in srgb, var(--color-accent) 25%, transparent)); }

/* ---- Split section (image + text) ---- */
.c2t-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: var(--space-xl); align-items: center; }
.c2t-split__media img { width: 100%; height: auto; display: block; }
.c2t-section__head--left { margin: 0 0 var(--space-md); text-align: left; }
.c2t-reasons { list-style: none; margin: 0; padding: 0; }
.c2t-reasons li { position: relative; padding: var(--space-sm) 0 var(--space-sm) 2rem; border-bottom: var(--rule); color: var(--color-ink-soft); }
.c2t-reasons li strong { color: var(--color-ink); }
.c2t-reasons li::before { content: ""; position: absolute; left: 0; top: 1.15rem; width: 14px; height: 14px; border-radius: 50%; background: conic-gradient(var(--color-accent) 0 50%, var(--color-secondary) 50% 100%); }

/* ---- Gallery (real workshop photos) ---- */
.c2t-gallery { padding: var(--space-2xl) 0; }
.c2t-gallery__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-md); }
.c2t-gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4 / 3; }
.c2t-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease-out); }
.c2t-gallery figure:hover img { transform: scale(1.05); }

/* ====== HERO — EUROMASTER PATTERN ======
   Full-width promo slider on top; a white "action card" (matricule search +
   service tiles) overlaps its lower edge. Image-led offers are generated and
   uploaded as PromotionalOffer records; a branded gradient banner stands in
   when no offer image exists so the slider never looks broken. */
.c2t-hero { position: relative; background: var(--color-paper-2); }

/* --- Promo slider --- */
.c2t-hero__slider { position: relative; }
.c2t-hero__track { position: relative; }
.c2t-heroslide {
    position: relative;
    /* Compact fixed-height strip; the image fills it via object-fit:cover (top/
       bottom crop). Export banners wide (~3.2:1, e.g. 3200×1000, 2560px minimum
       for Retina) with all content centred vertically. */
    min-height: clamp(260px, 30vw, 420px);
    display: grid;
    isolation: isolate;
    overflow: hidden;
}
.c2t-heroslide__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
/* Left-weighted scrim, ONLY when the slide has overlay text. Image-only slides
   (all fields empty) get no scrim — the banner shows exactly as designed. */
.c2t-heroslide:has(.c2t-heroslide__body)::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(0,15,46,.82) 0%, rgba(0,15,46,.6) 40%, rgba(0,15,46,.15) 75%, transparent 100%);
    pointer-events: none;
}
/* Full-cover clickable link — the whole banner goes to the offer's destination. */
.c2t-heroslide__link { position: absolute; inset: 0; z-index: 2; }
.c2t-heroslide__link:hover { cursor: pointer; }
/* Slide-studio designs: layers are % positioned + vw sized inside .slide-design,
   so the design scales with the strip. Same click pattern as the text overlay:
   the wrapper lets clicks fall through to the cover link, its own links/buttons
   stay clickable. */
.c2t-heroslide__design { position: relative; z-index: 3; pointer-events: none; min-width: 0; grid-area: 1 / 1; container-type: inline-size; }
.c2t-heroslide__design a,
.c2t-heroslide__design button { pointer-events: auto; }
.c2t-heroslide__design .slide-design { height: 100%; }
/* Mobile variant: below 860px the mobile design replaces the desktop one.
   (cqw units size layers against the slide width, so the studio preview
   matches the page exactly at any width.) */
@media (max-width: 860px) {
    .c2t-heroslide__design--desktop { display: none; }
}
@media (min-width: 860.02px) {
    .c2t-heroslide__design--mobile { display: none; }
}
/* Branded fallback when an offer has no image */
.c2t-heroslide--fallback {
    background:
      radial-gradient(120% 140% at 80% -10%, color-mix(in srgb, var(--color-accent) 55%, #000) 0%, transparent 60%),
      linear-gradient(120deg, color-mix(in srgb, var(--color-accent) 88%, #000) 0%, var(--color-accent-strong) 100%);
    color: var(--color-paper);
}
/* Overlay text sits ABSOLUTELY over the in-flow image (which now sets slide
   height). z-index 3 = above scrim(1) + link(2). */
.c2t-heroslide__body { position: absolute; inset: 0; z-index: 3; display: grid; align-content: center; padding: var(--space-xl) 0; }
/* Must not swallow clicks meant for the full-cover link — only real links/buttons
   stay clickable. pointer-events:none cascades; re-enable on interactive children. */
.c2t-heroslide__body { pointer-events: none; }
.c2t-heroslide__body a,
.c2t-heroslide__body button { pointer-events: auto; }
.c2t-heroslide__content { max-width: 40rem; display: grid; justify-items: start; gap: var(--space-sm); color: var(--color-paper); }
.c2t-heroslide--fallback .c2t-heroslide__body { padding-block: var(--space-2xl); }
.c2t-heroslide__badge { padding: .3rem .8rem; border-radius: 4px; background: var(--color-secondary); color: var(--color-paper); font-weight: 800; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: .04em; }
.c2t-heroslide__title { margin: 0; color: var(--color-paper); font-weight: 800; font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.02; text-transform: uppercase; letter-spacing: -.01em; text-shadow: 0 2px 18px rgba(0,15,46,.45); }
.c2t-heroslide__price { margin: 0; color: var(--color-paper); font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1; }
.c2t-heroslide__desc { margin: 0; max-width: 46ch; font-size: 1.05rem; color: oklch(97% 0.01 250); }
.c2t-heroslide__cta { margin-top: var(--space-sm); padding: .95rem 1.8rem; font-size: 1.05rem; }

/* Manual controls only — no auto-rotate. Arrows + dots, brand-styled. */
.c2t-hero__arrow {
    position: absolute; top: calc(50% - 40px); transform: translateY(-50%);
    z-index: 4; display: grid; place-items: center;
    width: 44px; height: 44px; border: 0; border-radius: 50%;
    background: rgba(0,15,46,.42); color: var(--color-paper);
    font-size: 1.4rem; line-height: 1; cursor: pointer;
    transition: background var(--dur) var(--ease-out);
}
.c2t-hero__arrow:hover { background: var(--color-accent); }
.c2t-hero__arrow--prev { left: var(--space-md); }
.c2t-hero__arrow--next { right: var(--space-md); }
.c2t-hero__dots {
    /* clear the action card overlapping the banner bottom */
    position: absolute; left: 0; right: 0; bottom: calc(var(--space-md) + 40px);
    z-index: 4; display: flex; justify-content: center; gap: .5rem;
}
.c2t-hero__dot { width: 30px; height: 5px; border: 0; border-radius: 999px; background: rgba(255,255,255,.5); cursor: pointer; padding: 0; transition: background var(--dur) var(--ease-out); }
.c2t-hero__dot.is-active { background: var(--color-paper); }

/* --- Action card: matricule search (left) + service tiles (right) --- */
/* Card overlaps the banner's lower edge (Euromaster look). Keep the bottom
   ~40px of banner images free of important content — the card covers it. */
.c2t-action { position: relative; z-index: 5; margin-top: -40px; padding-bottom: var(--space-xl); }
.c2t-action__card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 0;
    background: var(--color-paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 56px -12px rgba(0,15,46,.30), 0 2px 8px rgba(0,15,46,.10);
}
.c2t-action__search { padding: var(--space-lg); border-right: var(--rule); }
.c2t-action__tiles { padding: var(--space-lg); background: var(--color-paper-2); }
.c2t-action__head { margin: 0 0 .25rem; font-size: 1.35rem; color: var(--color-secondary-ink); }
/* The head is now an h1 for SEO — keep the exact same visual size as before. */
/* As an h1 in Barlow Condensed the card headline earns real display size */
h1.c2t-action__head { font-size: clamp(1.5rem, 2.2vw, 1.85rem); line-height: 1.06; margin: 0 0 .3rem; }
.c2t-action__sub { margin: 0 0 var(--space-md); color: var(--color-ink-soft); font-size: var(--text-sm); }

/* The action card WRAPS the existing devis form so devis.js keeps working;
   here we just strip the form's own card chrome — the action card is the card. */
.c2t-action__search .c2t-devis { margin: 0; background: none; border: 0; padding: 0; box-shadow: none; }
.c2t-action__search .c2t-devis__title { display: none; }  /* heading lives in .c2t-action__head */

/* Service tiles grid (pre-fill the devis service on click) */
.c2t-svctiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-sm); }
.c2t-svctile {
    display: flex; align-items: center; gap: .7rem; text-align: left;
    padding: .8rem 1rem; border: var(--rule); border-radius: var(--radius);
    background: var(--color-paper); color: var(--color-ink); font: inherit;
    font-weight: 700; cursor: pointer;
    transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.c2t-svctile:hover { border-color: var(--color-accent); box-shadow: 0 6px 16px -8px color-mix(in srgb, var(--color-accent) 40%, transparent); transform: translateY(-1px); }
.c2t-svctile__ico { flex: none; width: 30px; height: 30px; color: var(--color-accent); }
.c2t-svctile__ico svg { width: 100%; height: 100%; }

@media (max-width: 860px) {
    .c2t-heroslide { min-height: clamp(200px, 52vw, 300px); }
    .c2t-heroslide__body { padding-bottom: var(--space-xl); }
    .c2t-hero__dots { bottom: var(--space-sm); }
    .c2t-hero__arrow { top: calc(50% - 60px); width: 38px; height: 38px; }
    .c2t-action { margin-top: var(--space-md); }         /* no overlap on phones — stacks cleanly */
    .c2t-action__card { grid-template-columns: minmax(0, 1fr); }
    .c2t-action__search { border-right: 0; border-bottom: var(--rule); }
}
.c2t-devis__title { font-size: 1.4rem; margin: 0 0 var(--space-md); color: var(--color-ink); }
.c2t-skip-link { display: inline-block; margin-top: .6rem; background: none; border: none; padding: 0; color: var(--color-ink-soft); font-size: var(--text-sm); text-decoration: underline; cursor: pointer; }
.c2t-skip-link:hover { color: var(--color-accent); }

/* 3 service cards row just below the hero */
/* Pulled up ONLY when it directly follows the hero — anywhere else in the
   section flow (admin can reorder) it must not overlap its neighbour above. */
.c2t-herocardsrow { position: relative; z-index: 2; margin-top: var(--space-xl); padding-bottom: var(--space-xl); }
/* The VVVeb blob may keep this section as an EMPTY split marker (the blade
   template splits the stored HTML on its opening tag) — render nothing then. */
.c2t-herocardsrow:empty { display: none; }
.c2t-hero + .c2t-herocardsrow { margin-top: calc(-1 * var(--space-lg)); }
.c2t-herocards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 50px -30px rgba(0,0,0,.5); }
.c2t-herocard { background: var(--color-paper); padding: 2.25rem 1.5rem; text-align: center; color: var(--color-ink); }
.c2t-herocard--dark { background: #4a4a4a; color: var(--color-paper); }
.c2t-herocard--accent { background: var(--color-accent); color: var(--color-paper); }
.c2t-herocard--dark h3, .c2t-herocard--accent h3 { color: var(--color-paper); }
.c2t-herocard--dark p, .c2t-herocard--accent p { color: rgba(255,255,255,.85); }
.c2t-herocard__ico { width: 52px; height: 52px; display: block; margin: 0 auto 1rem; color: var(--color-accent); }
.c2t-herocard--dark .c2t-herocard__ico, .c2t-herocard--accent .c2t-herocard__ico { color: var(--color-paper); }
.c2t-herocard h3 { font-size: 1.15rem; font-weight: 700; margin: 0 0 1rem; color: var(--color-accent); }
.c2t-herocard--dark h3, .c2t-herocard--accent h3 { color: var(--color-paper); }
.c2t-herocard p { font-size: .95rem; line-height: 1.55; margin: 0; color: var(--color-ink-soft); }
.c2t-herocard--dark p, .c2t-herocard--accent p { color: rgba(255,255,255,.85); }

/* Two-up field grid, used inside the devis form (manual + contact rows) */
.c2t-cform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.25rem; }

/* ---- Hero 3 features ---- */
.c2t-features3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-md); }
.c2t-feature { padding: var(--space-lg); border: var(--rule); border-radius: var(--radius-lg); background: var(--color-paper); }
.c2t-feature__ico { font-size: 1.8rem; display: block; margin-bottom: var(--space-sm); }
.c2t-feature h3 { font-size: var(--text-h3); margin: 0 0 var(--space-xs); }
.c2t-feature p { color: var(--color-ink-soft); font-size: var(--text-sm); margin: 0; }

/* ---- Numbered cards ---- */
/* ---- Qui sommes-nous (ozone about layout) ---- */
.c2t-about { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: var(--space-xl); align-items: start; }
.c2t-about__media { position: relative; }
.c2t-about__media img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.c2t-xp {
    position: absolute; top: -18px; left: -18px; z-index: 2;
    width: 118px; height: 118px; border-radius: 50%;
    background: var(--color-accent); color: var(--color-paper);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; box-shadow: 0 10px 24px -10px rgba(0,0,0,.4);
}
.c2t-xp strong { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; line-height: 1; }
.c2t-xp span { font-size: .72rem; line-height: 1.15; margin-top: .2rem; }
.c2t-about__body h2 { color: var(--color-accent); font-size: var(--text-h2); margin: 0 0 var(--space-md); }
.c2t-about__body > p { color: var(--color-ink-soft); margin: 0 0 var(--space-md); }
.c2t-eyebrow--red { color: var(--color-secondary); }
.c2t-eyebrow--red::before { display: none; }

.c2t-numgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-md); margin: var(--space-lg) 0; }
.c2t-numcard { position: relative; padding: var(--space-md); border: var(--rule); border-radius: var(--radius); background: var(--color-paper); }
.c2t-numcard__n { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--color-secondary); line-height: 1; display: block; margin-bottom: .35rem; }
.c2t-numcard h3 { font-size: 1.05rem; color: var(--color-accent); margin: 0 0 var(--space-xs); }
.c2t-numcard p { color: var(--color-ink-soft); font-size: .9rem; line-height: 1.5; margin: 0; }

/* ---- Highlight band ---- */
.c2t-band { margin-top: var(--space-xl); padding: var(--space-xl); border-radius: var(--radius-lg); background: linear-gradient(120deg, color-mix(in oklch, var(--color-accent) 10%, var(--color-paper)), color-mix(in oklch, var(--color-support) 10%, var(--color-paper))); border: var(--rule); text-align: center; }
.c2t-band h3 { font-size: var(--text-h2); margin: 0 0 var(--space-sm); }
.c2t-band p { color: var(--color-ink-soft); max-width: 70ch; margin: 0 auto; }

/* ---- Urgent CTA band (full-width red, centered) ---- */
.c2t-urgent { background: var(--color-secondary); color: var(--color-paper); padding: var(--space-2xl) var(--space-md); text-align: center; }
.c2t-urgent h2 { color: var(--color-paper); font-size: var(--text-h2); margin: 0 0 var(--space-md); }
.c2t-urgent p { color: var(--color-paper); font-size: 1.15rem; margin: 0 auto var(--space-lg); max-width: 60ch; }
.c2t-urgent .c2t-btn--primary { background: var(--color-accent); padding: .8rem 1.5rem; }
.c2t-urgent .c2t-btn--primary:hover { background: var(--color-accent-strong); }

/* ---- Pourquoi choisir (text + 3 mini cards left, photo right) ---- */
.c2t-why { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: var(--space-xl); align-items: center; }
.c2t-why__body h2 { color: var(--color-accent); font-size: var(--text-h2); margin: 0 0 var(--space-md); }
.c2t-why__body > p { color: var(--color-ink-soft); margin: 0 0 var(--space-md); line-height: 1.65; }
.c2t-why__cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-sm); margin-top: var(--space-lg); }
.c2t-whycard { border: var(--rule); border-radius: var(--radius); padding: var(--space-md); text-align: center; background: var(--color-paper); }
.c2t-whycard h3 { color: var(--color-accent); font-size: 1rem; margin: 0 0 var(--space-xs); }
.c2t-whycard p { color: var(--color-ink-soft); font-size: .85rem; line-height: 1.5; margin: 0; }
.c2t-why__media img { width: 100%; height: 100%; max-height: 600px; object-fit: cover; border-radius: var(--radius-lg); display: block; }

/* ---- Nos services automobiles (centered header + icon cards) ---- */
.c2t-svchead { text-align: center; max-width: 820px; margin: 0 auto var(--space-xl); }
.c2t-svchead h2 { color: var(--color-accent); font-size: var(--text-h2); margin: var(--space-xs) 0 var(--space-md); }
.c2t-svchead p { color: var(--color-ink-soft); margin: 0; }
.c2t-eyebrow--center { justify-content: center; }
.c2t-svcgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-md); }
.c2t-svccard { background: var(--color-paper); border: var(--rule); border-radius: var(--radius-lg); padding: var(--space-lg); transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.c2t-svccard:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -24px rgba(0,0,0,.4); }
.c2t-svccard__ico { width: 44px; height: 44px; color: var(--color-secondary); margin-bottom: var(--space-md); display: block; }
.c2t-svccard h3 { color: var(--color-accent); font-size: 1.15rem; margin: 0 0 var(--space-sm); }
.c2t-svccard p { color: var(--color-ink-soft); font-size: .95rem; line-height: 1.55; margin: 0; }

/* ---- Diagnostic toutes marques (text left + logo carousel right) ---- */
.c2t-marques { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: var(--space-xl); align-items: center; }
.c2t-marques__text h2 { color: var(--color-accent); font-size: var(--text-h2); margin: 0 0 var(--space-md); }
.c2t-marques__text p { color: var(--color-ink-soft); margin: 0; max-width: 46ch; }
.c2t-marques__logos { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.c2t-brandtrack { display: flex; gap: var(--space-xl); width: max-content; animation: c2t-marquee 28s linear infinite; }
.c2t-brandslide { flex: 0 0 auto; width: 120px; height: 90px; display: flex; align-items: center; justify-content: center; }
.c2t-brandslide img { max-width: 100%; max-height: 72px; object-fit: contain; transition: transform var(--dur) var(--ease-out); }
.c2t-brandslide img:hover { transform: scale(1.08); }
@keyframes c2t-marquee { to { transform: translateX(-50%); } }
.c2t-marques__logos:hover .c2t-brandtrack { animation-play-state: paused; }

/* ---- Brands strip (text badges — no trademarked logos) ---- */
.c2t-brands { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm); margin-top: var(--space-xl); }
.c2t-brands span {
    font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm);
    color: var(--color-ink-soft); padding: .5rem 1rem; border: var(--rule);
    border-radius: 999px; background: var(--color-paper);
    transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.c2t-brands span:hover { color: var(--color-accent); border-color: var(--color-accent); }

/* ---- Split body eyebrow/heading spacing ---- */
.c2t-split__body .c2t-eyebrow { margin-bottom: var(--space-sm); }
.c2t-split__body h2 { font-size: var(--text-h2); margin: 0 0 var(--space-md); }
.c2t-split__body > p { color: var(--color-ink-soft); margin: 0 0 var(--space-md); }

/* ---- FAQ accordion (native <details>) ---- */
.c2t-faq { display: flex; flex-direction: column; gap: var(--space-sm); }
.c2t-faq__item { border: var(--rule); border-radius: var(--radius); background: var(--color-paper); overflow: hidden; }
.c2t-faq__item summary { cursor: pointer; padding: var(--space-md) var(--space-lg); font-family: var(--font-display); font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--space-md); }
.c2t-faq__item summary::-webkit-details-marker { display: none; }
.c2t-faq__item summary::after { content: "+"; color: var(--color-accent); font-size: 1.4rem; line-height: 1; transition: transform var(--dur) var(--ease-out); }
.c2t-faq__item[open] summary::after { transform: rotate(45deg); }
.c2t-faq__item > div { padding: 0 var(--space-lg) var(--space-md); color: var(--color-ink-soft); }

.c2t-reviews { padding: var(--space-2xl) 0; background: var(--color-paper-2); }
.c2t-reviews__head { display: flex; align-items: end; justify-content: space-between; gap: var(--space-md); margin-bottom: var(--space-lg); }
.c2t-reviews__head h2 { margin: 0; font-size: var(--text-h2); }
.c2t-reviews__score { margin: 0 0 .35rem; color: var(--color-accent); font-weight: 800; }
.c2t-google-badge { display: inline-flex; align-items: center; gap: .7rem; padding: .6rem .9rem; background: var(--color-paper); border: var(--rule); border-radius: var(--radius); box-shadow: 0 4px 12px rgba(0, 0, 0, .06); }
.c2t-google-badge__logo { flex: none; }
.c2t-google-badge__body { display: flex; flex-direction: column; line-height: 1.25; }
.c2t-google-badge__body strong { font-size: .85rem; color: var(--color-ink); }
.c2t-google-badge__body small { color: var(--color-ink-soft); font-size: .75rem; }
.c2t-google-badge__row { display: inline-flex; align-items: center; gap: .35rem; }
.c2t-google-badge__rating { font-weight: 800; color: var(--color-ink); }
.c2t-google-badge__stars { color: #FBBC04; letter-spacing: .08em; font-size: 1rem; }
.c2t-reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-md); }
.c2t-review-card { background: var(--color-paper); border: var(--rule); border-radius: var(--radius); padding: var(--space-md); }
.c2t-review-card__stars { color: var(--color-secondary); letter-spacing: .05em; }
.c2t-review-card p { color: var(--color-ink); }
.c2t-whatsapp { position: fixed; right: 1rem; bottom: 1rem; z-index: 70; display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1rem; border-radius: 999px; background: #25d366; color: #fff; font-weight: 800; box-shadow: 0 8px 18px color-mix(in srgb, #25d366 28%, transparent); }
.c2t-whatsapp:hover { color: #fff; text-decoration: none; transform: translateY(-1px); }
.c2t-whatsapp__icon { display: inline-flex; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
    .c2t-hero__grid { grid-template-columns: minmax(0, 1fr); }
    .c2t-grid, .c2t-proof, .c2t-footer__grid, .c2t-posts,
    .c2t-steps, .c2t-avis, .c2t-cta__grid,
    .c2t-contact__grid, .c2t-pay, .c2t-ratings,
    .c2t-split, .c2t-gallery__grid,
    .c2t-features3, .c2t-numgrid,
    .c2t-herocards, .c2t-cform__grid,
    .c2t-about, .c2t-marques, .c2t-svcgrid,
    .c2t-why, .c2t-why__cards { grid-template-columns: minmax(0, 1fr); }
    .c2t-why { direction: ltr; }
    .c2t-why__media { order: -1; }
    .c2t-xp { width: 92px; height: 92px; top: -10px; left: -10px; }
    .c2t-xp strong { font-size: 1.5rem; }
    .c2t-herocardsrow { margin-top: var(--space-lg); }
    .c2t-contact__map iframe { height: 300px; }
    .c2t-hero__car { margin-inline: auto; }
    .c2t-hide-sm { display: none; }
    .c2t-topbar__inner { justify-content: center; }
    .c2t-topbar__social { display: none; }
    .c2t-nav__call { display: none; }
    .c2t-nav__cta { display: none; }              /* desktop CTA hidden on mobile */
    .c2t-nav__links .c2t-nav__cta-mobile { display: inline-flex; margin-top: var(--space-xs); }
    .c2t-nav__links {
        display: none; position: absolute; top: 76px; left: 0; right: 0;
        transform: none; flex-direction: column; align-items: stretch; gap: 0;
        background: var(--color-paper); border-bottom: var(--rule); padding: var(--space-sm) var(--space-md);
    }
    .c2t-nav__links.is-open { display: flex; }
    .c2t-nav__links a { padding: .6rem 0; }
    .c2t-nav__toggle { display: inline-block; }
}

@media (max-width: 720px) {
    .c2t-reviews__head { display: block; }
    .c2t-whatsapp__label { display: none; }
}

/* ====== MOTION ======
   Purposeful animation only: crossfade between promo slides, scroll-reveal on
   below-the-fold grids, step transitions in the devis wizard, press feedback
   on tappables. Everything transform/opacity (GPU), everything under ~500ms,
   all silenced by the prefers-reduced-motion block at the end of the file. */

/* --- Press feedback: every tappable acknowledges the press --- */
.c2t-btn:active,
.c2t-btn--primary:active,
.c2t-btn--accent:active,
.c2t-btn--secondary:active { transform: scale(0.97); }
.c2t-svctile:active { transform: scale(0.98); }
.c2t-hero__arrow { transition: background var(--dur) var(--ease-out), transform 140ms var(--ease-out); }
.c2t-hero__arrow:active { transform: translateY(-50%) scale(0.92); }
.c2t-hero__dot:hover { background: rgba(255,255,255,.8); }
.c2t-whatsapp { transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out); }
.c2t-whatsapp:active { transform: scale(0.96); }

/* --- Promo slider crossfade ---
   hero-tiles.js adds .is-ready to the track, drops the [hidden] attrs and
   marks the current slide .is-active. Slides stack in the same grid cell and
   crossfade on opacity; visibility is delayed until the fade ends so inactive
   slides stay unclickable/unfocusable. Without JS the [hidden] attrs still
   apply and the slider degrades to the old instant swap. */
.c2t-hero__track.is-ready { display: grid; }
.c2t-hero__track.is-ready .c2t-heroslide {
    grid-area: 1 / 1;
    opacity: 0; visibility: hidden; z-index: 0;
    transition: opacity 400ms var(--ease-in-out), visibility 0s linear 400ms;
}
.c2t-hero__track.is-ready .c2t-heroslide.is-active {
    opacity: 1; visibility: visible; z-index: 1;
    transition: opacity 400ms var(--ease-in-out), visibility 0s;
}
/* The slide copy settles slightly after the image fade begins. */
.c2t-hero__track.is-ready .c2t-heroslide__content {
    opacity: 0; transform: translateY(14px);
    transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out);
}
.c2t-hero__track.is-ready .c2t-heroslide.is-active .c2t-heroslide__content {
    opacity: 1; transform: translateY(0);
    transition-delay: 80ms;
}

/* --- Action card entrance (once, on load) --- */
.c2t-action__card {
    transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
    @starting-style { opacity: 0; transform: translateY(20px); }
}

/* --- Devis wizard: incoming step rises in; going back is instant --- */
@keyframes c2t-step-in {
    from { opacity: 0; transform: translateY(8px); }
}
.c2t-step2.is-on, .c2t-step3.is-on { animation: c2t-step-in 220ms var(--ease-out); }

/* --- Scroll reveal (reveal.js) ---
   .c2t-reveal is only ever added by JS, so content is never hidden without it.
   The transition lives on .is-in so it can't delay the cards' own hover
   transforms; reveal.js removes both classes once the entrance finishes. */
.c2t-reveal { opacity: 0; transform: translateY(16px); }
.c2t-reveal.is-in {
    opacity: 1; transform: translateY(0);
    transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
    transition-delay: var(--rv-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    .c2t-spin { animation: none; }
    .c2t-reveal { opacity: 1; transform: none; }
    .c2t-hero__track.is-ready .c2t-heroslide__content { opacity: 1; transform: none; }
}

/* ============================================================
   HOME SECTIONS (2026-07 redesign) — reassurance, services grid,
   steps, urgent CTA, find-us, FAQ, sticky mobile bar
   NB: .c2t-steps / .c2t-urgent / .c2t-faq selectors also exist
   above for the legacy DB-content markup; the section-level
   overrides here (display/padding/text-align) retarget them to
   the new partials' wrapper+__row structure and win by order.
   ============================================================ */
.c2t-reassure { background: var(--color-paper-2); border-block: 1px solid var(--color-line); }
.c2t-reassure__row { display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: center; padding: .8rem 0; font-weight: 600; color: var(--color-ink); }
.c2t-reassure__item { white-space: nowrap; }

.c2t-servicesgrid { padding: var(--space-lg, 3rem) 0; }
.c2t-servicesgrid__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; }
.c2t-servicecard { display: flex; flex-direction: column; gap: .35rem; padding: 1.1rem 1rem; background: #F0F4FB; border-radius: 10px; color: var(--color-ink); text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; }
a.c2t-servicecard:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgb(0 0 0 / .10); }
.c2t-servicecard__icon { font-size: 1.6rem; }
.c2t-servicecard__title { font-weight: 700; color: var(--color-accent); }
.c2t-servicecard__desc { font-size: .9rem; color: var(--color-ink-soft); }
.c2t-servicecard__price { font-weight: 800; color: var(--color-secondary); }

/* display:block undoes the legacy 3-col grid .c2t-steps rule above */
.c2t-steps { display: block; padding: var(--space-lg, 3rem) 0; background: var(--color-paper-2); }
.c2t-steps__row { display: flex; gap: 1rem; list-style: none; margin: 1.5rem 0 0; padding: 0; }
.c2t-steps__item { flex: 1; background: #fff; border-radius: 10px; padding: 1.2rem; display: flex; flex-direction: column; gap: .3rem; }
.c2t-steps__num { width: 2rem; height: 2rem; border-radius: 50%; background: var(--color-accent); color: #fff; font-weight: 800; display: grid; place-items: center; }

/* padding/text-align reset the legacy centered .c2t-urgent band above */
.c2t-urgent { background: var(--color-secondary); color: #fff; padding: 0; text-align: left; }
.c2t-urgent__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; }
.c2t-urgent__row p { margin: 0; font-size: 1.1rem; }
.c2t-urgent__actions { display: flex; gap: .6rem; }
/* scoped: the global .c2t-btn--light/--ghost (blue CTA band) must keep their colors */
.c2t-urgent .c2t-btn--light { background: #fff; color: var(--color-secondary); }
.c2t-urgent .c2t-btn--light:hover { background: #fff; color: var(--color-secondary-strong); }
.c2t-urgent .c2t-btn--ghost { border: 2px solid #fff; color: #fff; background: transparent; }
.c2t-urgent .c2t-btn--ghost:hover { background: #fff; color: var(--color-secondary); }

.c2t-findus { padding: var(--space-lg, 3rem) 0; }
.c2t-findus__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.c2t-findus__map iframe { width: 100%; height: 320px; border: 0; border-radius: 10px; }
.c2t-findus__info p { margin: 0 0 1rem; }

.c2t-faq { display: block; padding: var(--space-lg, 3rem) 0; background: var(--color-paper-2); }
.c2t-faq__item { background: #fff; border-radius: 10px; margin-top: .8rem; padding: 0 1.1rem; }
.c2t-faq__item summary { cursor: pointer; font-weight: 700; padding: 1rem 0; list-style: none; position: relative; }
.c2t-faq__item summary::after { content: '▾'; position: absolute; right: 0; color: var(--color-accent); transition: transform .2s; }
.c2t-faq__item[open] summary::after { transform: rotate(180deg); }
/* > .c2t-faq__answer outranks the legacy `.c2t-faq__item > div` padding rule */
.c2t-faq__item > .c2t-faq__answer { padding: 0 0 1rem; color: var(--color-ink-soft); }

/* Sticky mobile conversion bar — desktop hidden */
.c2t-stickybar { position: fixed; inset: auto 0 0 0; z-index: 60; display: none; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom)); background: #fff; box-shadow: 0 -4px 14px rgb(0 0 0 / .12); }
.c2t-stickybar__cta { flex: 1; text-align: center; background: var(--color-secondary); color: #fff; font-weight: 800; border-radius: 8px; padding: .7rem; text-decoration: none; }
.c2t-stickybar__cta:hover { color: #fff; text-decoration: none; }
.c2t-stickybar__tel { display: grid; place-items: center; width: 3rem; border-radius: 8px; background: var(--color-accent); color: #fff; text-decoration: none; }
@media (max-width: 859px) {
    .c2t-stickybar { display: flex; }
    body { padding-bottom: 4.2rem; } /* keep footer content clear of the bar */
    .c2t-whatsapp { bottom: 5rem; }  /* float above the sticky bar */
    .c2t-servicesgrid__grid { grid-template-columns: repeat(2, 1fr); }
    .c2t-steps__row { flex-direction: column; }
    .c2t-findus__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG INDEX — site-styled article cards (thumbnail, title, date)
   ============================================================ */
.c2t-blogindex { padding: var(--space-lg, 3rem) 0; }
.c2t-blogindex__sub { color: var(--color-ink-soft); margin-top: .4rem; }
.c2t-blogindex__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1.6rem; }
.c2t-blogcard { border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 2px 10px rgb(0 0 0 / .07); }
.c2t-blogcard a { color: inherit; text-decoration: none; }
.c2t-blogcard img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.c2t-blogcard__body { padding: 1rem; }
.c2t-blogcard__body h2 { font-size: 1.1rem; margin: 0 0 .3rem; }
.c2t-blogcard__body time { color: var(--color-ink-soft); font-size: .85rem; }
@media (max-width: 859px) { .c2t-blogindex__grid { grid-template-columns: 1fr; } }

/* ============================================================
   PREMIUM POLISH (2026-07) — theme-grade section rhythm.
   Overrides the first-pass HOME SECTIONS styles above by source
   order: kicker+centered section heads, carded surfaces with
   hairline borders + hover lift, icon chips, steps connector,
   gradient urgent band, carded map, polished FAQ + footer.
   ============================================================ */

/* -- Section head pattern: kicker + condensed headline + subline -- */
.c2t-sechead { text-align: center; max-width: 720px; margin: 0 auto var(--space-lg); }
.c2t-kicker {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--font-display); font-weight: 700; font-size: .95rem;
    letter-spacing: .14em; text-transform: uppercase; color: var(--color-secondary);
}
.c2t-kicker::before, .c2t-kicker::after { content: ''; width: 26px; height: 3px; border-radius: 2px; background: var(--color-secondary); }
.c2t-sechead h2 { margin: .45rem 0 .4rem; font-size: var(--text-h2); }
.c2t-sechead__sub { margin: 0; color: var(--color-ink-soft); font-size: 1.02rem; }

/* -- Generous, alternating section rhythm -- */
.c2t-servicesgrid, .c2t-findus { padding: var(--space-2xl) 0; }
.c2t-steps, .c2t-faq { padding: var(--space-2xl) 0; background: #F4F7FB; }

/* -- Reassurance: floating proof bar tucked under the action card -- */
.c2t-reassure { background: transparent; border-block: 0; }
.c2t-reassure__row {
    background: var(--color-paper); border: 1px solid #E6EBF2; border-radius: var(--radius-lg);
    box-shadow: 0 14px 34px -22px rgba(10, 40, 90, .35);
    padding: 1.05rem 1.4rem; gap: .6rem 2.4rem;
}
.c2t-reassure__item { font-weight: 600; color: var(--color-ink); display: inline-flex; align-items: center; gap: .45rem; }

/* -- Service cards: white, hairline, icon chip, lift on hover -- */
.c2t-servicesgrid__grid { gap: 1.15rem; margin-top: 0; }
.c2t-servicecard {
    background: var(--color-paper); border: 1px solid #E6EBF2; border-radius: 14px;
    padding: 1.35rem 1.25rem 1.25rem; gap: .45rem;
    box-shadow: 0 6px 18px -14px rgba(10, 40, 90, .25);
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.c2t-servicecard:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -18px rgba(10, 40, 90, .35); border-color: color-mix(in srgb, var(--color-accent) 35%, #E6EBF2); }
.c2t-servicecard__icon {
    width: 52px; height: 52px; display: grid; place-items: center;
    background: #EBF2FC; border-radius: 12px; font-size: 1.5rem; margin-bottom: .35rem;
}
.c2t-servicecard__title { color: var(--color-secondary-ink); font-size: 1.06rem; }
.c2t-servicecard__price {
    align-self: flex-start; margin-top: .25rem; padding: .18rem .6rem; border-radius: 999px;
    background: color-mix(in srgb, var(--color-secondary) 9%, #fff);
    color: var(--color-secondary); font-weight: 700; font-size: .88rem;
}

/* -- Steps: numbered discs on a dashed connector -- */
.c2t-steps__row { gap: 1.15rem; margin-top: 0; position: relative; }
.c2t-steps__item {
    background: var(--color-paper); border: 1px solid #E6EBF2; border-radius: 14px;
    padding: 1.6rem 1.35rem 1.35rem; text-align: center; align-items: center;
    box-shadow: 0 6px 18px -14px rgba(10, 40, 90, .25);
}
.c2t-steps__item strong { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-secondary-ink); }
.c2t-steps__item span:not(.c2t-steps__num) { color: var(--color-ink-soft); font-size: .95rem; }
.c2t-steps__num {
    width: 2.6rem; height: 2.6rem; font-size: 1.15rem; margin-bottom: .35rem;
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--color-accent) 12%, #fff);
}
@media (min-width: 860px) {
    .c2t-steps__row::before {
        content: ''; position: absolute; left: 12%; right: 12%; top: 2.85rem;
        border-top: 2px dashed color-mix(in srgb, var(--color-accent) 35%, #fff); z-index: 0;
    }
    .c2t-steps__item { position: relative; z-index: 1; }
}

/* -- Urgent: full-width gradient band, poster voice -- */
.c2t-urgent { background: linear-gradient(115deg, var(--color-secondary) 0%, var(--color-secondary-strong) 100%); padding: 0; text-align: left; }
.c2t-urgent__row { padding: 2.1rem 0; }
.c2t-urgent__row p { font-size: 1.12rem; max-width: 56ch; }
.c2t-urgent__row p strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; line-height: 1.1; margin-bottom: .15rem; }
.c2t-urgent .c2t-btn--light { box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .45); }

/* -- Find-us: carded map + info panel -- */
.c2t-findus__grid { gap: 1.15rem; margin-top: 0; }
.c2t-findus__map { border-radius: 14px; overflow: hidden; border: 1px solid #E6EBF2; box-shadow: 0 6px 18px -14px rgba(10, 40, 90, .25); min-height: 320px; display: grid; place-items: center; background: #F4F7FB; }
.c2t-findus__map iframe { height: 100%; min-height: 340px; border-radius: 0; display: block; }
.c2t-findus__info { background: var(--color-paper); border: 1px solid #E6EBF2; border-radius: 14px; padding: 1.5rem; box-shadow: 0 6px 18px -14px rgba(10, 40, 90, .25); }
.c2t-findus__info p strong { display: inline-block; font-family: var(--font-display); font-size: 1.15rem; color: var(--color-secondary-ink); margin-bottom: .25rem; }

/* -- FAQ: narrowed column, carded items, animated chevron -- */
.c2t-faq__list { max-width: 800px; margin: 0 auto; }
.c2t-faq__item { border: 1px solid #E6EBF2; border-radius: 12px; padding: 0 1.3rem; box-shadow: 0 4px 14px -12px rgba(10, 40, 90, .2); }
.c2t-faq__item[open] { border-color: color-mix(in srgb, var(--color-accent) 35%, #E6EBF2); }
.c2t-faq__item summary { font-family: var(--font-body); font-size: 1.02rem; }
.c2t-faq__item summary::after { right: .1rem; }

/* -- Footer: sharper hierarchy -- */
.c2t-footer { border-top: 4px solid var(--color-secondary); }
.c2t-footer h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: 1rem; color: rgba(255, 255, 255, .92); }

/* -- Mobile adjustments for the polish layer -- */
@media (max-width: 859px) {
    .c2t-servicesgrid, .c2t-findus, .c2t-steps, .c2t-faq { padding: var(--space-xl) 0; }
    .c2t-urgent__row { text-align: center; justify-content: center; }
    .c2t-urgent__row p { max-width: none; }
    .c2t-reassure__row { padding: .9rem 1rem; gap: .5rem 1.4rem; justify-content: flex-start; }
}

/* ============================================================
   ANIMATION KIT (2026-07) — Elementor-style entrances.
   Slide content staggers in on activation (Revolution-Slider
   pattern), CTAs get a shine sweep + pulse, checked lists pop
   their ticks, gallery images zoom on hover. Everything falls
   back to static under prefers-reduced-motion (see media block
   at the end of this kit — the global silencer above can't stop
   infinite keyframes cleanly, so we opt them out explicitly).
   ============================================================ */
/* Entrances animate the SEPARATE translate/scale properties and declare only
   a `from` frame: the end state is each element's own computed style, so
   inline transforms (slide-studio layer rotation) and inline opacity set in
   the editor are never clobbered. Fill mode is `backwards` (hidden during
   the delay, natural state after). */
@keyframes c2tSlideUp   { from { opacity: 0; translate: 0 28px; } }
@keyframes c2tSlideDown { from { opacity: 0; translate: 0 -18px; } }
@keyframes c2tZoomIn    { from { opacity: 0; scale: .8; } }
@keyframes c2tPopIn     { 0% { opacity: 0; scale: .55; } 70% { scale: 1.07; } }
@keyframes c2tKenBurns  { from { scale: 1.07; } }
@keyframes c2tPulse     { 0%, 100% { box-shadow: 0 0 0 0 rgb(255 255 255 / .45); } 55% { box-shadow: 0 0 0 12px rgb(255 255 255 / 0); } }
@keyframes c2tTickPop   { 0% { transform: scale(0); } 75% { transform: scale(1.25); } 100% { transform: scale(1); } }

/* -- Hero slider: staggered content entrance on every activation -- */
.c2t-heroslide.is-active .c2t-heroslide__badge { animation: c2tSlideDown .5s var(--ease-out) .15s backwards; }
.c2t-heroslide.is-active .c2t-heroslide__title { animation: c2tSlideUp .6s var(--ease-out) .25s backwards; }
.c2t-heroslide.is-active .c2t-heroslide__price { animation: c2tZoomIn .55s var(--ease-out) .45s backwards; }
.c2t-heroslide.is-active .c2t-heroslide__desc  { animation: c2tSlideUp .55s var(--ease-out) .58s backwards; }
.c2t-heroslide.is-active .c2t-heroslide__cta   { animation: c2tPopIn .6s var(--ease-out) .72s backwards, c2tPulse 2.6s var(--ease-in-out) 1.6s 3; }
/* Full-banner image slides: slow settle (Ken Burns) */
.c2t-heroslide.is-active .c2t-heroslide__img { animation: c2tKenBurns 6.5s var(--ease-out) backwards; }
/* Slide-studio designs: the saved HTML is a .slide-design wrapper with the
   layers inside — stagger THOSE (left/top positioned, so translating them is
   safe). --in-delay (set per layer in the studio) overrides the stagger. */
.c2t-heroslide.is-active .slide-design > * { animation: c2tSlideUp .6s var(--ease-out) backwards; animation-delay: var(--in-delay, .9s); }
.c2t-heroslide.is-active .slide-design > :nth-child(1) { animation-delay: var(--in-delay, .12s); }
.c2t-heroslide.is-active .slide-design > :nth-child(2) { animation-delay: var(--in-delay, .26s); }
.c2t-heroslide.is-active .slide-design > :nth-child(3) { animation-delay: var(--in-delay, .40s); }
.c2t-heroslide.is-active .slide-design > :nth-child(4) { animation-delay: var(--in-delay, .54s); }
.c2t-heroslide.is-active .slide-design > :nth-child(5) { animation-delay: var(--in-delay, .68s); }
.c2t-heroslide.is-active .slide-design > :nth-child(6) { animation-delay: var(--in-delay, .82s); }

/* -- CTA shine sweep on hover (accent + secondary + sticky) -- */
.c2t-btn--accent, .c2t-btn--primary, .c2t-stickybar__cta, .c2t-heroslide__cta {
    position: relative; overflow: hidden;
}
.c2t-btn--accent::after, .c2t-btn--primary::after, .c2t-stickybar__cta::after, .c2t-heroslide__cta::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(105deg, transparent 38%, rgb(255 255 255 / .35) 50%, transparent 62%);
    transform: translateX(-120%);
}
.c2t-btn--accent:hover::after, .c2t-btn--primary:hover::after,
.c2t-stickybar__cta:hover::after, .c2t-heroslide__cta:hover::after {
    transform: translateX(120%); transition: transform .65s var(--ease-out);
}

/* -- Checked list component (also auto-applied to plain lists the admin
      writes in VVVeb content sections — Elementor "icon list" feel) -- */
.c2t-checklist, .c2t-section ul:not([class]) {
    list-style: none; padding: 0; margin: 0 0 var(--space-md); display: grid; gap: .6rem;
}
.c2t-checklist li, .c2t-section ul:not([class]) li { position: relative; padding-left: 2.15rem; }
.c2t-checklist li::before, .c2t-section ul:not([class]) li::before {
    content: '✓'; position: absolute; left: 0; top: .05rem;
    width: 1.45rem; height: 1.45rem; border-radius: 50%;
    display: grid; place-items: center;
    background: color-mix(in srgb, var(--color-accent) 12%, #fff);
    color: var(--color-accent); font-weight: 800; font-size: .85rem;
}
.c2t-reveal.is-in li::before { animation: c2tTickPop .45s var(--ease-out) both; }

/* -- Images: hover zoom in gallery + about media -- */
.c2t-gallery__grid img, .c2t-about__media img { transition: transform .5s var(--ease-out); }
.c2t-gallery__grid > *:hover img, .c2t-about__media:hover img { transform: scale(1.045); }
.c2t-gallery__grid > * { overflow: hidden; border-radius: var(--radius); }

/* -- Zoom variant for the scroll reveal (media blocks) -- */
.c2t-reveal.c2t-reveal--zoom { transform: scale(.93); }

@media (prefers-reduced-motion: reduce) {
    .c2t-heroslide.is-active .c2t-heroslide__badge,
    .c2t-heroslide.is-active .c2t-heroslide__title,
    .c2t-heroslide.is-active .c2t-heroslide__price,
    .c2t-heroslide.is-active .c2t-heroslide__desc,
    .c2t-heroslide.is-active .c2t-heroslide__cta,
    .c2t-heroslide.is-active .c2t-heroslide__img,
    .c2t-heroslide.is-active .c2t-heroslide__design > *,
    .c2t-reveal.is-in li::before { animation: none !important; opacity: 1; transform: none; }
}

/* ============================================================
   SLIDE LAYER EFFECTS — picked per element in the slide studio
   (Animation + Effet survol selects) and stored as data-fx /
   data-hover attributes in the slide HTML. Loops animate the
   separate translate/scale properties so inline layer rotation
   is preserved.
   ============================================================ */
@keyframes c2tFloat  { 0%, 100% { translate: 0 0; } 50% { translate: 0 -9px; } }
@keyframes c2tBreath { 0%, 100% { scale: 1; } 50% { scale: 1.05; } }
@keyframes c2tGlow   { 0%, 100% { filter: drop-shadow(0 0 0 rgb(255 255 255 / 0)); }
                       50% { filter: drop-shadow(0 0 14px rgb(255 255 255 / .65)); } }
@keyframes c2tShake  { 0%, 88%, 100% { translate: 0 0; }
                       90% { translate: -3px 0; } 93% { translate: 3px 0; } 96% { translate: -2px 0; } }

.c2t-heroslide [data-fx="float"]  { animation: c2tFloat 3.6s var(--ease-in-out) infinite; }
.c2t-heroslide [data-fx="pulse"]  { animation: c2tBreath 2.4s var(--ease-in-out) infinite; }
.c2t-heroslide [data-fx="glow"]   { animation: c2tGlow 2.8s var(--ease-in-out) infinite; }
.c2t-heroslide [data-fx="shake"]  { animation: c2tShake 3.2s linear infinite; }

.c2t-heroslide [data-hover] { transition: scale var(--dur) var(--ease-out), translate var(--dur) var(--ease-out), filter var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out); }
.c2t-heroslide [data-hover="grow"]:hover { scale: 1.07; }
.c2t-heroslide [data-hover="lift"]:hover { translate: 0 -5px; filter: drop-shadow(0 10px 18px rgb(0 0 0 / .35)); }
.c2t-heroslide [data-hover="glow"]:hover { filter: drop-shadow(0 0 16px rgb(255 255 255 / .75)); }
.c2t-heroslide [data-hover="shine"] { position: relative; overflow: hidden; }
.c2t-heroslide [data-hover="shine"]::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(105deg, transparent 38%, rgb(255 255 255 / .38) 50%, transparent 62%);
    transform: translateX(-130%);
}
.c2t-heroslide [data-hover="shine"]:hover::after { transform: translateX(130%); transition: transform .6s var(--ease-out); }

/* Entrance overrides per layer: data-in replaces the default stagger */
.c2t-heroslide.is-active .slide-design > [data-in="none"] { animation: none; }
.c2t-heroslide.is-active .slide-design > [data-in="zoom"] { animation-name: c2tZoomIn; }
.c2t-heroslide.is-active .slide-design > [data-in="pop"]  { animation-name: c2tPopIn; }
.c2t-heroslide.is-active .slide-design > [data-in="down"] { animation-name: c2tSlideDown; }

@media (prefers-reduced-motion: reduce) {
    .c2t-heroslide [data-fx] { animation: none !important; }
    .c2t-heroslide [data-hover]:hover { scale: none; translate: none; filter: none; }
}

/* Studio layers with a loop fx: the entrance rule above outranks the plain
   [data-fx] rules, so combine entrance + loop explicitly (entrance plays
   once, the loop takes over). A layer's data-in pick is superseded by the
   default slide-up when a loop fx is set. */
.c2t-heroslide.is-active .slide-design > [data-fx="float"] { animation: c2tSlideUp .55s var(--ease-out) backwards, c2tFloat 3.6s var(--ease-in-out) 1s infinite; }
.c2t-heroslide.is-active .slide-design > [data-fx="pulse"] { animation: c2tSlideUp .55s var(--ease-out) backwards,  c2tBreath 2.4s var(--ease-in-out) 1s infinite; }
.c2t-heroslide.is-active .slide-design > [data-fx="glow"]  { animation: c2tSlideUp .55s var(--ease-out) backwards,  c2tGlow 2.8s var(--ease-in-out) 1s infinite; }
.c2t-heroslide.is-active .slide-design > [data-fx="shake"] { animation: c2tSlideUp .55s var(--ease-out) backwards,  c2tShake 3.2s linear 1s infinite; }
@media (prefers-reduced-motion: reduce) {
    .c2t-heroslide.is-active .c2t-heroslide__design > [data-fx] { animation: none !important; }
}

/* -- Text effects (engine: public/js/slide-fx.js) -- */
@keyframes c2tBlurIn { from { opacity: 0; filter: blur(10px); } }
.c2t-heroslide.is-active .slide-design > [data-in="blur"] { animation-name: c2tBlurIn; animation-duration: .8s; }
/* JS-driven entrances: no CSS animation, the engine reveals the text */
.c2t-heroslide.is-active .slide-design > [data-in="type"],
.c2t-heroslide.is-active .slide-design > [data-in="chars"] { animation: none; }
.c2t-typing::after { content: ''; display: inline-block; width: .08em; height: .95em;
    margin-left: .06em; vertical-align: text-bottom; background: currentColor;
    animation: c2tCaret .8s steps(1) infinite; }
@keyframes c2tCaret { 50% { opacity: 0; } }
.c2t-ch { display: inline-block; opacity: 0; translate: 0 14px;
    animation: c2tChar .4s var(--ease-out) both; }
@keyframes c2tChar { to { opacity: 1; translate: 0 0; } }
.c2t-word { display: inline-block; transition: translate .26s var(--ease-out), opacity .26s var(--ease-out); }
.c2t-word.is-out { opacity: 0; translate: 0 -0.7em; }
.c2t-word.is-in { animation: c2tWordIn .32s var(--ease-out); }
@keyframes c2tWordIn { from { opacity: 0; translate: 0 0.7em; } }
/* fx combo delays honor the per-layer order too */
.c2t-heroslide.is-active .slide-design > [data-fx] { animation-delay: var(--in-delay, .3s), 1s; }
@media (prefers-reduced-motion: reduce) {
    .c2t-ch { animation: none; opacity: 1; translate: none; }
    .c2t-typing::after { display: none; }
}

/* ============================================================
   ICON UNIFICATION (2026-07) — home sections now render the
   inline SVG icon set (partials/icon.blade.php) instead of the
   admin's raw emoji (partials/emoji-icon.blade.php maps them).
   Chips recolor on hover; prices pin to the card's bottom edge
   so the services grid keeps one clean baseline.
   ============================================================ */

/* -- Service cards: accent SVG in the chip, inverted on hover -- */
.c2t-servicecard__icon { transition: background var(--dur) var(--ease-out); }
.c2t-servicecard__icon .c2t-ico { width: 26px; height: 26px; color: var(--color-accent); transition: color var(--dur) var(--ease-out); }
.c2t-servicecard:hover .c2t-servicecard__icon { background: var(--color-accent); }
.c2t-servicecard:hover .c2t-servicecard__icon .c2t-ico { color: #fff; }
.c2t-servicecard__price { margin-top: auto; }

/* -- Reassurance strip: small accent roundels -- */
.c2t-reassure__ico {
    display: inline-grid; place-items: center; flex: none;
    width: 1.7rem; height: 1.7rem; border-radius: 50%;
    background: color-mix(in srgb, var(--color-accent) 10%, #fff);
    color: var(--color-accent);
}
.c2t-reassure__ico .c2t-ico { width: 16px; height: 16px; }

/* -- Urgent band: white line icons in title + phone button -- */
.c2t-urgent__bolt { width: 1.15em; height: 1.15em; vertical-align: -0.2em; margin-right: .1rem; }
.c2t-urgent .c2t-btn .c2t-ico { width: 18px; height: 18px; vertical-align: -3.5px; margin-right: .2rem; }

/* -- Find-us: info icons + clickable itinerary placeholder -- */
.c2t-findus__info .c2t-ico { width: 18px; height: 18px; color: var(--color-secondary); vertical-align: -3.5px; margin-right: .25rem; }
.c2t-findus__placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: .8rem; width: 100%; height: 100%; min-height: 320px; padding: var(--space-lg);
    text-align: center; text-decoration: none; color: var(--color-ink);
}
.c2t-findus__placeholder:hover { text-decoration: none; }
.c2t-findus__placeholder-pin {
    display: grid; place-items: center; width: 3.4rem; height: 3.4rem; border-radius: 50%;
    background: color-mix(in srgb, var(--color-accent) 12%, #fff); color: var(--color-accent);
    transition: transform var(--dur) var(--ease-out);
}
.c2t-findus__placeholder:hover .c2t-findus__placeholder-pin { transform: translateY(-3px); }
.c2t-findus__placeholder-pin .c2t-ico { width: 26px; height: 26px; }
.c2t-findus__placeholder strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--color-secondary-ink); }

/* -- Topbar + sticky bar: line icons replace emoji -- */
.c2t-topbar__ico { width: 14px; height: 14px; vertical-align: -2.5px; margin-right: .15rem; opacity: .85; }
.c2t-stickybar__tel .c2t-ico { width: 20px; height: 20px; }

/* ============================================================
   MIDAS-STUDY PASS (2026-07) — task-first intent cards + the
   checkerboard photo/flat-tile mosaic. DNA extracted from the
   competitor study (structure + voice, never pixels/brand):
   first-person labels, uppercase chevron CTAs, poster-flat
   color tiles on the Car2Tour blue/red palette.
   ============================================================ */

/* -- Intent cards: 4 first-person jobs-to-be-done under the hero -- */
.c2t-intents { padding: var(--space-xl) 0 0; }
.c2t-intents__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.15rem; }
.c2t-intent {
    display: flex; flex-direction: column; gap: .55rem;
    background: var(--color-paper); border: 1px solid #E6EBF2; border-radius: 14px;
    border-top: 4px solid var(--color-accent);
    padding: 1.25rem 1.2rem 1.1rem; text-decoration: none; color: var(--color-ink);
    box-shadow: 0 6px 18px -14px rgba(10, 40, 90, .25);
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.c2t-intent:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -18px rgba(10, 40, 90, .35); text-decoration: none; }
.c2t-intent--urgent { border-top-color: var(--color-secondary); }
.c2t-intent__icon {
    width: 46px; height: 46px; display: grid; place-items: center;
    background: #EBF2FC; border-radius: 12px; color: var(--color-accent);
}
.c2t-intent--urgent .c2t-intent__icon { background: color-mix(in srgb, var(--color-secondary) 9%, #fff); color: var(--color-secondary); }
.c2t-intent__icon .c2t-ico { width: 24px; height: 24px; }
.c2t-intent__label { font-size: 1rem; line-height: 1.35; color: var(--color-ink); }
.c2t-intent__label strong { display: block; font-family: var(--font-display); font-size: 1.22rem; color: var(--color-secondary-ink); }
.c2t-intent__cta {
    margin-top: auto; display: inline-flex; align-items: center; gap: .35rem;
    font-family: var(--font-display); font-weight: 700; font-size: .95rem;
    letter-spacing: .08em; text-transform: uppercase; color: var(--color-accent);
}
.c2t-intent--urgent .c2t-intent__cta { color: var(--color-secondary); }
.c2t-intent__cta::after { content: '›'; font-size: 1.25em; line-height: 1; transition: transform var(--dur) var(--ease-out); }
.c2t-intent:hover .c2t-intent__cta::after { transform: translateX(4px); }

/* -- Mosaic tiles: flat brand-color CTA squares between the photos -- */
.c2t-gallery__grid--mosaic > * { aspect-ratio: 4 / 3; }
.c2t-mtile {
    display: flex; flex-direction: column; justify-content: center; gap: .5rem;
    padding: 1.6rem 1.5rem; border-radius: var(--radius-lg); text-decoration: none;
    color: #fff; background: var(--color-accent);
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.c2t-mtile--red { background: var(--color-secondary); }
.c2t-mtile:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -18px rgba(10, 40, 90, .45); text-decoration: none; color: #fff; }
.c2t-mtile strong { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.05; text-transform: uppercase; }
.c2t-mtile > span:not(.c2t-mtile__cta) { font-size: .98rem; opacity: .92; max-width: 30ch; }
.c2t-mtile__cta {
    margin-top: .5rem; display: inline-flex; align-items: center; gap: .35rem;
    font-family: var(--font-display); font-weight: 700; font-size: .95rem;
    letter-spacing: .08em; text-transform: uppercase;
    border-bottom: 2px solid rgb(255 255 255 / .55); align-self: flex-start; padding-bottom: .15rem;
}
.c2t-mtile__cta::after { content: '›'; font-size: 1.25em; line-height: 1; transition: transform var(--dur) var(--ease-out); }
.c2t-mtile:hover .c2t-mtile__cta::after { transform: translateX(4px); }

@media (max-width: 859px) {
    .c2t-intents { padding-top: var(--space-lg); }
    .c2t-intents__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
    .c2t-intent { padding: 1rem .95rem .9rem; }
    .c2t-intent__label strong { font-size: 1.1rem; }
    .c2t-gallery__grid--mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .c2t-mtile { padding: 1.1rem 1rem; }
}

/* ============================================================
   SERVICE LANDING PAGES (/services/{slug}) — local-SEO funnel:
   breadcrumb, icon + H1 hero, price chip, long copy, then the
   urgent band and the other-services grid for internal mesh.
   ============================================================ */
.c2t-svcpage { padding: var(--space-lg) 0 var(--space-2xl); }
.c2t-crumbs { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .9rem; color: var(--color-ink-soft); margin-bottom: var(--space-lg); }
.c2t-crumbs a { color: var(--color-ink-soft); text-decoration: none; }
.c2t-crumbs a:hover { color: var(--color-accent); text-decoration: underline; }
.c2t-crumbs [aria-current] { color: var(--color-ink); font-weight: 600; }
.c2t-svcpage__icon {
    display: grid; place-items: center; width: 64px; height: 64px;
    background: #EBF2FC; border-radius: 16px; color: var(--color-accent); margin-bottom: var(--space-md);
}
.c2t-svcpage__icon .c2t-ico { width: 32px; height: 32px; }
.c2t-svcpage__hero h1 { font-size: var(--text-display-s); line-height: 1.05; margin: 0 0 .5rem; }
.c2t-svcpage__dept { color: var(--color-ink-soft); font-weight: 600; }
.c2t-svcpage__sub { font-size: 1.15rem; color: var(--color-ink-soft); margin: 0 0 var(--space-md); max-width: 62ch; }
.c2t-svcpage__actions { display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; }
.c2t-svcpage__price {
    padding: .3rem .85rem; border-radius: 999px; font-weight: 800; font-size: 1.05rem;
    background: color-mix(in srgb, var(--color-secondary) 9%, #fff); color: var(--color-secondary);
}
.c2t-svcpage__body { max-width: 72ch; margin-top: var(--space-xl); }
.c2t-svcpage__body p { margin: 0 0 1.1rem; line-height: 1.7; color: var(--color-ink); }
.c2t-svcpage__others { padding: var(--space-2xl) 0; background: var(--color-paper-2); }
@media (max-width: 859px) {
    .c2t-svcpage { padding-bottom: var(--space-xl); }
    .c2t-svcpage__others { padding: var(--space-xl) 0; }
}

/* ============================================================
   SLIDER CHROME REFRESH (2026-07) — organized controls + richer
   feedback. White circular SVG arrows, autoplay-progress dots
   (fill = time until next slide; frozen while .is-paused), a
   slide counter chip, swipe support, and the text-overlay slides
   regrouped: badge/title/desc stack + one price+CTA action row.
   ============================================================ */

/* -- Arrows: white discs, ink chevron, accent on hover -- */
.c2t-hero__arrow {
    width: 46px; height: 46px;
    background: rgba(255, 255, 255, .92); color: var(--color-secondary-ink);
    box-shadow: 0 6px 18px -6px rgba(0, 15, 46, .45);
    transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), transform 140ms var(--ease-out);
}
.c2t-hero__arrow:hover { background: var(--color-accent); color: #fff; }
.c2t-hero__arrow .c2t-ico { width: 22px; height: 22px; }

/* -- Dots: progress pills — the active dot fills over the autoplay delay -- */
.c2t-hero__dot { width: 34px; height: 6px; background: rgba(255, 255, 255, .38); position: relative; overflow: hidden; }
.c2t-hero__dot::after {
    content: ''; position: absolute; inset: 0; background: #fff; border-radius: inherit;
    transform: scaleX(0); transform-origin: left;
}
.c2t-hero__dot.is-active::after { animation: c2tDotFill 6.5s linear forwards; }
.c2t-hero__slider.is-paused .c2t-hero__dot.is-active::after { animation-play-state: paused; }
@keyframes c2tDotFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* -- Slide counter chip -- */
.c2t-hero__count {
    position: absolute; top: var(--space-md); right: var(--space-md); z-index: 4;
    display: inline-flex; align-items: baseline; gap: .2rem;
    padding: .3rem .7rem; border-radius: 999px;
    background: rgba(0, 15, 46, .45); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: .95rem; letter-spacing: .06em;
}
.c2t-hero__count-sep { opacity: .6; }

/* -- Text-overlay slides: price chip + CTA share one action row -- */
.c2t-hero__track { touch-action: pan-y; }
.c2t-heroslide__row { display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; margin-top: var(--space-sm); }
.c2t-heroslide__price {
    display: inline-flex; align-items: center;
    padding: .35rem .9rem; border-radius: 10px;
    background: var(--color-secondary); color: #fff;
    font-size: clamp(1.35rem, 2.8vw, 2.1rem);
    box-shadow: 0 8px 22px -10px rgba(0, 0, 0, .5);
    transform: rotate(-1.5deg);
}
.c2t-heroslide__row .c2t-heroslide__cta { margin-top: 0; }

@media (max-width: 859px) {
    /* dots + swipe carry the state on small slides — the chip would
       collide with the arrows at this height */
    .c2t-hero__count { display: none; }
    .c2t-hero__arrow { width: 40px; height: 40px; }
    .c2t-hero__arrow .c2t-ico { width: 19px; height: 19px; }
}
@media (prefers-reduced-motion: reduce) {
    .c2t-hero__dot.is-active::after { animation: none; transform: scaleX(1); }
}

/* ============================================================
   SERVICES CATALOG (/nos-services) — image-grid of every visible
   service. Photo cards where a real photo exists; flat blue/red
   icon tiles otherwise (same mosaic language as the homepage).
   Whole card is the link; price + « Je découvre › » share the
   footer row.
   ============================================================ */
.c2t-svcindex { padding: var(--space-lg) 0 var(--space-2xl); }
.c2t-sechead--left { text-align: left; margin: 0 0 var(--space-lg); max-width: 780px; }
.c2t-sechead--left .c2t-kicker::before { display: none; }
.c2t-sechead--left h1 { margin: .45rem 0 .4rem; font-size: var(--text-display-s); line-height: 1.05; }

.c2t-svcindex__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; }
.c2t-svcx {
    display: flex; flex-direction: column; overflow: hidden;
    background: var(--color-paper); border: 1px solid #E6EBF2; border-radius: 14px;
    text-decoration: none; color: var(--color-ink);
    box-shadow: 0 6px 18px -14px rgba(10, 40, 90, .25);
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
a.c2t-svcx:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -18px rgba(10, 40, 90, .35); text-decoration: none; color: var(--color-ink); }
.c2t-svcx__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #F4F7FB; }
.c2t-svcx__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
a.c2t-svcx:hover .c2t-svcx__media img { transform: scale(1.05); }
.c2t-svcx__media--icon { display: grid; place-items: center; }
.c2t-svcx__bigico { width: 64px; height: 64px; }

/* Flat tiles: brand color fills the media band, icon in white */
.c2t-svcx--blue .c2t-svcx__media { background: var(--color-accent); color: #fff; }
.c2t-svcx--red .c2t-svcx__media { background: var(--color-secondary); color: #fff; }

.c2t-svcx__body { display: flex; flex-direction: column; gap: .4rem; padding: 1.15rem 1.2rem 1.2rem; flex: 1; }
.c2t-svcx__title { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--color-secondary-ink); }
.c2t-svcx__desc { color: var(--color-ink-soft); font-size: .95rem; }
.c2t-svcx__foot { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-top: auto; padding-top: .6rem; }
.c2t-svcx__price {
    padding: .18rem .6rem; border-radius: 999px; font-weight: 700; font-size: .88rem;
    background: color-mix(in srgb, var(--color-secondary) 9%, #fff); color: var(--color-secondary);
}
.c2t-svcx__cta {
    display: inline-flex; align-items: center; gap: .3rem; margin-left: auto;
    font-family: var(--font-display); font-weight: 700; font-size: .92rem;
    letter-spacing: .08em; text-transform: uppercase; color: var(--color-accent);
}
.c2t-svcx__cta::after { content: '›'; font-size: 1.25em; line-height: 1; transition: transform var(--dur) var(--ease-out); }
a.c2t-svcx:hover .c2t-svcx__cta::after { transform: translateX(4px); }

/* Closing CTA band */
.c2t-svcindex__cta { padding: var(--space-2xl) 0; }
.c2t-svcindex__cta-row {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); flex-wrap: wrap;
    background: #F4F7FB; border: 1px solid #E6EBF2; border-radius: 16px; padding: var(--space-lg) var(--space-xl);
}
.c2t-svcindex__cta-head { margin: 0 0 .25rem; font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: var(--color-secondary-ink); }
.c2t-svcindex__cta-sub { margin: 0; color: var(--color-ink-soft); }

@media (max-width: 1023.98px) { .c2t-svcindex__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 639.98px) {
    .c2t-svcindex__grid { grid-template-columns: 1fr; }
    .c2t-svcindex__cta { padding: var(--space-xl) 0; }
    .c2t-svcindex__cta-row { padding: var(--space-lg); }
}

/* -- Footer: 4th column of service-page links (internal mesh) -- */
.c2t-footer__grid { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) repeat(2, minmax(0, 1fr)); }
.c2t-footer__services { display: grid; gap: .45rem; }
.c2t-footer__services a { font-size: var(--text-sm); }

/* ============================================================
   À PROPOS (2026-07 redesign) — split hero with the real
   workshop photo, floating Google-rating card, dashed « route »
   SVG motif, count-up stats band. Entrances are CSS-only and
   collapse under prefers-reduced-motion (global silencer).
   ============================================================ */
.c2t-abouthero { padding: var(--space-lg) 0 var(--space-2xl); overflow: clip; }
.c2t-abouthero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: var(--space-2xl); align-items: center; }
.c2t-abouthero__copy .c2t-kicker::before { display: none; }
.c2t-abouthero__copy h1 { font-size: var(--text-display-s); line-height: 1.05; margin: .45rem 0 var(--space-md); }
.c2t-abouthero__lede { font-size: 1.18rem; color: var(--color-ink-soft); max-width: 54ch; margin: 0 0 var(--space-lg); }
.c2t-abouthero__actions { display: flex; gap: var(--space-md); flex-wrap: wrap; align-items: center; }
.c2t-abouthero__tel { border: 2px solid var(--color-accent); color: var(--color-accent); }
.c2t-abouthero__tel .c2t-ico { width: 18px; height: 18px; vertical-align: -3.5px; margin-right: .2rem; }
/* copy staggers in */
.c2t-abouthero__copy > * { animation: c2tSlideUp .55s var(--ease-out) backwards; }
.c2t-abouthero__copy > :nth-child(2) { animation-delay: .08s; }
.c2t-abouthero__copy > :nth-child(3) { animation-delay: .16s; }
.c2t-abouthero__copy > :nth-child(4) { animation-delay: .24s; }
.c2t-abouthero__copy > :nth-child(5) { animation-delay: .32s; }

.c2t-abouthero__media { position: relative; justify-self: center; width: min(100%, 420px); }
.c2t-abouthero__photo {
    position: relative; z-index: 1; margin: 0; overflow: hidden; border-radius: 18px;
    box-shadow: 0 30px 60px -30px rgba(10, 40, 90, .45);
    animation: c2tZoomIn .6s var(--ease-out) .15s backwards;
}
.c2t-abouthero__photo::after { content: ''; position: absolute; inset: 0; border-radius: inherit; border: 1px solid rgb(0 15 46 / .08); }
.c2t-abouthero__photo img { width: 100%; height: auto; max-height: 520px; object-fit: cover; display: block; }
/* offset accent frame behind the photo */
.c2t-abouthero__media::before {
    content: ''; position: absolute; z-index: 0; inset: 24px -24px -24px 24px;
    border-radius: 18px; background: color-mix(in srgb, var(--color-accent) 10%, #fff);
}
/* dashed route motif, slowly marching */
.c2t-abouthero__road { position: absolute; z-index: 0; top: -48px; left: -70px; width: 260px; color: color-mix(in srgb, var(--color-accent) 45%, #fff); }
.c2t-abouthero__road-path { animation: c2tRoadDash 14s linear infinite; }
@keyframes c2tRoadDash { to { stroke-dashoffset: -160; } }

/* floating rating card + year chip */
.c2t-abouthero__rating {
    position: absolute; z-index: 2; left: -42px; bottom: 34px;
    display: grid; gap: .1rem; padding: .8rem 1.05rem; border-radius: 14px;
    background: var(--color-paper); border: 1px solid #E6EBF2;
    box-shadow: 0 18px 40px -18px rgba(10, 40, 90, .4);
    text-decoration: none; color: var(--color-ink);
    animation: c2tPopIn .55s var(--ease-out) .5s backwards, c2tFloatSoft 5s var(--ease-in-out) 2s infinite;
}
.c2t-abouthero__rating:hover { text-decoration: none; }
.c2t-abouthero__rating-score { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; line-height: 1; color: var(--color-secondary-ink); }
.c2t-abouthero__rating-score small { font-size: .95rem; color: var(--color-ink-soft); font-weight: 700; }
.c2t-abouthero__rating-stars { color: #F5B301; letter-spacing: .1em; font-size: .9rem; }
.c2t-abouthero__rating-label { font-size: .85rem; color: var(--color-ink-soft); }
.c2t-abouthero__chip {
    position: absolute; z-index: 2; right: -18px; top: 26px;
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .45rem .9rem; border-radius: 999px;
    background: var(--color-secondary); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: .95rem;
    box-shadow: 0 12px 26px -12px rgba(0, 0, 0, .45);
    animation: c2tSlideDown .5s var(--ease-out) .65s backwards, c2tFloatSoft 6s var(--ease-in-out) 2.5s infinite reverse;
}
.c2t-abouthero__chip .c2t-ico { width: 16px; height: 16px; }
@keyframes c2tFloatSoft { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }

/* -- Stats band -- */
.c2t-aboutstats { background: #F4F7FB; border-block: 1px solid #E6EBF2; }
.c2t-aboutstats__row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-lg); padding: var(--space-xl) 0; }
.c2t-aboutstat { display: grid; gap: .2rem; text-align: center; }
.c2t-aboutstat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1; color: var(--color-accent); }
.c2t-aboutstat__num small { font-size: .55em; color: var(--color-ink-soft); font-weight: 700; }
.c2t-aboutstat:nth-child(even) .c2t-aboutstat__num { color: var(--color-secondary); }
.c2t-aboutstat__label { color: var(--color-ink-soft); font-size: .95rem; }

/* -- Editable body: narrow measure, styled headings -- */
.c2t-aboutbody { padding: var(--space-2xl) 0; }
.c2t-aboutbody__measure { max-width: 72ch; }
.c2t-aboutbody__measure h2 { font-size: var(--text-h2); margin: var(--space-lg) 0 var(--space-sm); }
.c2t-aboutbody__measure h2:first-child { margin-top: 0; }
.c2t-aboutbody__measure p { color: var(--color-ink); line-height: 1.7; }

@media (max-width: 859px) {
    .c2t-abouthero { padding-bottom: var(--space-xl); }
    .c2t-abouthero__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .c2t-abouthero__media { width: min(100%, 360px); }
    .c2t-abouthero__rating { left: -8px; }
    .c2t-abouthero__chip { right: -6px; }
    .c2t-aboutstats__row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-md); }
    .c2t-aboutbody { padding: var(--space-xl) 0; }
}
@media (prefers-reduced-motion: reduce) {
    .c2t-abouthero__copy > *, .c2t-abouthero__photo,
    .c2t-abouthero__rating, .c2t-abouthero__chip { animation: none !important; }
    .c2t-abouthero__road-path { animation: none; }
}

/* ============================================================
   CONTACT FORM — split section: pitch/coordinates left, form
   card right; posts into the devis (QuoteRequest) pipeline.
   Honeypot field is visually removed but focusable-by-bots.
   ============================================================ */
.c2t-contactform { padding: var(--space-2xl) 0; background: #F4F7FB; }
.c2t-contactform__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: var(--space-2xl); align-items: start; }
.c2t-contactform__aside .c2t-kicker::before { display: none; }
.c2t-contactform__aside h2 { font-size: var(--text-h2); margin: .45rem 0 var(--space-sm); }
.c2t-contactform__aside p { color: var(--color-ink-soft); max-width: 44ch; }
.c2t-contactform__card {
    background: var(--color-paper); border: 1px solid #E6EBF2; border-radius: 16px;
    padding: var(--space-lg); box-shadow: 0 14px 34px -22px rgba(10, 40, 90, .35);
}
.c2t-contactform__note { margin: var(--space-sm) 0 0; font-size: .85rem; color: var(--color-ink-soft); text-align: center; }
.c2t-hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
@media (max-width: 859px) {
    .c2t-contactform { padding: var(--space-xl) 0; }
    .c2t-contactform__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .c2t-contactform__card { padding: var(--space-md); }
}
