
  :root {
    --bg: #fbfaf5;
    --bg-alt: #f1ede1;
    --cream: #faf6ec;
    --ink: #0e1a14;
    --ink-soft: #1d2a22;
    --muted: #6b6b66;
    --line: #e6e3da;
    --uae-red: #ce1126;
    --uae-green: #00732f;
    --uae-green-light: #2a8d52;
    --uae-black: #000000;
    --gold: #b88a3e;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
  }

  .display { font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: -0.01em; }
  .arabic { font-family: 'Amiri', serif; }

  .pattern-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
      radial-gradient(circle at 18% 12%, rgba(0,115,47,0.04), transparent 45%),
      radial-gradient(circle at 82% 88%, rgba(206,17,38,0.03), transparent 45%),
      var(--bg);
    pointer-events: none;
  }

  /* ===== Top strip ===== */
  .top-strip {
    background: #006328;
    color: #d5d2c8;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 8px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .top-strip::before, .top-strip::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px;
  }
  .top-strip::before { left: 0;     background: #9c7135; }
  .top-strip::after { right: 0; background: var(--uae-red); }
  .top-strip span { position: relative; z-index: 1; }

  /* ===== Nav ===== */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251,250,245,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
  }
    .logo-mini img {
  width: 120px;
  }
  .logo-mini .mark {
    width: 44px; height: 44px;
    background: var(--ink);
    display: grid; place-items: center;
    border-radius: 4px;
  }
  .logo-mini .mark svg { width: 30px; height: 30px; }
  .logo-mini .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .logo-mini .sub {
    font-size: 9px; letter-spacing: 0.42em;
    color: var(--muted);
    margin-top: 4px;
  }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links li{
    display:flex;
    align-items:center;
}

  .nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: var(--uae-green);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: rgb(0, 0, 0); }
  .nav-links a:hover::after { width: 100%; }

.nav-cta{
    display:flex;
    align-items:center;
    justify-content:center;
    height:44px;
    padding:0 22px;
    text-decoration:none;
}
.mobile-order-btn{ background-color: #9c7135;  ;
    color: white !important;
    padding: 12px 22px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
    font-weight: 500;}

    .mobile-order-btn:hover{   background-color: #00732f;
    color: white !important;
    padding: 12px 22px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
    font-weight: 500;}





.mobile-order-btn a,
.mobile-order-btn a:hover,
.mobile-order-btn a:focus,
.mobile-order-btn a:visited{
    color:#fff !important;
}







  .menu-toggle { display: none; background: none; border: none; cursor: pointer; }
