:root {
    --bordeaux: #6b2737;
    --bordeaux-dark: #4a1b27;
    --bordeaux-light: #8a3a4c;
    --cream: #faf6ef;
    --cream-dark: #f0e8db;
    --paper: #ffffff;
    --ink: #2b2024;
    --ink-soft: #5c5560;
    --gold: #b08d3d;
    --gold-soft: #d4b96a;
    --border: #e3dccc;
    --shadow-sm: 0 1px 3px rgba(43, 32, 36, 0.06);
    --shadow: 0 6px 24px rgba(43, 32, 36, 0.08);
    --shadow-lg: 0 16px 48px rgba(43, 32, 36, 0.12);
    --radius: 4px;
    --radius-lg: 8px;
    --nav-h: 70px;
    --maxw: 1180px;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.75;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ===== TOP BAR ===== */
.topbar {
    background: var(--bordeaux-dark);
    color: var(--cream);
    font-size: 0.82rem;
    padding: 0.5rem 0;
    text-align: center;
    letter-spacing: 0.4px;
}
.topbar a { color: var(--gold-soft); font-weight: 500; border-bottom: 1px solid transparent; }
.topbar a:hover { border-bottom-color: var(--gold-soft); }

/* ===== NAV ===== */
nav {
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
}
.logo {
    font-family: var(--serif);
    font-size: 1.5rem; font-weight: 600;
    color: var(--bordeaux);
    display: flex; align-items: center; gap: 0.6rem;
    line-height: 1;
}
.logo .crest {
    width: 38px; height: 38px;
    display: block; flex: 0 0 38px;
    background: #fff url('images/logo-latour-musicale.png') center / cover no-repeat;
    border: 1px solid rgba(92, 43, 54, 0.16); border-radius: 50%;
    color: transparent; font-size: 0; overflow: hidden;
}
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
    font-size: 0.88rem; font-weight: 500;
    color: var(--ink); letter-spacing: 0.3px;
    padding: 0.4rem 0; position: relative;
    transition: color 0.25s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--bordeaux); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
    background: var(--bordeaux); color: var(--cream) !important;
    padding: 0.6rem 1.4rem !important; border-radius: 2px;
    font-weight: 600; transition: background 0.25s;
}
.nav-cta:hover { background: var(--bordeaux-dark); }
.nav-cta::after { display: none; }
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 6px;
}
.hamburger span {
    width: 26px; height: 2px; background: var(--ink); transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ===== HERO (home) ===== */
.hero {
    background: var(--bordeaux);
    color: var(--cream);
    padding: 5rem 0 6rem;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(176,141,61,0.15), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(176,141,61,0.1), transparent 40%);
}
.staff-deco {
    position: absolute; inset: 0;
    opacity: 0.08; pointer-events: none;
    background-image: repeating-linear-gradient(
        to bottom, transparent 0, transparent 38px,
        rgba(250,246,239,0.5) 38px, rgba(250,246,239,0.5) 39px
    );
    background-size: 100% 200px;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-eyebrow {
    font-size: 0.78rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold-soft); margin-bottom: 1.2rem; font-weight: 500;
}
.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 7vw, 4.6rem);
    font-weight: 600; line-height: 1.05;
    margin-bottom: 1.2rem; letter-spacing: -0.5px;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); font-weight: 500; }
.hero-sub {
    font-size: 1.12rem; max-width: 560px; margin: 0 auto 2.2rem;
    color: rgba(250,246,239,0.85); font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO (internal pages) ===== */
.page-hero {
    background: var(--bordeaux);
    color: var(--cream);
    padding: 3.5rem 0 3rem;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 85% 30%, rgba(176,141,61,0.12), transparent 45%);
}
.page-hero .staff-deco { opacity: 0.06; }
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600; line-height: 1.1;
    margin-bottom: 0.6rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-soft); }
.page-hero p { color: rgba(250,246,239,0.8); max-width: 560px; margin: 0 auto; font-weight: 300; }
.breadcrumb {
    font-size: 0.8rem; color: var(--gold-soft); margin-bottom: 1rem;
    letter-spacing: 1px; text-transform: uppercase;
}
.breadcrumb a:hover { text-decoration: underline; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2.2rem; font-weight: 600; font-size: 0.92rem;
    border-radius: 2px; transition: all 0.25s; cursor: pointer;
    border: 2px solid transparent; letter-spacing: 0.3px;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(250,246,239,0.4); }
.btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn-bordeaux { background: var(--bordeaux); color: var(--cream); }
.btn-bordeaux:hover { background: var(--bordeaux-dark); transform: translateY(-2px); }

