/* =====================================================
   ACM — Conseil & Coaching Carrelage
   Design 2026 · Clean · Conversion-focused
   ===================================================== */

:root {
    --c-bg:        #fafafa;
    --c-surface:   #ffffff;
    --c-dark:      #0a0a0a;
    --c-text:      #1a1a1a;
    --c-muted:     #737373;
    --c-light:     #a3a3a3;
    --c-border:    #e5e5e5;
    --c-accent:    #29abe2;
    --c-accent-h:  #1e8fbf;
    --c-accent-l:  #eaf6fc;
    --c-green:     #a2b964;
    --c-green-h:   #8fa654;
    --c-gradient:  linear-gradient(135deg, #a2b964, #29abe2);
    --c-success:   #16a34a;
    --c-warm:      #f5f5f4;
    --font:        'Inter', system-ui, -apple-system, sans-serif;
    --font-display:'Space Grotesk', system-ui, sans-serif;
    --w-max:       1200px;
    --w-narrow:    800px;
    --r:           16px;
    --r-sm:        10px;
    --r-full:      9999px;
    --shadow:      0 1px 3px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.04);
    --shadow-lg:   0 4px 12px rgba(0,0,0,.03), 0 16px 48px rgba(0,0,0,.06);
    --ease:        .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text);
    background: var(--c-bg);
}

a { color: inherit; text-decoration: none; transition: color var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap {
    width: 100%;
    max-width: var(--w-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ====== HEADER ====== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding-top: env(safe-area-inset-top, 0px);
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: none;
    transition: all .4s ease;
}
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--c-gradient);
    opacity: .6;
    transition: opacity .4s ease;
}
.site-header.is-scrolled {
    background: rgba(255,255,255,.97);
}
.site-header.is-scrolled::after { opacity: 1; }
.site-header.is-scrolled .brand__logo { height: 44px; }

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height .4s ease;
}
.site-header.is-scrolled .header-wrap { height: 64px; }

.brand { display: flex; align-items: center; line-height: 1.15; }
.brand__logo {
    height: 70px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    transition: height .4s ease;
}
.brand__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--c-dark);
    letter-spacing: -.03em;
}
.brand__tagline {
    font-size: .65rem;
    color: var(--c-muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 500;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
}
.main-nav a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--c-muted);
    position: relative;
    transition: color var(--ease);
}
.main-nav a:hover,
.main-nav a.is-active {
    color: var(--c-dark);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--c-accent);
    border-radius: 1px;
    transition: width var(--ease);
}
.main-nav a:hover::after,
.main-nav a.is-active::after { width: 100%; }

.nav-cta {
    background: var(--c-gradient) !important;
    color: #fff !important;
    padding: .55rem 1.3rem !important;
    border-radius: var(--r-full) !important;
    font-weight: 600 !important;
    font-size: .85rem !important;
    letter-spacing: -.01em;
    transition: all var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    opacity: .9 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(41,171,226,.3);
}

.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    /* Cible tactile ~44px (recommandations iOS / Android) */
    min-width: 44px;
    min-height: 44px;
    margin-right: -0.25rem;
    padding: 0.5rem;
    -webkit-tap-highlight-color: transparent;
}
.burger span {
    width: 22px; height: 2px;
    background: var(--c-dark);
    border-radius: 2px;
    transition: var(--ease);
    transform-origin: center;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
    .main-nav { display: flex; }
    .burger { display: none; }
}
@media (max-width: 767px) {
    .main-nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--c-surface);
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--c-border);
        box-shadow: var(--shadow-lg);
        animation: slideDown .25s ease;
    }
    .main-nav.is-open .nav-cta { text-align: center; display: block; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font);
    font-weight: 600;
    font-size: .9rem;
    border: none;
    border-radius: var(--r-full);
    cursor: pointer;
    padding: .75rem 1.6rem;
    transition: all var(--ease);
    text-align: center;
    letter-spacing: -.01em;
}

.btn-primary {
    background: var(--c-gradient);
    color: #fff;
}
.btn-primary:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(41,171,226,.3);
    color: #fff;
}

.btn-dark {
    background: var(--c-dark);
    color: #fff;
}
.btn-dark:hover {
    background: #262626;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    color: #fff;
}

/* CTA articles : vert identité, sans dégradé bleu */
.btn-article-cta {
    background: linear-gradient(145deg, var(--c-green-h) 0%, var(--c-green) 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(143, 166, 84, 0.35);
}
.btn-article-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(143, 166, 84, 0.42);
    filter: brightness(1.04);
}

.btn-outline {
    background: transparent;
    color: var(--c-dark);
    box-shadow: inset 0 0 0 1.5px var(--c-border);
}
.btn-outline:hover {
    box-shadow: inset 0 0 0 1.5px var(--c-dark);
    color: var(--c-dark);
}

.btn-ghost {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.9);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
}

.btn-lg { padding: .95rem 2rem; font-size: .95rem; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ====== HERO ====== */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--c-dark);
    overflow: hidden;
}
.hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    opacity: .18;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, var(--c-dark) 40%, transparent 100%),
        radial-gradient(ellipse 50% 80% at 80% 40%, rgba(41,171,226,.12) 0%, transparent 70%);
}

.hero .wrap { position: relative; z-index: 2; padding-top: calc(90px + env(safe-area-inset-top, 0px)); }

.hero-content { max-width: 680px; padding: 5rem 0 6rem; }

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-accent);
    margin-bottom: 2rem;
}
.hero-label::before {
    content: '';
    width: 32px; height: 2px;
    background: var(--c-gradient);
    border-radius: 1px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -.04em;
}
.hero-title em {
    font-style: normal;
    background: var(--c-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 3.5rem;
}

.hero-metrics {
    display: flex;
    gap: 3rem;
}
.hero-metric {
    display: flex;
    flex-direction: column;
}
.hero-metric strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.2;
}
.hero-metric span {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    margin-top: .15rem;
}

