/* =====================================================================
   STORM PATRIMOINE — Feuille de style globale
   Charte : noir d'encre + or (#D5A84F) sur crème — sobre, élégant, haut de gamme
   Typographie : Cormorant Garamond (titres) + Jost (texte / marque)
   Auteur : intégration Storm Patrimoine
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. Polices                                                          */
/* ------------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ------------------------------------------------------------------ */
/* 2. Variables de design                                             */
/* ------------------------------------------------------------------ */
:root {
  /* Couleurs */
  --ink:        #14110d;   /* noir chaud / encre */
  --ink-soft:   #2a2620;
  --gold:       #d5a84f;   /* or de marque (logo) */
  --gold-dark:  #b8893a;
  --gold-light: #e9ce8e;
  --cream:      #faf8f4;   /* fond clair */
  --cream-2:    #f1ece3;
  --white:      #ffffff;
  --text:       #3a352d;   /* texte courant */
  --text-soft:  #6b6459;
  --line:       #e3ddd1;   /* filets / bordures */

  /* Typographie */
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Jost', 'Segoe UI', system-ui, sans-serif;

  /* Mesures */
  --container: 1240px;
  --container-narrow: 880px;
  --radius: 2px;
  --header-h: 114px;
  --topbar-h: 34px;        /* bande renvoyant vers l'agence immobilière */

  /* Transitions */
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 24px 60px -28px rgba(20,17,13,.35);
  --shadow-soft: 0 18px 40px -24px rgba(20,17,13,.25);
}

/* ------------------------------------------------------------------ */
/* 3. Reset                                                           */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  letter-spacing: .2px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ------------------------------------------------------------------ */
/* 4. Typographie                                                     */
/* ------------------------------------------------------------------ */
h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 500; color: var(--ink); line-height: 1.12; letter-spacing: .4px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; color: var(--ink-soft); }
em { font-style: italic; }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--text-soft); font-weight: 300; }

/* Suréclat / accroche dorée */
.eyebrow {
  display: inline-flex; align-items: center; gap: .65em;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block;
}
.eyebrow.is-light { color: var(--gold-light); }

.text-gold { color: var(--gold-dark); }
.title-serif-italic { font-style: italic; font-weight: 400; }

/* ------------------------------------------------------------------ */
/* 5. Mise en page / utilitaires                                      */
/* ------------------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }
.container.is-narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(38px, 4.6vw, 68px); }
.section.is-tight { padding-block: clamp(26px, 3.4vw, 42px); }
.section--ink { background: var(--ink); color: #cfc7b8; }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--white); }
.section--cream2 { background: var(--cream-2); }

.section-head { max-width: 760px; margin-bottom: clamp(28px, 3.8vw, 46px); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; }

.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.divider-gold { width: 64px; height: 2px; background: var(--gold); border: 0; margin: 24px 0; }
.section-head.is-center .divider-gold { margin-inline: auto; }

/* ------------------------------------------------------------------ */
/* 6. Boutons                                                         */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--font-body); font-weight: 500; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 17px 34px; border-radius: var(--radius);
  transition: all .4s var(--ease); cursor: pointer; position: relative;
  border: 1px solid transparent; white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(184,137,58,.6); }

.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--ink-soft); transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }

.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn--ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

/* Lien fléché */
.link-arrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 500; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dark);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ------------------------------------------------------------------ */
/* 7. En-tête / navigation                                            */
/* ------------------------------------------------------------------ */
/* Bande supérieure : renvoi vers l'agence immobilière Storm */
.site-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  height: var(--topbar-h); background: var(--ink); color: var(--gold-light);
  display: flex; align-items: center;
  font-size: .78rem; letter-spacing: .04em;
  border-bottom: 1px solid rgba(213,168,79,.22);
}
.site-topbar .container { display: flex; justify-content: center; }
.site-topbar a { display: inline-flex; align-items: center; gap: .55em; color: var(--gold-light); transition: color .3s var(--ease); }
.site-topbar a:hover { color: var(--white); }
.site-topbar strong { color: var(--gold); font-weight: 600; }
.site-topbar svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.site-topbar a:hover svg { transform: translateX(4px); }

.site-header {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .45s var(--ease), height .45s var(--ease), box-shadow .45s var(--ease);
}
.site-header::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--cream); opacity: 1;        /* fond plein dès le chargement */
  transition: opacity .45s var(--ease); border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { height: 96px; box-shadow: var(--shadow-soft); }

.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: nowrap; }

.brand { display: flex; align-items: center; gap: 12px; z-index: 2; flex: none; }
.brand img { height: 80px; width: auto; transition: height .45s var(--ease); }
.site-header.is-scrolled .brand img { height: 66px; }

