/* ── 1. VARIABLES À PERSONNALISER ────────────── */
:root {
   /*--brand-accent: #B08A4B; */
  --brand-accent: #BA860C;

  --neutral-white: #FAF7F2;
  --neutral-black: #091221;
  --dark-bg: #0D1B28;

  --information-100: #CBE4FB;
  --information-200: #6CB2F4;
  --information-400: #0E81EC;
  --information-600: #0067B3;
  --information-700: #003261;

  --succes-100: #ADEBAF;
  --succes-200: #92D994;
  --succes-400: #21BC26;
  --succes-600: #009E05;
  --succes-700: #004702;

  --error-100: #F3BBB4;
  --error-200: #EC705F;
  --error-400: #D62E18;
  --error-600: #A4200E;
  --error-700: #75170A;

  --brand-white: #FFFFFF;
  --brand-dark: var(--neutral-black);
  /* texte sombre, footer */
  --brand-dark-txt: var(--neutral-black);
  --brand-bg: #FAF7F2;
  --brand-bg-light: #F6F8F4;

  /* Fonts */
  --font-display: 'Playfair Display', serif;
  --font-subtitle: 'Montserrat', sans-serif;
  --font-body: 'Cormorant', serif;

  /* Espacements */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3.5rem;
  --space-xl: 4.5rem;

  /* Rayons */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* Ombres */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.14);

  /* Transition */
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);

  /* Container */
  --container-max: 900px;
}


/* ── 2. RESET ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brand-dark);
  background: var(--brand-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* ── 3. CONTAINER ────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* ── 4. BOUTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0em;
  cursor: pointer;
  border: none;
  transition: background-color var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--neutral-white);
  color: var(--brand-accent);
}

.btn-primary:hover {
  background: var(--neutral-white);
  color: var(--neutral-black);
}

.btn-accent {
  background: var(--neutral-white);
  color: var(--brand-accent);
}

.btn-accent:hover {
  background: var(--neutral-white);
  color: var(--neutral-black);
}

.btn-accent:hover .btn-icon {
  filter: brightness(0);
}

.btn-lg {
  padding: var(--space-sm) var(--space-lg);
  font-size: 1rem;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 1.5px;
  font-weight: 600;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  border: var(--brand-bg-light) 1px solid;
}

.btn-cta {
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
}

.btn-icon {
  height: 10px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn-form {
  width: 100%;
  justify-content: center;
  background: var(--neutral-white);
  color: var(--brand-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-sm);
  transition: background-color var(--transition);
}

.btn-form:hover {
  background: var(--neutral-white);
  color: var(--neutral-black);
}

.btn-form:hover .btn-icon {
  filter: brightness(0);
}

.btn-cta:hover {
  color: var(--brand-accent);
}

.cta-wrapper:hover {
  border: var(--brand-accent) 1px solid;
}

.btn-cta:hover .btn-icon {
  filter: brightness(0) saturate(100%) invert(38%) sepia(150%) saturate(200%) hue-rotate(0deg);
}

/* ── LIST ───────────────────────────────── */
.list {
  display: flex;
  flex-direction: column;
}

.list-item {
  align-self: flex-start;
  color: var(--neutral-white);
  border: var(--brand-accent) 1px solid;
  font-size: 1rem;
  padding: 4px 10px;
}

.list-item.light-mode {
  padding: 4px 10px;
}

.row {
  gap: var(--space-xs);
  flex-direction: row;
  flex-wrap: wrap;
}


/* ── 5. HEADER ───────────────────────────────── */
.top {
  background: url(src/img/dimitri-iakymuk-zc7EnDmfkao-unsplash.jpg);
  background-position: 20% 25%;
  background-size: cover;
}

.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 64px;
  max-width: 70vw;
  margin-inline: auto;
  width: 100%;
}

.icone-container {
  position: fixed;
  display: flex;
  top: 1rem;
  left: max(2rem, calc((100vw - var(--container-max)) / 2 - var(--space-md)));
  z-index: 200;
}

