/*
 * PROJECT: topbonaire
 * DOMAIN: topbonaire.com
 * GAME: Tennis Dash
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Французская элегантность (Cream #fdf6ec, Bordeaux #722f37, accents)
 * - Effect: Gradient Mesh
 * - Fonts: Libre Baskerville (heading) + Raleway (body)
 * - Buttons: Gradient
 *
 * Created: 2025
 */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─── */
:root {
    --cream: #fdf6ec;
    --bordeaux: #722f37;
    --bordeaux-dark: #4e1f25;
    --bordeaux-light: #9b4452;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --warm-white: #fffdf8;
    --soft-gray: #f0e8dc;
    --text-dark: #2a1a1c;
    --text-mid: #5a3a3f;
    --text-light: #8a6a6f;
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Raleway', sans-serif;
    --shadow-soft: 0 4px 24px rgba(114,47,55,0.10);
    --shadow-mid: 0 8px 40px rgba(114,47,55,0.16);
    --radius: 10px;
    --radius-lg: 18px;
    --header-height: 70px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; max-width: 100%; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden !important; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden !important;
}
img { max-width: 100%; display: block; }
a { color: var(--bordeaux); text-decoration: none; transition: color .2s; }
a:hover { color: var(--bordeaux-light); }
ul { list-style: none; }

/* ─── MANDATORY RULES ─── */
.article-card, .offer-card, .card { position: relative; }
.article-card__overlay { position: absolute; inset: 0; z-index: 1; }
.stars { color: #ffc107; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--bordeaux-dark);
    line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }

/* ─── Utility ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--soft-gray); }
.text-center { text-align: center; }
.section__header { margin-bottom: 3rem; }
.section__header h2 { margin-bottom: .75rem; }
.section__header p { color: var(--text-mid); max-width: 600px; margin: 0 auto; }
.divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--bordeaux), var(--gold));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ─── Buttons ─── */
.btn {
    display: inline-block;
    padding: .85rem 2.2rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .04em;
    cursor: pointer;
    border: none;
    transition: all .25s;
    text-transform: uppercase;
}
.btn--primary {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(114,47,55,.30);
}
.btn--primary:hover {
    background: linear-gradient(135deg, var(--bordeaux-dark) 0%, var(--bordeaux) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(114,47,55,.40);
}
.btn--secondary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bordeaux-dark);
    box-shadow: 0 4px 18px rgba(201,168,76,.25);
}
.btn--secondary:hover {
    background: linear-gradient(135deg, #b8923b 0%, var(--gold) 100%);
    color: var(--bordeaux-dark);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    border: 2px solid var(--bordeaux);
    color: var(--bordeaux);
}
.btn--outline:hover {
    background: var(--bordeaux);
    color: #fff;
}
.btn-play {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 60%, var(--gold) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius);
    box-shadow: 0 6px 28px rgba(114,47,55,.35);
    transition: all .3s;
    letter-spacing: .03em;
}
.btn-play:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 36px rgba(114,47,55,.45);
}
.btn-read {
    display: inline-block;
    padding: .55rem 1.4rem;
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 100%);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .85rem;
    border-radius: var(--radius);
    transition: all .25s;
    letter-spacing: .03em;
    margin-top: .75rem;
    z-index: 2;
    position: relative;
}
.btn-read:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(114,47,55,.30);
}

/* ─── HEADER / NAV ─── */
.site-header {
    background: var(--warm-white);
    border-bottom: 2px solid var(--bordeaux);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    height: var(--header-height);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    max-width: 1160px;
    margin: 0 auto;
    height: 100%;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--bordeaux-dark);
    letter-spacing: .01em;
    text-decoration: none;
    transition: color .2s;
}
.logo span {
    color: var(--gold);
}
.logo:hover { color: var(--bordeaux-light); }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav__list { display: flex; align-items: center; gap: 1.6rem; }
.site-nav__link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-mid);
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: .3rem 0;
    border-bottom: 2px solid transparent;
    transition: all .2s;
}
.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--bordeaux);
    border-bottom-color: var(--gold);
}
.nav-cta { margin-left: .5rem; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .3rem;
}
.nav-toggle__line {
    display: block;
    width: 26px; height: 2px;
    background: var(--bordeaux);
    border-radius: 2px;
    transition: all .3s;
}
.nav-close {
    display: none;
}

