:root {
    --wine: #671f34;
    --wine-dark: #3f1020;
    --rose: #c78182;
    --rose-light: #efd5cf;
    --cream: #f7f0e8;
    --paper: #fffaf4;
    --ink: #251c1e;
    --muted: #6f6263;
    --line: rgba(63, 16, 32, 0.18);
    --white: #ffffff;
    --radius: 1.5rem;
    --container: 1180px;
    --shadow: 0 24px 70px rgba(63, 16, 32, 0.12);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.container {
    width: min(calc(100% - 3rem), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    color: var(--white);
    background: var(--wine-dark);
    border-radius: 999px;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 4px; }

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    border-bottom: 1px solid transparent;
    transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled,
.site-header:has(.site-nav.is-open) {
    background: rgba(255, 250, 244, 0.92);
    border-color: var(--line);
    box-shadow: 0 12px 34px rgba(63, 16, 32, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    flex: none;
}

.brand img {
    width: 2.65rem;
    height: 2.65rem;
    object-fit: cover;
    border-radius: 50%;
}

.brand .brand-logo {
    width: 12.2rem;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

.brand span { display: grid; line-height: 1.05; }
.brand strong {
    color: var(--wine);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 500;
}
.brand small {
    margin-top: 0.3rem;
    color: var(--muted);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: 0.3rem; }
.site-nav a {
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}
.site-nav a:hover { color: var(--wine); background: rgba(103, 31, 52, 0.07); }
.site-nav a[aria-current="page"] { color: var(--wine); background: rgba(103, 31, 52, 0.1); }
.site-nav .nav-cta { margin-left: 0.5rem; padding-inline: 1.15rem; color: var(--white); background: var(--wine); }
.site-nav .nav-cta[aria-current="page"] { color: var(--white); background: var(--wine-dark); }
.site-nav .nav-cta:hover { color: var(--white); background: var(--wine-dark); transform: translateY(-2px); }

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0.78rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    cursor: pointer;
}
.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0.28rem 0;
    background: var(--wine);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
    position: relative;
    min-height: 100svh;
    padding: 7.8rem 0 5rem;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 72% 30%, rgba(199, 129, 130, 0.25), transparent 27rem), linear-gradient(135deg, var(--paper) 0%, var(--cream) 100%);
}
.hero::before {
    content: "";
    position: absolute;
    width: 35rem;
    height: 35rem;
    left: -21rem;
    top: 18%;
    border: 1px solid rgba(103, 31, 52, 0.12);
    border-radius: 50%;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
}
.hero-copy { max-width: 720px; }

.eyebrow {
    margin: 0 0 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--wine);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 2.3rem; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -0.04em; }