.logo-container {
  display: flex;
}

.logo-font-nav {
  display: flex;
  flex-direction: column;
  padding: 4px;
  font-size: .9rem;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
}

.name-1 {
  color: var(--brand-accent);
  font-weight: 400;
  letter-spacing: 0.35em;
}

.menu {
  height: 15px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* MENU OVERLAY */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 33vw;
  height: 100%;
  background: var(--dark-bg);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: var(--space-xl) var(--space-md);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  visibility: hidden;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay.open {
  transform: translateX(0);
  visibility: visible;
}

.nav-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.nav-close img {
  width: 20px;
  filter: invert(1);
}

.nav-overlay-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nav-overlay-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--neutral-white);
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}

.nav-overlay.open .nav-overlay-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.open .nav-overlay-link:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.open .nav-overlay-link:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay.open .nav-overlay-link:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay.open .nav-overlay-link:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay.open .nav-overlay-link:nth-child(5) { transition-delay: 0.3s; }
.nav-overlay.open .nav-overlay-link:nth-child(6) { transition-delay: 0.35s; }
.nav-overlay.open .nav-overlay-link:nth-child(7) { transition-delay: 0.4s; }

.nav-overlay-link:hover {
  color: var(--brand-accent);
}

.nav-overlay-footer {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* ── 6. HERO ─────────────────────────────────── */
/*
  L'image de profil n'est plus un background : c'est une vraie <img>
  dans .hero-image. Elle ne peut donc plus se superposer au texte ni
  déborder de l'écran — le flux flexbox gère la place de chacun.

  Mobile : texte au-dessus, photo en dessous (calée en bas de section).
  Desktop (≥1024px) : texte à gauche, photo à droite.
*/
.hero {
  padding-top: 5rem;
  color: var(--brand-white);
}

.container.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  min-height: 70vh;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.hero-image {
  width: min(300px, 65%);
  margin-top: auto;
  /* la photo est détourée : elle vient toucher le bas de la section */
  align-self: center;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-title {
  font-family: var(--font-display);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.hero-title h1 {
  color: var(--neutral-black);
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.07em;
}

.hero-title-2 {
  color: var(--brand-accent);
  font-size: clamp(1.5rem, 5vw, 3rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.6em;
}

.section-rule-hero {
  width: 8rem;
  height: 4px;
  background: var(--neutral-black);
  margin-inline: auto;
  margin-bottom: var(--space-sm);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-black);
  line-height: 147%;
  max-width: 560px;
  margin-bottom: var(--space-md);
  text-align: center;
}

.hero-subtitle span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 4px 8px;
}

.btn-hero {
  margin-inline: auto;
}

/* ── 7. SECTIONS COMMUNES ────────────────────── */
.section {
  padding-block: var(--space-xl);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-sm);
}

.eyebrow-title {
  font-family: var(--font-subtitle);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--brand-accent);
}

.section-heading {
  display: flex;
  align-items: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
}

.section-rule {
  width: 100%;
  flex: 1;
  height: 2px;
  background: var(--brand-accent);
  margin-bottom: var(--space-xs);
}

.section-rule-title {
  width: 15vw;
  flex: 1;
  height: 2px;
  background: var(--brand-accent);
  margin-bottom: var(--space-md);
}

.section-intro {
  font-size: 1rem;
  line-height: 140%;
  margin-bottom: var(--space-lg);
  color: var(--neutral-black);
}

/* ── 8. SERVICES ─────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 70%;
  gap: var(--space-md);
  margin-inline: auto;
}

.service-card {
  background-color: rgba(44, 66, 87, 0.3);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  transition: border-color var(--transition), transform var(--transition);
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1));
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  border: none;
}

.light-mode {
  background: none;
  color: var(--neutral-black);
  display: flex;
  padding: 0;
  filter: none;
}

.service-body {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
}

/* ── BANDEAU ─────────────────────────── */
.image {
  margin-bottom: var(--space-md);
  object-fit: cover;
  height: 400px;
}