/* ====== SECTION ====== */
.section { padding: 7rem 0; }
.section--alt { background: var(--c-surface); }
.section--dark { background: var(--c-dark); color: #fff; }
.section--warm { background: var(--c-warm); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-accent);
    margin-bottom: .75rem;
}
.section-label::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--c-gradient);
    border-radius: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 1rem;
    letter-spacing: -.03em;
    line-height: 1.1;
}
.section--dark .section-title { color: #fff; }

.section-desc {
    font-size: 1.05rem;
    color: var(--c-muted);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
}
.section--dark .section-desc { color: rgba(255,255,255,.5); }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.section-header .section-desc {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}
.section-header .section-label::before { display: none; }

/* ====== PROCESS ====== */
.process-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 600px) { .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .process-grid { grid-template-columns: repeat(4,1fr); } }

.process-card {
    padding: 2rem 1.75rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    transition: all var(--ease);
}
.process-card:hover {
    border-color: var(--c-accent);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: var(--c-accent-l);
    color: var(--c-accent);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    border-radius: var(--r-full);
    margin-bottom: 1.25rem;
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: .5rem;
    letter-spacing: -.02em;
}
.process-card p {
    font-size: .88rem;
    color: var(--c-muted);
    line-height: 1.6;
}

/* ====== SERVICE CARDS (prestations) ====== */
.services-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 2rem;
    transition: all var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card--featured {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 1px var(--c-accent);
}

.service-badge {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .3rem .65rem;
    background: var(--c-gradient);
    color: #fff;
    border-radius: var(--r-full);
}

.service-icon {
    width: 44px; height: 44px;
    border-radius: var(--r-sm);
    background: var(--c-accent-l);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.service-icon svg {
    width: 22px; height: 22px;
    stroke: var(--c-accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: .5rem;
    letter-spacing: -.02em;
}
.service-card > p {
    font-size: .88rem;
    color: var(--c-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 1.5rem;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--c-text);
    margin-bottom: .35rem;
}
.service-features li svg {
    width: 16px; height: 16px;
    stroke: var(--c-success);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -.03em;
}
.service-price small {
    font-size: .8rem;
    font-weight: 400;
    color: var(--c-muted);
    font-family: var(--font);
    letter-spacing: 0;
}

/* ====== IMAGE STRIP ====== */
.img-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
}
.img-strip img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.img-strip img:hover { transform: scale(1.05); }
@media (max-width: 640px) {
    .img-strip { grid-template-columns: repeat(2, 1fr); }
    .img-strip img { height: 150px; }
}

/* ====== STATS ====== */
.stats { padding: 5rem 0; background: var(--c-dark); position: relative; }
.stats--bg { background-size: cover; background-position: center; }
.stats--bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.85);
}
.stats--bg .wrap { position: relative; z-index: 1; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
    text-align: center;
}
@media (max-width: 640px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem,5vw,3.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.04em;
    margin-bottom: .25rem;
}
.stat-label {
    font-size: .85rem;
    color: rgba(255,255,255,.45);
}

/* ====== ARGUMENTS ====== */
.arguments-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 600px) { .arguments-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .arguments-grid { grid-template-columns: repeat(3,1fr); } }

