/* ==========================================================================
   VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
    --primary:        #10173C;
    --primary-light:  #1c2759;
    --white:          #FFFFFF;
    --bg:             #F4F6F9;
    --text:           #2D3748;
    --text-muted:     #718096;
    --border:         rgba(0,0,0,0.07);

    --font-h: 'Playfair Display', serif;
    --font-b: 'Inter', sans-serif;

    --r:    20px;
    --r-sm: 10px;

    --s1: 0 4px 12px rgba(16,23,60,.06);
    --s2: 0 10px 30px rgba(16,23,60,.09);
    --s3: 0 20px 50px rgba(16,23,60,.13);
    --s-h: 0 12px 28px rgba(0,0,0,.16);

    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --t:    0.45s var(--ease);
    --tf:   0.25s ease;

    /* Espacements adaptatifs */
    --sp-xs: clamp(0.5rem,  1.5vw, 1rem);
    --sp-sm: clamp(1rem,    3vw,   2rem);
    --sp-md: clamp(2rem,    5vw,   4rem);
    --sp-lg: clamp(3rem,    7vw,   7rem);
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-b);
    color: var(--text);
    background: var(--white);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a   { text-decoration: none; color: inherit; }

/* ==========================================================================
   UTILITAIRES
   ========================================================================== */
.svg-defs    { display: none; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 480px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1200px) { .container { padding: 0 2.5rem; } }

.icon       { width: 20px; height: 20px; flex-shrink: 0; }
.icon-small { width: 16px; height: 16px; flex-shrink: 0; }
.icon-list  { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   TYPOGRAPHIE
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-h);
    color: var(--primary);
    line-height: 1.2;
    font-weight: 600;
}

.page-title    { font-size: clamp(1.8rem, 5vw, 3rem); }
.section-title { font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 1.25rem; }

.text-body {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-muted);
    margin-bottom: 1.4rem;
}

.text-highlight {
    font-family: var(--font-h);
    font-style: italic;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: var(--primary);
    border-left: 3px solid var(--primary);
    padding-left: 1.2rem;
    margin: 1.5rem 0;
    line-height: 1.65;
}

.list-title {
    font-family: var(--font-b);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin: 2rem 0 1rem;
}

/* ==========================================================================
   BADGES, VIGNETTES
   ========================================================================== */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(16,23,60,.07);
    color: var(--primary);
    font-family: var(--font-b);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.badge-light {
    background: rgba(255,255,255,.18);
    color: var(--white);
    backdrop-filter: blur(6px);
}

.vignette {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    opacity: 0.55;
    margin-bottom: 0.6rem;
}
.vignette::before { content: "— "; }

/* ==========================================================================
   BOUTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.85rem 1.6rem;
    border-radius: 50px;
    font-family: var(--font-b);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform var(--tf), box-shadow var(--tf), background var(--tf), color var(--tf);
    width: 100%;
}

@media (min-width: 480px) {
    .btn { width: auto; padding: 1rem 2.2rem; font-size: 0.95rem; }
}

.btn-primary { background: var(--primary); color: var(--white); box-shadow: var(--s1); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-3px); box-shadow: var(--s-h); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); box-shadow: var(--s-h); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--primary);
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,.18);
}

.navbar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
}

@media (min-width: 768px) {
    .navbar-inner { flex-direction: row; justify-content: space-between; padding: 1.1rem 2rem; gap: 1rem; }
}

.logo { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 2px; flex-shrink: 0; }
@media (min-width: 768px) { .logo { align-items: flex-start; } }

.logo-title    { font-family: var(--font-h); font-size: 1.4rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.logo-subtitle { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.55); }
@media (min-width: 768px) { .logo-title { font-size: 1.5rem; } }

.nav-menu { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 0.9rem; align-items: center; }
@media (min-width: 768px)  { .nav-menu { gap: 1rem; flex-wrap: nowrap; } }
@media (min-width: 1024px) { .nav-menu { gap: 1.5rem; } }

.nav-link {
    color: rgba(255,255,255,.8);
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: color var(--tf), border-color var(--tf);
    white-space: nowrap;
}
@media (min-width: 768px)  { .nav-link { font-size: 0.82rem; } }
@media (min-width: 1024px) { .nav-link { font-size: 0.88rem; } }
.nav-link:hover, .nav-link--active { color: var(--white); border-bottom-color: var(--white); }

/* ==========================================================================
   STRUCTURE PAGES
   ========================================================================== */
.page-wrapper { min-height: 100vh; border-bottom: 3px solid var(--border); display: flex; flex-direction: column; }
.page-bg { background: var(--bg); }