/* ─── COOKIE CONSENT ─── */
.cookie-consent {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--warm-white);
    border: 2px solid var(--bordeaux);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-mid);
    z-index: 9999;
    max-width: 380px;
    width: calc(100% - 3rem);
}
.cookie-consent__text {
    font-size: .88rem;
    color: var(--text-mid);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.cookie-consent__text a {
    color: var(--bordeaux);
    text-decoration: underline;
}
.cookie-consent__actions {
    display: flex;
    gap: .75rem;
}
.cookie-consent__btn {
    padding: .5rem 1.4rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .82rem;
    cursor: pointer;
    border: none;
    transition: all .25s;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.cookie-consent__btn--accept {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 100%);
    color: #fff;
}
.cookie-consent__btn--accept:hover {
    background: linear-gradient(135deg, var(--bordeaux-dark) 0%, var(--bordeaux) 100%);
}
.cookie-consent__btn--decline {
    background: transparent;
    border: 1px solid var(--bordeaux);
    color: var(--bordeaux);
}
.cookie-consent__btn--decline:hover {
    background: var(--bordeaux);
    color: #fff;
}

/* ─── HERO ─── */
.hero {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(201,168,76,.18) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(114,47,55,.12) 0%, transparent 55%),
        var(--cream);
    padding: 6rem 0 5rem;
    overflow: hidden;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.hero__badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--bordeaux), var(--bordeaux-light));
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
}
.hero__title { margin-bottom: 1.2rem; }
.hero__title em {
    font-style: italic;
    color: var(--gold);
}
.hero__description {
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
    max-width: 480px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero__meta {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bordeaux);
}
.hero__stat-label { font-size: .8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; }

/* Hero visual */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__game-card {
    background: var(--warm-white);
    border: 2px solid var(--bordeaux);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-mid);
    text-align: center;
    max-width: 340px;
    width: 100%;
}
.hero__game-card img {
    width: 120px; height: 120px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 0 auto 1rem;
    border: 3px solid var(--gold);
}
.hero__game-card h3 { margin-bottom: .5rem; }
.hero__game-card p { font-size: .9rem; color: var(--text-mid); margin-bottom: 1.2rem; }
.hero__controls {
    background: var(--soft-gray);
    border-radius: var(--radius);
    padding: .6rem 1rem;
    font-size: .85rem;
    color: var(--text-mid);
    margin-bottom: 1.2rem;
}
.hero__controls strong { color: var(--bordeaux); }

/* ─── FEATURES ─── */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(201,168,76,.2);
    transition: transform .25s, box-shadow .25s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-mid);
}
.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}
.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--bordeaux-dark);
    margin-bottom: .5rem;
}
.feature-card__text { font-size: .9rem; color: var(--text-mid); margin-bottom: 0; }

/* ─── HOW TO PLAY PREVIEW ─── */
.how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}
.step__number {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-light));
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 16px rgba(114,47,55,.25);
}
.step__title { font-size: 1rem; color: var(--bordeaux-dark); margin-bottom: .4rem; }
.step__text { font-size: .88rem; color: var(--text-mid); margin-bottom: 0; }

/* ─── BLOG GRID ─── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.article-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(201,168,76,.15);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-mid); }
.article-card__image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 50%, var(--gold) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,.8);
}
.article-card__content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-card__category {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--bordeaux-light);
    margin-bottom: .5rem;
}
.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--bordeaux-dark);
    margin-bottom: .75rem;
    line-height: 1.35;
}
.article-card__excerpt { font-size: .88rem; color: var(--text-mid); flex: 1; margin-bottom: 1rem; }
.article-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: var(--text-light);
    border-top: 1px solid var(--soft-gray);
    padding-top: .75rem;
    margin-top: auto;
}
.article-card__read-more { color: var(--bordeaux); font-weight: 600; z-index: 2; position: relative; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--warm-white);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--bordeaux-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .2s;
}
.faq-item__question:hover { background: var(--soft-gray); }
.faq-item__icon {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bordeaux);
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s;
}
.faq-item.is-open .faq-item__answer { max-height: 300px; }
.faq-item__answer-inner { padding: 0 1.5rem 1.2rem; font-size: .92rem; color: var(--text-mid); }

/* ─── CTA BANNER ─── */
.cta-banner {
    background:
        radial-gradient(ellipse at 80% 50%, rgba(201,168,76,.15) 0%, transparent 60%),
        linear-gradient(135deg, var(--bordeaux-dark) 0%, var(--bordeaux) 50%, var(--bordeaux-light) 100%);
    padding: 5rem 0;
    text-align: center;
    color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ─── FOOTER ─── */
.site-footer {
    background: var(--bordeaux-dark);
    color: rgba(255,255,255,.75);
    padding: 4rem 0 2rem;
}
.site-footer__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .logo { color: var(--cream); }
.footer-brand .logo:hover { color: var(--gold); }
.footer-brand p { margin-top: .75rem; font-size: .9rem; line-height: 1.6; }
.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    transition: color .2s;
}
.footer-col a:hover { color: var(--gold-light); }
.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .83rem;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
    background:
        radial-gradient(ellipse at 60% 40%, rgba(201,168,76,.15) 0%, transparent 55%),
        linear-gradient(135deg, var(--bordeaux-dark) 0%, var(--bordeaux) 100%);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    margin-bottom: .75rem;
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ─── ABOUT PAGE ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-visual {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 60%, var(--gold) 100%);
    border-radius: var(--radius-lg);
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: var(--shadow-mid);
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--text-mid); }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.stat-box {
    background: var(--warm-white);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--radius);
    padding: 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}
.stat-box__value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bordeaux);
    display: block;
}
.stat-box__label { font-size: .8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; }

/* ─── HOW TO PLAY PAGE ─── */
.htp-section { margin-bottom: 3rem; }
.htp-section h2 { margin-bottom: 1.5rem; }
.controls-box {
    background: var(--warm-white);
    border: 2px solid var(--bordeaux);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}
