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

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

:root {
  /* ── PALETTE ── */
  --rose:        #F066AA/* Mauve de base : C466D2*/;
  --rose-hot:    #F066AA;
  --rose-dark:   #B03878;
  --vert:        #4A8C5C;
  --vert-light:  #5DA672;
  --vert-dark:   #2E6040;
  --encre:       #1C1208;
  --creme:       #F9F2EC;
  --creme-fonce: #EDE0D4;
  --sable:       #C8B8A8;
  --blanc-sale:  #FBF6F0;
  --gris-encre:  #6B5A4A;

  /* ── OPACITÉS FRÉQUENTES ── */
  --rose-a15:    color-mix(in srgb, var(--rose-hot) 15%, transparent);
  --rose-a90:    color-mix(in srgb, var(--rose-hot) 90%, transparent);
  --rose-a30:    color-mix(in srgb, var(--rose) 30%, transparent);
  --rose-a20:    color-mix(in srgb, var(--rose) 20%, transparent);
  --encre-a05:   color-mix(in srgb, var(--encre) 5%, transparent);
  --encre-a08:   color-mix(in srgb, var(--encre) 8%, transparent);
  --encre-a25:   color-mix(in srgb, var(--encre) 25%, transparent);
  --creme-a72:   color-mix(in srgb, var(--creme) 72%, transparent);
  --creme-a65:   color-mix(in srgb, var(--creme) 65%, transparent);
  --creme-a60:   color-mix(in srgb, var(--creme) 60%, transparent);
  --creme-a45:   color-mix(in srgb, var(--creme) 45%, transparent);

  /* ── LAYOUT ── */
  --nav-h: 72px;

  /* ── BORDURES ── */
  --contour:    2px solid var(--encre);
  --contour-lg: 3px solid var(--encre);

  /* ── OMBRES ── */
  --ombre:       3px 3px 0 var(--encre);
  --ombre-lg:    5px 5px 0 var(--encre);
  --ombre-rose:  3px 3px 0 var(--rose-dark);
  --ombre-vert:  3px 3px 0 var(--vert-dark);
  --ombre-xl:    7px 7px 0 var(--encre);

  /* ── TYPOGRAPHIE ── */
  --font-display: 'Boogaloo', cursive;
  --font-mono:    'Space Mono', monospace;
  --font-serif:   'Libre Baskerville', serif;
  --font-sans:    'DM Sans', sans-serif;

  /* ── TEXT-SHADOWS BD ── */
  --contour-bd-lg:
    3px 3px 0 var(--encre),
    -2px -2px 0 var(--encre),
    2px -2px 0 var(--encre),
    -2px 2px 0 var(--encre),
    4px 4px 0 var(--encre-a25);
  --contour-bd-md:
    2px 2px 0 var(--encre),
    -1px -1px 0 var(--encre),
    1px -1px 0 var(--encre),
    -1px 1px 0 var(--encre);
  --contour-bd-sm:
    1px 1px 0 var(--encre),
    -1px -1px 0 var(--encre),
    1px -1px 0 var(--encre),
    -1px 1px 0 var(--encre);

  /* ── MOTIFS ── */
  --halftone-dot-color: var(--encre-a05);
  --halftone-size: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--creme);
  color: var(--encre);
  overflow-x: hidden;
}

/* Halftone doux */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, var(--halftone-dot-color) 1px, transparent 1px);
  background-size: var(--halftone-size) var(--halftone-size);
}

/* Grain papier */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .8;
  mix-blend-mode: multiply;
}

.lieu-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
.lieu-link:hover { color: var(--rose); }

/* ══ NAVBAR ══ */
nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: var(--vert);
  border-bottom: var(--contour-lg);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  box-shadow: 0 3px 0 var(--encre);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

/* ── Logo image dans la navbar ── */
.logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  overflow: visible;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  box-shadow: none;
  transition: transform .12s;
}
.logo-img-wrap:hover { transform: none; box-shadow: none; }

#logoImg {
  max-height: 85px;
  width: auto;
  display: block;
}