.img-container {
  position: relative;
  height: 400px;
  margin-inline: auto;
  margin-top: var(--space-lg);
}

.bandeau {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: rgba(176, 138, 75, .4);
}

.big {
  font-family: "Cormorant Infant", serif;
  font-size: 4rem;
  font-weight: 700;
}

.small {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: -5%;
}


/* ── 9. DÉCISIONS OBTENUES ─────────────────────────── */
.beige-bg {
  background-color: #F1EDE2;
}

.dark {
  background: var(--dark-bg);
  color: var(--brand-bg-light);
}

.testimonials-grid {
  margin-inline: auto;
  width: 70%;
  margin-bottom: var(--space-md);
}

.testimonial-card {
  background: var(--brand-white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1));
}

.testimonial-heading {
  background-color: var(--dark-bg);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1));
  font-size: 1rem;
}

.card-heading {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-accent);
}

.card-heading-label {
  font-weight: 400;
  color: var(--neutral-white);
  padding-bottom: var(--space-xs);
}

.testimonial-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 120%;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 140%;
  color: var(--neutral-black);
}

.testimonial-label {
  font-size: 0.8rem;
  line-height: 140%;
  color: var(--neutral-black);
}

/* ── 10. VALEURS ─────────────────────────── */
.valeur-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-display);
}

.number {
  color: var(--brand-accent);
}

.valeur-title {
  letter-spacing: 0em;
  font-weight: 400;
}

.valeur-title.accent {
  color: var(--brand-accent);
}

/* ── 11. FORMULAIRE ──────────────────────────── */
.contact {
  background: var(--dark-bg);
}

.contact .section-intro {
  color: var(--neutral-white);
}

.section-heading.section-title.light {
  color: var(--neutral-white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
}

.form-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 400;
  display: block;
  font-size: 0.8rem;
  color: var(--brand-white);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.6rem 0.9rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgb(255, 255, 255);
  color: var(--brand-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--brand-accent);
}

.form-field textarea {
  height: 120px;
  resize: none;
}

.form-field input:disabled,
.form-field textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-feedback {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-family: var(--font-display);
  text-align: center;
}

.form-feedback.error {
  color: #ee5342;
  font-weight: 700;
}

.form-feedback.success {
  color: #2ecc71;
  font-weight: 700;
}

.form-feedback.loading {
  color: var(--neutral-white);
}

/* ── 12. FOOTER ──────────────────────────────── */
.site-footer {
  background: var(--neutral-black);
  color: var(--brand-white);
  padding-block: var(--space-md);
}

.footer-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: start;
  margin-bottom: var(--space-md);
}

.socials {
  display: flex;
  gap: var(--space-sm);
}

.social-item {
  height: 28px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.875rem;
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-map iframe {
  border-radius: var(--radius-lg);
  border: 2px solid var(--brand-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--brand-accent);
}

/* LEGAL SECTION */
.legal-section {
  background: var(--brand-bg);
  padding-block: var(--space-xl);
}

.legal-content {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.06em;
}

.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  color: var(--neutral-black);
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}