.page-header { padding: var(--sp-md) 0 var(--sp-sm); background: var(--white); border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .page-header { padding: var(--sp-lg) 0 var(--sp-md); } }

.page-header-dark { background: var(--primary); border-bottom: none; }
.page-header-dark .page-title { color: var(--white); }
.page-header-dark .badge      { background: rgba(255,255,255,.12); color: var(--white); }

.section     { padding: var(--sp-sm) 0; }
.section-bg  { background: var(--bg); }
.section-no-top { padding-top: 0; }
@media (min-width: 768px)  { .section { padding: var(--sp-md) 0; } }
@media (min-width: 1024px) { .section { padding: var(--sp-lg) 0; } }

/* ==========================================================================
   HERO 
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 520px;
    padding: 6rem 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 2rem; /* Espace entre le contenu et les avis sur mobile/tablette */
}

@media (min-width: 768px) {
    .hero-section {
        padding: 4rem 0;
        min-height: calc(100vh - 62px);
    }
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 10s ease-out;
    filter: brightness(0.75);
}
@media (min-width: 768px) { .hero-bg img { filter: brightness(0.85); } }
.hero-section:hover .hero-bg img { transform: scale(1.02); }

.overlay-dark {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(16,23,60,.95) 0%, rgba(16,23,60,.6) 60%, rgba(16,23,60,.25) 100%);
}
@media (min-width: 768px) {
    .overlay-dark { background: linear-gradient(100deg, rgba(16,23,60,.92) 0%, rgba(16,23,60,.5) 60%, rgba(16,23,60,.2) 100%); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    width: 100%;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2rem, 7vw, 5rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) { .hero-title { margin-bottom: 1.5rem; } }
.hero-title i { font-style: italic; font-weight: 400; }

.hero-text {
    color: rgba(255,255,255,.88);
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    max-width: 540px;
}
@media (min-width: 768px) { .hero-text { margin-bottom: 3rem; } }

/* ==========================================================================
   AVIS GOOGLE (HERO)
   ========================================================================== */
.hero-reviews {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 400px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-align: center; /* Centré sur mobile/tablette */
}

/* Sur Ordinateur : Positionné en bas à droite */
@media (min-width: 1024px) {
    .hero-reviews {
        position: absolute;
        bottom: 2.5rem;
        right: 2rem;
        width: 300px;
        text-align: left;
    }
}

.hero-reviews-header {
    display: flex;
    align-items: center;
    justify-content: center; /* Centré sur mobile */
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

@media (min-width: 1024px) {
    .hero-reviews-header { justify-content: flex-start; }
}

.reviews-google-icon { width: 28px; height: 28px; flex-shrink: 0; }
.reviews-meta        { display: flex; flex-direction: column; gap: 1px; text-align: left; }
.reviews-score       { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--white); line-height: 1; }
.reviews-stars       { font-size: 0.8rem; color: #FBBC05; letter-spacing: 1px; }
.reviews-count       { font-size: 0.68rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1.5px; }

.reviews-slider      { position: relative; min-height: 80px; }
.review-item         { display: none; animation: reviewFadeIn 0.5s ease; }
.review-item.active  { display: block; }

@keyframes reviewFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.review-text   { font-size: 0.82rem; color: rgba(255,255,255,.88); line-height: 1.6; font-style: italic; margin-bottom: 0.5rem; }
.review-author { font-size: 0.72rem; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.reviews-dots  { display: flex; gap: 6px; justify-content: center; margin-top: 1rem; }
@media (min-width: 1024px) { .reviews-dots { justify-content: flex-start; } }

.reviews-dot   { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: background 0.3s ease, transform 0.3s ease; }
.reviews-dot.active { background: var(--white); transform: scale(1.4); }

/* ==========================================================================
   SPLIT LAYOUT
   ========================================================================== */
.split-layout { display: flex; flex-direction: column; gap: var(--sp-sm); align-items: stretch; }
@media (min-width: 992px) {
    .split-layout         { flex-direction: row; gap: var(--sp-md); align-items: flex-start; }
    .split-layout.reverse { flex-direction: row-reverse; }
    .split-image, .split-text { flex: 1; }
}

.split-image { overflow: hidden; border-radius: var(--r); }
.split-image:hover .radius-img { transform: scale(1.03); }

.radius-img {
    border-radius: var(--r); box-shadow: var(--s2); width: 100%; height: 240px;
    object-fit: cover; transition: transform var(--t);
}
@media (min-width: 480px)  { .radius-img { height: 300px; } }
@media (min-width: 768px)  { .radius-img { height: 380px; } }
@media (min-width: 992px)  { .radius-img { height: 440px; } }
@media (min-width: 1200px) { .radius-img { height: 500px; } }

/* ==========================================================================
   LISTES
   ========================================================================== */
.list-pro { list-style: none; margin-bottom: var(--sp-sm); }
.list-pro li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1rem; font-size: clamp(0.95rem, 2vw, 1.05rem); color: var(--text-muted); line-height: 1.6; }

.dot { display: inline-block; width: 7px; height: 7px; min-width: 7px; background: var(--primary); border-radius: 50%; margin-top: 9px; flex-shrink: 0; opacity: 0.45; }

.action-text { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--primary); font-size: 0.95rem; margin-top: var(--sp-sm); padding-top: var(--sp-sm); border-top: 1px solid var(--border); transition: gap var(--tf); }
.action-text:hover { gap: 16px; }

/* LISTE PREMIUM */
.list-premium { list-style: none; margin: 1.5rem 0 2rem; }
.list-premium li { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); transition: background var(--tf); }
@media (min-width: 480px) { .list-premium li { gap: 1.5rem; padding: 1.2rem 0; } }
.list-premium li:first-child { border-top: 1px solid var(--border); }

