/* ==========================================================================
   Morgane cuisine chez toi — feuille de style
   Palette : rose / blanc / rouge (#A30015) + https://coolors.co/c9cba3-ffe1a8-e26d5c-723d46-472d30
   ========================================================================== */

:root {
    /* Couleurs */
    --rouge: #a30015;
    --rouge-fonce: #7d0010;
    --corail: #e26d5c;
    --bordeaux: #723d46;
    --brun: #472d30;
    --creme: #ffe1a8;
    --sauge: #c9cba3;
    --rose: #f9ddd8;
    --rose-clair: #fdf1ee;
    --blanc: #ffffff;
    --fond: #fffaf6;
    --texte: #472d30;
    --texte-doux: #6f5b5e;
    --bordure: #f0ddd6;
    --whatsapp: #25d366;
    --whatsapp-fonce: #1da851;

    /* Typo */
    --font-titre: "Fraunces", Georgia, "Times New Roman", serif;
    --font-texte: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;

    /* Divers */
    --radius: 18px;
    --radius-sm: 10px;
    --ombre: 0 10px 30px rgba(71, 45, 48, 0.08);
    --ombre-forte: 0 18px 45px rgba(71, 45, 48, 0.16);
    --transition: 220ms ease;
    --container: 1160px;
    --header-h: 100px;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 12px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-texte);
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--texte);
    background: var(--fond);
    overflow-x: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}
img {
    height: auto;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-titre);
    font-weight: 600;
    line-height: 1.15;
    color: var(--brun);
    margin: 0 0 0.6em;
    text-wrap: balance;
}
h1 {
    font-size: clamp(2.4rem, 5vw, 3.9rem);
}
h2 {
    font-size: clamp(2rem, 3.8vw, 2.9rem);
}
h3 {
    font-size: 1.45rem;
}

p {
    margin: 0 0 1em;
}
p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--rouge);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}
a:hover {
    color: var(--rouge-fonce);
}

strong {
    font-weight: 700;
}

ul,
ol {
    padding-left: 1.2em;
}

:focus-visible {
    outline: 3px solid var(--rouge);
    outline-offset: 3px;
    border-radius: 4px;
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    z-index: 1000;
    background: var(--brun);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    transition: top var(--transition);
}
.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
}

.small {
    font-size: 0.95rem;
    color: var(--texte-doux);
}
.accent {
    color: var(--rouge);
}

.eyebrow {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rouge);
    margin-bottom: 0.9rem;
    line-height: 1.2;
}

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition);
}
.btn:hover {
    transform: translateY(-2px);
}
.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--rouge);
    color: #fff;
    box-shadow: 0 8px 20px rgba(163, 0, 21, 0.28);
}
.btn--primary:hover {
    background: var(--rouge-fonce);
    color: #fff;
    box-shadow: 0 12px 26px rgba(163, 0, 21, 0.35);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--brun);
    border-color: var(--bordure);
}
.btn--ghost:hover {
    background: #fff;
    color: var(--brun);
}

.btn--outline {
    background: transparent;
    color: var(--rouge);
    border-color: var(--rouge);
}
.btn--outline:hover {
    background: var(--rouge);
    color: #fff;
}

.btn--block {
    width: 100%;
}
.btn[disabled] {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 250, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}
.header.is-scrolled {
    border-bottom-color: var(--bordure);
    box-shadow: 0 4px 20px rgba(71, 45, 48, 0.06);
}
.header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    min-height: var(--header-h);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    justify-self: start;
    text-decoration: none;
    color: var(--brun);
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.1;
    white-space: nowrap;
}
.logo:hover {
    color: var(--brun);
}
.logo img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 14px rgba(71, 45, 48, 0.15);
    transition: transform var(--transition);
}
.logo:hover img {
    transform: scale(1.05);
}

.logo__text {
    color: var(--creme);
}