.legal-content a {
  color: var(--brand-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── 13. RESPONSIVE ──────────────────────────── */

/* ≤1024px : mobile & tablette */
@media (max-width: 1024px) {
  .desktop-div {
    display: none;
  }

  .header-inner {
    max-width: 85vw;
  }
}

@media (max-width: 820px) {
  .section {
    padding-block: var(--space-lg);
  }

  .section-heading {
    margin-bottom: var(--space-sm);
  }

  .section-intro {
    margin-bottom: var(--space-md);
  }

  .bandeau {
    object-position: 50% 70%;
  }

  .mobile-only {
    display: block;
  }
}

@media (max-width: 768px) {
  .footer-body {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .testimonials-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .img-container {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .nav-overlay {
    width: 100vw;
  }

  .desktop-only {
    display: none;
  }

  .logo {
    height: 36px;
  }

  .nav a:not(.btn) {
    display: none;
  }

  .hero {
    padding-top: var(--space-lg);
  }

  .container.hero-content {
    min-height: auto;
    gap: var(--space-md);
  }

  .hero-image {
    width: min(260px, 70%);
  }

  .btn {
    font-size: 0.875rem;
    padding: 5px 10px;
    font-weight: 400;
  }

  .btn-lg {
    font-size: 0.875rem;
    padding: var(--space-sm);
  }

  .section-rule {
    height: 1px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    font-size: 1.75rem;
    letter-spacing: 0em;
    line-height: 120%;
  }

  .testimonial-text {
    font-size: 0.875rem;
  }
  .cta-wrapper {
    width: 100%;
  }
}

/* ≥1024px : desktop */
@media (min-width: 1024px) {
  :root {
    --container-max: 1100px;
  }

  .header-inner {
    max-width: 1100px;
  }

  .cta-wrapper{
      width: 50%;
  margin-inline: auto;
  }

  /* Hero — texte à gauche, photo à droite */
  .container.hero-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-lg);
    min-height: 65vh;
  }

  .hero-text {
    align-items: flex-start;
    padding-bottom: 9rem;
  }

  .hero-image {
    width: clamp(260px, 26vw, 380px);
    flex-shrink: 0;
    margin-top: 0;
    align-self: flex-end;
  }

  .hero-title {
    align-items: flex-start;
  }

  .hero-subtitle {
    text-align: left;
  }

  .section-rule-hero {
    margin-inline: 0;
  }

  .btn-hero {
    margin-inline: 0;
  }

  /* Présentation — texte à gauche, photo à droite */
  .mobile-only {
    display: none;
  }

  .section.services .container {
    height: 400px;
    display: flex;
    gap: var(--space-md);
  }

  .grid-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .section-eyebrow {
    margin-bottom: var(--space-xs);
  }

  .section-rule-title {
    width: 5vw;
    margin-top: var(--space-sm);
  }

  /* Services & Engagements — 3 colonnes */
  .services-grid,
  .section.testimonials.beige-bg .services-grid {
     grid-template-columns: 1fr;
    width: 100%;
  }
  

  .desktop-div {
    display: block;
    height: 100%;
  }

  /* Réseau international */
  .section:has(.row) .services-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    width: 100%;
    align-items: start;
  }

  .section:has(.row) .services-grid .section-intro:nth-child(1) {
    grid-column: 1;
    padding-right: var(--space-md);
  }

  .section:has(.row) .services-grid .service-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .section:has(.row) .services-grid .service-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  /* Décisions obtenues */
  .testimonials-grid {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: stretch;
  }

  .decision {
    display: flex;
    gap: 2.2rem;
  }

  .testimonial-heading {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  }

  .testimonial-card {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  }

  .decision-wrapper {
    width: 50%;
  }

  /* Contact — formulaire centré plus large */
  .contact .container {
    max-width: 800px;
  }

  .big {
    font-size: 6rem;
  }

  .small {
    font-size: 2.5rem;
  }

  .site-footer {
    padding-top: var(--space-xl);
  }
}

/* Desktop avec écran peu haut (laptop 13-14") : hero un peu plus compact */
@media (min-width: 1024px) and (max-height: 800px) {
  .container.hero-content {
    min-height: 55vh;
  }

  .hero-text {
    padding-bottom: var(--space-lg);
  }

  .hero-image {
    width: clamp(220px, 22vw, 320px);
  }
}

/* Grand écran */
@media (min-width: 1440px) and (min-height: 800px) {
  :root {
    --container-max: 1200px;
  }

  .header-inner {
    max-width: 1200px;
  }

  .hero-title h1 {
    font-size: 4.5rem;
    line-height: 1;
  }

  .hero-title-2 {
    font-size: 4.5rem;
    line-height: 1.1;
  }
}

/* ── 14. ANIMATIONS ──────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.7s ease both;
}
