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

    :root {
      --green-deep: #1B4332;
      --green-mid: #2D6A4F;
      --gold: #C9A227;
      --gold-light: #E8C84A;
      --cream: #F5F0E8;
      --brown-dark: #3D1C02;
      --brown-mid: #6B3A1F;
      --white: #FFFFFF;
      --text-dark: #1a1a1a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: rgba(27, 67, 50, 0.97);
      backdrop-filter: blur(8px);
      z-index: 1002;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 32px;
      border-bottom: 2px solid var(--gold);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-logo svg {
      width: 48px;
      height: 48px;
    }

    .nav-brand {
      display: flex;
      flex-direction: column;
    }

    .nav-brand span:first-child {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 900;
      color: var(--gold);
      letter-spacing: 2px;
    }

    .nav-brand span:last-child {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.7);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: var(--gold);
      color: var(--brown-dark) !important;
      padding: 8px 20px;
      border-radius: 40px;
      font-weight: 600 !important;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 60%, #1B4332 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding-top: 80px;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .hero-glow {
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 800px;
      padding: 0 24px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,162,39,0.15);
      border: 1px solid rgba(201,162,39,0.4);
      color: var(--gold-light);
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    /* Logo SVG in hero */
    .hero-logo-svg {
      width: 100%;
      max-width: 640px;
      height: auto;
      display: inline-block;
      border-radius: 16px;
      margin: 0 auto 24px;
      filter: drop-shadow(0 8px 28px rgba(0,0,0,0.4));
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 7vw, 5rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .hero h1 span { color: var(--gold); }

    .hero-tagline {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.75);
      margin-bottom: 8px;
      font-style: italic;
      letter-spacing: 1px;
    }

    .hero-arabic {
      font-size: 2rem;
      color: var(--gold-light);
      margin-bottom: 24px;
      font-weight: 700;
    }

    .hero-desc {
      font-size: 1rem;
      color: rgba(255,255,255,0.7);
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--brown-dark);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 20px rgba(201,162,39,0.35);
    }

    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,0.5); }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.35);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-outline:hover { border-color: var(--gold); background: rgba(201,162,39,0.1); }

    /* ── VALUES STRIP ── */
    .values-strip {
      background: var(--brown-dark);
      padding: 20px 0;
      overflow: hidden;
    }

    .values-ticker {
      display: flex;
      gap: 60px;
      animation: ticker 20s linear infinite;
      white-space: nowrap;
    }

    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .values-ticker span {
      color: var(--gold);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 16px;
    }

    .values-ticker span::after {
      content: '✦';
      color: rgba(201,162,39,0.5);
    }

    /* ── ABOUT ── */
    .about {
      padding: 100px 24px;
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--green-deep);
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .about-text h2 span { color: var(--gold); }

    .about-text p {
      font-size: 1rem;
      line-height: 1.8;
      color: #444;
      margin-bottom: 16px;
    }

    .about-pills {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .pill {
      background: var(--green-deep);
      color: var(--white);
      padding: 6px 16px;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .pill.gold { background: var(--gold); color: var(--brown-dark); }

    .about-visual {
      position: relative;
    }

    .about-card {
      background: var(--green-deep);
      border-radius: 20px;
      padding: 40px;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .about-card::before {
      content: 'حلال';
      position: absolute;
      font-size: 8rem;
      font-weight: 900;
      color: rgba(255,255,255,0.05);
      right: -10px;
      top: 10px;
      line-height: 1;
    }

    .halal-seal {
      width: 80px;
      height: 80px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .halal-seal span:first-child {
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--brown-dark);
      line-height: 1;
    }

    .halal-seal span:last-child {
      font-size: 0.55rem;
      font-weight: 700;
      color: var(--brown-dark);
      letter-spacing: 1px;
    }

    .about-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      margin-bottom: 12px;
      color: var(--gold-light);
    }

    .about-card p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.8);
    }

    .about-stat {
      position: absolute;
      bottom: -20px;
      right: 30px;
      background: var(--gold);
      color: var(--brown-dark);
      padding: 16px 24px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .about-stat strong { display: block; font-size: 2rem; font-weight: 900; font-family: 'Playfair Display', serif; }
    .about-stat span { font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

    /* ── PRODUCTS ── */
    .products {
      background: var(--green-deep);
      padding: 100px 24px;
    }

    .section-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 60px;
    }

    .section-eyebrow {
      display: inline-block;
      color: var(--gold);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1.2;
    }

    .section-header p {
      margin-top: 14px;
      color: rgba(255,255,255,0.65);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .product-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(201,162,39,0.25);
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
      cursor: pointer;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.3);
      border-color: rgba(201,162,39,0.6);
    }

    .product-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .product-body {
      padding: 24px;
    }

    .product-weight {
      display: inline-block;
      background: var(--gold);
      color: var(--brown-dark);
      padding: 4px 14px;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .product-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px;
    }

    .product-desc {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .product-price {
      font-size: 1.8rem;
      font-weight: 900;
      font-family: 'Playfair Display', serif;
      color: var(--gold-light);
    }

    .product-price span {
      font-size: 0.9rem;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      color: rgba(255,255,255,0.5);
      margin-left: 4px;
    }

    .product-btn {
      display: block;
      width: 100%;
      margin-top: 16px;
      background: var(--gold);
      color: var(--brown-dark);
      border: none;
      padding: 12px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 0.9rem;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }

    .product-btn:hover { background: var(--gold-light); transform: scale(1.02); }

    /* ── ORDER FORM ── */
    #commande {
      padding: 100px 24px;
      max-width: 700px;
      margin: 0 auto;
    }

    #commande .section-header { color: var(--text-dark); }
    #commande .section-header h2 { color: var(--green-deep); }
    #commande .section-header p { color: #555; }

    .order-form {
      background: var(--white);
      border-radius: 24px;
      padding: 44px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.1);
      border: 1px solid rgba(27,67,50,0.1);
    }

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

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

    .form-group label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--green-deep);
      margin-bottom: 7px;
      letter-spacing: 0.3px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #e5e5e5;
      border-radius: 10px;
      font-size: 0.95rem;
      font-family: 'Inter', sans-serif;
      transition: border-color 0.2s;
      outline: none;
      background: #fafafa;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--green-mid);
      background: #fff;
    }

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

    .pay-option {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      background: #f5f5f5;
      border: 2px solid #e5e5e5;
      border-radius: 10px;
      padding: 10px 18px;
      font-size: 0.9rem;
      font-weight: 600;
      color: #444;
      transition: border-color 0.2s, background 0.2s;
      user-select: none;
    }

    .pay-option input[type="radio"] { accent-color: var(--green-deep); width: 16px; height: 16px; }

    .pay-option:has(input:checked) {
      border-color: var(--green-deep);
      background: rgba(27,67,50,0.07);
      color: var(--green-deep);
    }

    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--green-deep);
      color: var(--white);
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .form-submit:hover { background: var(--green-mid); transform: translateY(-1px); }
    .form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

    .form-note {
      text-align: center;
      margin-top: 14px;
      font-size: 0.78rem;
      color: #888;
    }

    /* Success/error */
    .form-message {
      display: none;
      padding: 16px 20px;
      border-radius: 12px;
      margin-bottom: 24px;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .form-message.success {
      background: #d1fae5;
      color: #065f46;
      border: 1px solid #6ee7b7;
      display: block;
    }

    .form-message.error {
      background: #fee2e2;
      color: #991b1b;
      border: 1px solid #fca5a5;
      display: block;
    }

    /* ── CONTACT ── */
    .contact {
      background: var(--brown-dark);
      padding: 80px 24px;
    }

    .contact-inner {
      max-width: 800px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .contact-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--gold-light);
      margin-bottom: 16px;
    }

    .contact-left p {
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 14px;
      color: rgba(255,255,255,0.85);
    }

    .contact-icon {
      width: 42px;
      height: 42px;
      background: rgba(201,162,39,0.15);
      border: 1px solid rgba(201,162,39,0.3);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
    }

    .contact-item a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.9rem;
    }

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

    /* ── FOOTER ── */
    footer {
      background: #0d2218;
      padding: 28px 24px;
      text-align: center;
      color: rgba(255,255,255,0.4);
      font-size: 0.78rem;
    }

    footer span { color: var(--gold); }

    /* ── WHATSAPP FLOAT ── */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 998;
      background: #25D366;
      color: white;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(37,211,102,0.4);
      transition: transform 0.2s;
    }

    .whatsapp-float:hover { transform: scale(1.12); }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
      nav { padding: 10px 16px; }
      .nav-links { display: none; }
      .about { grid-template-columns: 1fr; gap: 40px; padding: 60px 16px; }
      .about-stat { position: relative; bottom: auto; right: auto; display: inline-block; margin-top: 16px; }
      .form-row { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; gap: 40px; }
      .order-form { padding: 28px 20px; }
      .hero h1 { font-size: 2.4rem; }
    }
  
    /* ── PAGE TEASERS (accueil) ── */
    .page-teasers {
      padding: 90px 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .teasers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 24px;
      margin-top: 50px;
    }

    .teaser-card {
      background: var(--white);
      border: 1px solid rgba(27,67,50,0.1);
      border-radius: 20px;
      padding: 32px 26px;
      text-decoration: none;
      display: block;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    }

    .teaser-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(0,0,0,0.1);
      border-color: var(--gold);
    }

    .teaser-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--green-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 18px;
    }

    .teaser-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--green-deep);
      margin-bottom: 8px;
    }

    .teaser-card p {
      font-size: 0.88rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .teaser-link {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    /* ── PAGE HEADER (pages internes) ── */
    .page-header {
      background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
      padding: 150px 24px 70px;
      text-align: center;
    }

    .page-header .section-eyebrow { color: var(--gold-light); }
    .page-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 900;
      color: var(--white);
      margin-top: 10px;
    }

    .page-header p {
      color: rgba(255,255,255,0.7);
      max-width: 560px;
      margin: 16px auto 0;
      line-height: 1.7;
      font-size: 0.95rem;
    }

    /* ── IMPACT PAGE ── */
    .impact-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: -40px auto 0;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }

    .impact-stat-card {
      background: var(--white);
      border-radius: 18px;
      padding: 28px 22px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .impact-stat-card strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 2.1rem;
      font-weight: 900;
      color: var(--green-deep);
    }

    .impact-stat-card span {
      font-size: 0.78rem;
      color: #666;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .impact-blocks {
      max-width: 900px;
      margin: 90px auto;
      padding: 0 24px;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .impact-block {
      display: grid;
      grid-template-columns: 60px 1fr;
      gap: 24px;
    }

    .impact-block-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      background: var(--cream);
      border: 2px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      flex-shrink: 0;
    }

    .impact-block h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--green-deep);
      margin-bottom: 10px;
    }

    .impact-block p {
      color: #444;
      line-height: 1.8;
      font-size: 0.96rem;
    }

    .impact-cta {
      background: var(--brown-dark);
      padding: 80px 24px;
      text-align: center;
    }

    .impact-cta h2 {
      font-family: 'Playfair Display', serif;
      color: var(--gold-light);
      font-size: 2rem;
      margin-bottom: 16px;
    }

    .impact-cta p {
      color: rgba(255,255,255,0.75);
      max-width: 560px;
      margin: 0 auto 28px;
      line-height: 1.7;
      font-size: 0.95rem;
    }

    @media (max-width: 768px) {
      .impact-block { grid-template-columns: 1fr; }
      .page-header { padding: 130px 20px 60px; }
    }

    /* ── MOBILE NAV TOGGLE ── */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }

    .nav-toggle span {
      display: block;
      width: 26px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }

    .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 999;
    }

    .nav-overlay.open { display: block; }

    @media (max-width: 768px) {
      .nav-toggle { display: flex; }

      .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -80%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--green-deep);
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
        padding: 100px 32px 32px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.35);
        visibility: hidden;
      }

      .nav-links.open { visibility: visible; }

      .nav-links.open { right: 0; }

      .nav-links a {
        font-size: 1rem;
      }

      .nav-links .nav-cta {
        margin-top: 8px;
      }
    }