/* ===== SECTION GENERIC ===== */
section { padding: 5rem 0; }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.sec-eyebrow {
    font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 0.8rem;
    display: flex; align-items: center; justify-content: center; gap: 0.8rem;
}
.sec-eyebrow::before, .sec-eyebrow::after {
    content: ''; width: 30px; height: 1px; background: var(--gold); opacity: 0.5;
}
.sec-eyebrow.left { justify-content: flex-start; }
.sec-head h2 {
    font-family: var(--serif); font-size: clamp(1.9rem, 4.5vw, 2.7rem);
    font-weight: 600; color: var(--bordeaux); line-height: 1.15;
}
.sec-head h2 em { font-style: italic; color: var(--ink-soft); }
.sec-head p { color: var(--ink-soft); margin-top: 0.8rem; font-size: 1.05rem; }
.alt-bg { background: var(--cream-dark); }

/* ===== PRESENTATION ===== */
.present-grid {
    display: grid; grid-template-columns: 1.3fr 1fr;
    gap: 4rem; align-items: center;
}
.present-text h2 {
    font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--bordeaux); line-height: 1.2; margin-bottom: 1.2rem; font-weight: 600;
}
.present-text h2 em { font-style: italic; }
.present-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.present-text .lead {
    font-size: 1.15rem; color: var(--ink); font-weight: 300;
    border-left: 3px solid var(--gold); padding-left: 1.2rem; margin-bottom: 1.5rem;
}
.present-visual {
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.present-visual::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        to bottom, transparent 0, transparent 32px,
        rgba(212,185,106,0.12) 32px, rgba(212,185,106,0.12) 33px
    );
}
.present-visual .note {
    font-size: 7rem; color: var(--gold-soft); opacity: 0.5; position: relative; z-index: 1;
}
.present-stats {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem;
}
.stat { text-align: center; padding: 1.2rem 0.5rem; border-top: 1px solid var(--border); }
.stat-num { font-family: var(--serif); font-size: 2.2rem; color: var(--bordeaux); font-weight: 600; line-height: 1; }
.stat-lbl { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* ===== INSTRUMENTS ===== */
.instr-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 1.5rem;
}
.instr-card {
    background: var(--paper); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2.2rem 1.5rem; text-align: center;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.instr-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.instr-card:hover { border-color: var(--gold-soft); transform: translateY(-4px); box-shadow: var(--shadow); }
.instr-card:hover::before { transform: scaleX(1); }
.instr-icon {
    width: 64px; height: 64px; margin: 0 auto 1.2rem;
    background: var(--cream-dark); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; transition: all 0.3s;
}
.instr-card:hover .instr-icon { background: var(--bordeaux); color: var(--gold-soft); }
.instr-card h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--bordeaux); font-weight: 600; }
.instr-card p { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* ===== PEDAGOGIE / FORMULES ===== */
.peda-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; align-items: start; }
.peda-card {
    background: var(--paper); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2.5rem 2rem;
    transition: all 0.3s; position: relative;
}
.peda-card.featured {
    border-color: var(--gold); border-width: 2px;
    box-shadow: var(--shadow);
}
.peda-card.featured::after {
    content: 'Le plus choisi'; position: absolute; top: -11px; left: 50%;
    transform: translateX(-50%); background: var(--gold); color: var(--paper);
    padding: 0.25rem 1rem; font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase; border-radius: 2px;
}
.peda-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.peda-level { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.peda-card h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--bordeaux); margin: 0.4rem 0 0.8rem; font-weight: 600; }
.peda-price { font-family: var(--serif); font-size: 2rem; color: var(--ink); font-weight: 600; margin-bottom: 1.5rem; }
.peda-price span { font-size: 0.9rem; color: var(--ink-soft); font-family: var(--sans); font-weight: 400; }
.peda-list li { padding: 0.6rem 0; border-bottom: 1px solid var(--border); color: var(--ink-soft); font-size: 0.94rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.peda-list li::before { content: '♪'; color: var(--gold); font-size: 1.1rem; line-height: 1; }
.peda-list li:last-child { border-bottom: none; }
.peda-btn { margin-top: 1.5rem; display: block; text-align: center; background: transparent; border: 1.5px solid var(--bordeaux); color: var(--bordeaux); }
.peda-btn:hover { background: var(--bordeaux); color: var(--cream); }
.peda-card.featured .peda-btn { background: var(--bordeaux); color: var(--cream); }
.peda-card.featured .peda-btn:hover { background: var(--bordeaux-dark); }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; }
.team-card {
    background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: all 0.3s;
    border: 1px solid var(--border);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.team-photo {
    height: 240px; background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.team-photo::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 28px, rgba(212,185,106,0.1) 28px, rgba(212,185,106,0.1) 29px);
}
.team-photo .initials {
    font-family: var(--serif); font-size: 3.5rem; color: var(--gold-soft);
    position: relative; z-index: 1; font-weight: 500;
}
.team-photo.has-photo { height: 390px; }
.team-photo.has-photo::before { display: none; }
.team-photo.has-photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.team-info { padding: 1.8rem 1.5rem; text-align: center; }
.team-info h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--bordeaux); font-weight: 600; }
.team-info .role { color: var(--gold); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin: 0.3rem 0 0.8rem; }
.team-info p { color: var(--ink-soft); font-size: 0.94rem; }

