
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&display=swap');

.hero h1,
.section h2,
.section h3,
.brand,
.footer-brand {
    font-family: "Outfit", Arial, sans-serif;
    font-weight: 800;
}

.hero h1,
.section h2 {
    letter-spacing: 0.025em;
    line-height: 1.12;
}

.section h3 {
    font-weight: 700;
    letter-spacing: 0.015em;
}


* { box-sizing: border-box; }

:root {
    --wood: #9a6b45;
    --wood-dark: #70482d;
    --orange: #d97732;
    --orange-dark: #b85d22;
    --cream: #f7f1e8;
    --paper: #fffdf9;
    --ink: #2f2924;
    --muted: #6f665e;
    --line: #dfd3c5;
    --shadow: 0 8px 26px rgba(60, 40, 25, .09);
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    font-size: 17px;
}

.hero {
    padding: 56px 20px 52px;
    text-align: center;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.brand, .footer-brand {
    font-weight: 900;
    letter-spacing: .16em;
}

.brand { font-size: 18px; margin-bottom: 30px; }

.eyebrow, .section-kicker {
    margin: 0 0 8px;
    font-weight: 800;
    letter-spacing: .11em;
    color: var(--orange-dark);
    font-size: 16px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(36px, 9vw, 66px);
    line-height: 1.02;
}

.subtitle {
    max-width: 680px;
    margin: 18px auto 0;
    font-size: clamp(20px, 4.5vw, 27px);
    color: var(--muted);
}

.section {
    width: min(1080px, calc(100% - 32px));
    margin: 0 auto;
    padding: 58px 0;
}

.intro {
    text-align: center;
    max-width: 850px;
    font-size: 20px;
}

.section h2 {
    margin: 0 0 26px;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.1;
}

.section h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.2;
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.use-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.use-icon { font-size: 34px; margin-bottom: 10px; }

.use-card p { margin: 0 0 9px; font-size: 18px; }

.use-card small {
    display: block;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.help-card { border-color: #e3b18a; }

.pricing { text-align: center; }

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.price-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px 16px;
    box-shadow: var(--shadow);
}

.price-card strong {
    display: block;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 10px;
}

.price-card span { display: block; font-size: 17px; }

.price-card.featured { border: 2px solid var(--orange); }

.price-note { margin: 16px 0 0; color: var(--muted); font-size: 17px; }

form {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}

form > label, fieldset > legend {
    font-weight: 800;
    font-size: 18px;
}

form > label { display: block; margin: 20px 0 8px; }

input[type="text"], input[type="file"], textarea {
    width: 100%;
    font: inherit;
    font-size: 17px;
    border: 1px solid #cdbfae;
    border-radius: 12px;
    padding: 13px 14px;
    background: #fff;
    color: var(--ink);
}

textarea { resize: vertical; }

fieldset {
    border: 1px solid var(--line);
    border-radius: 14px;
    margin: 24px 0;
    padding: 18px;
}

.choice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 18px;
    cursor: pointer;
}

.choice input { margin-top: 5px; transform: scale(1.25); }

.choice-help {
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 17px;
}

.optional { color: var(--muted); font-weight: 400; }

.field-note { margin: 10px 0 0; color: var(--muted); font-size: 16px; }

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    border: 0;
    border-radius: 12px;
    padding: 12px 20px;
    background: var(--wood-dark);
    color: #fff;
    font: inherit;
    font-weight: 900;
    font-size: 17px;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover { background: var(--wood); }

.btn-primary {
    width: 100%;
    background: var(--orange);
    font-size: 19px;
}

.btn-primary:hover { background: var(--orange-dark); }

.status {
    min-height: 25px;
    margin-top: 15px;
    font-weight: 700;
    color: var(--orange-dark);
}

.visual-section { text-align: center; }

.ai-intro {
    max-width: 720px;
    margin: 0 auto 28px;
    padding: 25px 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.ai-mark {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f0dfcd;
    color: var(--orange-dark);
    font-size: 26px;
}

.ai-intro p { margin: 5px 0; font-size: 18px; }

.visual-cards {
    max-width: 700px;
    margin: 0 auto;
}

.visual-placeholder {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 25px;
    background: var(--paper);
    border: 2px dashed #cfbba4;
    border-radius: 22px;
}

.placeholder-icon { font-size: 58px; margin-bottom: 15px; }

.visual-placeholder h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.visual-placeholder p { margin: 4px 0; font-size: 18px; }

.visual-placeholder .placeholder-note {
    max-width: 500px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 16px;
}

.visual-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.visual-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 14px;
    background: #f4eee6;
}

.visual-card h3 { margin-top: 18px; }

.visual-card .btn {
    width: 100%;
    margin-top: 8px;
}

.visual-disclaimer {
    max-width: 700px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 16px;
}

.special-project { text-align: center; }

.special-project > p:not(.section-kicker) {
    max-width: 720px;
    margin: 0 auto 22px;
    font-size: 18px;
}

.feedback { max-width: 820px; }

footer {
    padding: 38px 20px 48px;
    text-align: center;
    color: var(--muted);
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.footer-brand {
    color: var(--ink);
    font-size: 20px;
    margin-bottom: 5px;
}

@media (max-width: 700px) {
    body { font-size: 16px; }
    .hero { padding-top: 42px; }
    .section { padding: 44px 0; }
    .use-grid, .price-grid { grid-template-columns: 1fr; }
    form { padding: 20px; }
    .price-card strong { font-size: 38px; }
    .visual-placeholder { min-height: 360px; }
}
/* --------------------------------------------------
   PROJET PARTICULIER — GALERIE
-------------------------------------------------- */

.special-project-gallery {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px;
    margin: 30px 0;
    width: 100%;
    align-items: center;
}

.special-project-item {
    overflow: hidden;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-project-item img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: contain;
    margin: 0 auto;
}

/* --------------------------------------------------
   FENÊTRE DEMANDE DE DEVIS
-------------------------------------------------- */

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.55);
}