.argument-card {
    padding: 2rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    transition: all var(--ease);
}
.argument-card:hover {
    border-color: var(--c-accent);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.argument-icon {
    width: 44px; height: 44px;
    border-radius: var(--r-sm);
    background: var(--c-accent-l);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.argument-icon svg {
    width: 22px; height: 22px;
    stroke: var(--c-accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.argument-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: .5rem;
    letter-spacing: -.02em;
    line-height: 1.3;
}
.argument-card p {
    font-size: .88rem;
    color: var(--c-muted);
    line-height: 1.65;
}

/* ====== SKILLS ====== */
.skills-layout {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .skills-layout { grid-template-columns: 1fr .8fr; }
}
.skills-visual { display: none; }
@media (min-width: 768px) {
    .skills-visual { display: block; }
}
.skills-img {
    width: 100%;
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 3/4;
}
.skills-grid {
    display: grid;
    gap: .75rem;
}
@media (min-width: 600px) { .skills-grid { grid-template-columns: repeat(2,1fr); } }

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.5rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    font-size: .9rem;
    font-weight: 500;
    transition: all var(--ease);
}
.skill-item:hover {
    border-color: var(--c-accent);
    background: var(--c-accent-l);
}
.skill-item svg {
    width: 20px; height: 20px;
    stroke: var(--c-accent);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* ====== HOME — guides (maillage SEO) ====== */
.home-guides {
    display: grid;
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .home-guides { grid-template-columns: repeat(3, 1fr); }
}
.home-guide-card {
    display: block;
    padding: 1.65rem 1.4rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    text-decoration: none;
    color: inherit;
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.home-guide-card:hover {
    border-color: var(--c-accent);
    box-shadow: var(--shadow);
    color: inherit;
    transform: translateY(-2px);
}
.home-guide-card h3 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--c-dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.home-guide-card p {
    font-size: 0.86rem;
    color: var(--c-muted);
    margin: 0 0 1rem;
    line-height: 1.55;
}
.home-guide-card__arrow {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-accent-h);
}

/* ====== LOCAL / ANJOU ====== */
.local-block {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .local-block { grid-template-columns: 1fr 1fr; }
}

.local-text p {
    font-size: .95rem;
    color: var(--c-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.local-images {
    position: relative;
    min-height: 400px;
}
.local-img {
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}
.local-img--top {
    width: 70%;
    aspect-ratio: 4/3;
    position: relative;
    z-index: 2;
}
.local-img--bottom {
    width: 55%;
    aspect-ratio: 3/4;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    border: 4px solid var(--c-bg);
}

/* ====== CTA BANNER ====== */
.cta-banner {
    padding: 6rem 0;
    background: var(--c-dark);
    text-align: center;
    color: #fff;
    position: relative;
}
.cta-banner--img {
    background-size: cover;
    background-position: center;
}
.cta-banner--img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.82);
}
.cta-banner--img .wrap { position: relative; z-index: 1; }
.cta-banner .section-title { color: #fff; }
.cta-banner .section-desc {
    color: rgba(255,255,255,.45);
    margin-left: auto;
    margin-right: auto;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-top: 2.5rem;
}
.cta-contact {
    margin-top: 1.5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.35);
}
.cta-contact a {
    color: rgba(255,255,255,.6);
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,.2);
    text-underline-offset: 3px;
}
.cta-contact a:hover { color: #fff; }

/* ====== PAGE HERO ====== */
.page-hero {
    padding: calc(10rem + env(safe-area-inset-top, 0px)) 0 4rem;
    background: var(--c-dark);
    color: #fff;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--c-accent); }
.page-hero .section-label::before { background: var(--c-accent); }
.page-hero .section-title { color: #fff; margin-bottom: .75rem; }
.page-hero .section-desc { color: rgba(255,255,255,.45); }
.page-hero--center { text-align: center; }
.page-hero--center .section-desc { margin-left: auto; margin-right: auto; }
.page-hero--center .section-label::before { display: none; }

.page-hero--img {
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-hero--img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.8);
}

/* ====== TARIF TABLE (legacy) ====== */
.tarif-block { margin-bottom: 3rem; }
.tarif-block h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

.tarif-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-surface);
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--c-border);
}
.tarif-table th,
.tarif-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: .9rem;
}
.tarif-table th {
    background: var(--c-warm);
    font-weight: 600;
    color: var(--c-dark);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.tarif-table td { border-top: 1px solid var(--c-border); }
.tarif-table .price {
    font-weight: 700;
    color: var(--c-accent);
    font-family: var(--font-display);
    white-space: nowrap;
}

.zone-list { margin-top: .75rem; }
.zone-list li {
    padding: .75rem 0;
    border-bottom: 1px solid var(--c-border);
    font-size: .9rem;
}
.zone-list li:last-child { border-bottom: none; }
.zone-list li strong { color: var(--c-dark); }

.conditions-list li {
    position: relative;
    padding: .45rem 0 .45rem 1.25rem;
    font-size: .9rem;
    color: var(--c-muted);
}
.conditions-list li::before {
    content: '';
    position: absolute;
    left: 0; top: .85rem;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--c-accent);
}

/* ====== TARIF CARDS ====== */
.tarif-cards {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) { .tarif-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .tarif-cards { grid-template-columns: repeat(3, 1fr); } }
.tarif-cards--2 {
    max-width: 820px;
    margin: 0 auto;
}
@media (min-width: 600px) { .tarif-cards--2 { grid-template-columns: repeat(2, 1fr); } }

.tarif-card {
    position: relative;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    display: flex;
    flex-direction: column;
    transition: all var(--ease);
    overflow: hidden;
}
.tarif-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.tarif-card--featured {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 1px var(--c-accent), var(--shadow);
}
.tarif-card--featured:hover {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 1px var(--c-accent), var(--shadow-lg);
}
.tarif-card__badge {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: var(--c-gradient);
    color: #fff;
    text-align: center;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .4rem 0;
}
.tarif-card--featured .tarif-card__header { padding-top: 3rem; }

.tarif-card__header {
    padding: 2rem 2rem 0;
    text-align: center;
}
.tarif-card__label {
    display: inline-block;
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-accent);
    margin-bottom: .5rem;
}
.tarif-card__price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--c-dark);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .5rem;
}
.tarif-card__price small {
    font-size: .85rem;
    font-weight: 400;
    color: var(--c-muted);
    font-family: var(--font);
    letter-spacing: 0;
}