.nav-site-name {
  font-family: var(--font-display);
  font-size: 2.2rem; color: var(--creme);
  letter-spacing: .1em;
  text-shadow: var(--contour-bd-md);
}
.nav-site-name span { color: var(--rose); }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-links > li > button {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  font-family: var(--font-mono);
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--creme); text-decoration: none;
  background: none; border: none; cursor: pointer;
  transition: color .15s, background .15s;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li.open > button { color: var(--rose); background: var(--rose-a15); }
.nav-links > li > a.active { color: var(--rose); }

.chevron { width: 10px; height: 10px; fill: none; stroke: currentColor; stroke-width: 2.5; transition: transform .2s; }
.nav-links > li.open .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 230px;
  background: var(--blanc-sale);
  border: var(--contour-lg);
  border-top: 3px solid var(--rose);
  overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(-4px) rotate(-.3deg);
  transition: opacity .18s, transform .18s, visibility .18s;
  box-shadow: var(--ombre-lg);
}
.nav-links > li.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0) rotate(0deg); }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  font-family: var(--font-mono); font-size: .72rem;
  color: var(--gris-encre); text-decoration: none;
  border-bottom: 1px solid var(--encre-a08);
  transition: background .15s, color .15s, padding-left .15s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--rose); color: var(--creme); padding-left: 24px; }
.dropdown a .di { font-size: .9rem; }

.nav-cta {
  font-family: var(--font-display) !important;
  font-size: .9rem !important; letter-spacing: .08em !important;
  background: var(--rose) !important; color: var(--creme) !important;
  border-radius: 20px !important;
  border: var(--contour) !important;
  box-shadow: var(--ombre) !important;
  margin-left: 12px;
  transition: transform .12s, box-shadow .12s !important;
  text-shadow: none !important;
}
.nav-cta:hover {
  background: var(--rose-hot) !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: var(--ombre-lg) !important;
}

/* ══ HERO (page d'accueil) ══ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  position: relative; display: flex; align-items: center;
  overflow: hidden; background: var(--rose);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transition: opacity .4s; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(232,84,154,.9) 40%, rgba(232,84,154,.55) 100%),
    linear-gradient(to top, rgba(28,18,8,.3) 0%, transparent 40%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: linear-gradient(to right, transparent 35%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 35%, black 100%);
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
  gap: 40px;
}
.hero-content {
  padding: 80px;
  flex-shrink: 0;
  animation: fadeUp .85s ease both;
}
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 60px 80px 60px 0;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  background: var(--vert); color: var(--creme);
  padding: 5px 14px; border: 2px solid var(--encre);
  box-shadow: var(--ombre); margin-bottom: 24px; border-radius: 4px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 12vw, 10.5rem);
  line-height: .88; letter-spacing: .02em; color: var(--creme);
  margin-bottom: 32px; margin-top: 8px;
  text-shadow:
    4px 4px 0 var(--encre), -2px -2px 0 var(--encre),
    2px -2px 0 var(--encre), -2px 2px 0 var(--encre),
    5px 5px 0 rgba(28,18,8,.2);
}
.hero-title .accent { color: var(--vert); display: block; }
.hero-meta { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.meta-item {
  display: flex; flex-direction: column; gap: 3px;
  background: rgba(255,255,255,.18); border: 2px solid rgba(28,18,8,.2);
  border-radius: 10px; padding: 10px 16px; backdrop-filter: blur(2px);
}
.meta-label {
  font-family: var(--font-mono);
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--vert);
}
.meta-value {
  font-family: var(--font-display);
  font-size: 1.15rem; letter-spacing: .04em; color: var(--creme);
  text-shadow: 1px 1px 0 var(--encre);
}
.hero-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.section-plan {
  background: var(--creme-fonce);
  border-bottom: 3px solid var(--encre);
  padding: 56px 80px;
}

.plan-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.plan-img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border: var(--contour-lg);
  box-shadow: var(--ombre-xl);
  border-radius: 8px;
  display: block;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-hero {
  background: transparent; color: var(--creme);
  border: 2px solid rgba(249,242,236,.5);
}
.btn-outline-hero:hover { background: rgba(255,255,255,.12); border-color: var(--creme); }
.hero-logo-wrap {
  padding: 60px 0 60px 0;  /* supprime le padding-right de 80px */
  display: flex; align-items: center; justify-content: flex-start; /* plus center */
  flex-shrink: 0;
  margin-left: -120px; /* compense le padding-left du hero-content */
}
#heroLogoImg {
  max-width: 700px;  /* était 480px, augmente selon goût */
  max-height: 700px;
  width: 700px;      /* force la largeur */
  object-fit: contain;
  filter: drop-shadow(4px 4px 0 rgba(28,18,8,.5));
  cursor: pointer; animation: fadeUp .85s ease .15s both;
}

