:root {
      --bleu: #3a5a72;
      --bleu-light: #4e728f;
      --bleu-pale: #d8e5ed;
      --coral: #c47e6b;
      --coral-light: #d9a090;
      --coral-pale: #f2ddd7;
      --creme: #faf7f4;
      --dark: #1e2d38;
      --text: #3a3a3a;
      --white: #ffffff;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--creme);
      font-size: 16px;
      line-height: 1.7;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3rem;
      height: 72px;
      background: rgba(250,247,244,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(58,90,114,0.12);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--bleu);
      letter-spacing: 0.05em;
      text-decoration: none;
    }
    .nav-logo span { color: var(--coral); }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--dark);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--coral); }

    .nav-cta {
      background: var(--coral);
      color: white !important;
      padding: 0.5rem 1.3rem;
      border-radius: 2px;
    }
    .nav-cta:hover { background: var(--bleu) !important; color: white !important; }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 72px;
    }

    .hero-left {
      background: var(--bleu);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5rem 4rem 5rem 6rem;
      position: relative;
      overflow: hidden;
    }

    .hero-left::before {
      content: '';
      position: absolute;
      bottom: -80px; right: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: rgba(196,126,107,0.15);
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--coral-light);
      margin-bottom: 1.5rem;
      font-weight: 500;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 6vw, 5.5rem);
      font-weight: 300;
      line-height: 1.05;
      color: white;
      margin-bottom: 2rem;
    }
    .hero-title strong {
      font-weight: 600;
      font-style: italic;
      color: var(--coral-light);
      display: block;
    }

    .hero-subtitle {
      color: rgba(255,255,255,0.75);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 400px;
      margin-bottom: 2.5rem;
    }

    .hero-badges {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }
    .badge {
      border: 1px solid rgba(255,255,255,0.3);
      color: rgba(255,255,255,0.85);
      padding: 0.35rem 1rem;
      border-radius: 100px;
      font-size: 0.8rem;
      letter-spacing: 0.04em;
    }

    .hero-right {
      background: var(--coral-pale);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 5rem 3rem;
      text-align: center;
      position: relative;
    }

    /* Logo SVG inline */
    .logo-container {
      width: 260px;
      margin-bottom: 2.5rem;
    }

    .hero-right-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-style: italic;
      color: var(--bleu);
      margin-bottom: 0.5rem;
    }

    .hero-address {
      font-size: 0.85rem;
      color: var(--coral);
      letter-spacing: 0.05em;
      font-weight: 500;
    }

    /* Scroll hint */
    .scroll-hint {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--coral);
      opacity: 0.7;
      animation: bounce 2s infinite;
    }
    .scroll-hint::after {
      content: '';
      width: 1px;
      height: 40px;
      background: var(--coral);
    }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* ─── SECTION COMMON ─── */
    section { padding: 6rem 6rem; }
    .section-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--coral);
      font-weight: 500;
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 300;
      color: var(--bleu);
      line-height: 1.15;
      margin-bottom: 2rem;
    }
    .section-title em { font-style: italic; color: var(--coral); }

    /* ─── NAISSANCE ─── */
    #naissance {
      background: white;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .naissance-text p {
      margin-bottom: 1.2rem;
      color: var(--text);
      font-size: 0.95rem;
    }

    .naissance-right {
      padding-top: 1rem;
    }

    .pilier {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--bleu-pale);
    }
    .pilier:last-child { border-bottom: none; }

    .pilier-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: var(--coral-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.3rem;
    }

    .pilier h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--bleu);
      margin-bottom: 0.3rem;
    }
    .pilier p { font-size: 0.88rem; color: var(--text); opacity: 0.85; }

    /* ─── AMBITIONS ─── */
    #ambitions {
      background: var(--bleu);
      color: white;
    }
    #ambitions .section-title { color: white; }
    #ambitions .section-title em { color: var(--coral-light); }
    #ambitions .section-eyebrow { color: var(--coral-light); }

    .ambitions-grid {
	  display: grid;
	  grid-template-columns: repeat(4, 1fr);
	  gap: 1.5rem;
	  margin-top: 3rem;
	}

    .ambition-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 2rem;
      transition: background 0.3s, transform 0.3s;
    }
    .ambition-card:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-4px);
    }

    .ambition-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: var(--coral-light);
      line-height: 1;
      margin-bottom: 1rem;
      opacity: 0.6;
    }

    .ambition-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: white;
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }
    .ambition-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

    /* ─── OFFRE ─── */
    #offre {
      background: var(--creme);
    }

    .offre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      margin-top: 3rem;
    }

    .offre-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 24px rgba(58,90,114,0.06);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .offre-card:hover {
      box-shadow: 0 8px 40px rgba(58,90,114,0.12);
      transform: translateY(-4px);
    }

    .offre-card-header {
      padding: 2rem 2.5rem;
      background: var(--bleu);
    }
    .offre-card:nth-child(2) .offre-card-header { background: var(--coral); }

    .offre-card-header .tag {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-bottom: 0.5rem;
    }
    .offre-card-header h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      color: white;
      font-weight: 400;
    }
    .offre-card-header .capacity {
      margin-top: 0.5rem;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.7);
    }

    .offre-card-body {
      padding: 2rem 2.5rem;
    }
    .offre-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--bleu-pale);
      font-size: 0.9rem;
    }
    .offre-item:last-child { border-bottom: none; }
    .offre-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--bleu);
      flex-shrink: 0;
      margin-top: 8px;
    }
    .offre-card:nth-child(2) .offre-dot { background: var(--coral); }

    /* Boîte à idées */
    .ideas-box {
      margin-top: 2.5rem;
      background: var(--bleu-pale);
      border-radius: 12px;
      padding: 2.5rem;
      text-align: center;
    }
    .ideas-box h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      color: var(--bleu);
      margin-bottom: 0.5rem;
    }
    .ideas-box p { font-size: 0.9rem; color: var(--text); margin-bottom: 1.5rem; }
    .btn-idea {
      display: inline-block;
      background: var(--bleu);
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      transition: background 0.2s;
    }
    .btn-idea:hover { background: var(--coral); }

    /* ─── LOCALISATION ─── */
    #localisation {
      background: white;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .loc-address {
      font-size: 1.1rem;
      color: var(--bleu);
      font-weight: 500;
      margin-bottom: 2rem;
      padding: 1.5rem;
      background: var(--coral-pale);
      border-left: 4px solid var(--coral);
      border-radius: 0 8px 8px 0;
    }

    .loc-section { margin-bottom: 2rem; }
    .loc-section h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--bleu);
      font-weight: 600;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .loc-section ul { list-style: none; padding: 0; }
    .loc-section li {
      font-size: 0.88rem;
      padding: 0.3rem 0;
      color: var(--text);
      padding-left: 1rem;
      position: relative;
    }
    .loc-section li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--coral);
      font-size: 0.75rem;
    }

    .map-placeholder {
      background: var(--bleu-pale);
      border-radius: 12px;
      height: 400px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--bleu);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      overflow: hidden;
      position: relative;
    }
    .map-placeholder iframe {
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 12px;
    }

    /* ─── CONTACT ─── */
    #contact {
      background: var(--bleu);
      color: white;
      text-align: center;
    }
    #contact .section-title { color: white; }
    #contact .section-eyebrow { color: var(--coral-light); }

    .contact-card {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 16px;
      padding: 3rem 4rem;
      margin-top: 2.5rem;
    }

    .contact-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 300;
      color: white;
    }
    .contact-name strong { font-weight: 600; color: var(--coral-light); }

    .contact-phone {
      font-size: 1.5rem;
      font-weight: 500;
      color: white;
      letter-spacing: 0.05em;
      text-decoration: none;
    }
    .contact-phone:hover { color: var(--coral-light); }

    .contact-website {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      letter-spacing: 0.05em;
    }
    .contact-website:hover { color: var(--coral-light); }

    .contact-desc {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      font-style: italic;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.4);
      text-align: center;
      padding: 1.5rem;
      font-size: 0.78rem;
      letter-spacing: 0.04em;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      nav { padding: 0 1.5rem; }
      .nav-links { display: none; }
      #hero { grid-template-columns: 1fr; }
      .hero-left { padding: 3.5rem 2rem 3rem; }
      .hero-right { padding: 3rem 2rem; }
      section { padding: 4rem 2rem; }
      #naissance,
      #localisation { grid-template-columns: 1fr; gap: 2.5rem; }
      .ambitions-grid { grid-template-columns: repeat(2, 1fr); }
      .offre-grid { grid-template-columns: 1fr; }
      .contact-card { padding: 2rem; }
    }

    @media (max-width: 580px) {
      .ambitions-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ─── ANIMATIONS ─── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: none;
    }