h1 { max-width: 700px; margin-bottom: 1.5rem; font-size: clamp(2.8rem, 5.2vw, 5.3rem); line-height: 0.96; }
h1 em, h2 em { color: var(--wine); font-weight: 400; }
.hero-title-row {
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 9rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
}
.hero-title-row h1 { margin: 0; }
.hero-logo { width: 9rem; height: auto; }
.hero-lead { max-width: 650px; margin-bottom: 2rem; color: var(--muted); font-size: clamp(1.08rem, 1.6vw, 1.35rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 0.9rem 1.4rem; }

.button {
    min-height: 3.4rem;
    padding: 0.8rem 1.25rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.button span, .service-card a span, .contact-phone > span { transition: transform 0.3s ease; }
.button:hover { transform: translateY(-3px); }
.button:hover span, .service-card a:hover span, .contact-phone:hover > span { transform: translate(3px, -3px); }
.button-primary { color: var(--white); background: var(--wine); }
.button-primary:hover { background: var(--wine-dark); }
.button-text { min-height: auto; padding-inline: 0; color: var(--wine); border-radius: 0; border-bottom-color: rgba(103, 31, 52, 0.35); }
.button-text:hover { border-bottom-color: var(--wine); }
.button-full { width: 100%; }

.hero-points {
    margin: 3.2rem 0 0;
    padding: 1.2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.5rem;
    border-top: 1px solid var(--line);
    list-style: none;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero-points li { display: flex; align-items: center; gap: 0.55rem; }
.hero-points li::before { content: ""; width: 0.35rem; height: 0.35rem; border-radius: 50%; background: var(--rose); }

.media-placeholder {
    position: relative;
    min-height: 32rem;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid rgba(103, 31, 52, 0.22);
    border-radius: var(--radius);
    background: linear-gradient(135deg, transparent 49.85%, rgba(103, 31, 52, 0.12) 50%, transparent 50.15%), linear-gradient(45deg, transparent 49.85%, rgba(103, 31, 52, 0.12) 50%, transparent 50.15%), linear-gradient(130deg, rgba(239, 213, 207, 0.9), rgba(247, 240, 232, 0.45));
    box-shadow: var(--shadow);
}
.media-placeholder::before { content: ""; position: absolute; inset: 1rem; border: 1px solid rgba(103, 31, 52, 0.15); border-radius: calc(var(--radius) - 0.55rem); }
.media-placeholder > div { position: relative; z-index: 1; display: grid; justify-items: center; color: var(--wine); text-align: center; }
.placeholder-icon { width: 3rem; height: 3rem; margin-bottom: 1rem; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 1.5rem; transition: transform 0.5s ease, background-color 0.5s ease; }
.media-placeholder:hover .placeholder-icon { color: var(--white); background: var(--wine); transform: rotate(90deg); }
.media-placeholder strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight: 400; }
.media-placeholder small { margin-top: 0.35rem; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.placeholder-index { position: absolute; z-index: 1; top: 1.8rem; left: 1.8rem; color: var(--wine); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; }
.media-placeholder-hero { aspect-ratio: 4 / 5; transform: rotate(2deg); animation: hero-card-in 1.1s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-photo {
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(103, 31, 52, 0.18);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: rotate(1deg);
    animation: hero-card-in 1.1s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 38%;
}
.hero-copy > * { animation: hero-copy-in 0.85s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-copy > :nth-child(1) { animation-delay: 0.1s; }
.hero-copy > :nth-child(2) { animation-delay: 0.18s; }
.hero-copy > :nth-child(3) { animation-delay: 0.26s; }
.hero-copy > :nth-child(4) { animation-delay: 0.34s; }
.hero-copy > :nth-child(5) { animation-delay: 0.42s; }
.hero-word { position: absolute; z-index: 0; right: -0.03em; bottom: -0.22em; color: rgba(103, 31, 52, 0.045); font-size: clamp(5rem, 15vw, 15rem); font-weight: 900; line-height: 1; letter-spacing: -0.08em; white-space: nowrap; }

.section { padding-block: clamp(5.5rem, 10vw, 9rem); }
.section-heading { max-width: 840px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-heading h2, .area-copy h2, .faq-intro h2, .contact-main h2 { margin-bottom: 0; font-size: clamp(2.7rem, 5.5vw, 5.6rem); line-height: 0.98; }
.section-heading-split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr); gap: clamp(2rem, 6vw, 7rem); align-items: end; }
.section-heading-split > p { margin-bottom: 0; color: var(--muted); font-size: 1.05rem; }

.section-parcours { background: var(--paper); }
.parcours-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.media-placeholder-wide { min-height: 33rem; border-radius: 50% 50% 1.5rem 1.5rem; }
.media-placeholder-wide::before { border-radius: calc(50% - 0.2rem) calc(50% - 0.2rem) 1rem 1rem; }
.media-photo { margin: 0; overflow: hidden; border: 1px solid rgba(103, 31, 52, 0.18); border-radius: var(--radius); box-shadow: var(--shadow); background: var(--paper); }
.media-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 36%; }
.media-photo-wide { height: 33rem; min-height: 0; border-radius: 50% 50% 1.5rem 1.5rem; }
.media-photo-page { min-height: 20rem; aspect-ratio: 4 / 3; }
.media-photo-page img { object-position: center top; }
.service-hero-photo img { object-position: center 18%; }
.contact-main-photo img { object-position: center top; }
.parcours-copy .intro { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 1.2vw, 1.85rem); line-height: 1.45; }
.parcours-copy > p:not(.intro) { color: var(--muted); }
.career-journey { margin-top: clamp(3.5rem, 7vw, 6.5rem); margin-bottom: clamp(3.5rem, 7vw, 6.5rem); }
.career-journey .section-heading { max-width: 48rem; }
.career-timeline { list-style: none; max-width: 68rem; margin: 2.5rem 0 0; padding: 0; border-top: 1px solid var(--line); }
.career-timeline li { display: grid; grid-template-columns: minmax(8.5rem, 0.45fr) minmax(0, 1.55fr); gap: clamp(1rem, 4vw, 4rem); padding: 1.5rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.career-timeline time { color: var(--wine); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 2.3vw, 2.35rem); line-height: 1; }
.career-timeline p { margin: 0; color: var(--ink); font-size: clamp(1.05rem, 1.2vw, 1.25rem); line-height: 1.55; }
.signature { margin-top: 2.2rem; padding-top: 1.5rem; display: grid; border-top: 1px solid var(--line); }
.signature span { color: var(--wine); font-family: "Segoe Script", cursive; font-size: 1.55rem; }
.signature small { color: var(--muted); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }

.section-services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 30rem; padding: clamp(2rem, 4vw, 3.5rem); display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 250, 244, 0.28); transition: color 0.45s ease, background-color 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
.service-card:hover { z-index: 2; color: var(--white); background: var(--wine); transform: translateY(-0.5rem); }
.service-number { color: var(--muted); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; }
.service-mark { width: 4.5rem; height: 4.5rem; margin: 3.5rem 0 2rem; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; color: var(--wine); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; transition: transform 0.45s ease, color 0.45s ease; }
.service-mark svg {
    width: 2rem;
    height: 2rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-card:hover .service-mark { color: var(--rose-light); transform: rotate(8deg) scale(1.06); }
.service-card:hover .service-number, .service-card:hover p { color: rgba(255, 255, 255, 0.74); }
.service-card h3 { max-width: 440px; margin-bottom: 1rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 2.3vw, 2.45rem); font-weight: 400; line-height: 1.05; }
.service-card p { max-width: 480px; margin-bottom: 2rem; color: var(--muted); transition: color 0.45s ease; }
.service-card a { width: fit-content; margin-top: auto; display: inline-flex; align-items: center; gap: 1rem; border-bottom: 1px solid currentColor; font-size: 0.8rem; font-weight: 800; text-decoration: none; }

.section-area { position: relative; overflow: hidden; color: var(--white); background: var(--wine-dark); }
.section-area::before { content: ""; position: absolute; inset: -40% -10% auto auto; width: 50rem; height: 50rem; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 50%; }
.area-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr); gap: 4rem; align-items: center; }
.area-copy { max-width: 730px; }
.area-copy .eyebrow { color: var(--rose-light); }
.area-copy h2 em { color: var(--rose); }
.area-copy > p:not(.eyebrow) { max-width: 650px; margin: 1.8rem 0 2rem; color: rgba(255, 255, 255, 0.72); font-size: 1.08rem; }
.button-light { color: var(--wine-dark); background: var(--rose-light); }
.button-light:hover { background: var(--white); }
.area-code { aspect-ratio: 1; display: grid; place-items: center; align-content: center; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 50%; text-align: center; }
.area-code span { font-family: Georgia, "Times New Roman", serif; font-size: clamp(7rem, 16vw, 12rem); line-height: 0.8; }
.area-code small { margin-top: 1rem; color: var(--rose-light); font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; }