/* ══ EN BREF ══ */
.section-en-bref { padding: 80px; background: var(--creme); border-bottom: 3px solid var(--encre); position: relative; }

.section-eyebrow {
  display: inline-block; font-family: var(--font-mono);
  font-size: .65rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  background: var(--vert); color: var(--creme);
  padding: 4px 12px; border-radius: 4px; border: 1px solid var(--encre);
  box-shadow: 2px 2px 0 var(--encre); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: .04em; color: var(--encre); text-shadow: 2px 2px 0 rgba(28,18,8,.12);
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; border-bottom: 3px solid var(--encre);
  padding-bottom: 20px; margin-bottom: 40px; position: relative; z-index: 1;
}

/* ══ CONTACT ══ */
.section-contact {
  padding: 80px; text-align: center; background: var(--rose);
  border-top: 3px solid var(--encre); position: relative; overflow: hidden;
}
.section-contact::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 14px 14px; pointer-events: none;
}
.section-contact .section-eyebrow { background: var(--encre); color: var(--rose); }
.section-contact .section-title { color: var(--creme); text-shadow: 2px 2px 0 rgba(28,18,8,.3); }
.contact-sub {
  font-family: var(--font-serif); font-style: italic;
  color: rgba(249,242,236,.7); max-width: 400px; margin: 0 auto 40px;
  line-height: 1.75; font-size: .93rem;
}

/* ══ PAGE HERO ══ */
.page-hero {
  padding: 72px 80px 56px;
  background: var(--rose);
  border-bottom: var(--contour-lg);
  position: relative; overflow: hidden;
}
.page-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  background: var(--encre); color: var(--rose);
  padding: 5px 12px; margin-bottom: 20px; border-radius: 3px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: .92; letter-spacing: .02em;
  color: var(--creme);
  margin-bottom: 20px; margin-top: 12px;
  text-shadow: var(--contour-bd-lg);
}
.page-hero-sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: .95rem; line-height: 1.75;
  color: var(--creme-a72); max-width: 520px;
}

/* ══ CONTENU ══ */
.page-content { padding: 64px 80px; }
.page-content h2 {
  font-family: var(--font-display);
  font-size: 2rem; letter-spacing: .04em;
  color: var(--vert); margin-bottom: 20px; margin-top: 48px;
  text-shadow: var(--contour-bd-sm);
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  font-family: var(--font-serif);
  font-size: .93rem; line-height: 1.85;
  color: var(--gris-encre); margin-bottom: 16px;
}
.page-content ul { list-style: none; margin-bottom: 20px; }
.page-content ul li {
  padding: 10px 14px; margin-bottom: 6px;
  background: var(--blanc-sale);
  border-left: 4px solid var(--rose); border-bottom: 1px solid var(--encre-a08);
  font-family: var(--font-mono); font-size: .82rem; color: var(--gris-encre);
  display: flex; align-items: flex-start; gap: 10px;
  transition: border-left-color .15s, background .15s;
}
.page-content ul li:hover { border-left-color: var(--vert); background: var(--creme-fonce); }
.page-content ul li::before { content: '✿'; color: var(--rose); flex-shrink: 0; font-size: .9rem; }