.quote-modal[hidden] {
    display: none;
}

.quote-modal-content {
    position: relative;
    width: min(600px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.quote-modal-content h2 {
    margin-top: 0;
}

.quote-modal-content textarea {
    width: 100%;
    min-height: 140px;
    margin: 8px 0 20px;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 10px;
    font: inherit;
    resize: vertical;
}

.quote-modal-content input[type="file"] {
    width: 100%;
    margin: 8px 0 24px;
}

.quote-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f3eee7;
    color: #333;
    border-radius: 50%;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 2;
}

#quoteStatus {
    margin-top: 15px;
    font-weight: 600;
}

@media (max-width: 600px) {

    .quote-modal-content {
        padding: 24px 20px;
    }

}

/* --------------------------------------------------
   ESSAI TYPOGRAPHIE YOROA
-------------------------------------------------- */

body {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.hero h1,
.section h2,
.section h3,
.brand,
.footer-brand,
.section-kicker,
.btn {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.hero h1,
.section h2 {
    font-weight: 900;
    letter-spacing: 0.02em;
}

.section-kicker {
    letter-spacing: 0.14em;
}

/* --------------------------------------------------
   ÉQUILIBRE VISUEL DES SECTIONS
-------------------------------------------------- */

.section {
    text-align: center;
}

.section h2 {
    margin-top: 8px;
    margin-bottom: 18px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.section > p:not(.section-kicker) {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-kicker {
    text-align: center;
    margin-bottom: 6px;
}

/* Les contenus qui doivent rester alignés à gauche */
.personalize form,
.feedback form {
    text-align: left;
}

/* Les cartes restent bien centrées */
.use-card,
.price-card {
    text-align: center;
}

/* Boutons centrés */
.section .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------
   TITRES — VERSION PLUS ÉLÉGANTE
-------------------------------------------------- */

.hero h1,
.section h2 {
    font-weight: 800;
    letter-spacing: 0.035em;
    line-height: 1.15;
}

.section h2 {
    font-size: clamp(28px, 4vw, 40px);
}

.hero h1 {
    letter-spacing: 0.045em;
}

/* --------------------------------------------------
   TYPOGRAPHIE YOROA — ESSAI STYLE KABLE
-------------------------------------------------- */

.hero h1,
.section h2,
.section h3,
.brand,
.footer-brand {
    font-family: "Kabel", "Century Gothic", Arial, sans-serif;
    font-weight: 700;
}

.hero h1,
.section h2 {
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.section h3 {
    letter-spacing: 0.01em;
}

/* --------------------------------------------------
   TYPOGRAPHIE YOROA — ESSAI GEORGIA
-------------------------------------------------- */

.hero h1,
.section h2,
.section h3,
.brand,
.footer-brand {
    font-family: Georgia, "Times New Roman", serif;
}

.hero h1,
.section h2 {
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

.section h3 {
    font-weight: 700;
}

/* --------------------------------------------------
   VISUEL PERSONNALISATION
-------------------------------------------------- */

.visual-personalisation {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.visual-personalisation img {
    display: block;
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 10px auto 24px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.visual-personalisation p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
}


/* --------------------------------------------------
   DÉMONSTRATION NFC
-------------------------------------------------- */

.nfc-demonstration {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;

    align-items: center;
    text-align: left;
}

.nfc-demo-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.nfc-demo-text {
    padding: 10px 0;
}

.nfc-demo-text h2 {
    margin-top: 6px;
    margin-bottom: 20px;
}

.nfc-demo-text p:not(.section-kicker) {
    margin-left: 0;
    margin-right: 0;
}

.nfc-demo-note {
    margin-top: 28px !important;
    font-size: 15px;
}


/* --------------------------------------------------
   MOBILE
-------------------------------------------------- */

@media (max-width: 700px) {

    .nfc-demonstration {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .nfc-demo-text p:not(.section-kicker) {
        margin-left: auto;
        margin-right: auto;
    }

    .visual-personalisation img,
    .nfc-demo-image img {
        border-radius: 14px;
    }
}

/* --------------------------------------------------
   PERSONNALITÉ — CE QU'IL PEUT FAIRE
-------------------------------------------------- */

.uses {
    padding-top: 55px;
    padding-bottom: 55px;
}

.use-grid {
    margin-top: 35px;
    gap: 22px;
}

.use-card {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 24px 26px;
    box-shadow: 0 5px 18px rgba(60, 40, 25, .06);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.use-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 12px 28px rgba(60, 40, 25, .11);
}

.use-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--cream);
    border: 2px solid var(--line);
    border-radius: 50%;

    font-size: 27px;
}

.use-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.2;
}

.use-card p {
    margin: 0 auto 12px;
    max-width: 330px;
}

.use-card small {
    display: block;
    max-width: 330px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

/* Carte "J'AI BESOIN D'AIDE" */

.use-card.help-card {
    background: #f4e7d8;
    border-color: #d9b997;
}

.use-card.help-card .use-icon {
    background: var(--paper);
    border-color: var(--orange);
}

.use-card.help-card h3 {
    color: var(--wood-dark);
}


/* Mobile */

@media (max-width: 700px) {

    .use-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .use-card {
        padding: 26px 20px 23px;
    }
}

/* CLIC — J'AI BESOIN D'AIDE */

.use-card.help-card {
    cursor: pointer;
}

.use-card.help-card:hover {
    transform: translateY(-5px);
}

/* --------------------------------------------------
   BOUTON COMMANDER
-------------------------------------------------- */

.order-cta {
    margin: 35px auto 10px;
    text-align: center;
}

.order-cta .btn {
    min-width: 280px;
    font-size: 17px;
    padding: 16px 28px;
    box-shadow: 0 8px 22px rgba(60, 40, 25, .12);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.order-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(60, 40, 25, .18);
}

@media (max-width: 700px) {
    .order-cta .btn {
        width: 100%;
        min-width: 0;
    }
}