.main-nav > ul { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.main-nav a {
  display: inline-flex; align-items: center; gap: .35em;
  padding: 9px 11px; font-size: .8rem; font-weight: 400;
  letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft);
  position: relative; transition: color .3s var(--ease); white-space: nowrap;
}
.main-nav a::after {
  content: ""; position: absolute; left: 11px; right: 11px; bottom: 4px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

/* Sous-menu déroulant */
.has-dropdown { position: relative; }
/* Caret dans une pastille ronde, plus lisible qu'un simple chevron */
.has-dropdown > a .caret {
  flex: none; box-sizing: border-box;
  width: 20px; height: 20px; padding: 4px;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--white); color: var(--gold-dark);
  transition: transform .3s var(--ease), background .3s var(--ease),
              border-color .3s var(--ease), color .3s var(--ease);
}
.has-dropdown:hover > a .caret,
.has-dropdown > a:focus-visible .caret {
  transform: rotate(180deg);
  background: var(--gold); border-color: var(--gold); color: var(--white);
}
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 290px;
  background: var(--white); border: 1px solid var(--line); border-top: 2px solid var(--gold);
  box-shadow: var(--shadow); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .35s var(--ease);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
/* Dernier menu : on aligne le panneau à droite, sinon ses 290px dépassent du viewport */
.main-nav > ul > li:last-child .dropdown { left: auto; right: 0; }
.dropdown a {
  display: block; padding: 12px 16px; text-transform: none; letter-spacing: .02em;
  font-size: .92rem; color: var(--text); border-radius: var(--radius);
}
.dropdown a::after { display: none; }
.dropdown a small { display: block; font-size: .76rem; color: var(--text-soft); text-transform: none; letter-spacing: 0; }
.dropdown a:hover { background: var(--cream); color: var(--ink); }

/* CTA du menu mobile : présent dans le DOM, révélé sous 980px */
.nav-mobile-cta { display: none; }

.header-cta { display: flex; align-items: center; gap: 14px; flex: none; }
.header-cta .btn { padding: 9px 13px; font-size: .7rem; letter-spacing: .08em; }
.header-cta .btn svg { width: 13px; height: 13px; }

/* Burger */
.nav-toggle { display: none; width: 46px; height: 46px; position: relative; z-index: 110; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); transition: all .35s var(--ease); }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ------------------------------------------------------------------ */
/* 8. Pied de page                                                    */
/* ------------------------------------------------------------------ */
.site-footer { background: var(--ink); color: #aaa193; padding-top: 80px; }
.site-footer a { transition: color .3s var(--ease); }
.site-footer a:hover { color: var(--gold-light); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 105px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .95rem; max-width: 320px; }
.footer-brand-note { margin-top: 14px; font-size: .82rem; color: var(--gold-light); letter-spacing: .04em; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: .8rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 22px; }
.footer-contact-intro { font-size: .92rem; max-width: 300px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; font-size: .95rem; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: .95rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-block: 28px; font-size: .82rem; color: #756d61; }
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; display: grid; place-items: center; }
.footer-bottom .socials a:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.footer-bottom .socials svg { width: 16px; height: 16px; }

/* ------------------------------------------------------------------ */
/* 9. Composants réutilisables                                        */
/* ------------------------------------------------------------------ */

/* Carte */
.card {
  background: var(--white); border: 1px solid var(--line); padding: 40px 34px;
  border-radius: var(--radius); transition: all .45s var(--ease); position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .card-icon {
  width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 24px;
  border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-dark);
}
.card .card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: .98rem; color: var(--text-soft); }
.card .link-arrow { margin-top: 22px; }

/* Carte numérotée (approche / méthode) */
.step-num { font-family: var(--font-title); font-size: 3.2rem; color: var(--gold); line-height: 1; opacity: .5; }

