/* ============================================================
   YLOS – Expert Comptable | Premium Theme
   ============================================================ */

:root {
    --deep-plum: #2D1B3D;
    --rich-mauve: #5C3D7A;
    --soft-mauve: #8B6AAE;
    --light-lavender: #C9B8DB;
    --pale-lavender: #F0EAF5;
    --cream: #FAF8FC;
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #A88A2E;
    --text-dark: #1A1225;
    --text-body: #3D2E4F;
    --text-muted: #7A6B8A;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 24px rgba(45, 27, 61, 0.08);
    --shadow-medium: 0 8px 40px rgba(45, 27, 61, 0.12);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-body);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============ UTILITY ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem; display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 600;
    color: var(--deep-plum); line-height: 1.2; margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.05rem; color: var(--text-muted);
    max-width: 600px; line-height: 1.8;
}

.gold-line {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 1.5rem 0;
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250, 248, 252, 0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 184, 219, 0.2);
    transition: all 0.4s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-soft); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.navbar-logo img { height: 45px; width: auto; }
.navbar-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.navbar-menu a {
    text-decoration: none; font-size: 0.9rem; font-weight: 500;
    color: var(--text-body); letter-spacing: 0.5px;
    transition: color 0.3s ease; position: relative;
}
.navbar-menu a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s ease;
}
.navbar-menu a:hover { color: var(--deep-plum); }
.navbar-menu a:hover::after { width: 100%; }
.navbar-cta {
    background: var(--deep-plum); color: var(--white) !important;
    padding: 0.6rem 1.5rem; border-radius: 4px;
    font-weight: 600; letter-spacing: 0.5px; transition: all 0.3s ease !important;
}
.navbar-cta::after { display: none !important; }
.navbar-cta:hover { background: var(--rich-mauve) !important; transform: translateY(-1px); box-shadow: var(--shadow-medium); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--deep-plum); transition: all 0.3s ease; }

/* ============ HERO ============ */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--pale-lavender) 50%, rgba(201, 184, 219, 0.3) 100%);
}
.hero::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: ''; position: absolute; bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(92, 61, 122, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; max-width: 750px; padding: 8rem 0 4rem; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--white); border: 1px solid var(--light-lavender);
    padding: 0.5rem 1.2rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 500; color: var(--rich-mauve);
    margin-bottom: 2rem; box-shadow: var(--shadow-soft);
    animation: fadeInUp 0.8s ease both;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 600;
    color: var(--deep-plum); line-height: 1.15; margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.15s both;
}
.hero h1 em { font-style: italic; color: var(--rich-mauve); }
.hero-description {
    font-size: 1.15rem; color: var(--text-muted); line-height: 1.9;
    margin-bottom: 2.5rem; max-width: 580px;
    animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.45s both; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--deep-plum); color: var(--white);
    padding: 1rem 2rem; border-radius: 4px; text-decoration: none;
    font-weight: 600; font-size: 0.95rem; letter-spacing: 0.3px;
    transition: all 0.3s ease; border: 2px solid var(--deep-plum);
}
.btn-primary:hover { background: var(--rich-mauve); border-color: var(--rich-mauve); transform: translateY(-2px); box-shadow: var(--shadow-medium); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--deep-plum);
    padding: 1rem 2rem; border-radius: 4px; text-decoration: none;
    font-weight: 600; font-size: 0.95rem; letter-spacing: 0.3px;
    border: 2px solid var(--light-lavender); transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); }

.hero-decoration { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 380px; height: 480px; z-index: 1; }
.hero-decoration .deco-box { position: absolute; border-radius: 8px; animation: float 6s ease-in-out infinite; }
.deco-box-1 { width: 280px; height: 350px; background: linear-gradient(135deg, var(--rich-mauve), var(--deep-plum)); top: 40px; right: 0; opacity: 0.12; animation-delay: 0s !important; }
.deco-box-2 { width: 200px; height: 250px; border: 2px solid var(--gold); top: 100px; right: 80px; opacity: 0.3; animation-delay: -2s !important; }
.deco-box-3 { width: 120px; height: 120px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); bottom: 0; right: 40px; opacity: 0.15; animation-delay: -4s !important; }