@media (max-width:991px){
   .logo-mini img {
  width: 90px;
  }
    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:28px;
        width:42px;
        height:42px;
        z-index:1001;
    }

    .nav-inner{
        min-height:70px;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#faf6ec;
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
        gap:18px;
        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .nav-links.show{
        display:flex;
    }

  
    .nav-inner > .nav-cta{
        display:none;
    }

    .mobile-order-btn{
        width:100%;
        margin-top:10px;
    }

}
  /* ===== Hero ===== */
  .hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px 100px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 78vh;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--uae-green);
    margin-bottom: 30px;
    font-weight: 500;
  }
  .hero-eyebrow::before {
    content: '';
    width: 36px; height: 1px;
    background: var(--uae-green);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(46px, 6vw, 86px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--uae-green);
    font-weight: 400;
  }
  .hero h1 .red-accent {
    color: var(--uae-red);
    font-style: italic;
    font-weight: 400;
  }
  .hero p.lede {
    font-size: 18px;
    color: var(--muted);
    max-width: 490px;
    margin-bottom: 40px;
    line-height: 1.7;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--uae-green);
    color: white;
    padding: 16px 32px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
  }
  .btn-primary:hover {     background: #9c7135; transform: translateY(-2px); }
  .btn-ghost {
    color: var(--ink);
    padding: 16px 32px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--ink);
    transition: all 0.3s;
  }
  .btn-ghost:hover { background: #9c7135; color: white; }

  /* Hero visual: produce composition */
  .hero-visual {
    position: relative;
    aspect-ratio: 1 / 1.05;
    display: grid;
    place-items: center;
  }
  .hero-visual svg { width: 100%; height: 100%; }

  /* Stats strip */
  .stat-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-alt);
  }
  .stat-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .stat-num sup { font-size: 22px; color: var(--uae-red); }
  .stat-label {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ===== Section base ===== */
  section { padding: 110px 40px; }
  .container { max-width: 1280px; margin: 0 auto; }
  .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--uae-green);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .section-eyebrow::before {
    content: '';
    width: 36px; height: 1px;
    background: var(--uae-green);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
    max-width: 760px;
  }
  .section-title em { font-style: italic; color: var(--uae-green); }

  /* ===== About ===== */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }
  .about-text p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 520px;
  }
  .about-text .lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--ink-soft);
    margin-bottom: 30px;
    line-height: 1.5;
  }

  .vision-mission {
    margin-top: 36px;
    display: grid;
    gap: 24px;
  }
  .vm-card {
    padding: 22px 24px;
    background: var(--bg);
    border-left: 3px solid var(--uae-green);
  }
  .vm-card.red-accent { border-left-color: var(--uae-red); }
  .vm-label {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--uae-green);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .vm-card.red-accent .vm-label { color: var(--uae-red); }
  .vm-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.5;
    font-style: italic;
    color: var(--ink-soft);
  }

  .about-visual {
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #e8f3e6, #d4ebd2);
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .about-visual::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(0,115,47,0.15);
    pointer-events: none;
    z-index: 2;
  }
  .about-visual svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .about-quote {
    position: absolute;
    bottom: 36px;
    left: 36px;
    right: 36px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.4;
    color: var(--ink);
    z-index: 3;
  }
  .about-quote::before {
    content: '"';
    font-size: 60px;
    line-height: 0.4;
    color: var(--uae-green);
    margin-right: 4px;
    vertical-align: -0.3em;
  }

  /* ===== Categories ===== */
  .categories {
    background: var(--cream);
  }
  .cat-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .cat-card {
    background: white;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
    position: relative;
  }
  .cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.15);
  }
  .cat-art {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #fef6e8, #fae8c8);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
  }
  .cat-card:nth-child(2) .cat-art { background: linear-gradient(135deg, #e8f3e6, #c8e6c4); }
  .cat-card:nth-child(3) .cat-art { background: linear-gradient(135deg, #fae4e1, #f4c8c2); }
  .cat-art svg { width: 70%; height: 70%; }
  .cat-body {
    padding: 30px 28px 32px;
  }
  .cat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--uae-green);
    letter-spacing: 0.25em;
    margin-bottom: 8px;
        font-weight: 700;
  }
  .cat-card:nth-child(3) .cat-num { color: var(--uae-red); }
  .cat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .cat-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .cat-link {
    color: var(--ink);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: gap 0.3s;
  }
  .cat-link:hover { gap: 14px; }

  /* ===== Benefits / Why eat fresh ===== */
  .benefits { background: var(--ink); color: white; position: relative; overflow: hidden; }
  .benefits::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, var(--uae-green) 0%, var(--uae-green) 33%, white 33%, white 66%, #9c7135 66%, var(--uae-red) 100%);

  }
  .benefits .section-eyebrow { color: #5ec47d; }
  .benefits .section-eyebrow::before { background: #5ec47d; }
  .benefits .section-title { color: white; }
  .benefits .section-title em { color: #5ec47d; }
  .benefits-intro {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 60px;
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .benefit-card {
    background: var(--ink);
    padding: 38px 28px 32px;
    transition: background 0.4s;
  }
  .benefit-card:hover { background: #18241c; }
  .benefit-icon {
    width: 36px; height: 36px;
    margin-bottom: 22px;
    color: #5ec47d;
  }
  .benefit-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: #5ec47d;
    letter-spacing: 0.25em;
  }
  .benefit-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    margin: 12px 0 14px;
  }
  .benefit-card p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.7;
  }

  /* ===== Who we serve ===== */
  .serve { background: var(--bg); }
  .serve-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  .serve-item {
    padding: 38px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.3s;
  }
  .serve-item:hover {    background: #e1cfb5; }
  .serve-icon {
    width: 40px; height: 40px;
    margin-bottom: 22px;
    color: var(--uae-green);
  }
  .serve-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .serve-item p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
  }

  /* ===== Testimonials ===== */
  .testimonials { background: var(--bg-alt); }
  .quotes {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .quote-card {
    background: white;
    padding: 44px 40px 38px;
    border: 1px solid var(--line);
    position: relative;
  }ni 
  .quote-card::before {
    content: '"';
    position: absolute;
    top: 16px; left: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    line-height: 1;
    color: var(--uae-green);
    opacity: 0.25;
  }
  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    font-style: italic;
    margin-bottom: 26px;
    position: relative;
  }
  .quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
  .quote-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--uae-green);
    color: white;
    display: grid;
    place-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
  }
  .quote-card:nth-child(even) .quote-avatar { background: var(--uae-red); }
  .quote-meta .name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
  }
  .quote-meta .role {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ===== Contact ===== */
  .contact {
    /* background: linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%); */
    position: relative;
        background: var(--bg-alt);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
  }
  .contact-info p.lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    margin-bottom: 36px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 460px;
  }
  .contact-blocks { display: grid; gap: 28px; }
  .contact-block {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
  .contact-block:last-child { border-bottom: none; }
  .contact-block .label {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .contact-block .value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--ink);
  }
  .contact-block .value a { color: inherit; text-decoration: none; }
  .contact-block .value a:hover { color: var(--uae-green); }

  form.contact-form {
    background: white;
    padding: 44px 40px;
    border: 1px solid var(--line);
    display: grid;
    gap: 22px;
  }
  .contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .form-row { display: grid; gap: 8px; }
  .form-row label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .form-row input, .form-row textarea, .form-row select {
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    padding: 10px 0;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.3s;
  }






  
  .form-row input:focus, .form-row textarea:focus, .form-row select:focus {
    border-bottom-color: var(--uae-green);
  }
  .form-row textarea { min-height: 90px; resize: vertical; }
  .form-submit {
    background: var(--uae-green);
    color: white;
    border: none;
    padding: 16px;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.3s;
    font-weight: 500;
  }
  .form-submit:hover { background: var(--ink); }

  /* ===== Footer ===== */
  footer {
    background: var(--ink);
    color: #999992;
    padding: 70px 40px 30px;
    position: relative;
  }
  footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
        background: linear-gradient(to right, var(--uae-green) 0%, var(--uae-green) 25%, #9c7135 25%, #9c7135 50%, #9c7135 50%, #9c7135 75%, var(--uae-red) 75%, var(--uae-red) 100%);
  }
  .footer-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
  }
  .footer-brand .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: white;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
  }
    .footer-brand img {
width: 150px;
  }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
  }
  .footer-col h5 {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 18px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; display: grid; gap: 10px;    padding-left: 0px; }
  .footer-col a {
    color: #999992;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: white; }
  /* .footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.1em;
  } */

  .footer-bottom{
    max-width:1280px;
    margin:0 auto;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,0.08);

    text-align:center;

    font-size:12px;
    letter-spacing:0.1em;
}
  .footer-bottom .made { color: #666; }
  .footer-bottom .made span { color: var(--uae-red); }

  /* ===== Responsive ===== */
  @media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; padding: 60px 24px 80px; gap: 40px; }
    .hero-visual { max-width: 400px; margin: 0 auto; }
    .stat-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 30px 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .cat-grid { grid-template-columns: 1fr; gap: 24px; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .serve-grid { grid-template-columns: 1fr 1fr; }
    .quotes { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .nav-links, .nav-cta { display: none; }
    .menu-toggle { display: block; }
    .nav-inner { padding: 14px 24px; }
    section { padding: 70px 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; }
  }
  @media (max-width: 520px) {
    .stat-inner { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 44px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .serve-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
    .footer-inner { grid-template-columns: 1fr; }
  }

  /* Entrance animations */
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease forwards;
  }
  .fade-up.d1 { animation-delay: 0.1s; }
  .fade-up.d2 { animation-delay: 0.25s; }
  .fade-up.d3 { animation-delay: 0.4s; }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }