/* ==================================================
   00. DESIGN TOKENS

   ✅ UI KIT
   Modifiez cette section pour personnaliser
   rapidement les couleurs, typographies,
   espacements et styles globaux du template.
================================================== */

:root {

    /* ---------- Brand colors ---------- */

    --brand-raven-champagne: #CBB18C;
    --brand-champagne-light: #E4CBA7;
    --brand-ivory-highlight: #F2E3CC;

    --brand-antique-champagne: #9C805F;
    --brand-bronze-shadow: #6E5942;

    --brand-raven-black: #030404;
    --brand-carbon-black: #101111;

    --brand-soft-white: #F4F2EE;
    --brand-steel-grey: #9A9A96;


    /* ---------- Semantic colors ---------- */

    --color-bg: var(--brand-raven-black);
    --color-bg-soft: var(--brand-carbon-black);

    --color-surface: #0B0C0C;
    --color-surface-soft: #141515;
    --color-surface-muted: #1A1B1B;

    --color-heading: var(--brand-soft-white);
    --color-text: var(--brand-soft-white);
    --color-text-soft: var(--brand-steel-grey);
    --color-text-muted: rgba(244, 242, 238, 0.68);

    --color-accent: var(--brand-raven-champagne);
    --color-accent-light: var(--brand-champagne-light);
    --color-accent-dark: var(--brand-antique-champagne);
    --color-accent-shadow: var(--brand-bronze-shadow);
    --color-accent-soft: rgba(203, 177, 140, 0.14);

    --color-border: rgba(203, 177, 140, 0.18);
    --color-border-soft: rgba(244, 242, 238, 0.10);
    --color-line: rgba(203, 177, 140, 0.28);

    --color-white: #FFFFFF;
    --color-black: var(--brand-raven-black);


    /* ---------- Component colors ---------- */

    --button-primary-bg: var(--color-accent);
    --button-primary-bg-hover: var(--color-accent-light);
    --button-primary-text: var(--color-black);

    --button-secondary-bg: transparent;
    --button-secondary-bg-hover: rgba(203, 177, 140, 0.08);
    --button-secondary-text: var(--color-text);
    --button-secondary-border: var(--color-border);

    --card-bg: var(--color-surface);
    --card-bg-soft: var(--color-surface-soft);
    --card-border: var(--color-border-soft);

    --header-bg: transparent;
    --footer-bg: var(--color-bg-soft);


    /* ---------- Typography ---------- */

    --font-heading: "Cinzel", serif;
    --font-body: "Inter", sans-serif;
    --font-display: var(--font-heading);

    --fs-h1: clamp(3.2rem, 5.4vw, 5.8rem);
    --fs-h2: clamp(2rem, 3.2vw, 3.6rem);
    --fs-h3: clamp(1rem, 1.25vw, 1.25rem);

    --fs-body: clamp(0.95rem, 0.95vw, 1.05rem);
    --fs-body-small: 0.9rem;
    --fs-caption: 0.78rem;
    --fs-button: 0.78rem;

    --lh-h1: 1.04;
    --lh-h2: 1.08;
    --lh-h3: 1.28;
    --lh-body: 1.75;
    --lh-body-small: 1.6;

    --fw-heading: 400;
    --fw-body: 400;
    --fw-button: 700;


    /* ---------- Layout ---------- */

    --container-max: 1440px;

    --layout-edge: clamp(24px, 4.8vw, 72px);

    --section-space: clamp(76px, 7vw, 116px);
    --section-space-tight: clamp(48px, 5vw, 76px);

    --gap-xl: 40px;
    --gap-lg: 28px;
    --gap-md: 18px;
    --gap-sm: 12px;
    --gap-xs: 8px;


    /* ---------- Radius ---------- */

    --radius-lg: 14px;
    --radius-md: 8px;
    --radius-sm: 4px;
    --radius-pill: 999px;


    /* ---------- Borders ---------- */

    --border-metal: 1px solid var(--color-border);
    --border-soft: 1px solid var(--color-border-soft);


    /* ---------- Shadows ---------- */

    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.28);
    --shadow-card: 0 20px 54px rgba(0, 0, 0, 0.34);
    --shadow-button: 0 10px 26px rgba(203, 177, 140, 0.18);


    /* ---------- Transitions ---------- */

    --transition-base: 0.3s ease;


    /* ---------- Z-index ---------- */

    --z-base: 1;
    --z-overlay: 5;
    --z-header: 20;
    --z-menu: 30;
}

