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

    :root {
      --gold:        #B8974A;
      --gold-light:  #F9F4EA;
      --gold-dark:   #8A6E32;
      --navy:        #1A2340;
      --navy-mid:    #243055;
      --surface:     #F8F9FB;
      --white:       #FFFFFF;
      --text:        #0F172A;
      --muted:       #64748B;
      --border:      #E2E8F0;
      --radius:      12px;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: #ffffff;
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a.active {
      color: var(--navy);
      font-weight: 600;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 2px;
    }
    .nav-cta {
      background: var(--gold) !important;
      color: var(--white) !important;
      padding: 9px 20px !important;
      border-radius: 8px !important;
      font-weight: 600 !important;
      transition: background 0.2s, transform 0.15s !important;
    }
    .nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px) !important; }
    .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

    /* ── PAGE HERO ── */
    .page-hero {
      background: var(--navy);
      padding: 140px 32px 80px;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 100% 50%, rgba(184,151,74,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 0% 100%, rgba(184,151,74,0.08) 0%, transparent 50%);
      pointer-events: none;
    }
    .page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.4);
      margin-bottom: 24px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: rgba(255,255,255,0.7); }
    .breadcrumb-sep { opacity: 0.3; }
    .page-hero h1 {
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .page-hero h1 span { color: var(--gold); }
    .page-hero p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.6);
      max-width: 600px;
      line-height: 1.8;
    }

    /* ── CONTACT SECTION ── */
    .contact-section { background: var(--white); padding: 80px 32px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    /* Info side */
    .contact-info h2 {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.03em;
      margin-bottom: 12px;
    }

    .contact-info > p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 40px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }

    /* Breathing room between the intro text and the first contact detail */
    .contact-item:first-of-type {
      margin-top: 32px;
    }

    .contact-item-icon {
      width: 46px;
      height: 46px;
      background: var(--gold-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-item-body strong {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .contact-item-body span {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .contact-item-body a {
      font-size: 0.875rem;
      color: var(--gold);
      text-decoration: none;
      transition: color 0.2s;
    }

    .contact-item-body a:hover { color: var(--gold-dark); }

    .horaires-box {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      margin-top: 32px;
    }

    .horaires-box h3 {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .horaires-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.875rem;
    }

    .horaires-row:last-child { border-bottom: none; }

    .horaires-row span:first-child { color: var(--muted); }
    .horaires-row span:last-child { font-weight: 600; color: var(--navy); }

    /* Form side */
    .contact-form {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
    }

    .contact-form h2 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .contact-form > p {
      font-size: 0.875rem;
      color: var(--muted);
      margin-bottom: 28px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-group { margin-bottom: 16px; }

    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 11px 14px;
      font-size: 0.875rem;
      font-family: inherit;
      color: var(--text);
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--gold); }

    .form-group textarea { resize: vertical; min-height: 110px; }

    .form-submit {
      width: 100%;
      padding: 13px;
      background: var(--gold);
      color: var(--white);
      border: none;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      margin-top: 4px;
    }

    .form-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }

    .form-note {
      font-size: 0.75rem;
      color: var(--muted);
      text-align: center;
      margin-top: 12px;
    }

    /* ── MAP PLACEHOLDER ── */
    .map-section { background: var(--surface); padding: 0 32px 80px; }

    .map-box {
      max-width: 1200px;
      margin: 0 auto;
      background: var(--navy);
      border-radius: 20px;
      overflow: hidden;
      height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .map-box::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none; /* sits over the iframe — must not eat clicks */
      background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(184,151,74,0.1) 0%, transparent 70%);
    }

    .map-placeholder {
      position: relative;
      text-align: center;
    }

    .map-placeholder svg { opacity: 0.3; margin-bottom: 12px; }

    .map-placeholder p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.04em;
    }

    /* ── FOOTER ── */
    footer { background: var(--navy); padding: 60px 32px 32px; color: rgba(255,255,255,0.5); }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .footer-brand p { margin-top: 14px; font-size: 0.875rem; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.45); }
    .footer-col h4 { font-size: 0.75rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-bottom { padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
    .footer-bottom-right { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.3); }

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.reveal-left { transform: translateX(-32px); }
    .reveal.reveal-right { transform: translateX(32px); }
    .reveal.in-view { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
      .contact-section { padding: 60px 20px; }
      .page-hero { padding: 120px 20px 60px; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .form-row { grid-template-columns: 1fr; }
      .map-section { padding: 0 20px 60px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
    }