.list-num { font-family: var(--font-h); font-size: 0.85rem; font-weight: 700; color: var(--primary); opacity: 0.25; flex-shrink: 0; width: 24px; padding-top: 2px; }
@media (min-width: 480px) { .list-num { width: 28px; } }

.list-content { font-size: clamp(0.95rem, 2vw, 1.05rem); color: var(--text-muted); line-height: 1.65; }
.list-premium .icon-list { flex-shrink: 0; margin-top: 3px; color: var(--primary); }

/* ==========================================================================
   GRILLE DOMAINES & GALERIE
   ========================================================================== */
.domains-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: var(--sp-sm); }
@media (min-width: 480px)  { .domains-grid { gap: 1.25rem; } }
@media (min-width: 768px)  { .domains-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .domains-grid { grid-template-columns: repeat(5, 1fr); } }

.domain-item { background: var(--white); border-radius: var(--r); padding: 1.25rem 1rem; box-shadow: var(--s1); border: 1px solid var(--border); transition: transform var(--t), box-shadow var(--t); }
@media (min-width: 768px) { .domain-item { padding: 2rem 1.5rem; } }
.domain-item:hover { transform: translateY(-8px); box-shadow: var(--s3); }
.domain-icon  { font-size: 1.6rem; display: block; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .domain-icon { font-size: 2rem; margin-bottom: 1rem; } }
.domain-title { font-family: var(--font-h); font-size: clamp(0.95rem, 2vw, 1.1rem); color: var(--primary); margin-bottom: 0.5rem; }
.domain-text  { font-size: 0.88rem; color: var(--text-muted); }
@media (min-width: 768px) { .domain-text { font-size: 0.95rem; } }