.section-faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.faq-intro { position: sticky; top: 8rem; }
.faq-intro > p:last-child { max-width: 420px; margin-top: 1.8rem; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 1.65rem 0; display: flex; justify-content: space-between; align-items: center; gap: 2rem; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.25; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 2.4rem; height: 2.4rem; flex: none; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--wine); font-family: Arial, sans-serif; transition: color 0.3s ease, background-color 0.3s ease, transform 0.35s ease; }
.faq-list details[open] summary span { color: var(--white); background: var(--wine); transform: rotate(45deg); }
.faq-list details > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s ease; }
.faq-list details[open] > div { grid-template-rows: 1fr; }
.faq-list details > div p { min-height: 0; overflow: hidden; margin-bottom: 0; color: var(--muted); }
.faq-list details[open] > div p { padding-bottom: 1.6rem; }
.faq-more { margin-top: 2rem; }

.section-contact { padding-bottom: 7rem; background: var(--rose-light); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.contact-main { display: grid; grid-template-columns: minmax(170px, 0.65fr) minmax(0, 1.35fr); gap: clamp(1.5rem, 3vw, 2.5rem); align-items: center; }
.contact-main-photo { height: 100%; min-height: 20rem; }
.contact-main h2 { margin-bottom: 1.8rem; }
.contact-main > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 1.08rem; }
.contact-phone { max-width: 680px; margin-top: 2rem; padding: 1.35rem 0; display: grid; grid-template-columns: 1fr auto; align-items: center; border-top: 1px solid rgba(103, 31, 52, 0.35); border-bottom: 1px solid rgba(103, 31, 52, 0.35); text-decoration: none; }
.contact-phone small { grid-column: 1; color: var(--wine); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.contact-phone strong { grid-column: 1; color: var(--wine-dark); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 5vw, 4.2rem); font-weight: 400; line-height: 1.1; }
.contact-phone > span { grid-column: 2; grid-row: 1 / 3; color: var(--wine); font-size: 2rem; }
.quote-card { padding: clamp(2rem, 4vw, 1.2rem); color: var(--white); background: var(--wine); border-radius: var(--radius); box-shadow: var(--shadow); }
.quote-label { color: var(--rose-light); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.quote-card h3 { margin: 0.8rem 0 2rem; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 400; line-height: 1.1; }
.quote-card ol { margin: 0 0 2rem; padding: 0; border-top: 1px solid rgba(255, 255, 255, 0.18); list-style: none; }
.quote-card li { padding: 0.9rem 0; display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.82); font-size: 0.9rem; }
.quote-card li span { color: var(--rose-light); font-size: 0.68rem; letter-spacing: 0.1em; }
.quote-card .button-primary { color: var(--wine-dark); background: var(--white); }