.tarif-card__body {
    padding: 1.5rem 2rem;
    flex-grow: 1;
}
.tarif-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: .4rem;
    letter-spacing: -.02em;
}
.tarif-card__body > p {
    font-size: .88rem;
    color: var(--c-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.tarif-card__features {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tarif-card__features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--c-text);
    padding: .35rem 0;
}
.tarif-card__features li svg {
    width: 16px; height: 16px;
    stroke: var(--c-success);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.tarif-card > .btn {
    margin: 0 2rem 2rem;
    width: calc(100% - 4rem);
}

/* ====== TARIF EXTRAS ====== */
.tarif-extras {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .tarif-extras { grid-template-columns: repeat(3, 1fr); } }

.tarif-extra {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 2rem;
    transition: all var(--ease);
}
.tarif-extra:hover {
    border-color: var(--c-accent);
    box-shadow: var(--shadow);
}
.tarif-extra__icon {
    width: 48px; height: 48px;
    border-radius: var(--r-sm);
    background: var(--c-accent-l);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.tarif-extra__icon svg {
    width: 24px; height: 24px;
    stroke: var(--c-accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.tarif-extra h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: .4rem;
    letter-spacing: -.02em;
}
.tarif-extra > p {
    font-size: .85rem;
    color: var(--c-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.tarif-extra__prices {
    border-top: 1px solid var(--c-border);
    padding-top: .75rem;
}
.tarif-extra__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .6rem 0;
    border-bottom: 1px solid var(--c-border);
    font-size: .88rem;
}
.tarif-extra__row:last-child { border-bottom: none; }
.tarif-extra__row span { color: var(--c-muted); }
.tarif-extra__row strong {
    font-family: var(--font-display);
    color: var(--c-dark);
    font-weight: 600;
    white-space: nowrap;
}

/* ====== CONTACT ====== */
.contact-grid {
    display: grid;
    gap: 3rem;
}
@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1.5fr; }
}

.contact-info-item {
    padding: 1.5rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    margin-bottom: .75rem;
    transition: border-color var(--ease);
}
.contact-info-item:hover { border-color: var(--c-accent); }
.contact-info-item h3 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: .35rem;
}
.contact-info-item p {
    font-size: .9rem;
    color: var(--c-muted);
    line-height: 1.6;
}
.contact-info-item a {
    color: var(--c-accent);
    font-weight: 500;
}
.contact-info-item a:hover { text-decoration: underline; }

.form-group { margin-bottom: 1.15rem; }
.form-group label {
    display: block;
    font-weight: 500;
    font-size: .85rem;
    color: var(--c-dark);
    margin-bottom: .35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .8rem 1rem;
    font-family: var(--font);
    font-size: .9rem;
    color: var(--c-text);
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px var(--c-accent-l);
}

.form-row {
    display: grid;
    gap: 1rem;
}
@media (min-width: 600px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

/* ====== BOOKING ====== */
.cal-embed-wrap {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 500px;
    margin-bottom: 1rem;
}
.booking-info {
    max-width: 960px;
    margin: 1rem auto 0;
    text-align: center;
    font-size: .85rem;
    color: var(--c-muted);
}
.booking-info a {
    color: var(--c-accent);
    font-weight: 500;
}

/* ====== BOOKING RECAP ====== */
.booking-recap {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 2rem;
}
.booking-recap__header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--c-border);
}
.booking-recap__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--c-dark);
    letter-spacing: -.03em;
    margin-bottom: .35rem;
}
.booking-recap__duration {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    color: var(--c-muted);
}
.booking-recap__duration svg {
    width: 16px; height: 16px;
    stroke: var(--c-accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.booking-recap__features {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--c-border);
    list-style: none;
    margin: 0;
}
.booking-recap__features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .88rem;
    color: var(--c-text);
    padding: .3rem 0;
}
.booking-recap__features li svg {
    width: 16px; height: 16px;
    stroke: var(--c-success);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.booking-recap__pricing {
    padding: 1.5rem 2rem;
}
.booking-recap__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 0;
    font-size: .9rem;
}
.booking-recap__row span { color: var(--c-muted); }
.booking-recap__row strong {
    font-family: var(--font-display);
    color: var(--c-dark);
    font-weight: 600;
}
.booking-recap__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0;
    margin-top: .75rem;
    border-top: 2px solid var(--c-dark);
    font-size: 1rem;
}
.booking-recap__total span {
    font-weight: 600;
    color: var(--c-dark);
    font-family: var(--font-display);
}
.booking-recap__total strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-dark);
    letter-spacing: -.03em;
}

/* Booking steps */
.booking-steps {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 2rem;
    margin-bottom: 2rem;
}
.booking-steps h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
}
.booking-steps__grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.booking-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.booking-step__num {
    width: 36px; height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--c-accent-l);
    color: var(--c-accent);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-step strong {
    display: block;
    font-size: .92rem;
    color: var(--c-dark);
    margin-bottom: .15rem;
}
.booking-step p {
    font-size: .85rem;
    color: var(--c-muted);
    line-height: 1.5;
    margin: 0;
}

/* Booking actions */
.booking-actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.booking-note {
    text-align: center;
    font-size: .8rem;
    color: var(--c-light);
    line-height: 1.5;
}

/* Booking choices (no service selected) */
.booking-choices {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.booking-choice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    transition: all var(--ease);
}
.booking-choice:hover {
    border-color: var(--c-accent);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.booking-choice strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: .2rem;
    letter-spacing: -.02em;
}
.booking-choice span {
    font-size: .85rem;
    color: var(--c-muted);
    line-height: 1.5;
}
.booking-choice__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-accent);
    white-space: nowrap;
    letter-spacing: -.03em;
}

@media (max-width: 600px) {
    .booking-recap__header { padding: 1.5rem; }
    .booking-recap__features { padding: 1.25rem 1.5rem; }
    .booking-recap__pricing { padding: 1.25rem 1.5rem; }
    .booking-steps { padding: 1.5rem; }
    .booking-choice { padding: 1.25rem; flex-direction: column; align-items: flex-start; gap: .75rem; }
}

/* ====== CONFIRMATION / UPSELL ====== */
.confirm-check {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--c-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.confirm-check svg {
    width: 36px; height: 36px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.upsell-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--c-accent-l);
    border: 1px solid rgba(41,171,226,.15);
    border-radius: var(--r);
    padding: 2.5rem;
    margin-bottom: 2rem;
}
.upsell-card__icon {
    width: 56px; height: 56px;
    min-width: 56px;
    border-radius: var(--r-sm);
    background: var(--c-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}
.upsell-card__icon svg {
    width: 28px; height: 28px;
    stroke: var(--c-accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.upsell-card__tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-accent);
    margin-bottom: .4rem;
}
.upsell-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--c-dark);
    letter-spacing: -.03em;
    margin-bottom: .5rem;
}
.upsell-card__content p {
    font-size: .9rem;
    color: var(--c-muted);
    line-height: 1.65;
    margin: 0;
}