/* ===== TEMOIGNAGES ===== */
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }
.test-card {
    background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 2rem; position: relative; transition: all 0.3s;
}
.test-card:hover { box-shadow: var(--shadow); }
.test-quote {
    font-family: var(--serif); font-size: 3rem; color: var(--gold); line-height: 0.6;
    position: absolute; top: 1.5rem; left: 1.5rem; opacity: 0.4;
}
.test-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.test-text { font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--ink); line-height: 1.6; margin-bottom: 1.2rem; padding-left: 0.5rem; }
.test-author { display: flex; align-items: center; gap: 0.8rem; }
.test-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--bordeaux);
    color: var(--gold-soft); display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-weight: 600; font-size: 1.1rem;
}
.test-name { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.test-meta { font-size: 0.82rem; color: var(--ink-soft); }

/* ===== NOUVEAUTES ===== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 2rem; }
.news-card {
    background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all 0.3s;
}
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.news-banner {
    height: 160px; display: flex; align-items: center; justify-content: center;
    font-size: 3rem; position: relative;
}
.news-banner.a { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--paper); }
.news-banner.b { background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-light)); color: var(--gold-soft); }
.news-banner::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 26px, rgba(255,255,255,0.08) 26px, rgba(255,255,255,0.08) 27px);
}
.news-banner .icon { position: relative; z-index: 1; }
.news-body { padding: 1.8rem; }
.news-tag { display: inline-block; background: var(--cream-dark); color: var(--bordeaux); font-size: 0.74rem; font-weight: 600; padding: 0.25rem 0.8rem; border-radius: 2px; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 0.8rem; }
.news-body h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--bordeaux); margin-bottom: 0.6rem; font-weight: 600; }
.news-body p { color: var(--ink-soft); font-size: 0.95rem; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    padding: 1.4rem 0; text-align: left;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    font-family: var(--sans); font-size: 1.05rem; font-weight: 500; color: var(--ink);
    transition: color 0.25s;
}
.faq-q:hover { color: var(--bordeaux); }
.faq-q .pm { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-item.active .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-a { max-height: 300px; padding-bottom: 1.4rem; }
.faq-a p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.8; }

/* ===== CONTACT ===== */
.contact { background: var(--bordeaux); color: var(--cream); padding: 5rem 0; }
.contact .sec-head h2 { color: var(--cream); }
.contact .sec-head h2 em { color: var(--gold-soft); }
.contact .sec-head p { color: rgba(250,246,239,0.8); }
.contact .sec-eyebrow { color: var(--gold-soft); }
.contact .sec-eyebrow::before, .contact .sec-eyebrow::after { background: var(--gold-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto; }
.contact-form { background: var(--paper); padding: 2.2rem; border-radius: var(--radius-lg); color: var(--ink); }
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; letter-spacing: 0.3px; }
.form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--border);
    border-radius: var(--radius); font-family: var(--sans); font-size: 0.95rem;
    color: var(--ink); background: var(--cream); transition: border-color 0.25s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); background: var(--paper); }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-submit { background: var(--bordeaux); color: var(--cream); border: none; width: 100%; padding: 0.9rem; font-weight: 600; border-radius: var(--radius); cursor: pointer; transition: background 0.25s; font-size: 0.95rem; letter-spacing: 0.3px; }