.site-footer { overflow: hidden; color: rgba(255, 255, 255, 0.75); background: var(--wine-dark); }
.footer-grid { padding-block: 3rem; display: grid; grid-template-columns: 1fr auto 1fr; gap: 3rem; align-items: end; }
.brand-footer strong { color: var(--rose-light); }
.brand-footer small { color: rgba(255, 255, 255, 0.55); }
.brand-footer .brand-logo {
    width: 10rem;
    padding: 0.45rem;
    background: var(--paper);
    border-radius: 1rem;
}
.footer-grid nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.4rem; }
.footer-grid nav a { color: var(--white); font-size: 0.8rem; text-decoration: none; }
.footer-grid nav a:hover { color: var(--rose-light); }
.footer-grid > p { margin: 0; justify-self: end; font-size: 0.73rem; line-height: 1.7; text-align: right; }

.js .reveal { opacity: 0; transform: translateY(2rem); transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.services-grid .reveal:nth-child(2), .services-grid .reveal:nth-child(4) { transition-delay: 0.1s; }

@keyframes hero-copy-in { from { opacity: 0; transform: translateY(1.8rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-card-in { from { opacity: 0; transform: translateY(2rem) rotate(5deg) scale(0.96); } to { opacity: 1; transform: translateY(0) rotate(2deg) scale(1); } }
/* Pages intérieures */
.page-hero {
    position: relative;
    min-height: 70svh;
    padding: 12rem 0 6rem;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 80% 25%, rgba(199, 129, 130, 0.26), transparent 24rem), var(--cream);
}

.page-hero::after {
    content: attr(data-page-number);
    position: absolute;
    right: -0.02em;
    bottom: -0.25em;
    color: rgba(103, 31, 52, 0.045);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(12rem, 34vw, 30rem);
    line-height: 1;
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
}

.breadcrumbs {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    color: var(--muted);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--wine); }

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 1.5rem;
    font-size: clamp(3.4rem, 7vw, 7rem);
}

.page-hero .hero-lead { margin-bottom: 0; }
.page-hero .media-placeholder { min-height: 27rem; aspect-ratio: 4 / 5; }

.content-narrow { width: min(calc(100% - 3rem), 850px); margin-inline: auto; }
.prose { color: var(--muted); font-size: 1.06rem; }
.prose .lead { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2.7vw, 2rem); line-height: 1.45; }
.prose h2 { margin: 3.5rem 0 1.25rem; color: var(--ink); font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1; }
.prose h3 { margin: 2rem 0 0.7rem; color: var(--wine); font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; font-weight: 400; }

.values-grid,
.detail-services-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.value-card,
.detail-service {
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: var(--paper);
}