/* ==================================================
   01. RESET

   🔒 STRUCTURE — zone technique

   Cette section normalise l'affichage du navigateur
   afin d'assurer un rendu cohérent sur tous les appareils.

   Il est recommandé de ne pas modifier ces règles,
   sauf si vous maîtrisez le CSS ou savez précisément
   pourquoi une modification est nécessaire.
================================================== */

/* ---------- Box Model ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* ---------- Document ---------- */

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
}


/* ---------- Media ---------- */

img,
picture,
svg,
video,
canvas,
iframe {
    display: block;
    max-width: 100%;
    height: auto;
}


/* ---------- Typography ---------- */

input,
button,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}


/* ---------- Tables ---------- */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* ---------- Forms ---------- */

textarea {
    resize: vertical;
}

input,
textarea,
select {
    border-radius: 0;
}


/* ---------- Accessibility ---------- */

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

::selection {
    background: var(--color-accent);
    color: var(--color-black);
}


/* ---------- Motion ---------- */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- Interactive Elements ---------- */

button,
a {
    transition:
        color var(--transition-base),
        background-color var(--transition-base),
        border-color var(--transition-base),
        opacity var(--transition-base),
        transform var(--transition-base);
}

/* ---------- Hidden ---------- */

[hidden] {
    display: none !important;
}

/* ==================================================
   02. BASE
================================================== */

/* ---------- Document ---------- */

body {
    display: flex;
    flex-direction: column;

    background: var(--color-bg);
    color: var(--color-text);

    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-body);
    line-height: var(--lh-body);

    text-rendering: optimizeLegibility;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1;
}


/* ---------- Layout ---------- */

section {
    position: relative;
    padding: var(--section-space) 0;
}

section:first-of-type {
    padding-top: 0;
}

section[id] {
    scroll-margin-top: 110px;
}

.container {
    position: relative;
    z-index: var(--z-base);

    width: min(100%, var(--container-max));
    margin-inline: auto;
}

.header-wrapper,
.hero-wrapper,
.services-wrapper,
.featured-vehicle-wrapper,
.vehicle-search-wrapper,
.process-wrapper,
.final-cta-wrapper,
.footer-wrapper {
    width: 100%;
    padding-inline: var(--layout-edge);
}


/* ---------- Typography ---------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading);

    font-family: var(--font-heading);
    font-weight: var(--fw-heading);

    letter-spacing: -0.02em;
    text-wrap: balance;
}

h1 {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
}

h2 {
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
}

h3 {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
}

p {
    color: currentColor;
    line-height: var(--lh-body);
}

strong {
    color: var(--color-text);
    font-weight: 700;
}

small {
    font-size: var(--fs-caption);
    line-height: 1.5;
}


/* ---------- Shared section elements ---------- */

.section-eyebrow {
    color: var(--color-accent);

    font-family: var(--font-body);
    font-size: var(--fs-caption);
    font-weight: 700;

    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.section-heading {
    display: grid;
    gap: var(--gap-sm);
}

.section-heading--center {
    justify-items: center;
    text-align: center;
}

.section-title {
    max-width: 820px;

    color: var(--color-heading);
    text-align: center;
}


/* ---------- Buttons ---------- */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 26px;

    border: 1px solid transparent;
    border-radius: var(--radius-sm);

    font-family: var(--font-body);
    font-size: var(--fs-button);
    font-weight: var(--fw-button);

    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;

    white-space: nowrap;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    background: var(--button-primary-bg);
    color: var(--button-primary-text);

    box-shadow: var(--shadow-button);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--button-primary-bg-hover);
}

.button--secondary {
    border-color: var(--button-secondary-border);

    background: var(--button-secondary-bg);
    color: var(--button-secondary-text);
}