/* ══ CARDS ══ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; margin-top: 16px; margin-bottom: 36px;
}
.card {
  background: var(--blanc-sale);
  border: var(--contour-lg); border-radius: 12px;
  padding: 28px 24px; box-shadow: var(--ombre-lg);
  transition: transform .15s, box-shadow .15s;
  position: relative; overflow: hidden;
}
.card:nth-child(2n) { background: var(--creme); }
.card:hover { transform: translate(-3px, -3px); box-shadow: var(--ombre-xl); }
.card-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.card-title {
  font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .04em;
  color: var(--vert); margin-bottom: 10px; text-shadow: var(--contour-bd-sm);
}
.card-text {
  font-family: var(--font-serif); font-size: .84rem; line-height: 1.7; color: var(--gris-encre);
}

/* ══ FORMULAIRE ══ */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gris-encre); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--blanc-sale); border: var(--contour); border-radius: 8px;
  padding: 12px 14px; color: var(--encre); font-family: var(--font-mono); font-size: .88rem;
  transition: border-color .15s, box-shadow .15s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); box-shadow: var(--ombre-rose); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--blanc-sale); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ══ BOUTONS ══ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; font-family: var(--font-display);
  font-size: 1rem; letter-spacing: .08em;
  text-decoration: none; border-radius: 24px; cursor: pointer;
  border: var(--contour); transition: transform .12s, box-shadow .12s; box-shadow: var(--ombre);
}
.btn:hover { transform: translate(-3px, -3px); box-shadow: var(--ombre-lg); }
.btn:active { transform: translate(0,0); box-shadow: none; }
.btn-red     { background: var(--rose);  color: var(--creme); }
.btn-red:hover { background: var(--rose-hot); }
.btn-outline { background: transparent; color: var(--encre); border: var(--contour); }
.btn-outline:hover { background: var(--creme-fonce); }
.btn-primary { background: var(--vert);  color: var(--creme); }
.btn-primary:hover { background: var(--vert-light); }

/* ══ DAY TABS ══ */
.day-tab {
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  background: var(--blanc-sale); border: var(--contour); border-radius: 20px;
  padding: 8px 18px; cursor: pointer; box-shadow: var(--ombre);
  transition: transform .12s, box-shadow .12s, background .12s;
}
.day-tab:hover { background: var(--creme-fonce); transform: translate(-2px, -2px); box-shadow: var(--ombre-lg); }
.day-tab:active { transform: translate(0, 0); box-shadow: none; }
.day-tab.active { background: var(--blanc-sale); color: var(--rose); border-color: var(--rose); }
.day-tab.active:hover { background: var(--rose-hot); }

/* ══ DIVIDER ══ */
.divider {
  border: none; border-top: 2px solid var(--encre);
  margin: 44px 0; position: relative;
}
.divider::after {
  content: '✿ ✿ ✿';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--creme); padding: 0 16px;
  font-size: .8rem; color: var(--rose); letter-spacing: .3em;
}

/* ══ BADGE ══ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; background: var(--vert); border: 1px solid var(--encre); border-radius: 20px;
  font-family: var(--font-display); font-size: .82rem; letter-spacing: .06em;
  color: var(--creme); margin-bottom: 8px; margin-right: 8px; box-shadow: 2px 2px 0 var(--encre);
}

/* ══ SPEECH BUBBLE ══ */
.speech-bubble {
  position: relative; background: var(--blanc-sale);
  border: var(--contour-lg); border-radius: 16px; padding: 18px 22px;
  font-family: var(--font-serif); font-style: italic;
  font-size: .9rem; line-height: 1.7; color: var(--encre);
  box-shadow: var(--ombre-lg); margin-bottom: 30px;
}
.speech-bubble::after {
  content: ''; position: absolute; bottom: -18px; left: 28px;
  border-width: 18px 12px 0; border-style: solid;
  border-color: var(--encre) transparent transparent;
}
.speech-bubble::before {
  content: ''; position: absolute; bottom: -12px; left: 30px;
  border-width: 14px 10px 0; border-style: solid;
  border-color: var(--blanc-sale) transparent transparent; z-index: 1;
}

/* ══ CAPTION ══ */
.bd-caption {
  display: inline-block; background: var(--vert); color: var(--creme);
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px; border: 1px solid var(--encre); box-shadow: 2px 2px 0 var(--encre);
}