.logo__text em {
    font-style: italic;
    color: var(--rouge);
    font-weight: 600;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-self: center;
}
.nav__list {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    display: inline-block;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    color: var(--brun);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    white-space: nowrap;
    transition:
        background var(--transition),
        color var(--transition);
}
.nav__link:hover,
.nav__link.is-active {
    background: var(--rose);
    color: var(--rouge);
}
.nav__link--cta {
    background: var(--rouge);
    color: #fff;
    margin-left: 0.4rem;
}
.nav__link--cta:hover,
.nav__link--cta.is-active {
    background: var(--rouge-fonce);
    color: #fff;
}
.socials {
    display: flex;
    gap: 0.5rem;
}
.socials--nav {
    display: none;
} /* réseaux dans le menu : mobile uniquement */
.socials--header {
    justify-self: end;
}
.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--rouge);
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}
.socials a:hover {
    background: var(--rouge);
    color: #fff;
    transform: translateY(-2px);
}
.socials svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    justify-self: end;
}
.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--brun);
    border-radius: 3px;
    transition:
        transform var(--transition),
        opacity var(--transition);
}
.burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 225, 168, 0.55),
            transparent 45%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(249, 221, 216, 0.8),
            transparent 40%
        ),
        var(--fond);
    overflow: hidden;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
.hero__lead {
    font-size: 1.25rem;
    color: var(--texte-doux);
    max-width: 56ch;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.6rem 0 1.8rem;
}
.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.hero__badges li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid var(--bordure);
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bordeaux);
}
.hero__badges li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rouge);
}

.hero__visual {
    position: relative;
}
.hero__frame {
    border-radius: 40% 40% 32% 32% / 34% 34% 22% 22%;
    overflow: hidden;
    box-shadow: var(--ombre-forte);
    border: 6px solid #fff;
    aspect-ratio: 6 / 7;
}
.hero__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__sticker {
    position: absolute;
    left: -12px;
    bottom: 28px;
    background: #fff;
    border-radius: var(--radius);
    padding: 0.9rem 1.2rem;
    box-shadow: var(--ombre-forte);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    transform: rotate(-4deg);
}
.hero__sticker strong {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    color: var(--rouge);
}
.hero__sticker span {
    font-size: 0.9rem;
    color: var(--texte-doux);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section {
    padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.section--tinted {
    background: #fff;
}
.section--contact {
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(201, 203, 163, 0.35),
            transparent 40%
        ),
        var(--rose-clair);
}

.section__head {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}
.section__intro {
    font-size: 1.2rem;
    color: var(--texte-doux);
}

.grid {
    display: grid;
    gap: 1.5rem;
}
.grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background: #fff;
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--ombre);
}

/* Avantages */
.benefit {
    position: relative;
    background: #fff;
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    padding: 2rem 1.6rem 1.8rem;
    text-align: center;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}
.benefit:hover {
    transform: translateY(-4px);
    box-shadow: var(--ombre-forte);
    border-color: transparent;
}
.benefit__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--rose);
    color: var(--rouge);
}
.benefit__icon svg {
    width: 30px;
    height: 30px;
}
.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}
.benefit p {
    color: var(--texte-doux);
    font-size: 1.02rem;
}

/* Comment ça marche */
.section__head--how {
    margin-top: clamp(3.5rem, 8vw, 6.5rem);
}
.how {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
.how__visual img {
    border-radius: var(--radius);
    box-shadow: var(--ombre-forte);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}
.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.3rem;
}
.steps li {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}
.steps__num {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--rouge);
    color: #fff;
    font-family: var(--font-titre);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 6px 14px rgba(163, 0, 21, 0.28);
}
.steps h3 {
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
}
.steps p {
    color: var(--texte-doux);
    font-size: 1.02rem;
}

/* Offres */
.offer {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.offer--featured {
    border: 2px solid var(--rouge);
    box-shadow: 0 20px 50px rgba(163, 0, 21, 0.14);
}
.offer__ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rouge);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    white-space: nowrap;
}
.offer__head p {
    color: var(--texte-doux);
    font-size: 1.02rem;
}
.offer .btn {
    margin-top: auto;
}