.button--secondary:hover,
.button--secondary:focus-visible {
    background: var(--button-secondary-bg-hover);
    border-color: var(--color-accent);
    color: var(--color-accent);
}


/* ---------- Forms ---------- */

input,
select,
textarea {
    width: 100%;

    border: var(--border-soft);
    background: rgba(244, 242, 238, 0.03);

    color: var(--color-text);

    font-family: var(--font-body);
}

input::placeholder,
textarea::placeholder {
    color: var(--color-text-muted);
}


/* ---------- Helpers ---------- */

.text-accent {
    color: var(--color-accent);
}

.text-soft {
    color: var(--color-text-soft);
}

.text-muted {
    color: var(--color-text-muted);
}

.visually-hidden {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);
    white-space: nowrap;

    border: 0;
}

/* ==================================================
   03. HEADER
================================================== */

#site-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: var(--z-header);

    width: 100%;

    background: var(--header-bg);
}

/* ---------- Header layout ---------- */

.header-wrapper {
    min-height: 92px;

    display: flex;
    align-items: center;

    gap: clamp(28px, 3.5vw, 64px);
}

/* ---------- Branding ---------- */

.site-brand {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;
}

.site-brand__logo {
    display: block;

    width: clamp(120px, 10vw, 170px);
    height: auto;

    object-fit: contain;
}

/* ---------- Desktop navigation ---------- */

.site-nav {
    margin-left: auto;

    flex-shrink: 0;
}

.site-nav__list {
    display: flex;
    align-items: center;

    gap: clamp(22px, 2.2vw, 34px);
}

.site-nav__link {
    position: relative;

    color: var(--color-text);

    font-family: var(--font-body);
    font-size: var(--fs-body-small);
    font-weight: 600;

    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-nav__link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 100%;
    height: 1px;

    background: var(--color-accent);

    opacity: 0;

    transform: scaleX(0);
    transform-origin: right;

    transition:
        transform var(--transition-base),
        opacity var(--transition-base);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    text-shadow:
        0 0 8px rgba(244, 242, 238, 0.18),
        0 0 18px rgba(203, 177, 140, 0.10);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
    opacity: 1;

    transform: scaleX(1);
    transform-origin: left;
}

/* ---------- Header CTA ---------- */

.site-header__cta {
    flex-shrink: 0;

    margin-left: clamp(8px, 1.2vw, 18px);
}

/* ---------- Mobile toggle ---------- */

.site-menu-toggle {
    position: relative;

    display: none;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.site-menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 28px;
    height: 2px;

    border-radius: var(--radius-pill);

    background: var(--color-text);

    transform: translate(-50%, -50%);

    transition:
        transform var(--transition-base),
        opacity var(--transition-base),
        background-color var(--transition-base);
}

.site-menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) translateY(-8px);
}

.site-menu-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
}

.site-menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) translateY(8px);
}

.site-menu-toggle:hover span,
.site-menu-toggle:focus-visible span {
    background: var(--color-accent);
}

.site-menu-toggle[aria-expanded="true"] span {
    background: var(--color-accent);
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ---------- Mobile navigation base ---------- */

.site-mobile-nav {
    display: none;
}

/* ==================================================
   04. HERO
================================================== */

/* ---------- Hero section ---------- */

#hero {
    position: relative;

    min-height: 100svh;
    padding: 0;

    display: flex;
    align-items: stretch;

    overflow: hidden;

    background-image: url("../../assets/img/hero/peugeot-208-occasion-raven-select.png");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}


/* ---------- Hero overlay ---------- */

#hero::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(3, 4, 4, 0.98) 0%,
            rgba(3, 4, 4, 0.88) 22%,
            rgba(3, 4, 4, 0.54) 46%,
            rgba(3, 4, 4, 0.16) 72%,
            rgba(3, 4, 4, 0.04) 100%
        );
}