.controls-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.control-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.control-item__icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: .1rem;
}
.control-item__title { font-weight: 700; color: var(--bordeaux-dark); font-size: .95rem; margin-bottom: .2rem; }
.control-item__desc { font-size: .85rem; color: var(--text-mid); margin-bottom: 0; }
.tip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.tip-card {
    background: var(--warm-white);
    border-left: 4px solid var(--bordeaux);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow-soft);
}
.tip-card__num { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.tip-card__title { font-family: var(--font-heading); color: var(--bordeaux-dark); margin-bottom: .4rem; font-size: 1rem; }
.tip-card__text { font-size: .88rem; color: var(--text-mid); margin-bottom: 0; }

/* ─── BLOG PAGE ─── */
.blog-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.blog-count { font-size: .9rem; color: var(--text-light); }

/* ─── ARTICLE PAGE ─── */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}
.article-body { max-width: 760px; }
.article-body h2 { margin: 2rem 0 1rem; }
.article-body h3 { margin: 1.5rem 0 .75rem; }
.article-body ul, .article-body ol { margin: 1rem 0 1rem 1.5rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: .4rem; color: var(--text-mid); font-size: .95rem; }
.article-body p { color: var(--text-mid); }
.article-sidebar { position: sticky; top: 90px; }
.sidebar-box {
    background: var(--warm-white);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.5rem;
}
.sidebar-box h4 { font-family: var(--font-heading); color: var(--bordeaux-dark); margin-bottom: 1rem; font-size: 1rem; }
.sidebar-box ul { display: flex; flex-direction: column; gap: .5rem; }
.sidebar-box li a { font-size: .9rem; color: var(--text-mid); }
.sidebar-box li a:hover { color: var(--bordeaux); }
.article-meta {
    display: flex;
    gap: 1.5rem;
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
}
.article-meta span { display: flex; align-items: center; gap: .3rem; }
.article-tag {
    display: inline-block;
    background: var(--soft-gray);
    color: var(--bordeaux);
    font-size: .78rem;
    font-weight: 600;
    padding: .25rem .65rem;
    border-radius: 20px;
    margin-right: .3rem;
    margin-bottom: .3rem;
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-form { background: var(--warm-white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-soft); border: 1px solid rgba(201,168,76,.15); }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; color: var(--bordeaux-dark); margin-bottom: .4rem; letter-spacing: .03em; text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid rgba(114,47,55,.25);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--bordeaux);
    box-shadow: 0 0 0 3px rgba(114,47,55,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-mid); margin-bottom: 1.5rem; }
.info-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.info-item__icon { font-size: 1.3rem; margin-top: .1rem; }
.info-item__label { font-weight: 700; color: var(--bordeaux-dark); font-size: .9rem; display: block; }
.info-item__value { font-size: .9rem; color: var(--text-mid); }

/* ─── LEGAL ─── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin: 2.5rem 0 1rem; }
.legal-content h3 { margin: 1.5rem 0 .75rem; }
.legal-content p, .legal-content li { color: var(--text-mid); font-size: .95rem; }
.legal-content ul { list-style: disc; margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: .4rem; }
.legal-updated { background: var(--soft-gray); border-radius: var(--radius); padding: .75rem 1.25rem; font-size: .85rem; color: var(--text-mid); margin-bottom: 2rem; display: inline-block; }

/* ─── NOTICE ─── */
.form-notice {
    display: none;
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-light) 100%);
    color: #fff;
    padding: .9rem 1.2rem;
    border-radius: var(--radius);
    font-size: .9rem;
    margin-top: 1rem;
    text-align: center;
}
.form-notice.is-visible { display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__description { margin: 0 auto 2rem; }
    .hero__actions { justify-content: center; }
    .hero__meta { justify-content: center; }
    .hero__visual { margin-top: 1rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { height: 220px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .features__grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .site-nav { display: none; }
    .nav-toggle { display: flex; }
    .site-nav.is-open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--warm-white);
        z-index: 999;
        padding: 5rem 2rem 2rem;
        gap: 0;
    }
    .site-nav.is-open .site-nav__list { flex-direction: column; gap: 1rem; width: 100%; }
    .site-nav.is-open .site-nav__link { font-size: 1.2rem; }
    .site-nav.is-open .nav-cta { margin-top: 1.5rem; margin-left: 0; }
    .site-nav.is-open .nav-close { display: block; position: absolute; top: 1.2rem; right: 1.5rem; font-size: 1.6rem; background: none; border: none; cursor: pointer; color: var(--bordeaux); }
    .hero { padding: 4rem 0 3rem; }
    .section { padding: 3.5rem 0; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .site-footer__bottom { flex-direction: column; text-align: center; }
    .cookie-consent { right: .75rem; bottom: .75rem; max-width: calc(100% - 1.5rem); }
}
@media (max-width: 480px) {
    .hero__actions { flex-direction: column; align-items: stretch; text-align: center; }
    .hero__actions .btn-play, .hero__actions .btn { text-align: center; }
    .about-stats { grid-template-columns: 1fr; }
    h1 { font-size: 1.8rem; }
}