.upsell-options {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
@media (min-width: 600px) { .upsell-options { grid-template-columns: 1fr 1fr; } }

.upsell-option {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 2rem;
    transition: all var(--ease);
}
.upsell-option:hover {
    border-color: var(--c-accent);
    box-shadow: var(--shadow);
}
.upsell-option__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: .75rem;
}
.upsell-option h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-dark);
    letter-spacing: -.02em;
}
.upsell-option__price {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-accent);
    white-space: nowrap;
}
.upsell-option__price small {
    font-size: .75rem;
    font-weight: 400;
    color: var(--c-muted);
    font-family: var(--font);
}
.upsell-option > p {
    font-size: .85rem;
    color: var(--c-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.upsell-option ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.upsell-option li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--c-text);
    padding: .25rem 0;
}
.upsell-option li svg {
    width: 15px; height: 15px;
    stroke: var(--c-success);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.upsell-cta {
    text-align: center;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 2.5rem;
}
.upsell-cta > p:first-child {
    font-size: .95rem;
    color: var(--c-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.upsell-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}
.upsell-cta__note {
    font-size: .78rem;
    color: var(--c-light);
    margin: 0;
}

@media (max-width: 600px) {
    .upsell-card { flex-direction: column; gap: 1rem; padding: 1.5rem; }
    .upsell-option { padding: 1.5rem; }
    .upsell-cta { padding: 1.5rem; }
    .upsell-cta__actions { flex-direction: column; }
    .upsell-cta__actions .btn { width: 100%; }
}

/* ====== BLOG ====== */
.blog-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 600px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }

.blog-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    overflow: hidden;
    transition: all var(--ease);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.blog-card__img {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--c-accent-l), var(--c-warm));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.blog-card__img svg {
    width: 48px; height: 48px;
    stroke: var(--c-accent);
    fill: none;
    stroke-width: 1.5;
    opacity: .4;
}
.blog-card__body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card__tag {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-accent);
    margin-bottom: .5rem;
}
.blog-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: .5rem;
    letter-spacing: -.02em;
    line-height: 1.3;
}
.blog-card__excerpt {
    font-size: .85rem;
    color: var(--c-muted);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}
.blog-card__link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.blog-card__link:hover { gap: .6rem; }
.blog-card__link svg {
    width: 16px; height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ====== ARTICLE ====== */
.article {
    max-width: 40rem;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    position: relative;
}

.article--editorial {
    background:
        linear-gradient(180deg, var(--c-surface) 0%, var(--c-bg) 18rem, var(--c-bg) 100%);
    border-left: 1px solid var(--c-border);
    border-right: 1px solid var(--c-border);
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

.article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem .5rem;
    font-size: .78rem;
    color: var(--c-muted);
    margin-bottom: 1.75rem;
    padding: .5rem .85rem .5rem .65rem;
    background: rgba(255,255,255,.72);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
    width: fit-content;
    max-width: 100%;
}
.article-breadcrumb a {
    color: var(--c-dark);
    font-weight: 500;
    text-decoration: none;
}
.article-breadcrumb a:hover { color: var(--c-accent-h); }
.article-breadcrumb__sep {
    color: var(--c-light);
    margin: 0 .15rem;
    user-select: none;
}
.article-breadcrumb__current {
    color: var(--c-muted);
    font-weight: 500;
}

.article h2 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--c-dark);
    margin: 2.75rem 0 1rem;
    letter-spacing: -.03em;
    line-height: 1.2;
    padding-bottom: .65rem;
    border-bottom: 1px solid var(--c-border);
    position: relative;
}
.article h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 2.75rem;
    height: 2px;
    border-radius: 1px;
    background: var(--c-green);
}
.article h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-dark);
    margin: 2rem 0 .65rem;
    letter-spacing: -.02em;
}
.article p {
    margin-bottom: 1.2rem;
    color: var(--c-text);
    line-height: 1.82;
}
.article--editorial > p:first-of-type {
    font-size: 1.08rem;
    line-height: 1.78;
    color: #2d2d2d;
}
.article ul, .article ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.15rem;
    list-style: disc;
}
.article ol { list-style: decimal; }
.article li {
    margin-bottom: .55rem;
    line-height: 1.72;
    color: var(--c-text);
    padding-left: .25rem;
}
.article li::marker { color: var(--c-green-h); }
.article strong { color: var(--c-dark); }
.article a {
    color: var(--c-dark);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(41, 171, 226, 0.35);
    text-underline-offset: 3px;
}
.article a:hover {
    color: var(--c-accent-h);
    text-decoration-color: var(--c-accent);
}
.article .article-breadcrumb a {
    text-decoration: none;
    font-weight: 500;
}
.article .article-breadcrumb a:hover {
    text-decoration: none;
}
.article .article-cta a.btn {
    text-decoration: none;
}
.article .article-cta a.btn:hover {
    text-decoration: none;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem 0;
    font-size: .8rem;
    color: var(--c-muted);
    margin-bottom: 2.25rem;
    padding: 1rem 1.15rem;
    background: var(--c-warm);
    border-radius: var(--r-sm);
    border: 1px solid var(--c-border);
}
.article-meta span {
    display: inline-flex;
    align-items: center;
}
.article-meta span:not(:last-child)::after {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--c-border);
    margin: 0 .85rem;
    flex-shrink: 0;
}

.article-img {
    margin: 2.75rem 0;
    padding: .5rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    box-shadow: var(--shadow);
}
.article-img img {
    width: 100%;
    display: block;
    border-radius: calc(var(--r-sm) + 2px);
}
.article-img figcaption {
    text-align: center;
    font-size: .78rem;
    color: var(--c-muted);
    margin-top: .85rem;
    font-style: normal;
    line-height: 1.5;
    padding: 0 .5rem .25rem;
}

.article-cta {
    margin-top: 3.25rem;
    padding: 2rem 1.75rem 2.25rem;
    text-align: center;
    background: linear-gradient(165deg, #f7f6f4 0%, #f0eeeb 100%);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    position: relative;
    overflow: hidden;
}
.article-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-gradient);
    opacity: .9;
}
.article-cta__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-dark);
    margin: 0 0 .5rem;
    letter-spacing: -.02em;
    line-height: 1.35;
}
.article-cta__hint {
    font-size: .82rem;
    color: var(--c-muted);
    margin: 0 0 1.35rem;
    line-height: 1.5;
}
.article-cta .btn { min-width: min(100%, 16rem); }