#hero::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 74% 48%,
            rgba(244, 242, 238, 0.08) 0%,
            rgba(244, 242, 238, 0.03) 24%,
            rgba(3, 4, 4, 0) 52%
        ),
        linear-gradient(
            180deg,
            rgba(3, 4, 4, 0.18) 0%,
            rgba(3, 4, 4, 0) 36%,
            rgba(3, 4, 4, 0.64) 100%
        );
}


/* ---------- Hero layout ---------- */

.hero-overlay {
    position: relative;
    z-index: var(--z-base);

    width: 100%;

    display: flex;
    align-items: stretch;
}

.hero-wrapper {
    min-height: 100svh;

    display: flex;
    align-items: center;

    padding-top: clamp(118px, 11vw, 170px);
    padding-bottom: clamp(172px, 16vw, 230px);
}


/* ---------- Hero content ---------- */

.hero-content {
    width: 46vw;
    min-width: 520px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 28px;
}


/* ---------- Hero typography ---------- */

.hero-eyebrow {
    color: var(--color-accent);

    font-size: var(--fs-caption);
    font-weight: 700;

    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-title {
    color: var(--color-heading);

    font-size: clamp(3rem, 4.5vw, 5.4rem);
    line-height: 1.08;

    letter-spacing: -0.03em;
    text-transform: uppercase;

    text-wrap: balance;
}

.text-gold {
    color: var(--color-accent);
}

.hero-text {
    max-width: 46ch;

    color: var(--color-text);

    font-size: clamp(1rem, 1vw, 1.08rem);
    line-height: 1.75;
}


/* ---------- Hero actions ---------- */

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 22px;
}

.hero-actions .button {
    min-height: 58px;
    padding-inline: 34px;
}


/* ---------- Hero reassurance ---------- */

.hero-reassurance {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: var(--z-base);

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    min-height: 116px;

    padding-inline: var(--layout-edge);

    border-top: var(--border-soft);
    border-bottom: var(--border-soft);

    background: rgba(3, 4, 4, 0.78);
    backdrop-filter: blur(10px);
}

.hero-reassurance__item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 24px clamp(18px, 2vw, 34px);
}

.hero-reassurance__item:not(:last-child)::after {
    content: "";

    position: absolute;
    right: 0;
    top: 50%;

    width: 1px;
    height: 42px;

    background: var(--color-line);

    transform: translateY(-50%);
}

.hero-reassurance__icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    object-fit: contain;
}

.hero-reassurance__text {
    max-width: 150px;

    color: var(--color-text);

    font-size: 0.84rem;
    font-weight: 700;

    letter-spacing: 0.055em;
    line-height: 1.45;
    text-transform: uppercase;
}

/* ---------- Hero scroll indicator ---------- */

.hero-scroll-indicator {
    display: none;
}

/* ==================================================
   05. FEATURED VEHICLE
================================================== */

.featured-vehicle {
    padding: var(--section-space-tight) 0;

    background: var(--color-bg);
    border-bottom: var(--border-soft);
}

.featured-vehicle-wrapper {
    display: grid;
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);

    gap: clamp(56px, 6vw, 96px);

    align-items: center;

    padding-inline: var(--layout-edge);
}


/* ---------- Vehicle content ---------- */

.featured-vehicle__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: clamp(28px, 2.4vw, 42px);
}

.featured-vehicle__header {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.featured-vehicle__eyebrow {
    color: var(--color-accent);
    opacity: 0.95;

    font-size: clamp(0.85rem, 0.3vw + 0.8rem, 0.98rem);
    font-weight: 700;

    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.featured-vehicle__title {
    color: var(--color-heading);

    font-size: clamp(2.6rem, 4vw, 4.6rem);
    font-weight: var(--fw-heading);

    line-height: 1.02;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.featured-vehicle__subtitle {
    color: var(--color-text);

    font-size: 1rem;
    font-weight: 600;

    letter-spacing: 0.10em;
    line-height: 1.5;
    text-transform: uppercase;
}

.featured-vehicle__price {
    color: var(--color-accent);

    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 3.2vw, 3.5rem);
    font-weight: 500;

    line-height: 1;
}


/* ---------- Vehicle specs ---------- */

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px 28px;

    width: 100%;
    max-width: 420px;
}

.vehicle-specs li {
    display: flex;
    align-items: center;

    gap: 14px;

    color: var(--color-text);

    font-size: 0.98rem;
    line-height: 1.4;
}

.vehicle-specs__icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    object-fit: contain;
}