/* ============ TRUST BAR ============ */
.trust-bar {
    background: var(--white);
    border-top: 1px solid rgba(201, 184, 219, 0.15);
    border-bottom: 1px solid rgba(201, 184, 219, 0.15);
    padding: 2.5rem 0;
}
.trust-items { display: flex; justify-content: center; align-items: center; gap: 4rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.trust-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--pale-lavender); display: flex;
    align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}

/* ============ SERVICES ============ */
.services { padding: 7rem 0; }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.service-card {
    background: var(--white); border-radius: 8px; padding: 2.5rem;
    border: 1px solid rgba(201, 184, 219, 0.2);
    transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: linear-gradient(135deg, var(--pale-lavender), rgba(201, 184, 219, 0.3));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.5rem;
}
.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600; color: var(--deep-plum); margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ============ ABOUT ============ */
.about { padding: 7rem 0; background: var(--white); position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; height: 450px; }
.about-visual .visual-block { position: absolute; border-radius: 8px; }
.visual-main {
    width: 85%; height: 350px;
    background: linear-gradient(145deg, var(--deep-plum), var(--rich-mauve));
    top: 0; left: 0; display: flex; align-items: center; justify-content: center;
}
.visual-main-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 700;
    color: rgba(255, 255, 255, 0.12); text-align: center; line-height: 1.2;
}
.visual-accent {
    width: 200px; height: 160px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    bottom: 0; right: 0; display: flex;
    align-items: center; justify-content: center;
    box-shadow: var(--shadow-gold);
}
.visual-accent-content { text-align: center; color: var(--white); }
.visual-accent-content .number { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.visual-accent-content .label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; }

.about-content .values-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.value-item { display: flex; align-items: flex-start; gap: 1rem; }
.value-marker {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--pale-lavender); display: flex;
    align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.value-marker svg { width: 14px; height: 14px; stroke: var(--rich-mauve); }
.value-item p { font-size: 0.95rem; color: var(--text-body); }
.value-item strong { color: var(--deep-plum); }

/* ============ OFFERS ============ */
.offers { padding: 7rem 0; background: linear-gradient(180deg, var(--cream) 0%, var(--pale-lavender) 100%); }
.offers-header { text-align: center; margin-bottom: 4rem; }
.offers-header .section-subtitle { margin: 0 auto; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.offer-card {
    background: var(--white); border-radius: 8px; padding: 2.5rem;
    border: 1px solid rgba(201, 184, 219, 0.2);
    transition: all 0.4s ease; display: flex; flex-direction: column; position: relative;
}
.offer-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.offer-card.featured .offer-badge { display: block; }
.offer-badge {
    display: none; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--white); font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    padding: 0.35rem 1.2rem; border-radius: 50px; white-space: nowrap;
}
.offer-icon { font-size: 1.8rem; margin-bottom: 1.25rem; }
.offer-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 600; color: var(--deep-plum); margin-bottom: 0.5rem;
}
.offer-duration { font-size: 0.8rem; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; }
.offer-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem; flex-grow: 1; }
.offer-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.offer-features li { font-size: 0.88rem; color: var(--text-body); display: flex; align-items: center; gap: 0.6rem; }
.offer-features li::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