.prices {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.02rem;
    table-layout: fixed;
}
.prices th:first-child {
    width: 28%;
}
.prices th:nth-child(2) {
    width: 34%;
}
.prices th,
.prices td {
    padding: 0.8rem 0.3rem;
    border-bottom: 1px solid var(--bordure);
    vertical-align: middle;
}
.prices thead th {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--texte-doux);
    font-weight: 800;
    padding-top: 0;
    line-height: 1.3;
}
.prices thead sup {
    font-size: 0.75em;
}
.prices th {
    text-align: left;
}
.prices thead th:not(:first-child),
.prices td {
    text-align: right;
    white-space: nowrap;
}
.prices thead th:last-child {
    text-align: center;
}
.prices tbody th {
    font-weight: 700;
    color: var(--brun);
}
.prices td {
    color: var(--texte-doux);
}
.prices__net {
    font-weight: 800;
    color: var(--rouge);
    font-size: 1.15rem;
}
.prices tbody tr:last-child th,
.prices tbody tr:last-child td {
    border-bottom: 0;
}
.prices td small {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0.15rem;
    color: var(--texte-doux);
    white-space: normal;
}

.offer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}
.offer__list li {
    position: relative;
    padding-left: 1.7rem;
    font-size: 1.02rem;
}
.offer__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--rouge);
    font-weight: 800;
}
.offer__price {
    font-family: var(--font-titre);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--bordeaux);
    padding: 0.6rem 0;
    border-top: 1px solid var(--bordure);
}

.offers__notes {
    margin-top: 2.2rem;
    display: grid;
    gap: 0.6rem;
    padding: 1.2rem 1.5rem;
    background: var(--rose-clair);
    border-radius: var(--radius-sm);
}
.offers__promo {
    margin: 0 0 0.3rem;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}
.offers__promo strong {
    background: var(--rouge);
    color: #fff;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 1rem;
}
.offers__legend {
    margin: 0;
    font-size: 0.95rem;
    color: var(--texte-doux);
}

/* Split (image + texte) */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}
.split__visual img {
    border-radius: var(--radius);
    box-shadow: var(--ombre-forte);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}
.split__visual--logo {
    background: #fff;
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    box-shadow: var(--ombre);
    padding: clamp(1.5rem, 4vw, 3rem);
    display: grid;
    place-items: center;
}
.split__visual--logo img {
    aspect-ratio: auto;
    object-fit: contain;
    box-shadow: none;
    border-radius: 0;
    max-width: 360px;
    width: 100%;
}
.checklist {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
    display: grid;
    gap: 0.8rem;
}
.checklist li {
    position: relative;
    padding-left: 2.3rem;
}
.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    background: var(--sauge);
    color: var(--brun);
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
}

/* Galerie */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery__item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    box-shadow: var(--ombre);
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}
.gallery__item::after {
    content: "⤢";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.9);
    color: var(--brun);
    border-radius: 50%;
    font-size: 1rem;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery__item:hover img,
.gallery__item:focus-visible img {
    transform: scale(1.05);
}
.gallery__item:hover::after,
.gallery__item:focus-visible::after {
    opacity: 1;
}
.gallery__more {
    text-align: center;
    margin-top: 2rem;
    color: var(--texte-doux);
}

/* Zone */
.zone {
    max-width: 980px;
    margin-inline: auto;
}
.zone__map {
    min-height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--ombre);
    border: 1px solid var(--bordure);
    background: var(--rose-clair);
    isolation: isolate; /* garde le z-index de Leaflet sous le header */
}
.zone__map .leaflet-container {
    font-family: var(--font-texte);
}
.zone__map .leaflet-tooltip.zone__label {
    background: #fff;
    border: 1px solid var(--bordure);
    border-radius: 999px;
    color: var(--brun);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.2rem 0.6rem;
    box-shadow: var(--ombre);
}
.zone__map .leaflet-tooltip.zone__label::before {
    display: none;
}
.zone__note {
    text-align: center;
    margin-top: 1.4rem;
    color: var(--texte-doux);
}