.vehicle-specs strong {
    color: var(--color-text);

    font-size: 0.98rem;
    font-weight: 500;

    line-height: 1.4;
}


/* ---------- Vehicle CTA ---------- */

.featured-vehicle__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 16px;
}

.featured-vehicle__actions .button {
    min-width: 300px;
}


/* ---------- Vehicle media / carousel ---------- */

.featured-vehicle__gallery {
    position: relative;

    display: flex;
    flex-direction: column;

    gap: 18px;
}

.featured-vehicle__media {
    position: relative;

    aspect-ratio: 2 / 1;

    overflow: hidden;

    border: var(--border-metal);
    border-radius: var(--radius-md);

    background: var(--color-surface);

    box-shadow: var(--shadow-card);
}

.featured-vehicle__track {
    position: relative;

    width: 100%;
    height: 100%;
}

.featured-vehicle__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    opacity: 0;

    transition:
        opacity 0.45s ease,
        transform 0.6s ease;
}

.featured-vehicle__image.is-active {
    opacity: 1;
}

.featured-vehicle__media:hover .featured-vehicle__image.is-active {
    transform: scale(1.018);
}


/* ---------- Vehicle carousel controls ---------- */

.featured-vehicle__arrow {
    position: absolute;
    top: 50%;
    z-index: 4;

    color: var(--color-accent);

    font-size: 3rem;
    line-height: 1;

    transform: translateY(-50%);

    opacity: 0.9;

    transition:
        color var(--transition-base),
        opacity var(--transition-base),
        transform var(--transition-base);
}

.featured-vehicle__arrow:hover,
.featured-vehicle__arrow:focus-visible {
    color: var(--color-accent-light);
    opacity: 1;
}

.featured-vehicle__arrow--prev {
    left: -42px;
}

.featured-vehicle__arrow--next {
    right: -42px;
}

.featured-vehicle__dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;
}

.featured-vehicle__dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: rgba(203, 177, 140, 0.36);

    transition:
        background-color var(--transition-base),
        transform var(--transition-base);
}

.featured-vehicle__dot.is-active,
.featured-vehicle__dot:hover,
.featured-vehicle__dot:focus-visible {
    background: var(--color-accent);
    transform: scale(1.2);
}

.featured-vehicle__gallery.is-static .featured-vehicle__arrow,
.featured-vehicle__gallery.is-static .featured-vehicle__dots {
    display: none;
}

/* ==================================================
   06. VEHICLE SEARCH
================================================== */

.vehicle-search {
    background: var(--color-bg-soft);
    border-bottom: var(--border-soft);
}

.vehicle-search-wrapper {
    display: grid;
    grid-template-columns: 0.38fr 0.62fr;

    gap: clamp(56px, 6vw, 110px);

    align-items: center;
}


/* ---------- Search intro ---------- */

.vehicle-search__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    max-width: 440px;
}

.vehicle-search__title {
    margin-top: 18px;

    font-size: clamp(2.4rem, 3.6vw, 4.2rem);
    line-height: 1.02;

    text-transform: uppercase;
}

.vehicle-search__text {
    margin-top: 26px;

    color: var(--color-text-soft);

    font-size: var(--fs-body);
    line-height: var(--lh-body);
}


/* ---------- Search benefits ---------- */

.search-benefits {
    display: grid;

    gap: 14px;

    margin-top: 34px;
}

.search-benefits li {
    position: relative;

    padding-left: 26px;

    color: var(--color-text);

    font-size: 0.95rem;
    font-weight: 600;

    letter-spacing: 0.04em;
    line-height: 1.45;
    text-transform: uppercase;
}

.search-benefits li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0.55em;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--color-accent);
}


/* ---------- Search form ---------- */

.search-form {
    padding: clamp(34px, 3vw, 52px);

    border: var(--border-metal);
    border-radius: var(--radius-md);

    background: var(--color-surface);

    box-shadow: var(--shadow-card);
}

