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

  :root {
    --cream: #FAF6EE;
    --warm-white: #FDF9F3;
    --gold: #C8860A;
    --gold-pale: #F5E6C8;
    --dark-brown: #2C1A06;
    --text-body: #4A3728;
    --text-muted: #7A6555;
    --border: #E8D8B8;
  }

  html { scroll-behavior: smooth; }

  body {
    background-color: var(--cream);
    color: var(--text-body);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    box-shadow: 0 2px 12px rgba(44,26,6,0.07);
  }

  .nav-logo { display: flex; align-items: center; gap: 14px; }
  .nav-logo img { height: 48px; width: auto; }
  .nav-logo-text .brand {
    font-family: 'Playfair Display', serif; font-weight: 700;
    font-size: 14px; color: var(--dark-brown); display: block;
    letter-spacing: 0.03em; line-height: 1.2;
  }
  .nav-logo-text .loc { font-size: 11px; color: var(--text-muted); letter-spacing: 0.05em; }

  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--text-body); font-size: 14px;
    letter-spacing: 0.02em; transition: color 0.2s; position: relative;
  }
  .nav-links a.active, .nav-links a:hover { color: var(--gold); }
  .nav-links a.active::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--gold); border-radius: 1px;
  }

  .btn-nav {
    background: var(--gold); color: #fff; border: none; padding: 10px 22px;
    font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
    border-radius: 2px; text-decoration: none; transition: background 0.2s;
    display: flex; align-items: center; gap: 7px;
  }
  .btn-nav:hover { background: var(--dark-brown); }

  /* ─── HERO ─── */
  .hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; overflow: hidden; }

  .hero-text {
    padding: 64px 56px;
    display: flex; flex-direction: column; justify-content: center;
    background: var(--warm-white);
  }
  .hero-bienvenue {
    font-family: 'Playfair Display', serif; font-style: italic;
    color: var(--gold); font-size: 22px; margin-bottom: 14px;
    animation: fadeUp 0.6s 0.1s both;
  }
  .hero-title {
    font-family: 'Playfair Display', serif; font-weight: 700;
    font-size: 46px; line-height: 1.1; color: var(--dark-brown);
    margin-bottom: 20px; animation: fadeUp 0.6s 0.2s both;
  }
  .hero-desc {
    font-size: 15px; color: var(--text-muted); max-width: 380px;
    line-height: 1.7; margin-bottom: 34px; animation: fadeUp 0.6s 0.3s both;
  }
  .hero-buttons { display: flex; gap: 14px; animation: fadeUp 0.6s 0.4s both; }

  .btn-primary {
    background: var(--gold); color: #fff; padding: 13px 28px;
    font-family: 'Lato', sans-serif; font-weight: 700; font-size: 12px;
    letter-spacing: 0.09em; text-transform: uppercase; text-decoration: none;
    border-radius: 2px; transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--dark-brown); }

  .btn-outline {
    background: transparent; color: var(--dark-brown); padding: 12px 28px;
    font-family: 'Lato', sans-serif; font-weight: 700; font-size: 12px;
    letter-spacing: 0.09em; text-transform: uppercase; text-decoration: none;
    border: 1.5px solid var(--dark-brown); border-radius: 2px; transition: all 0.2s;
  }
  .btn-outline:hover { background: var(--dark-brown); color: #fff; }

  .hero-image { overflow: hidden; }
  .hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* ─── ORNEMENTS ─── */
  .div-wrap { display: flex; justify-content: center; padding: 6px 0; }
  .div-wrap img { height: 26px; width: auto; }

  /* ─── SECTION HEADER ─── */
  .section-head { text-align: center; padding: 52px 40px 4px; }
  .section-head-row {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-bottom: 8px;
  }
  .section-head-row img { height: 20px; width: auto; }
  .section-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 32px; color: var(--dark-brown); }
  .section-sub { font-size: 14px; color: var(--text-muted); font-style: italic; }

  /* ─── CREATIONS ─── */
  .creations { padding: 0 48px 64px; }
  .creations-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 36px; }

  .card {
    background: var(--warm-white); border: 1px solid var(--border);
    border-radius: 3px; overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
  }
  .card:hover { box-shadow: 0 10px 36px rgba(44,26,6,0.13); transform: translateY(-4px); }
  .card img { width: 100%; height: 220px; object-fit: cover; display: block; }
  .card-body { padding: 22px 24px 20px; }
  .card-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--dark-brown); margin-bottom: 8px; }
  .card-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; }
  .link-cta {
    color: var(--gold); font-weight: 700; font-size: 11px; letter-spacing: 0.09em;
    text-transform: uppercase; text-decoration: none;
    display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s;
  }
  .link-cta:hover { gap: 8px; }

  /* ─── ORDER BANNER ─── */
  .order-banner {
    background: var(--gold-pale);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    margin: 0 48px; padding: 36px 48px;
    display: flex; align-items: center; justify-content: center; gap: 52px;
    border-radius: 3px;
  }
  .order-banner img { height: 70px; width: auto; opacity: 0.9; }
  .order-banner-text { text-align: center; }
  .order-banner-text h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--dark-brown); margin-bottom: 4px; }
  .order-banner-text p { font-size: 14px; color: var(--text-muted); font-style: italic; }

  /* ─── A TASTE OF FRANCE ─── */
  .taste { padding: 52px 48px 64px; display: grid; grid-template-columns: 260px 1fr; gap: 52px; }
  .taste-intro h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--dark-brown); margin-bottom: 12px; line-height: 1.25; }
  .taste-intro p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
  .link-all {
    color: var(--gold); font-weight: 700; font-size: 11px; letter-spacing: 0.09em;
    text-transform: uppercase; text-decoration: none; display: inline-flex; gap: 4px;
  }
  .taste-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
  .taste-card { text-align: center; }
  .taste-card-img { overflow: hidden; border-radius: 2px; margin-bottom: 10px; }
  .taste-card img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform 0.3s; }
  .taste-card:hover img { transform: scale(1.04); }
  .taste-card span { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--dark-brown); }

  /* ─── FOOTER ─── */
  footer { background: var(--warm-white); border-top: 1px solid var(--border); padding: 40px 60px 24px; }
  .footer-top {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--border);
  }
  .footer-logo img { height: 50px; width: auto; margin-bottom: 10px; display: block; }
  .footer-logo .brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 13px; color: var(--dark-brown); display: block; margin-bottom: 10px; }
  .footer-quote { font-size: 12.5px; color: var(--text-muted); font-style: italic; line-height: 1.65; }
  .footer-quote .sig { display: block; margin-top: 6px; font-family: 'Playfair Display', serif; color: var(--gold); font-size: 13px; }
  .footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark-brown); margin-bottom: 14px; }
  .footer-col p, .footer-col address { font-size: 13px; color: var(--text-muted); font-style: normal; line-height: 1.8; }
  .soc { display: flex; gap: 14px; margin-top: 8px; }
  .soc a { color: var(--text-muted); font-size: 13px; font-weight: 700; text-decoration: none; transition: color 0.2s; }
  .soc a:hover { color: var(--gold); }
  .footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; font-size: 12px; color: var(--text-muted); }
  .footer-bottom a { color: var(--text-muted); text-decoration: none; }
  .footer-bottom a:hover { color: var(--gold); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-image { height: 280px; }
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .creations, .taste { padding-left: 20px; padding-right: 20px; }
    .creations-grid { grid-template-columns: 1fr; }
    .taste { grid-template-columns: 1fr; }
    .order-banner { margin: 0 20px; flex-direction: column; gap: 20px; text-align: center; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    footer { padding: 32px 24px 20px; }
  }

  /* Téléphones (≤480px) : le logo + nom + bouton "ORDER ONLINE" ne rentrent
     plus. On masque le nom + la localisation, on garde le logo image seul.
     Au-dessus de 480px (tablette), le nom reste affiché. */
  @media (max-width: 480px) {
    .nav-logo-text { display: none; }
  }