.form-submit:hover { background: var(--bordeaux-dark); }
.contact-info h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 1.5rem; color: var(--gold-soft); font-weight: 600; }
.ci-item { display: flex; gap: 1rem; margin-bottom: 1.3rem; align-items: flex-start; }
.ci-icon { width: 42px; height: 42px; border: 1px solid rgba(212,185,106,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-soft); font-size: 1.1rem; flex-shrink: 0; }
.ci-text h4 { font-size: 0.82rem; color: var(--gold-soft); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.ci-text p, .ci-text a { color: rgba(250,246,239,0.9); font-size: 0.96rem; }
.ci-text a:hover { color: var(--gold-soft); }
.socials { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.socials a { width: 42px; height: 42px; border: 1px solid rgba(212,185,106,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-soft); font-size: 0.95rem; transition: all 0.25s; }
.socials a:hover { background: var(--gold); color: var(--bordeaux); border-color: var(--gold); }
.map-box { margin-top: 1.8rem; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(212,185,106,0.3); }
.map-box iframe { width: 100%; height: 180px; border: none; display: block; filter: grayscale(0.3); }


/* ===== FOOTER ===== */
footer { background: var(--bordeaux-dark); color: rgba(250,246,239,0.7); padding: 3.5rem 0 1.5rem; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(250,246,239,0.12); }
.foot-about h4, .foot-col h4 { font-family: var(--serif); color: var(--cream); font-size: 1.2rem; margin-bottom: 1rem; font-weight: 600; }
.foot-about p { font-size: 0.9rem; line-height: 1.8; max-width: 320px; }
.foot-col li { margin-bottom: 0.5rem; }
.foot-col a { font-size: 0.9rem; transition: color 0.25s; }
.foot-col a:hover { color: var(--gold-soft); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: 0.82rem; flex-wrap: wrap; gap: 1rem; }
.foot-bottom a { color: var(--gold-soft); }
.foot-bottom a:hover { text-decoration: underline; }

/* ===== BACK TO TOP ===== */
.totop {
    position: fixed; bottom: 1.8rem; right: 1.8rem; width: 46px; height: 46px;
    background: var(--bordeaux); color: var(--cream); border: none; border-radius: 50%;
    cursor: pointer; font-size: 1.2rem; box-shadow: var(--shadow); z-index: 900;
    opacity: 0; visibility: hidden; transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.totop.show { opacity: 1; visibility: visible; }
.totop:hover { background: var(--bordeaux-dark); transform: translateY(-3px); }

/* ===== COOKIE ===== */
.cookie {
    position: fixed; bottom: 0; left: 0; right: 0; background: var(--paper);
    border-top: 1px solid var(--border); padding: 1.2rem 1.5rem; z-index: 950;
    display: none; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.cookie.show { display: flex; }
.cookie p { font-size: 0.88rem; color: var(--ink-soft); flex: 1; min-width: 240px; }
.cookie a { color: var(--bordeaux); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.8rem; }
.cookie-btns button { padding: 0.55rem 1.3rem; border-radius: 2px; font-size: 0.84rem; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border); transition: all 0.25s; font-family: var(--sans); }
.cookie-yes { background: var(--bordeaux); color: var(--cream); border-color: var(--bordeaux); }
.cookie-yes:hover { background: var(--bordeaux-dark); }
.cookie-no { background: transparent; color: var(--ink); }
.cookie-no:hover { border-color: var(--bordeaux); color: var(--bordeaux); }

/* ===== ANIM ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== CTA BAND ===== */
.cta-band { background: var(--bordeaux); color: var(--cream); text-align: center; padding: 3.5rem 0; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 0.8rem; font-weight: 600; }
.cta-band h2 em { font-style: italic; color: var(--gold-soft); }
.cta-band p { color: rgba(250,246,239,0.8); margin-bottom: 1.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .present-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: var(--nav-h); left: 0; right: 0;
        background: var(--paper); flex-direction: column; padding: 1.5rem; gap: 1.2rem;
        box-shadow: var(--shadow); transform: translateY(-130%); transition: transform 0.3s; z-index: 999;
        border-bottom: 1px solid var(--border);
        max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
    }
    .nav-links.active { transform: translateY(0); }
    .nav-cta { display: none; }
    section { padding: 3.5rem 0; }
    .hero { padding: 3.5rem 0 4.5rem; }
    .present-stats { grid-template-columns: 1fr 1fr 1fr; }
    .instr-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .instr-card { padding: 1.5rem 1rem; }
    .instr-card h3 { font-size: 1.05rem; }
    .instr-card p { font-size: 0.82rem; }
    .news-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .news-body { padding: 1rem; }
    .news-body h3 { font-size: 1rem; }
    .news-body p { font-size: 0.82rem; }
}
@media (max-width: 560px) {
    .foot-grid { grid-template-columns: 1fr; text-align: center; }
    .foot-about p { margin: 0 auto; }
    .foot-bottom { justify-content: center; text-align: center; }
    .instr-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .instr-card { padding: 1.2rem 0.8rem; border-radius: 10px; }
    .instr-icon { font-size: 1.8rem; }
    .instr-card h3 { font-size: 0.95rem; }
    .instr-card p { font-size: 0.78rem; display: none; }
    .team-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2rem; }
    .sec-head h2 { font-size: 1.6rem; }
    .cta-band h2 { font-size: 1.5rem; }
    .present-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media print {
    nav, .totop, .cookie, .topbar, .hero-actions { display: none !important; }
    .contact { color: #000; background: #fff; }
}