.value-card span,
.detail-service > span {
    color: var(--rose);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.value-card h3,
.detail-service h2 {
    margin: 1.2rem 0 0.8rem;
    color: var(--wine);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.1;
}

.value-card p,
.detail-service p { margin-bottom: 0; color: var(--muted); }

.detail-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-service { min-height: 25rem; display: flex; flex-direction: column; }
.detail-service .service-mark-small { width: 3.6rem; height: 3.6rem; margin: 1.4rem 0 0.4rem; }
.detail-service .service-mark-small svg { width: 1.65rem; height: 1.65rem; }
.detail-service ul { padding-left: 1.1rem; color: var(--muted); }
.detail-service .button { width: fit-content; margin-top: auto; }

.page-cta {
    padding-block: clamp(4rem, 8vw, 7rem);
    color: var(--white);
    background: linear-gradient(135deg, #671f34 0%, #8c3b52 52%, #c78182 100%);
}

.page-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.page-cta h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 0.98;
}

.page-faq .faq-list { max-width: 900px; margin-inline: auto; }
.page-contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.contact-details { padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-details dt { color: var(--muted); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.contact-details dd { margin: 0.25rem 0 1.5rem; color: var(--wine); font-family: Georgia, "Times New Roman", serif; font-size: 1.7rem; }
.contact-details dd:last-child { margin-bottom: 0; }
.contact-details a { text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .menu-toggle { position: relative; z-index: 102; display: block; }
    .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(0.29rem) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-0.29rem) rotate(-45deg); }
    .site-nav { position: fixed; z-index: 101; inset: 0; padding: 7.5rem 1.5rem 2rem; display: flex; flex-direction: column; align-items: stretch; justify-content: center; background: var(--paper); opacity: 0; visibility: hidden; transform: translateY(-1rem); transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease; }
    .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .site-nav a { padding: 0.75rem 0; color: var(--wine-dark); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 8vw, 3.4rem); font-weight: 400; text-align: center; }
    .site-nav .nav-cta { margin: 1rem auto 0; padding: 0.75rem 1.4rem; color: var(--white); font-family: "Segoe UI", Arial, sans-serif; font-size: 0.9rem; font-weight: 700; }
    .hero { min-height: auto; padding-top: 8rem; }
    .hero-grid, .parcours-grid, .area-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
    .page-hero-grid, .page-contact-grid { grid-template-columns: 1fr; }
    .page-hero .media-placeholder, .page-hero .media-photo { width: min(100%, 430px); justify-self: center; }
    .values-grid { grid-template-columns: 1fr; }
    .page-cta-inner { align-items: flex-start; flex-direction: column; }
    .hero-grid { gap: 3.5rem; }
    .media-placeholder-hero, .hero-photo { width: min(100%, 480px); justify-self: center; }
    .section-heading-split { grid-template-columns: 1fr; gap: 1.5rem; }
    .parcours-grid { gap: 3rem; }
    .faq-intro { position: static; }
    .area-code { width: min(100%, 380px); justify-self: center; }
    .footer-grid { grid-template-columns: 1fr; align-items: start; }
    .footer-grid nav { justify-content: flex-start; }
    .footer-grid > p { justify-self: start; text-align: left; }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 2rem), var(--container)); }
    .header-inner { min-height: 4.65rem; }
    .brand img { width: 2.45rem; height: 2.45rem; }
    .hero { padding-top: 6.5rem; }
    h1 { font-size: clamp(2.4rem, 11.5vw, 3.65rem); }
    .hero-title-row { grid-template-columns: 6rem minmax(0, 1fr); gap: 0.9rem; }
    .hero-logo { width: 6rem; }
    .hero-actions, .hero-actions .button { width: 100%; }
    .hero-actions .button-text { width: auto; }
    .hero-points { display: grid; }
    .media-placeholder { min-height: 25rem; }
    .media-placeholder-wide { min-height: 24rem; }
    .media-photo-wide { height: 24rem; }
    .section { padding-block: 5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 27rem; }
    .service-card:hover { transform: none; }
    .faq-list summary { gap: 1rem; }
    .contact-phone strong { font-size: 2.15rem; }
    .quote-card { border-radius: 1.1rem; }
    .page-hero { min-height: auto; padding: 9rem 0 4rem; }
    .page-hero .media-placeholder { min-height: 23rem; }
    .content-narrow { width: min(calc(100% - 2rem), 850px); }
    .detail-services-grid { grid-template-columns: 1fr; }
    .detail-service { min-height: auto; }
    .brand-footer .brand-logo { width: 8rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
    .js .reveal { opacity: 1; transform: none; }
}