.breadcrumb {
    font-size: .8rem;
    color: var(--c-muted);
    margin-bottom: 1rem;
}
.breadcrumb a { color: var(--c-dark); font-weight: 500; }
.breadcrumb a:hover { color: var(--c-accent-h); }
.breadcrumb span { margin: 0 .4rem; }

/* ====== FOOTER ====== */
.site-footer {
    background: #0d0d0d;
    color: rgba(255,255,255,.55);
}
.site-footer a {
    color: rgba(255,255,255,.55);
    transition: color var(--ease);
}
.site-footer a:hover { color: #fff; }

/* Footer CTA — bandeau compact (pas un 2e hero) */
.footer-cta {
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
}
.footer-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--c-gradient);
    opacity: .85;
}
.footer-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
}
.footer-cta__lead {
    font-size: .88rem;
    line-height: 1.45;
    color: rgba(255,255,255,.5);
    max-width: 22rem;
    margin: 0;
}
.footer-cta__chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem .6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-cta__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .55rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: -.01em;
    border-radius: var(--r-full);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.04);
    transition: border-color var(--ease), background var(--ease), color var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.footer-cta__chip:hover {
    border-color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.08);
    color: #fff;
}
.footer-cta__chip--accent {
    border: none;
    background: var(--c-gradient);
    color: #fff;
    box-shadow: 0 2px 12px rgba(41,171,226,.2);
}
.footer-cta__chip--accent:hover {
    color: #fff;
    opacity: .95;
    filter: brightness(1.05);
}
.footer-cta__chip svg {
    flex-shrink: 0;
    opacity: .95;
}

/* Footer hero */
.footer-hero {
    text-align: center;
    padding: 4rem 0 2.5rem;
}
.footer-logo-big {
    height: 80px;
    width: auto;
    display: inline-block;
    margin-bottom: 1.25rem;
    object-fit: contain;
    /* Logo lisible sur fond noir : teinte proche de l’accent du site */
    filter: brightness(0) invert(1) sepia(1) saturate(2.2) hue-rotate(165deg) brightness(1.05);
}
.footer-hero p {
    font-size: .9rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

.footer-gradient {
    height: 2px;
    background: var(--c-gradient);
    border-radius: 2px;
    margin-bottom: 3rem;
    opacity: .35;
}

/* Footer grid */
.footer-grid {
    display: grid;
    gap: 2.5rem;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: .8fr .8fr 1.2fr 1.2fr; }
}

.footer-col h4 {
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 1rem;
}
.footer-col__sub {
    margin: 1.15rem 0 0.45rem;
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, 0.32);
}
.footer-col a {
    display: block;
    padding: .25rem 0;
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    transition: all var(--ease);
}
.footer-col a:hover {
    color: #fff;
    padding-left: .25rem;
}

/* Contact items with icons */
.footer-col__item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: .6rem;
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    line-height: 1.5;
}
.footer-col__item svg {
    width: 16px; height: 16px;
    stroke: var(--c-accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: .7;
}
.footer-col__item a {
    display: inline;
    padding: 0;
}
.footer-col__item a:hover { padding-left: 0; }

/* Zone tags */
.footer-zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}
.footer-zone-tags span {
    display: inline-block;
    font-size: .72rem;
    font-weight: 500;
    padding: .3rem .7rem;
    border-radius: var(--r-full);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.45);
    border: 1px solid rgba(255,255,255,.08);
    transition: all var(--ease);
}
.footer-zone-tags span:hover {
    background: rgba(41,171,226,.12);
    border-color: rgba(41,171,226,.3);
    color: var(--c-accent);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 2rem;
}
.footer-bottom p {
    font-size: .75rem;
    color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: #fff; }
.footer-payment {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .72rem;
    color: rgba(255,255,255,.25);
}
.footer-payment img { opacity: .35; transition: opacity var(--ease); }
.footer-payment img:hover { opacity: .7; }
.footer-payment-cb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    padding: 0.15rem 0.4rem;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    opacity: 0.85;
}

/* ====== RESPONSIVE ====== */