/* ══ CONSTRUCTION BANNER ══ */
.construction-banner {
  font-family: var(--font-mono); font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  background: var(--creme-fonce); border: 2px dashed var(--rose); border-radius: 8px;
  padding: 14px 20px; color: var(--rose-dark); text-align: center;
}

/* ══ GT SECTION ══ */
.gt-section .cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gt-section .cards-grid .card:nth-child(5) { grid-column: 2; }
.gt-section .cards-grid .card:nth-child(6) { grid-column: 3; }
.gt-section .cards-grid .card:nth-child(7) { grid-column: 4; }

/* ══ FOOTER ══ */
footer {
  background: var(--vert); border-top: 4px solid var(--encre);
  padding: 56px 80px 28px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  position: relative; overflow: hidden;
}

/* ── Logo image dans le footer ── */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-tagline {
  text-align: center;
}
#footerLogoImg {
  max-width: 320px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
  cursor: pointer;
}

.footer-tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: .84rem; color: var(--creme-a65);
  margin-top: 4px; line-height: 1.65; max-width: 240px;
}
.footer-col h4 {
  font-family: var(--font-display); font-size: .95rem; letter-spacing: .1em;
  color: var(--rose); margin-bottom: 18px;
  border-bottom: 1px solid var(--rose-a30); padding-bottom: 8px;
  text-shadow: 1px 1px 0 var(--encre);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-family: var(--font-serif); font-size: .84rem;
  color: var(--creme-a60); text-decoration: none;
  transition: color .15s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before { content: '✿'; color: var(--rose); font-size: .7rem; opacity: .6; }
.footer-col ul li a:hover { color: var(--creme); }
.footer-bottom {
  grid-column: 1/-1; border-top: 1px solid var(--rose-a20); padding-top: 20px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: .68rem; color: var(--creme-a45);
}

/* ══ ANIMATIONS ══ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes popIn  { from { opacity: 0; transform: scale(.88) rotate(-2deg); } to { opacity: 1; transform: scale(1) rotate(0); } }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.anim     { animation: fadeUp .65s ease both; }
.anim-pop { animation: popIn .5s cubic-bezier(.34,1.2,.64,1) both; }

/* ══ RESPONSIVE ══ */
@media(max-width: 900px) {
  nav { padding: 0 18px; }
  .page-hero, .page-content { padding-left: 20px; padding-right: 20px; }
  footer { grid-template-columns: 1fr 1fr; padding: 36px 20px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--vert); border-bottom: var(--contour-lg);
    padding: 16px; z-index: 199; box-shadow: 0 6px 0 var(--encre);
  }
  .nav-links.open { display: flex; }

  .burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
  .burger span { width: 22px; height: 2px; background: var(--creme); display: block; border-radius: 2px; }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--rose);
    background: transparent;
    display: none;
    margin-left: 12px;
  }
  .nav-links > li.open .dropdown { display: block; }
  .nav-links > li:last-child { order: -1; }

  .hero-inner { flex-direction: column; }
  .hero-content { padding: 30px 20px 16px; }
  .hero-right { padding: 0 20px 40px; }
  .hero-meta-grid { grid-template-columns: 1fr; }
  .hero-logo-wrap { padding: 40px 0 0; }
  .section-en-bref, .section-contact { padding: 48px 20px; }
  .section-plan { padding: 40px 20px; }

  #heroLogoImg {
    max-width: 260px;
    max-height: 260px;
  }

  .hero-eyebrow {
    font-size: .6rem;
    padding: 4px 10px;
    margin-bottom: 16px;
  }

  .cards-grid,
  .gt-section .cards-grid {
    grid-template-columns: 1fr !important;
  }

  .gt-section .cards-grid .card:nth-child(5),
  .gt-section .cards-grid .card:nth-child(6),
  .gt-section .cards-grid .card:nth-child(7) {
    grid-column: auto !important;
  }
}

@media(min-width: 901px) { .burger { display: none; } }

input[type=file] { display: none; }
