/* destination.css */
:root {
    --primary: #125b5c;
    --primary-strong: #0f706d;
    --deep: #125b5c;
    --deep-2: #083730;
    --ivory: #F7F5F0;
    --white: #FFFFFF;
    --text: #1F2933;
    --muted: #667085;
    --line: #E5E7EB;
    --soft: #EEF6F5;
    --sand: #C9A66B;
    --shadow: 0 18px 50px rgba(11, 74, 67, 0.10);
    --shadow-soft: 0 10px 26px rgba(31, 41, 51, 0.06);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --container: 1180px;
    --space: 96px;
    
  }
  
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--text);
    background: var(--ivory);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  
  .ui, button, input, a, .tag, .stat-label, .kicker, .nav a, .btn, .meta, .footer, .search-card label, .timeline-step, .info-title {
    font-family: Arial, Helvetica, sans-serif;
  }
  
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  
  .container {
    width: min(var(--container), calc(100% - 28px));
    margin: 0 auto;
  }
  
  .section { padding: var(--space) 0; }
  .section-tight { padding: 72px 0; }
  
  .kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
  }
  
  .kicker::before {
    content: "";
    width: 44px;
    height: 1px;
    background: rgba(17, 135, 132, .45);
  }
  
  h1, h2, h3, h4 {
    margin: 0 0 14px;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--deep);
    font-weight: 700;
  }
  
  h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); color: var(--white); }
  h2 { font-size: clamp(2.15rem, 4.2vw, 3.55rem); }
  h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
  h4 { font-size: 1.12rem; }
  
  p { margin: 0 0 16px; color: var(--text); }
  .lead { font-size: 1.15rem; color: rgba(255,255,255,.95); max-width: 760px; line-height: 1.5; }
  .subtle { color: var(--muted); }
  .center { text-align: center; }
  
  .btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 700;
    transition: .25s ease;
    border: 1px solid transparent;
    cursor: pointer;
  }
  
  .btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 14px 26px rgba(17, 135, 132, .22);
  }
  
  .btn-primary:hover { background: var(--primary-strong); }
  
  .btn-secondary {
    background: rgba(255,255,255,.08);
    color: var(--white);
    border-color: rgba(255,255,255,.28);
    backdrop-filter: blur(6px);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--deep);
    border-color: rgba(11,74,67,.22);
  }
  
  .btn-outline:hover { background: #f3f0e8; }
  
  .topbar {
    background: var(--deep);
    color: rgba(255,255,255,.82);
    font-size: 13px;
    padding: 10px 0;
  }
  
  .topbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .topbar-left, .topbar-right {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .topbar .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    display: inline-block;
  }
  
  .header {
    position: static;
    top: auto;
    z-index: 10;
    background: rgba(247,245,240,.96);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(11,74,67,.06);
  }
  
  .header-wrap {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
  }
  
  .brand-logo {
    display: flex;
    align-items: center;
    max-width: 180px; 
  min-width: 120px;
  }
  
  .brand-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(11,74,67,.10));
  }
  
  .brand-text {
    min-width: 0;
  }
  
  .brand-text strong {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--deep);
    margin-bottom: 4px;
  }
  
  .brand-text span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
  }
  
  .nav {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 15px;
    color: var(--text);
  }
  
  .nav a { color: var(--text); }
  .nav a:hover { color: var(--primary); }
  
  .hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
      linear-gradient(180deg, rgba(11,74,67,.4), rgba(11,74,67,.25)),
      url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  }
  
  .hero-wrap {
    position: relative;
    padding: 120px 0 140px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: start;
  }
  
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  .card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(11,74,67,.06);
  }
  
  .visual {
    position: relative;
    min-height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  
  .visual-label {
    position: absolute;
    inset: auto 18px 18px 18px;
    background: rgba(255,255,255,.9);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: var(--shadow-soft);
    z-index: 1;
  }
  
  .visual-label h3 { font-size: 1.35rem; margin-bottom: 2px; }
  .visual-label p { font-size: .95rem; color: #36524d !important; }
  
  .card-body {
    padding: 22px;
  }
  
  .card-body p:not(.meta) {
    margin-bottom: 14px;
    max-width: 38ch;
  }
  
  .meta {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  
  .panel {
    background: var(--white);
    border: 1px solid rgba(11,74,67,.06);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    padding: 40px;
  }
  
  .intro-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 380px;
    background: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
  }
  
  .soft-section {
    background: linear-gradient(180deg, #f8f7f2 0%, #f0f5f3 100%);
  }
  
  .timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 32px;
    border-left: 2px solid rgba(17, 135, 132, .2);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 40px;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  
  .timeline-badge {
    position: absolute;
    left: -43px;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary);
    box-shadow: var(--shadow-soft);
  }
  
  .timeline-step {
    font-size: 13px;
    font-weight: 700;
    color: var(--sand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 32px;
  }
  
  .gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 280px;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .gallery-item img:hover {
    transform: scale(1.05);
  }
  
  .gi-1 { grid-column: span 4; }
  .gi-2 { grid-column: span 8; }
  .gi-3 { grid-column: span 7; }
  .gi-4 { grid-column: span 5; }
  
  .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
  }
  
  .info-card {
    background: var(--white);
    border: 1px solid rgba(11,74,67,.06);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
  }
  
  .info-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--soft);
    display: grid;
    place-items: center;
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .info-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 6px;
  }
  
  .info-value {
    font-size: 1.35rem;
    color: var(--deep);
    font-weight: 700;
    margin: 0;
  }
  
  .footer {
    background: var(--deep-2);
    color: rgba(255,255,255,.90);
    padding: 56px 0 24px;
    margin-top: 92px;
  }
  
  .footer p, .footer a, .footer span {
    color: rgba(255,255,255,.88);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  
  .footer h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .footer small {
    display: block;
    padding-top: 20px;
    color: rgba(255,255,255,.72);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .footer-note-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }
  
  .footer-note-links a {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    color: #ffffff;
    font-size: 13px;
  }
  
  .footer-note-links a:hover { background: rgba(255,255,255,.16); }
  
  .link-list { display: grid; gap: 10px; }
  .link-list a { color: rgba(255,255,255,.88); }
  .link-list a:hover { color: #ffffff; text-decoration: underline; }
  
  .topbar a:hover, .contact-card a:hover, .footer p a:hover { text-decoration: underline; }
  
  @media (max-width: 1080px) {
    .split { grid-template-columns: 1fr; gap: 34px; }
    .grid-4, .grid-3, .info-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .nav { display: none; }
    .header-wrap { min-height: auto; padding: 8px 0; }
    .brand-logo { max-width: min(50vw, 240px); }
  }
  
  @media (max-width: 720px) {
    :root { --space: 72px; }
    .grid-4, .grid-3, .info-grid, .footer-grid { grid-template-columns: 1fr; }
    .gi-1, .gi-2, .gi-3, .gi-4 { grid-column: span 12; }
    .gallery-item { height: 220px; }
    .hero-wrap { padding: 80px 0 100px; }
    .panel, .info-card { padding: 24px; }
    .brand { width: 100%; justify-content: center; flex-direction: column; text-align: center; }
    .brand-logo { max-width: min(72vw, 320px); min-width: 180px; }
    .btn { width: 100%; }
    .btn-row { display: grid; }
  }

  .feature-icon svg {
    width: 32px;  /* Ajustez selon la grille */
    height: 32px;
    color: var(--primary-color, #0073aa); /* Ou la couleur de votre choix */
    display: block;
  }
  @media (max-width: 720px) {
    :root                     { --space: 52px; }
    .grid-3,
    .stories,
    .feature-list,
    .footer-grid,
    .contact-list,
    .stats,
    .newsletter-form,
    .search-grid              { grid-template-columns: 1fr; }
    .hero-wrap                { padding: 52px 0 72px; }
    .panel,
    .newsletter,
    .search-card              { padding: 22px; }
    .topbar-wrap              { align-items: flex-start; }
    .header                   { position: relative; }
    .header-wrap { 
      align-items: center;       /* Aligne verticalement le logo et le bouton hamburger */
      justify-content: space-between; /* Met le logo à gauche, le bouton à droite */
      flex-wrap: nowrap;          /* Force le tout sur une seule et même ligne */
    }

    .brand {
      width: auto;                /* Libère l'espace pour le bouton hamburger */
      display: flex;
      flex-direction: row;        /* <-- C'est ça ! Aligne l'image et le texte horizontalement */
      align-items: center;        /* Centre le texte verticalement par rapport à l'image */
      text-align: left;           /* Remet le texte aligné à gauche */
      gap: 16px;                  /* Garde un espacement sympa entre l'image et le texte */
    }

    .brand-logo {
      min-width: 120px;           /* Évite que le logo devienne trop géant sur mobile */
      max-width: 150px;
    }
    .brand-text span          { max-width: 320px; }
    .hero-mark                { width: 100%; justify-content: center; }
    .btn                      { width: 100%; }
    .btn-row                  { display: grid; }
    .visual                   { min-height: 240px; }
    .visual-label             { max-width: calc(100% - 36px); }
    .card-body p:not(.meta),
    .story-body p             { max-width: none; }
    .offer-media              { min-height: 200px; }
    .panel-media              { height: 180px; margin: -30px -30px 18px; }
    .section-links            { grid-template-columns: 1fr; }
    .btn-row                  { margin-top: 24px; }
  }
  @media (max-width: 1080px) {
    .nav.is-open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(247,245,240,.98);
      backdrop-filter: blur(10px);
      padding: 16px 14px;
      gap: 0;
      border-bottom: 1px solid rgba(11,74,67,.08);
      z-index: 100;
      box-shadow: 0 8px 24px rgba(11,74,67,.08);
    }
    .nav.is-open a {
      padding: 14px 0;
      border-bottom: 1px solid rgba(11,74,67,.06);
      width: 100%;
    }
    .nav.is-open ul  { display: flex; flex-direction: column; width: 100%; }
    .nav.is-open li  { display: block; }
    .header { position: relative; }
  }
  