/* --- Tablette (max 767px) --- */
@media (max-width: 767px) {
    .wrap { padding: 0 1.25rem; }
    .section { padding: 4.5rem 0; }

    /* Header */
    .header-wrap { height: 70px; }
    .brand__logo { height: 50px; }
    .site-header.is-scrolled .header-wrap { height: 56px; }
    .site-header.is-scrolled .brand__logo { height: 36px; }

    /* Hero */
    .hero .wrap { padding-top: calc(70px + env(safe-area-inset-top, 0px)); }
    .hero-content { padding: 2.5rem 0 3.5rem; }
    .hero-title { margin-bottom: 1rem; }
    .hero-desc { font-size: 1rem; margin-bottom: 2rem; }
    .hero-actions { margin-bottom: 2.5rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-metrics { flex-wrap: wrap; gap: 1.5rem; }
    .hero-metric strong { font-size: 1.4rem; }

    /* Page hero */
    .page-hero { padding: calc(8rem + env(safe-area-inset-top, 0px)) 0 3rem; }

    /* Stats */
    .stats { padding: 3.5rem 0; }
    .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
    .stat-num { font-size: 1.75rem; }

    /* Arguments */
    .arguments-grid { grid-template-columns: 1fr; }

    /* Skills */
    .skills-grid { grid-template-columns: 1fr; }

    /* Local */
    .local-images { min-height: 280px; }
    .local-img--top { width: 65%; }
    .local-img--bottom { width: 50%; }

    /* CTA */
    .cta-banner { padding: 4rem 0; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; }

    /* Footer */
    .footer-cta__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding-top: 1.15rem;
        padding-bottom: 1.15rem;
    }
    .footer-cta__lead {
        max-width: none;
        font-size: .84rem;
    }
    .footer-cta__chips {
        justify-content: center;
    }
    .footer-logo-big { height: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Tarif cards */
    .tarif-cards { grid-template-columns: 1fr; }
    .tarif-extras { grid-template-columns: 1fr; }

    /* Tables */
    .tarif-table { font-size: .82rem; }
    .tarif-table th,
    .tarif-table td { padding: .75rem .8rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }

    /* Booking */
    .booking-wrapper { min-height: 500px; }
    .booking-wrapper iframe { min-height: 500px; }

    /* Article */
    .article {
        padding: 2.25rem 1.25rem 4rem;
        max-width: none;
    }
    .article--editorial {
        border-left: none;
        border-right: none;
        box-shadow: none;
        background: var(--c-bg);
    }
    .article h2 { font-size: 1.22rem; }
    .article-cta { padding: 1.65rem 1.25rem 1.85rem; }
    .article-cta__title { font-size: 1.08rem; }
    .article-meta span:not(:last-child)::after {
        margin: 0 .55rem;
    }

    /* Section titles */
    .section-desc { margin-bottom: 2.5rem; }
    .section-header { margin: 0 auto 2.5rem; }
}

/* --- Mobile petit (max 480px) --- */
@media (max-width: 480px) {
    .wrap { padding: 0 1rem; }
    .section { padding: 3.5rem 0; }

    /* Header */
    .header-wrap { height: 60px; }
    .brand__logo { height: 42px; }
    .site-header.is-scrolled .header-wrap { height: 52px; }
    .site-header.is-scrolled .brand__logo { height: 32px; }

    /* Hero */
    .hero .wrap { padding-top: calc(60px + env(safe-area-inset-top, 0px)); }
    .hero-content { padding: 2rem 0 3rem; }
    .hero-label { font-size: .68rem; margin-bottom: 1.25rem; }
    .hero-desc { font-size: .92rem; }
    .hero-metrics { gap: 1rem; }
    .hero-metric strong { font-size: 1.2rem; }
    .hero-metric span { font-size: .7rem; }

    /* Page hero */
    .page-hero { padding: calc(7rem + env(safe-area-inset-top, 0px)) 0 2.5rem; }

    /* Stats */
    .stat-num { font-size: 1.5rem; }
    .stat-label { font-size: .75rem; }

    /* Process */
    .process-grid { grid-template-columns: 1fr; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 1.5rem; }

    /* Arguments */
    .argument-card { padding: 1.5rem; }
    .argument-card h3 { font-size: .95rem; }
    .argument-card p { font-size: .82rem; }

    /* Local */
    .local-images { min-height: 220px; }
    .local-text p { font-size: .88rem; }

    /* CTA */
    .cta-banner { padding: 3rem 0; }
    .cta-banner .section-desc { font-size: .9rem; }

    /* Footer */
    .footer-cta__chip {
        flex: 1 1 auto;
        min-width: calc(50% - .3rem);
        padding: .65rem .85rem;
        font-size: .78rem;
    }
    .footer-cta__chip--accent {
        flex: 1 1 100%;
        min-width: 100%;
        order: -1;
    }
    .footer-hero { padding: 2.5rem 0 1.5rem; }
    .footer-logo-big { height: 48px; }
    .footer-hero p { font-size: .82rem; }
    .footer-gradient { margin-bottom: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    /* Tarif cards */
    .tarif-card__price { font-size: 2.25rem; }
    .tarif-card__header { padding: 1.5rem 1.5rem 0; }
    .tarif-card__body { padding: 1.25rem 1.5rem; }
    .tarif-card > .btn { margin: 0 1.5rem 1.5rem; width: calc(100% - 3rem); }
    .tarif-extra { padding: 1.5rem; }

    /* Buttons */
    .btn-lg { padding: .85rem 1.5rem; font-size: .88rem; }

    /* Image strip */
    .img-strip img { height: 120px; }

    /* Mobile nav spacing */
    .main-nav.is-open { padding: 1.5rem 1rem; }

    /* Skill items */
    .skill-item { padding: .9rem 1.1rem; font-size: .85rem; }

    /* Section titles tighter */
    .section-title { margin-bottom: .75rem; }
    .section-header .section-desc { font-size: .92rem; }
}

/* ====== CALC MODAL ====== */
.calc-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    -webkit-tap-highlight-color: transparent;
}
.calc-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.calc-modal.is-open .calc-modal__panel {
    transform: translateY(0);
    opacity: 1;
}

.calc-modal__panel {
    background: var(--c-surface);
    border-radius: var(--r);
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
    width: 100%;
    max-width: 540px;
    max-height: min(90vh, 90dvh);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    position: relative;
    transform: translateY(16px);
    opacity: 0;
    transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .35s ease;
    scroll-padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
}

.calc-modal__sheet-handle {
    display: none;
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: var(--c-border);
    margin: 0.65rem auto 0;
    flex-shrink: 0;
}

.calc-modal__close {
    position: absolute;
    top: max(1rem, env(safe-area-inset-top, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--c-warm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ease);
    z-index: 1;
}
.calc-modal__close:hover { background: var(--c-border); }
.calc-modal__close svg {
    width: 18px; height: 18px;
    stroke: var(--c-muted);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.calc-modal__header {
    padding: 2.5rem 2.5rem 0;
    padding-right: 3.5rem;
}
.calc-modal__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-dark);
    letter-spacing: -.03em;
    margin-bottom: .25rem;
}
.calc-modal__subtitle {
    font-size: .92rem;
    color: var(--c-muted);
}
.calc-modal__subtitle strong {
    color: var(--c-dark);
    font-weight: 700;
    font-family: var(--font-display);
}

.calc-modal__body {
    padding: 2rem 2.5rem max(2.5rem, env(safe-area-inset-bottom, 0px));
}

.calc-location {
    margin-bottom: 0.25rem;
}

.calc-location-hint {
    font-size: 0.82rem;
    color: var(--c-muted);
    line-height: 1.5;
    margin: -0.15rem 0 0.85rem;
}

.calc-label {
    display: block;
    font-weight: 600;
    font-size: .85rem;
    color: var(--c-dark);
    margin-bottom: .5rem;
}

.calc-input-row {
    display: flex;
    gap: .75rem;
    margin-bottom: 1rem;
}

.calc-input-row--location {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0;
}

.calc-location-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-calc-geo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font);
    border-radius: var(--r-full);
    cursor: pointer;
    background: var(--c-surface);
    color: var(--c-dark);
    border: 1.5px solid var(--c-border);
    transition: border-color var(--ease), background var(--ease);
    -webkit-tap-highlight-color: transparent;
}