.search-form__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* ---------- Form field ---------- */

.form-field {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.form-field span {
    color: var(--color-accent);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    min-height: 54px;
    width: 100%;

    padding: 0 16px;

    border: var(--border-soft);
    border-radius: var(--radius-sm);

    background: rgba(244, 242, 238, 0.035);
    color: var(--color-text);

    font-size: 0.95rem;
    line-height: 1.4;

    transition:
        border-color var(--transition-base),
        background-color var(--transition-base);
}

.form-field textarea {
    min-height: 132px;
    padding: 16px;

    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--color-text-muted);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--color-accent);

    background: rgba(244, 242, 238, 0.055);
    outline: none;
}

.form-field--full {
    grid-column: 1 / -1;
}


/* ---------- Submit ---------- */

.search-form__submit {
    width: 100%;

    margin-top: 28px;

    min-height: 58px;
}

/* ==================================================
   07. ABOUT PREVIEW
================================================== */


/* ---------- About layout ---------- */

#about-preview {

    /* ✅ UI KIT — espace avant la section */
    padding: clamp(72px, 7vw, 110px) 0 0;
}

.about-preview-wrapper {
    display: grid;

    /* ✅ UI KIT — proportion image / contenu */
    grid-template-columns: 1.05fr 0.95fr;

    gap: 0;

    align-items: stretch;

    /* STRUCTURE — section bord à bord */
    padding-inline: 0;
}

/* ---------- About media ---------- */

.about-preview__media {
    position: relative;

    display: flex;

    overflow: hidden;
}

.about-preview__image {
    width: 100%;
    height: 100%;

    /* ✅ UI KIT — hauteur minimale de l'image */
    min-height: clamp(420px, 38vw, 620px);

    object-fit: cover;
    object-position: center;
}

/* ---------- About content ---------- */

.about-preview__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    max-width: none;

    /* ✅ UI KIT — marges intérieures du bloc */
    padding:
        clamp(64px, 6vw, 110px)
        var(--layout-edge)
        clamp(64px, 6vw, 110px)
        clamp(48px, 5vw, 92px);

    background: var(--color-surface);
}

/* ----- Eyebrow ----- */

.about-preview__eyebrow {
    margin-bottom: 1.2rem;

    color: var(--color-accent);

    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

/* ----- Title ----- */

.about-preview__title {
    margin-bottom: clamp(24px, 2vw, 34px);

    color: var(--color-text);

    font-family: var(--font-heading);

    /* ✅ UI KIT — taille du titre */
    font-size: clamp(2.4rem, 3.6vw, 4rem);

    font-weight: 500;
    line-height: 1.02;

    letter-spacing: -0.03em;

    text-wrap: balance;
}

/* ----- Text ----- */

.about-preview__text {

    /* ✅ UI KIT — largeur du texte */
    max-width: 34ch;

    margin-bottom: clamp(28px, 2.4vw, 42px);

    /* ✅ UI KIT — espace après le titre */
    padding-top: clamp(18px, 1.6vw, 24px);

    border-top: 1px solid var(--color-line);

    color: var(--color-text-soft);

    font-size: 1rem;

    line-height: 1.85;
}

/* ----- CTA ----- */

.about-preview__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* ✅ UI KIT — hauteur du bouton */
    min-height: 50px;

    /* ✅ UI KIT — marges intérieures */
    padding: 0 24px;

    border-radius: var(--radius-md);

    background: var(--color-accent);

    color: var(--color-white);

    font-size: 0.92rem;
    font-weight: 600;

    line-height: 1;

    box-shadow: var(--shadow-button);

    transition:
        background-color var(--transition-base),
        box-shadow var(--transition-base),
        transform var(--transition-base);
}

.about-preview__link:hover {
    background: var(--color-accent-dark);

    transform: translateY(-1px);
}

/* ==================================================
   08. SOCIAL PROOF
================================================== */


/* ---------- Social Proof layout ---------- */

#social-proof {

    /* STRUCTURE — section collée au About Preview */
    padding: 0;

    background: var(--color-surface);
}