/* Ajustements de navigation, services et contact */
.header-phone { margin-left: auto; color: var(--wine); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.03em; text-decoration: none; white-space: nowrap; }
.header-phone span { margin-right: 0.45rem; color: var(--muted); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; }
.header-phone:hover { color: var(--wine-dark); text-decoration: underline; }
.site-nav { order: 1; }.header-phone { order: 2; margin-left: 0.5rem; padding: 0.65rem 1rem; border-radius: 999px; color: var(--wine-dark); background: var(--rose-light); }.header-phone span { display: none; }.header-phone:hover { color: var(--wine-dark); background: var(--rose); text-decoration: none; }
.service-heading { display: flex; align-items: center; gap: 1.4rem; margin: 1.2rem 0 2rem; }
.service-card .service-mark { flex: none; margin: 0; }
.service-card h3 { margin: 0; }
.service-card p { margin-bottom: 0.85rem; }.service-card > :not(.service-card-overlay) { position: relative; z-index: 2; }.service-card a:not(.service-card-overlay) { margin-top: 0; }.service-card-overlay { position: absolute; z-index: 1; inset: 0; width: 100% !important; margin: 0 !important; border: 0 !important; }
.morbihan-map { position: relative; width: min(100%, 430px); aspect-ratio: 1.35; justify-self: center; opacity: 0.95; }
.morbihan-map svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: rgba(255,255,255,0.04); stroke: rgba(239,213,207,0.4); stroke-width: 2.4; }.morbihan-map .morbihan { fill: rgba(199,129,130,0.5); stroke: var(--rose-light); }.map-label { position: absolute; left: 34%; top: 61%; color: var(--white); font-family: Georgia,serif; font-size: 1.35rem; font-weight: 400; }
.map-city { position: absolute; color: var(--rose-light); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.map-city::before { content: ""; width: 0.6rem; height: 0.6rem; margin-right: 0.45rem; display: inline-block; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 5px rgba(199,129,130,0.17); vertical-align: middle; }
.city-vannes { right: 20%; bottom: 20%; }.city-lorient { left: 8%; bottom: 34%; }.city-pontivy { left: 48%; top: 19%; }
.page-hero { min-height: 53svh; padding: 8.5rem 0 3.5rem; }
.page-hero .media-placeholder { min-height: 20rem; aspect-ratio: 4 / 3; }
.contact-form { margin-top: 2rem; display: grid; gap: 1rem; }
.contact-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.contact-form label { display: grid; gap: 0.35rem; color: var(--wine-dark); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.85rem 0.95rem; border: 1px solid rgba(103,31,52,0.25); border-radius: 0.55rem; color: var(--ink); background: rgba(255,255,255,0.68); font: inherit; font-size: 1rem; letter-spacing: normal; text-transform: none; }
.contact-form textarea { min-height: 8rem; resize: vertical; }.contact-form .button { width: fit-content; cursor: pointer; }.form-notice { margin: 1rem 0 0; padding: 0.9rem 1rem; border-radius: 0.6rem; color: var(--wine-dark); background: rgba(255,255,255,0.6); }.form-notice--success { color: #185b3a; background: #e7f5eb; border: 1px solid rgba(24,91,58,.25); }.form-notice--error { color: var(--wine-dark); background: #fff0ed; border: 1px solid rgba(103,31,52,.2); }.honeypot { position: absolute !important; left: -10000px !important; }
.detail-service-heading { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; }.detail-service-heading .service-mark { margin: 0; flex: none; }.detail-service-heading h2 { margin: 0; }
.quote-card .contact-form { margin-top: 1.25rem; }.quote-card .contact-form label { color: var(--rose-light); }.quote-card .contact-form input, .quote-card .contact-form textarea { background: rgba(255,255,255,0.95); }.quote-card .contact-form .button-primary { color: var(--wine-dark); background: var(--white); }
.header-phone::before { content: "☎"; margin-right: 0.45rem; font-size: 1rem; }.header-phone { display: inline-flex; align-items: center; }
.contact-info { padding: clamp(1.5rem, 4vw, 3rem); border-top: 1px solid rgba(103,31,52,0.25); background: rgba(255,250,244,0.35); }.contact-info .contact-details { padding: 0; border-bottom: 0; }.contact-info .contact-details dd { margin-bottom: 2.2rem; font-size: clamp(2rem,3.2vw,3.4rem); }.contact-info .contact-details dd:last-child { margin-bottom: 0; }
.contact-request { background: var(--paper); }.contact-form-panel { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius); }.contact-form-panel h2 { margin-bottom: 1.5rem; font-size: clamp(2.3rem,4vw,4rem); line-height: 1; }.contact-form-panel .contact-form { margin-top: 1.2rem; }
.site-footer .footer-grid { padding-block: 1.5rem; gap: 1.5rem; align-items: center; }.site-footer .brand-footer .brand-logo { width: 7.2rem; padding: 0; background: transparent; border-radius: 0; }.site-footer .footer-grid > p { font-size: 0.68rem; }.site-footer .footer-grid nav { gap: 0.35rem 1rem; }
@media (max-width: 900px) { .site-nav { order: 0; }.header-phone { order: 0; }.contact-info { padding: 1.5rem 0; background: transparent; } }
.morbihan-map { width: min(100%, 520px); }.morbihan-map .bretagne { fill: rgba(255,255,255,0.025); stroke: rgba(239,213,207,0.38); }.morbihan-map .morbihan { fill: rgba(199,129,130,0.65); stroke: #fffaf4; stroke-width: 3; }.map-label { left: 40%; top: 66%; text-shadow: 0 1px 8px rgba(63,16,32,.45); }.city-lorient { left: 12%; bottom: 28%; }.city-pontivy { left: 46%; top: 22%; }.city-vannes { right: 15%; bottom: 24%; }
.service-card { min-height: 22rem; padding: clamp(1.75rem, 3vw, 2.6rem); }.service-card .service-heading { margin: 0.35rem 0 1.4rem; }.service-card p { margin: 0 0 0.9rem; }.service-card a:not(.service-card-overlay) { margin-top: 0; }
.detail-service { min-height: 0; padding: clamp(1.75rem, 3vw, 2.5rem); }.detail-service p { margin-bottom: 0.9rem; }.detail-service ul { margin: 0 0 1.1rem; }.detail-service .button { margin-top: 0; }
.service-card-overlay { z-index: 3; display: block; }.service-card-overlay:focus-visible { outline: 3px solid var(--rose-light); outline-offset: -7px; }.service-card:hover a:not(.service-card-overlay) { color: var(--white); border-bottom-color: currentColor; }
.page-hero h1 { font-size: clamp(3.2rem, 6.2vw, 6.2rem); }.section-heading h2, .area-copy h2, .faq-intro h2, .contact-main h2 { font-size: clamp(2.35rem, 4.25vw, 4.55rem); line-height: 1.04; }.page-cta h2 { font-size: clamp(2.2rem, 4.2vw, 4.35rem); }
.section-contact { padding-block: clamp(2.5rem, 4.5vw, 4rem); }.section-contact .page-contact-grid { align-items: start; }.section-contact .contact-main h2 { margin-bottom: 1rem; }.section-contact .contact-main > p:not(.eyebrow) { margin-bottom: 0; }.section-contact .contact-info { padding: 1.1rem 0 0; border-top: 0; background: transparent; }.section-contact .contact-info .contact-details { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.6rem 1.25rem; }.section-contact .contact-info .contact-details dt { grid-row: 1; }.section-contact .contact-info .contact-details dd { grid-row: 2; margin: 0; font-size: clamp(1.3rem, 2vw, 2rem); line-height: 1.2; }
@media (max-width: 700px) { .section-contact .contact-info .contact-details { grid-template-columns: 1fr; gap: 0.2rem; }.section-contact .contact-info .contact-details dt, .section-contact .contact-info .contact-details dd { grid-row: auto; }.section-contact .contact-info .contact-details dd { margin-bottom: 1.1rem; } }
@media (max-width: 700px) { .contact-main { grid-template-columns: 1fr; }.contact-main-photo { width: min(100%, 360px); height: 23rem; justify-self: center; } }
.quote-card .contact-details-light { margin-top: 2rem; padding-top: 1.4rem; border-top-color: rgba(255,255,255,0.18); border-bottom: 0; }.quote-card .contact-details-light dt { color: var(--rose-light); }.quote-card .contact-details-light dd { color: var(--white); font-size: 1.45rem; }.quote-card .contact-details-light a { color: inherit; }
.contact-request .page-contact-grid { align-items: stretch; }.contact-request .contact-form-panel, .contact-request .quote-card { height: 100%; }
.site-footer { color: var(--muted); background: var(--white); border-top: 1px solid var(--line); }.site-footer .footer-grid nav a { color: var(--wine-dark); }.site-footer .footer-grid nav a:hover { color: var(--wine); }.site-footer .footer-grid > p { color: var(--muted); }
.services-grid .service-card { min-height: 19rem; justify-content: space-between; }.services-grid .service-card p { margin: 0; }.services-grid .service-card a:not(.service-card-overlay) { margin-top: 0; }
#contact-title { white-space: nowrap; font-size: clamp(2.2rem, 4vw, 4.2rem); }.contact-main > .button { margin-top: 1.75rem; }
@media (max-width: 700px) { #contact-title { white-space: normal; } }
@media (max-width: 700px) { .career-timeline li { grid-template-columns: 1fr; gap: 0.55rem; }.career-timeline { margin-top: 1.75rem; } }
#parcours-title { max-width: 1180px; }
.section-heading-services { max-width: 1120px; }.section-heading-services #services-title { max-width: 1120px; }
.section-parcours .section-heading { max-width: 1180px; }
h2 { font-size: clamp(2rem, 3.65vw, 3.9rem) !important; line-height: 1.06 !important; }
.detail-service h2, .value-card h3 { font-size: clamp(1.35rem, 2vw, 1.65rem) !important; }.quote-card h3 { font-size: 1.75rem; }
h2 { font-size: clamp(2rem, 2.8vw, 3.45rem) !important; }
.values-grid .value-card { display: flex; flex-direction: column; justify-content: center; }
.values-grid .value-card h3 { margin: 0 0 0.8rem; }.values-grid .value-card p { margin: 0; }
.header-inner { justify-content: flex-start; }.header-inner .site-nav { margin-left: auto; }.header-inner .header-phone { margin-left: 0.5rem; }
.section-contact .quote-card { background: linear-gradient(135deg, #671f34 0%, #8c3b52 52%, #c78182 100%); }
.site-nav .nav-cta, .button-primary, .media-placeholder:hover .placeholder-icon, .service-card:hover, .faq-list details[open] summary span, .quote-card { background: linear-gradient(135deg, #671f34 0%, #8c3b52 52%, #c78182 100%); }
.section-area { background: linear-gradient(135deg, #3f1020 0%, #671f34 48%, #a95268 100%); }
.section-area .morbihan-map { width: min(100%, 600px); opacity: 0.42; transform: scale(1.12); }.section-area .morbihan-map .bretagne { stroke: rgba(255,255,255,0.58); fill: rgba(255,255,255,0.06); }.section-area .morbihan-map .morbihan { fill: rgba(255,245,239,0.24); stroke: rgba(255,255,255,0.75); }.section-area .morbihan-map .map-city, .section-area .morbihan-map .map-label { color: rgba(255,255,255,0.9); }
.section-area .morbihan-map { margin: 0; overflow: hidden; border-radius: 1rem; mix-blend-mode: screen; }.section-area .morbihan-map img { width: 100%; height: 100%; display: block; object-fit: cover; filter: grayscale(1) contrast(1.25); }
.section-area .morbihan-map { opacity: 0.78; }.section-area .morbihan-map img { filter: contrast(1.08) saturate(0.8); }
.section-area .morbihan-map { mix-blend-mode: normal; opacity: 0.84; }
.section-area .morbihan-map img { filter: none; }
.section-area .morbihan-map { mix-blend-mode: screen; opacity: 0.82; }
.section-area .morbihan-map img { filter: invert(1); }
.section-area .morbihan-map { mix-blend-mode: normal; opacity: 0.92; }
.section-area .morbihan-map img { filter: none; }
@media (max-width: 900px) { .header-phone { position: absolute; right: 5rem; font-size: 0.76rem; }.header-phone span { display: none; } .morbihan-map { width: min(100%, 380px); } }
@media (max-width: 640px) { .page-hero { min-height: auto; padding: 7rem 0 3rem; }.page-hero .media-placeholder { min-height: 17rem; }.contact-form-grid { grid-template-columns: 1fr; }.header-phone { right: 4.5rem; font-size: 0.7rem; } }

/* Header mobile : logo, téléphone et menu restent toujours distincts. */
@media (max-width: 900px) {
    .header-inner { gap: 0.45rem; }
    .brand { order: 0; min-width: 0; }
    .header-phone {
        position: static;
        order: 1;
        margin-left: auto;
        padding: 0.55rem 0.75rem;
        font-size: 0.74rem;
    }
    .menu-toggle { order: 2; flex: none; margin-left: 0; margin-right: 0; }
    .header-inner .site-nav { order: 3; margin-left: 0; }
}

@media (min-width: 901px) {
    .section-area .morbihan-map {
        width: min(100%, 640px);
        aspect-ratio: 1.12;
        transform: scale(1.48);
        transform-origin: center;
    }
}

@media (min-width: 901px) {
    .section-area .area-grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
        gap: 2rem;
    }
    .section-area .morbihan-map {
        width: 100%;
        max-width: 760px;
        aspect-ratio: 1.48;
        justify-self: end;
        overflow: visible;
        transform: none;
    }
    .section-area .morbihan-map img { object-fit: contain; }
}

@media (max-width: 640px) {
    .brand .brand-logo { width: 9.25rem; }
    .header-phone { padding: 0.48rem 0.6rem; font-size: 0.66rem; }
    .header-phone::before { margin-right: 0.28rem; font-size: 0.85rem; }
    .menu-toggle { width: 2.8rem; height: 2.8rem; padding: 0.7rem; }
}

@media (max-width: 900px) {
    .site-header:has(.site-nav.is-open) {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .site-nav {
        inset: 4.8rem 0 0;
        padding: 2rem 1.5rem 2.5rem;
        justify-content: flex-start;
        overflow-y: auto;
        background: rgba(199, 129, 130, 0.26);
        backdrop-filter: blur(22px) saturate(115%);
        -webkit-backdrop-filter: blur(22px) saturate(115%);
    }
    .site-nav a { flex: none; }
    .site-nav .nav-cta { flex: none; }
}

@media (min-width: 641px) and (max-width: 900px) {
    .site-header .header-inner {
        width: 100%;
        max-width: none;
        padding-inline: 2rem;
    }
    .header-inner { position: relative; padding-right: 0; }
    .header-phone { position: absolute; right: 5.1rem; }
    .menu-toggle { position: absolute; right: 1.25rem; }
}

@media (max-width: 900px) {
    .site-header .header-inner {
        width: 100%;
        max-width: none;
        position: relative;
        padding-inline: 1rem;
    }
    .site-header .header-phone {
        position: absolute !important;
        right: 4.75rem;
        margin: 0;
    }
    .site-header .menu-toggle {
        position: absolute !important;
        right: 1rem;
        margin: 0;
    }
    .site-nav .nav-cta {
        width: min(100%, 28rem);
        padding: 0.9rem 1.5rem;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(1.5rem, 6vw, 2.45rem);
        font-weight: 400;
        line-height: 1.1;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .hero-copy { display: contents; }
    .hero-copy .eyebrow { order: 1; }
    .hero-copy h1 { order: 2; }
    .hero-photo { order: 3; margin: 0.25rem auto 2rem; }
    .hero-copy .hero-lead { order: 4; }
    .hero-copy .hero-actions { order: 5; }
    .hero-copy .hero-points { order: 6; }
    .hero-word {
        right: auto;
        left: 50%;
        bottom: -0.08em;
        transform: translateX(-50%);
        font-size: clamp(2rem, 9vw, 4rem);
    }
}

.button-text,
.button-text:hover { border-bottom-color: transparent; }

/* Les liens d'action reprennent désormais le même traitement que les CTA. */
.button-text {
    min-height: 3.4rem;
    padding: 0.8rem 1.25rem;
    color: var(--white);
    border-radius: 999px;
    background: linear-gradient(135deg, #671f34 0%, #8c3b52 52%, #c78182 100%);
}
.button-text:hover { color: var(--white); background: linear-gradient(135deg, #4b1024 0%, #772b43 55%, #af6170 100%); }
@media (max-width: 700px) { .hero-actions .button-text { width: 100%; } }