/* Contact */
.contact {
    max-width: 780px;
    margin-inline: auto;
    display: grid;
    gap: 1.6rem;
}
.contact__channels {
    display: grid;
    gap: 1.2rem;
}
.channel--whatsapp {
    max-width: 460px;
    width: 100%;
    margin-inline: auto;
}
.channel {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.2rem 1.4rem;
    background: #fff;
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--brun);
    box-shadow: var(--ombre);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}
.channel:hover {
    transform: translateY(-3px);
    box-shadow: var(--ombre-forte);
    color: var(--brun);
}
.channel__icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
}
.channel__icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}
.channel--whatsapp .channel__icon {
    background: var(--whatsapp);
}
.channel--whatsapp:hover {
    border-color: var(--whatsapp);
}
.channel--mail .channel__icon {
    background: var(--rouge);
}
.channel--mail .channel__icon svg {
    fill: none;
}
.channel--mail:hover {
    border-color: var(--rouge);
}
.channel__body {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
}
.channel__body strong {
    font-size: 1.15rem;
}
.channel__body span {
    color: var(--texte-doux);
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.contact__or {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.6rem 0 0;
    color: var(--texte-doux);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.contact__or::before,
.contact__or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--bordure);
}

.form {
    background: #fff;
    border-radius: var(--radius);
    padding: clamp(1.4rem, 3vw, 2.2rem);
    box-shadow: var(--ombre-forte);
    border: 1px solid var(--bordure);
    display: grid;
    gap: 1.1rem;
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}
.field {
    display: grid;
    gap: 0.35rem;
}
.field label {
    font-weight: 700;
    font-size: 1rem;
}
.field label span {
    color: var(--rouge);
}
.field input,
.field select,
.field textarea {
    width: 100%;
    font: inherit;
    color: var(--texte);
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--bordure);
    border-radius: var(--radius-sm);
    background: var(--fond);
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--rouge);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(163, 0, 21, 0.12);
}
.field textarea {
    resize: vertical;
    min-height: 130px;
}
.field.is-invalid input,
.field.is-invalid textarea {
    border-color: var(--rouge);
}
.field__error {
    font-size: 0.9rem;
    color: var(--rouge);
    margin: 0;
}
.field__error:empty {
    display: none;
}

.field--check {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.6rem 0.7rem;
}
.field--check input {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    accent-color: var(--rouge);
}
.field--check label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--texte-doux);
}
.field--check .field__error {
    grid-column: 1 / -1;
}