.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: var(--sp-sm); }
@media (min-width: 480px)  { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
@media (min-width: 768px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.gallery-img { height: 200px; object-fit: cover; width: 100%; border-radius: var(--r); box-shadow: var(--s1); transition: transform var(--t), box-shadow var(--t); }
@media (min-width: 480px)  { .gallery-img { height: 220px; } }
@media (min-width: 768px)  { .gallery-img { height: 250px; } }
@media (min-width: 1024px) { .gallery-img { height: 280px; } }
.gallery-img:hover { transform: translateY(-8px); box-shadow: var(--s3); }

/* ==========================================================================
   COMPOSANTS DIVERS
   ========================================================================== */
.sticky-image-wrap { position: relative; }
@media (min-width: 992px) { .split-layout { align-items: flex-start; } }

.photo-band { position: relative; height: 280px; overflow: hidden; }
@media (min-width: 480px)  { .photo-band { height: 340px; } }
@media (min-width: 768px)  { .photo-band { height: 420px; } }
@media (min-width: 1024px) { .photo-band { height: 480px; } }
.photo-band-img { width: 100%; height: 115%; object-fit: cover; transform: scale(1.08); transition: transform 12s ease-out; filter: brightness(0.55); }
.photo-band:hover .photo-band-img { transform: scale(1); }
.photo-band-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; gap: 1.5rem; background: rgba(16,23,60,.3); padding: 0 1.25rem; }
@media (min-width: 768px) { .photo-band-overlay { gap: 2rem; padding: 0; } }
.photo-band-overlay .container { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .photo-band-overlay .container { gap: 2rem; } }
.photo-band-quote { font-family: var(--font-h); font-size: clamp(1.1rem, 3vw, 2.2rem); color: var(--white); max-width: 780px; line-height: 1.4; margin: 0; }
.photo-band-quote i { font-style: italic; font-weight: 400; }

.page-intro { font-size: clamp(0.95rem, 2vw, 1.1rem); color: var(--text-muted); margin-top: 0.75rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.text-white-muted { color: rgba(255,255,255,.65) !important; }

/* ==========================================================================
   FORMULAIRE CONTACT
   ========================================================================== */
.contact-form { max-width: 860px; margin: var(--sp-sm) auto 0; background: var(--white); border-radius: var(--r); padding: 1.5rem; box-shadow: var(--s2); }
@media (min-width: 480px)  { .contact-form { padding: 2rem; } }
@media (min-width: 768px)  { .contact-form { padding: 3rem; } }
@media (min-width: 1024px) { .contact-form { padding: 4rem; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text); }
.form-input { padding: 0.9rem 1rem; border: 1px solid rgba(0,0,0,.12); border-radius: var(--r-sm); font-family: var(--font-b); font-size: 1rem; color: var(--text); background: var(--bg); transition: border-color var(--tf), box-shadow var(--tf), background var(--tf); outline: none; appearance: none; -webkit-appearance: none; width: 100%; }
@media (min-width: 768px) { .form-input { padding: 1rem 1.2rem; } }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(16,23,60,.09); background: var(--white); }
.form-textarea { resize: vertical; min-height: 130px; }
@media (min-width: 768px) { .form-textarea { min-height: 150px; } }
.form-submit { text-align: center; margin-top: var(--sp-sm); }
.form-success { display: none; text-align: center; padding: var(--sp-sm); background: rgba(16,23,60,.04); border-radius: var(--r); border: 1px solid rgba(16,23,60,.1); margin-top: var(--sp-sm); font-family: var(--font-h); font-style: italic; font-size: clamp(1rem, 2.5vw, 1.3rem); color: var(--primary); }

/* ==========================================================================
   FOOTER (Avis & Colonnes)
   ========================================================================== */
.footer { background: var(--primary); padding: var(--sp-md) 0 0; margin-top: auto; }

.footer-inner {
    display: grid;
    grid-template-columns: 1fr; /* Mobile : 1 colonne */
    gap: var(--sp-sm);
    padding-bottom: var(--sp-sm);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

@media (min-width: 768px) {
    .footer-inner { grid-template-columns: repeat(2, 1fr); } /* Tablette : 2 colonnes */
}
@media (min-width: 1024px) {
    .footer-inner { grid-template-columns: repeat(5, 1fr); } /* Ordinateur : 5 colonnes */
}

.footer-brand   { font-family: var(--font-h); font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1; }
@media (min-width: 768px) { .footer-brand { font-size: 1.8rem; } }
.footer-tagline { color: rgba(255,255,255,.5); font-size: 0.82rem; margin-top: 0.5rem; }
.footer-heading { color: var(--white); font-family: var(--font-b); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 1rem; }
.footer-list { list-style: none; }
.footer-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.65); font-size: 0.9rem; margin-bottom: 0.65rem; line-height: 1.5; }
.footer-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; opacity: 0.5; }
.footer-link { color: rgba(255,255,255,.65); transition: color var(--tf); }
.footer-link:hover { color: var(--white); }
.footer-bottom { padding: 1.25rem 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,.35); }

/* Avis Google dans le Footer */
.footer-reviews { margin-top: 0.25rem; }
.footer-reviews-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-reviews-slider  { position: relative; min-height: 70px; }
.footer-review-item     { display: none; animation: reviewFadeIn 0.5s ease; }
.footer-review-item.active { display: block; }
.footer-review-text     { font-size: 0.78rem; color: rgba(255,255,255,.75); line-height: 1.6; font-style: italic; margin-bottom: 0.4rem; }
.footer-review-author   { font-size: 0.68rem; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.footer-reviews-dots    { display: flex; gap: 5px; margin-top: 0.75rem; }

/* ==========================================================================
   ANIMATIONS & LEGAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .btn, .domain-item, .gallery-img, .radius-img { transition: none; } }

.legal-content { max-width: 820px; margin: 0 auto; }
.legal-title { font-family: var(--font-h); font-size: clamp(1.05rem, 2.5vw, 1.25rem); font-weight: 600; color: var(--primary); margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .legal-title { margin-top: 2.5rem; } }
.legal-list { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.legal-list li { padding: 0.45rem 0 0.45rem 1rem; border-left: 2px solid var(--primary); margin-bottom: 0.5rem; font-size: clamp(0.88rem, 2vw, 0.97rem); color: var(--text-muted); line-height: 1.6; }
@media (min-width: 768px) { .legal-list li { padding-left: 1.2rem; } }