.btn-calc-geo:hover {
    border-color: var(--c-muted);
    background: var(--c-warm);
}

.btn-calc-geo:disabled {
    opacity: 0.65;
    cursor: wait;
}

.btn-calc-submit {
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    -webkit-tap-highlight-color: transparent;
}
.calc-input-wrap {
    flex: 1;
    position: relative;
}
.calc-input-wrap svg {
    position: absolute;
    left: 1rem; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    stroke: var(--c-light);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}
.calc-input-wrap input {
    width: 100%;
    padding: .85rem 1rem .85rem 2.75rem;
    font-family: var(--font);
    font-size: .92rem;
    color: var(--c-text);
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    transition: border-color var(--ease), box-shadow var(--ease);
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}
.calc-input-wrap input:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px var(--c-accent-l);
}
.calc-input-wrap input::placeholder { color: var(--c-light); }

.calc-error {
    font-size: .85rem;
    color: #dc2626;
    display: none;
    margin-bottom: 1rem;
}
.calc-error.is-visible { display: block; }

.calc-result {
    display: none;
}
.calc-result.is-visible {
    display: block;
    animation: calcReveal .4s cubic-bezier(.16,1,.3,1);
}
@keyframes calcReveal {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

.calc-result__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 1.5rem;
}
.calc-result__item {
    background: var(--c-warm);
    border-radius: var(--r-sm);
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.calc-result__item--total {
    grid-column: 1 / -1;
    background: var(--c-dark);
    color: #fff;
}
.calc-result__label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-muted);
}
.calc-result__item--total .calc-result__label {
    color: rgba(255,255,255,.5);
}
.calc-result__value {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-dark);
    letter-spacing: -.02em;
}
.calc-result__value--big {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.03em;
}
.calc-result__item--total .calc-result__value { color: #fff; }

.calc-result .btn {
    margin-bottom: 1rem;
}

/* Carte */
.calc-map-wrap {
    display: none;
    margin-bottom: 1.25rem;
    border-radius: var(--r-sm);
    overflow: hidden;
    border: 1px solid var(--c-border);
}
#calcMap {
    height: clamp(200px, 38vh, 280px);
    min-height: 200px;
    width: 100%;
    background: var(--c-warm);
    touch-action: manipulation;
}
.calc-marker {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .8rem;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
    border: 2px solid #fff;
}
.calc-marker span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.calc-marker--acm {
    background: var(--c-accent);
}
.calc-marker--client {
    background: var(--c-green);
}

.calc-over-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: var(--r-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}
.calc-over-note p {
    font-size: .85rem;
    color: #92400e;
    line-height: 1.6;
    margin: 0;
}

.calc-result__note {
    font-size: .75rem;
    color: var(--c-light);
    text-align: center;
    line-height: 1.5;
}

/* Calc modal responsive */
@media (max-width: 600px) {
    .calc-modal {
        padding: 0;
        align-items: flex-end;
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
    .calc-modal__sheet-handle { display: block; }
    .calc-modal__panel {
        max-width: 100%;
        border-radius: var(--r) var(--r) 0 0;
        max-height: min(96vh, 100dvh - env(safe-area-inset-top, 0px));
        transform: translateY(100%);
    }
    .calc-modal.is-open .calc-modal__panel {
        transform: translateY(0);
    }
    .calc-modal__header {
        padding: 1.25rem 3.25rem 0 1.25rem;
        padding-top: 0.35rem;
    }
    .calc-modal__title { font-size: 1.35rem; }
    .calc-modal__body {
        padding: 1.25rem 1.25rem max(1.5rem, calc(0.75rem + env(safe-area-inset-bottom, 0px)));
    }
    .calc-modal__close {
        top: 0.65rem;
        right: max(0.65rem, env(safe-area-inset-right, 0px));
    }
    /* 16px minimum : évite le zoom automatique iOS au focus */
    .calc-input-wrap input {
        font-size: 1rem;
    }
    .calc-input-row { flex-direction: column; }
    .calc-result__grid { grid-template-columns: 1fr; }
    .calc-result__item--total { grid-column: auto; }
}

@media (min-width: 601px) {
    .calc-location-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .btn-calc-geo {
        width: auto;
        flex: 0 0 auto;
        min-width: 10rem;
    }
    .btn-calc-submit {
        flex: 1;
        min-width: 12rem;
        width: auto;
    }
}

/* ====== ANIMATIONS ====== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }
.reveal:nth-child(5) { transition-delay: .24s; }
.reveal:nth-child(6) { transition-delay: .30s; }