.btn-offer {
    display: block; text-align: center; padding: 0.85rem; border-radius: 4px;
    text-decoration: none; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.3px;
    transition: all 0.3s ease; border: 2px solid var(--light-lavender); color: var(--deep-plum); background: transparent;
}
.btn-offer:hover { border-color: var(--deep-plum); background: var(--deep-plum); color: var(--white); }
.offer-card.featured .btn-offer { background: var(--deep-plum); border-color: var(--deep-plum); color: var(--white); }
.offer-card.featured .btn-offer:hover { background: var(--rich-mauve); border-color: var(--rich-mauve); }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 7rem 0; background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.testimonial-card { background: var(--cream); border-radius: 8px; padding: 2rem; position: relative; }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-style: italic; color: var(--text-body); line-height: 1.7; margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--soft-mauve), var(--light-lavender));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-weight: 700; color: var(--white); font-size: 1rem;
}
.author-info .name { font-weight: 600; color: var(--deep-plum); font-size: 0.9rem; }
.author-info .role { font-size: 0.78rem; color: var(--text-muted); }

/* ============ FAQ ============ */
.faq { padding: 7rem 0; background: var(--cream); }
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header .section-subtitle { margin: 0 auto; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
    background: var(--white); border-radius: 8px;
    border: 1px solid rgba(201, 184, 219, 0.15);
    overflow: hidden; transition: all 0.3s ease;
}
.faq-item:hover { border-color: rgba(201, 184, 219, 0.4); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem; cursor: pointer; user-select: none;
    background: none; border: none; width: 100%; text-align: left;
    font-family: 'Nunito Sans', sans-serif;
}
.faq-question h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--deep-plum); }
.faq-toggle {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--pale-lavender); display: flex;
    align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease;
}
.faq-toggle svg { width: 12px; height: 12px; stroke: var(--rich-mauve); transition: transform 0.3s ease; }
.faq-item.active .faq-toggle { background: var(--deep-plum); }
.faq-item.active .faq-toggle svg { stroke: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ============ BLOG ============ */
.blog { padding: 7rem 0; background: var(--white); }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.blog-card {
    border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(201, 184, 219, 0.15);
    transition: all 0.3s ease; background: var(--cream);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.blog-card-image {
    height: 180px; background: linear-gradient(135deg, var(--deep-plum), var(--rich-mauve));
    display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.blog-card-image span { font-size: 2.5rem; }
.blog-card-body { padding: 1.5rem; }
.blog-date { font-size: 0.75rem; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.blog-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600; color: var(--deep-plum); line-height: 1.3; margin-bottom: 0.75rem;
}
.blog-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.blog-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 1rem; font-size: 0.85rem; font-weight: 600;
    color: var(--rich-mauve); text-decoration: none; transition: color 0.3s ease;
}
.blog-link:hover { color: var(--gold-dark); }

/* Blog list page */
.blog-page { padding: 8rem 0 5rem; }
.blog-page-header { text-align: center; margin-bottom: 4rem; }
.blog-page-header .section-subtitle { margin: 0 auto; }

/* ============ CONTACT ============ */
.contact { padding: 7rem 0; background: linear-gradient(180deg, var(--pale-lavender) 0%, var(--cream) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--white); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; box-shadow: var(--shadow-soft);
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--rich-mauve); }
.contact-detail h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--deep-plum); margin-bottom: 0.2rem; }
.contact-detail p, .contact-detail a { font-size: 0.9rem; color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
.contact-detail a:hover { color: var(--gold-dark); }

.contact-form { background: var(--white); border-radius: 8px; padding: 2.5rem; box-shadow: var(--shadow-soft); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--deep-plum); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.75rem 1rem;
    border: 1.5px solid rgba(201, 184, 219, 0.3); border-radius: 4px;
    font-family: 'Nunito Sans', sans-serif; font-size: 0.9rem;
    color: var(--text-body); background: var(--cream);
    transition: border-color 0.3s ease; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--rich-mauve); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
    width: 100%; padding: 1rem; background: var(--deep-plum); color: var(--white);
    border: none; border-radius: 4px; font-family: 'Nunito Sans', sans-serif;
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    transition: all 0.3s ease; letter-spacing: 0.3px;
}
.btn-submit:hover { background: var(--rich-mauve); transform: translateY(-1px); box-shadow: var(--shadow-medium); }