/* Statistiques */
.stat { text-align: center; }
.stat .num { font-family: var(--font-title); font-size: clamp(2.6rem, 5vw, 4rem); color: var(--gold); line-height: 1; }
.stat .label { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); margin-top: 12px; }
.section--ink .stat .label { color: #9a9183; }

/* Liste à puce dorée */
.gold-list li { position: relative; padding-left: 30px; margin-bottom: 14px; }
.gold-list li::before {
  content: ""; position: absolute; left: 0; top: 11px; width: 9px; height: 9px;
  background: var(--gold); transform: rotate(45deg);
}

/* Média + texte (split) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split.is-reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.split-media .media-badge {
  position: absolute; bottom: -28px; right: -28px; background: var(--gold); color: var(--ink);
  padding: 28px 34px; border-radius: var(--radius); max-width: 260px; box-shadow: var(--shadow);
}
.split-media .media-badge .num { font-family: var(--font-title); font-size: 2.4rem; line-height: 1; }
.split-media .media-badge p { font-size: .9rem; margin: 6px 0 0; }

/* Citation */
.quote { font-family: var(--font-title); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.4; color: var(--ink); }
.section--ink .quote { color: var(--white); }
.quote .mark { color: var(--gold); }

/* Ruban CTA */
.cta-band { background: var(--ink); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(213,168,79,.22), transparent 70%);
}
.cta-band::before { top: -180px; left: -120px; }
.cta-band::after { bottom: -200px; right: -120px; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: #cfc7b8; max-width: 620px; margin-inline: auto; }

/* Fil d'ariane / bannière de page intérieure */
.page-hero {
  position: relative; padding-top: calc(var(--header-h) + var(--topbar-h) + 46px); padding-bottom: 58px;
  background: var(--ink); color: var(--white); overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; opacity: .22;
  background: radial-gradient(circle at 80% 20%, rgba(213,168,79,.5), transparent 55%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 900px; }
.page-hero .lead { color: #cfc7b8; max-width: 640px; margin-top: 20px; }
.breadcrumb { display: flex; gap: 10px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #8d8473; margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold); }

/* Pastille / chip */
.chip { display: inline-block; padding: 7px 16px; border: 1px solid var(--line); border-radius: 100px; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-soft); background: var(--white); }

/* ------------------------------------------------------------------ */
/* 10. Animations / révélation au scroll                              */
/* ------------------------------------------------------------------ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------ */
/* 11. Responsive                                                     */
/* ------------------------------------------------------------------ */
/* Grands écrans : on aère un peu le menu et on agrandit légèrement la police */
@media (min-width: 1240px) {
  .site-header .container { gap: 24px; }
  .main-nav > ul { gap: 6px; }
  .main-nav a { padding: 9px 15px; font-size: .84rem; letter-spacing: .07em; }
  .main-nav a::after { left: 15px; right: 15px; }
  .header-cta { gap: 16px; }
  .header-cta .btn { padding: 9px 16px; font-size: .73rem; }
}

@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
/* Bascule en menu burger dès 1080px : entre 980 et 1080, la barre de navigation
   et le bouton « Prendre rendez-vous » ne tenaient plus sur une ligne et
   sortaient de l'écran (bouton tronqué à droite). */
@media (max-width: 1080px) {
  :root { --header-h: 104px; }
  .brand img, .site-header.is-scrolled .brand img { height: 70px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.is-reverse .split-media { order: 0; }
  .split-media .media-badge { right: 20px; bottom: -24px; }

  /* Menu mobile */
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .main-nav {
    position: fixed; inset: 0; background: var(--cream); z-index: 105;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 26px; overflow-y: auto; padding-block: 24px;
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease);
  }
  body.nav-open .main-nav { opacity: 1; visibility: visible; }
  /* Marges auto : bloc centré tant qu'il tient, défilement propre au-delà */
  .main-nav > ul { flex-direction: column; gap: 0; width: 100%; max-width: 420px; padding: 0 24px; margin-top: auto; }
  .main-nav > ul > li { width: 100%; border-bottom: 1px solid var(--line); }
  .main-nav a { padding: 18px 4px; font-size: 1rem; justify-content: space-between; width: 100%; }
  .main-nav a::after { display: none; }
  .nav-mobile-cta { display: block; width: 100%; max-width: 420px; padding-inline: 24px; margin-bottom: auto; }
  .nav-mobile-cta .btn { width: 100%; justify-content: center; }
  /* Fond beige sur mobile uniquement (le desktop reste blanc).
     Padding vertical porté par .is-open : sinon il resterait une bande
     beige visible alors que le sous-menu est replié (max-height: 0). */
  .has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; border-top: none; min-width: 0;
    background: var(--cream-2); border-radius: var(--radius);
    padding: 0 8px; max-height: 0; overflow: hidden;
    transition: max-height .4s var(--ease);
  }
  .has-dropdown.is-open .dropdown { max-height: 500px; padding-block: 6px 10px; margin-bottom: 14px; }
  .has-dropdown:hover .dropdown { opacity: 1; }
  /* Pastille plus grande : cible tactile confortable */
  .has-dropdown > a .caret { width: 30px; height: 30px; padding: 7px; }
  .has-dropdown:hover > a .caret { transform: none; background: var(--white); border-color: var(--line); color: var(--gold-dark); }
  .has-dropdown.is-open > a .caret { transform: rotate(180deg); background: var(--gold); border-color: var(--gold); color: var(--white); }
}
@media (max-width: 640px) {
  :root { --topbar-h: 32px; }
  .site-topbar { font-size: .7rem; letter-spacing: .02em; }
  .site-topbar .tb-pre { display: none; }
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .container { padding-inline: 20px; }
  .split-media .media-badge { position: static; max-width: none; margin-top: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .btn-row .btn { width: auto; }
}

/* ---------------------------------------------------------------------
   Bandeau cookies (RGPD) — injecté par assets/layout.js
   --------------------------------------------------------------------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
  background: var(--ink); color: #e9e3d6;
  box-shadow: 0 -8px 30px -12px rgba(0,0,0,.55);
  animation: cookie-in .45s var(--ease);
}
.cookie-banner[hidden] { display: none; }
@keyframes cookie-in { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner {
  max-width: 1180px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; gap: 24px 32px; flex-wrap: wrap;
}
.cookie-text { flex: 1 1 420px; min-width: 0; }
.cookie-text strong { display: block; color: var(--gold-light); font-weight: 600; margin-bottom: 4px; }
.cookie-text p { margin: 0; font-size: .9rem; line-height: 1.6; color: #cfc7b8; }
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn { padding: 11px 24px; }
.cookie-banner .btn--outline { color: #e9e3d6; border-color: rgba(233,227,214,.5); }
.cookie-banner .btn--outline:hover { background: #e9e3d6; color: var(--ink); border-color: #e9e3d6; }
@media (max-width: 640px) {
  .cookie-inner { padding: 16px 20px; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}