.social-proof-wrapper {
    position: relative;

    /* ✅ UI KIT — hauteur du bloc */
    min-height: clamp(320px, 28vw, 460px);

    display: flex;
    align-items: center;

    padding-inline: var(--layout-edge);

    overflow: visible;

    background: var(--color-surface);
}


/* ---------- Social Proof media ---------- */

.social-proof__media {
    position: absolute;
    inset: 0 0 0 auto;

    /* ✅ UI KIT — largeur du décor */
    width: 62%;

    height: 100%;

    z-index: 0;

    pointer-events: none;
}


/* ----- Background image ----- */

.social-proof__image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /* ✅ UI KIT — cadrage du décor */
    object-position: right bottom;
}


/* ----- Gradient overlay ----- */

.social-proof__media::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            var(--color-surface) 0%,
            rgba(237, 225, 215, 0.96) 18%,
            rgba(237, 225, 215, 0.70) 38%,
            rgba(237, 225, 215, 0.22) 62%,
            rgba(237, 225, 215, 0) 82%
        );
}


/* ----- Decorative foreground ----- */

.social-proof__overlay {
    position: absolute;

    /* ✅ UI KIT — position horizontale du vase */
    right: clamp(4px, 11%, 140px);

    /* ✅ UI KIT — dépassement sur About Preview */
    bottom: clamp(12px, 0vw, 30px);

    /* ✅ UI KIT — taille du vase */
    width: min(27vw, 440px);

    height: auto;

    z-index: 2;

    object-fit: contain;

    pointer-events: none;
}


/* ---------- Testimonial card ---------- */

.testimonial-card--featured {
    position: relative;

    z-index: 3;

    /* ✅ UI KIT — largeur du témoignage */
    width: min(50vw, 820px);

    padding: 0;

    background: transparent;
}


/* ----- Quote ----- */

.testimonial-card--featured::before {
    content: "“";

    display: block;

    margin-bottom: 0.6rem;

    color: var(--color-accent);

    font-family: var(--font-heading);

    /* ✅ UI KIT — taille des guillemets */
    font-size: clamp(3rem, 5vw, 5.5rem);

    line-height: 0.7;
}

.testimonial-card__text {

    /* ✅ UI KIT — largeur du texte */
    max-width: 44ch;

    color: var(--color-text);

    font-family: var(--font-heading);

    /* ✅ UI KIT — taille du témoignage */
    font-size: clamp(1.65rem, 2vw, 2.55rem);

    font-weight: 500;

    line-height: 1.24;

    letter-spacing: -0.02em;
}


/* ----- Person ----- */

.testimonial-card__person {
    display: flex;
    align-items: center;

    gap: 0.9rem;

    /* ✅ UI KIT — espace après le témoignage */
    margin-top: clamp(28px, 2vw, 38px);
}

.testimonial-card__avatar {

    /* ✅ UI KIT — taille de l'avatar */
    width: 52px;
    height: 52px;

    border-radius: 50%;

    object-fit: cover;

    flex-shrink: 0;
}

.testimonial-card__author {
    color: var(--color-text);

    font-size: 0.95rem;
    font-weight: 600;

    line-height: 1.3;
}

.testimonial-card__meta {
    margin-top: 0.1rem;

    color: var(--color-text-soft);

    font-size: 0.86rem;

    line-height: 1.4;
}

/* ==================================================
   09. FOOTER + FINAL CTA
================================================== */


/* ---------- Footer layout ---------- */

#site-footer {
    position: relative;

    /* ✅ UI KIT — espacement vertical du footer */
    padding:
        clamp(72px, 7vw, 112px)
        0
        clamp(28px, 3vw, 42px);

    /* ✅ UI KIT — fond du footer */
    background: var(--color-bg-soft);

    overflow: hidden;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;

    /* ✅ UI KIT — espace entre footer principal et ligne légale */
    gap: clamp(42px, 4vw, 60px);
}


/* ---------- Footer top ---------- */