.form__status {
    margin: 0;
    font-weight: 700;
}
.form__status:empty {
    display: none;
}
.form__status.is-success {
    color: #2e7d4f;
}
.form__status.is-error {
    color: var(--rouge);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--brun);
    color: rgba(255, 255, 255, 0.85);
}
.footer a {
    color: #fff;
}
.footer a:hover {
    color: var(--creme);
}
.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem 0;
}
.logo--footer {
    color: var(--creme);
    margin-bottom: 0.8rem;
}
.logo--footer:hover {
    color: var(--creme);
}
.logo--footer .logo__text em {
    color: var(--creme);
}
.footer__brand p {
    font-size: 1rem;
    max-width: 62ch;
}
.footer__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.8rem;
    margin-top: 1.2rem;
}
.footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.8rem;
}
.footer__contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-size: 1rem;
}
.footer__contact a:hover {
    text-decoration: underline;
}
.footer__contact svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.footer__contact li:nth-child(2) svg {
    fill: none;
}
.footer .socials {
    margin: 0;
}
.footer .socials a {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.footer .socials a:hover {
    background: var(--rouge);
}
.footer__title {
    font-family: var(--font-texte);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--creme);
    margin-bottom: 1rem;
}
.footer__qr img {
    background: #fff;
    padding: 8px;
    border-radius: var(--radius-sm);
    width: 140px;
    height: 140px;
}
.footer__qr .small {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.7rem;
}
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.2rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}
.footer__bottom p {
    margin: 0;
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(40, 20, 22, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 200ms ease;
}
.lightbox[hidden] {
    display: none;
}
.lightbox__figure {
    margin: 0;
    max-width: min(92vw, 1100px);
    max-height: 90vh;
    text-align: center;
}
.lightbox__figure img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    margin-inline: auto;
}
.lightbox__figure figcaption {
    color: #fff;
    margin-top: 1rem;
    font-size: 1rem;
}
.lightbox__close,
.lightbox__nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 0;
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: background var(--transition);
}
.lightbox__close:hover,
.lightbox__nav:hover {
    background: var(--rouge);
}
.lightbox__close {
    top: 1.2rem;
    right: 1.2rem;
    font-size: 2rem;
}
.lightbox__nav--prev {
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
}
.lightbox__nav--next {
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
}
body.lightbox-open {
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* --------------------------------------------------------------------------
   Animations d'apparition
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 600ms ease,
        transform 600ms ease;
}
.reveal--delay {
    transition-delay: 150ms;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1360px) {
    .nav__link {
        padding: 0.5rem 0.75rem;
        font-size: 1.1rem;
    }
}
@media (max-width: 1180px) {
    .nav__link {
        padding: 0.5rem 0.6rem;
        font-size: 1rem;
    }
    .logo img {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 1024px) {
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .header__inner {
        grid-template-columns: auto 1fr auto;
    }
    .burger {
        display: flex;
    }
    .socials--header {
        display: none;
    }
    .socials--nav {
        display: flex;
        justify-content: center;
    }
    .nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        background: var(--fond);
        padding: 1.2rem 1.25rem 1.6rem;
        border-bottom: 1px solid var(--bordure);
        box-shadow: 0 20px 40px rgba(71, 45, 48, 0.12);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition:
            transform var(--transition),
            opacity var(--transition),
            visibility var(--transition);
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }
    .nav.is-open {
        transform: none;
        opacity: 1;
        visibility: visible;
    }
    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
    }
    .nav__link {
        display: block;
        padding: 0.85rem 1rem;
        font-size: 1.2rem;
    }
    .nav__link--cta {
        margin: 0.4rem 0 0;
        text-align: center;
    }

    .hero__inner,
    .how,
    .split {
        grid-template-columns: 1fr;
    }
    .hero__visual {
        max-width: 420px;
        margin: 0 auto;
    }
    .hero__sticker {
        left: 0;
    }
    .how__visual {
        order: -1;
    }
    .grid--3 {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }
    .offer--featured {
        order: -1;
    }
    .zone__map {
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 1.05rem;
    }
    .eyebrow {
        font-size: 1.15rem;
    }
    :root {
        --header-h: 88px;
    }
    .logo img {
        width: 60px;
        height: 60px;
    }
    .grid--4 {
        grid-template-columns: 1fr;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }
    .form__row {
        grid-template-columns: 1fr;
    }
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .lightbox {
        padding: 1rem;
    }
    .lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .lightbox__nav--prev {
        left: 0.5rem;
    }
    .lightbox__nav--next {
        right: 0.5rem;
    }
    .prices thead th {
        font-size: 0.68rem;
    }
    .hero__badges li {
        font-size: 0.9rem;
    }
    .zone__map {
        min-height: 380px;
    }
    .channel__body span {
        font-size: 0.88rem;
    }
    .channel {
        padding: 1rem 1.1rem;
        gap: 0.9rem;
    }
    .channel__icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }
    .channel__icon svg {
        width: 24px;
        height: 24px;
    }
}