/* ============ MAP ============ */
.map-section { height: 350px; background: var(--deep-plum); position: relative; overflow: hidden; }
.map-section iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.6) brightness(0.9) contrast(1.1); }

/* ============ FOOTER ============ */
.footer { background: var(--deep-plum); color: rgba(255, 255, 255, 0.7); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255, 255, 255, 0.5); max-width: 280px; }
.footer h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.35); }
.footer-bottom a { color: rgba(255, 255, 255, 0.35); text-decoration: none; transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ============ ARTICLE / SINGLE PAGE ============ */
.article-page { padding: 7rem 0 4rem; }
.article-header { max-width: 800px; margin: 0 auto 3rem; }
.article-back {
    display: inline-block; font-size: 0.85rem; color: var(--rich-mauve);
    text-decoration: none; margin-bottom: 2rem; font-weight: 500;
    transition: color 0.3s ease;
}
.article-back:hover { color: var(--gold-dark); }
.article-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; }
.article-date { font-size: 0.8rem; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.article-category {
    font-size: 0.75rem; background: var(--pale-lavender); color: var(--rich-mauve);
    padding: 0.2rem 0.8rem; border-radius: 50px; font-weight: 600;
}
.article-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600;
    color: var(--deep-plum); line-height: 1.2;
}
.article-excerpt { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-top: 1rem; }

.article-content {
    max-width: 800px; margin: 0 auto;
    font-size: 1.02rem; line-height: 1.9; color: var(--text-body);
}
.article-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 600; color: var(--deep-plum);
    margin: 2.5rem 0 1rem;
}
.article-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600; color: var(--deep-plum);
    margin: 2rem 0 0.75rem;
}
.article-content p { margin-bottom: 1.25rem; }
.article-content ul, .article-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.article-content li { margin-bottom: 0.4rem; }
.article-content a { color: var(--rich-mauve); text-decoration: underline; text-underline-offset: 2px; }
.article-content a:hover { color: var(--gold-dark); }
.article-content blockquote {
    border-left: 3px solid var(--gold); padding: 1rem 1.5rem;
    margin: 1.5rem 0; background: var(--pale-lavender); border-radius: 0 8px 8px 0;
    font-style: italic; color: var(--text-body);
}
.article-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.5rem 0; }
.article-content code {
    background: var(--pale-lavender); padding: 0.15rem 0.4rem;
    border-radius: 3px; font-size: 0.9em;
}

.article-footer {
    max-width: 800px; margin: 3rem auto 0;
    font-size: 0.95rem; color: var(--text-muted);
}
.article-footer a { color: var(--rich-mauve); text-decoration: none; font-weight: 600; }
.article-footer a:hover { color: var(--gold-dark); }

/* Legal pages */
.legal-page .article-header { margin-bottom: 2rem; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination a, .pagination span {
    padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.9rem;
    text-decoration: none; color: var(--text-body); border: 1px solid var(--light-lavender);
    transition: all 0.3s ease;
}
.pagination a:hover { background: var(--deep-plum); color: var(--white); border-color: var(--deep-plum); }
.pagination .active { background: var(--deep-plum); color: var(--white); border-color: var(--deep-plum); }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-decoration { display: none; }
    .services-grid, .offers-grid, .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none; position: absolute; top: 80px; left: 0; right: 0;
        background: var(--white); flex-direction: column;
        padding: 1.5rem 2rem; gap: 1rem;
        border-bottom: 1px solid rgba(201, 184, 219, 0.2);
        box-shadow: var(--shadow-medium);
    }
    .navbar-menu.open { display: flex; }
    .menu-toggle { display: flex; }
    .hero-content { padding: 7rem 0 3rem; }
    .hero h1 { font-size: 2.2rem; }
    .trust-items { gap: 2rem; }
    .services-grid, .offers-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { height: 300px; }
    .blog-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