.footer-top {
    display: grid;

    /* ✅ UI KIT — proportions des colonnes */
    grid-template-columns:
        minmax(260px, 1.35fr)
        minmax(140px, 0.8fr)
        minmax(190px, 1fr)
        minmax(240px, 1.05fr);

    /* ✅ UI KIT — espace entre colonnes */
    gap: clamp(42px, 5vw, 86px);

    align-items: start;
}


/* ---------- Brand ---------- */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    max-width: 320px;
}


/* ----- Logo ----- */

.footer-brand__logo,
.footer-logo img {
    display: block;

    /* ✅ UI KIT — taille du logo */
    width: clamp(150px, 12vw, 220px);
    height: auto;

    object-fit: contain;
}


/* ----- Description ----- */

.footer-brand__text,
.footer-description {
    /* ✅ UI KIT — largeur du texte descriptif */
    max-width: 34ch;

    margin-top: clamp(20px, 2vw, 28px);

    color: var(--color-text-soft);

    /* ✅ UI KIT — taille du texte descriptif */
    font-size: 0.92rem;

    /* ✅ UI KIT — hauteur de ligne */
    line-height: 1.95;
}


/* ----- Socials ----- */

.footer-socials {
    display: flex;
    align-items: center;

    /* ✅ UI KIT — espace entre réseaux */
    gap: 0.75rem;

    margin-top: clamp(24px, 2vw, 32px);
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* ✅ UI KIT — taille des cercles réseaux */
    width: 38px;
    height: 38px;

    border-radius: 50%;

    /* ✅ UI KIT — fond des cercles réseaux */
    background: var(--color-surface);

    color: var(--color-text);

    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;

    transition:
        background-color var(--transition-base),
        color var(--transition-base),
        box-shadow var(--transition-base),
        transform var(--transition-base);
}

.footer-socials a:hover {
    background: rgba(184, 106, 79, 0.12);

    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(78, 58, 52, 0.08);
}


/* ----- Social icon ----- */

.social-icon {
    /* ✅ UI KIT — taille du pictogramme */
    width: 38px;
    height: 38px;

    object-fit: contain;

    transition:
        filter var(--transition-base),
        transform var(--transition-base);
}


/* ---------- Footer columns ---------- */

.footer-nav h3,
.footer-services h3,
.footer-contact h3 {
    margin-bottom: clamp(18px, 1.6vw, 24px);

    color: var(--color-text);

    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* ----- Lists ----- */

.footer-nav ul,
.footer-services ul,
.footer-contact-list {
    display: grid;

    /* ✅ UI KIT — espacement vertical des liens */
    gap: 0.85rem;
}

.footer-nav a,
.footer-services li,
.footer-contact-list p {
    color: var(--color-text-soft);

    font-size: 0.98rem;
    line-height: 1.45;
}

.footer-nav a {
    transition:
        color var(--transition-base);
}

.footer-nav a:hover {
    color: var(--color-accent);
}


/* ---------- Contact ---------- */

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* ----- CTA ----- */

.footer-contact .footer-cta,
.footer-cta__button {
    width: 100%;
    max-width: 300px;

    margin-bottom: clamp(28px, 2.4vw, 38px);
}


/* ----- Contact links ----- */

.footer-contact__link {
    color: var(--color-text-soft);

    font-size: 0.98rem;
    line-height: 1.45;

    transition:
        color var(--transition-base);
}

.footer-contact__link:hover {
    color: var(--color-accent);
}


/* ---------- Footer bottom ---------- */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: clamp(24px, 3vw, 42px);

    /* ✅ UI KIT — espace au-dessus de la ligne légale */
    padding-top: clamp(28px, 3vw, 42px);

    border-top: 1px solid var(--color-line);
}

.footer-bottom p {
    color: var(--color-text-soft);

    font-size: 0.88rem;
    line-height: 1.5;
}


/* ----- Legal ----- */

.footer-legal {
    display: flex;
    align-items: center;

    /* ✅ UI KIT — espace entre liens légaux */
    gap: clamp(22px, 2.6vw, 42px);
}

.footer-legal a {
    color: var(--color-text-soft);

    font-size: 0.88rem;
    line-height: 1.5;

    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--color-accent);
}