  :root {
    --cream: #FFF8EE;
    --warm-white: #FFFDF9;
    --deep-green: #1A3B2A;
    --leaf-green: #2D6A4F;
    --lime: #74C69D;
    --mango: #F4A261;
    --berry: #C77DFF;
    --cherry: #E63946;
    --lemon: #FFD166;
    --peach: #FF8C69;
    --text-dark: #1C1C1C;
    --text-mid: #4A4A4A;
  }
 
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
  html { scroll-behavior: smooth; }
 
  body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }
 
  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 5vw;
    background: rgba(255,248,238,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26,59,42,0.08);
  }
 
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--deep-green);
    letter-spacing: -0.5px;
  }
 
  .logo span { color: var(--cherry); font-style: italic; }
 
  nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
 
  nav ul a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }
 
  nav ul a:hover { color: var(--leaf-green); }
 
  .nav-cta {
    background: var(--deep-green);
    color: var(--cream) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    transition: background 0.25s !important;
  }
 
  .nav-cta:hover { background: var(--leaf-green) !important; color: white !important; }
 
  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 5vw 60px;
    position: relative;
    overflow: hidden;
  }
 
  .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(116,198,157,0.18) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(244,162,97,0.15) 0%, transparent 50%);
    pointer-events: none;
  }
 
  /* Floating fruit emojis */
  .float-fruit {
    position: absolute;
    font-size: 3rem;
    opacity: 0.25;
    animation: floatUp 6s ease-in-out infinite;
    pointer-events: none;
  }
 
  .float-fruit:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; font-size: 2.5rem; }
  .float-fruit:nth-child(2) { top: 60%; left: 3%; animation-delay: 1.5s; font-size: 2rem; }
  .float-fruit:nth-child(3) { top: 25%; right: 5%; animation-delay: 0.8s; font-size: 3.5rem; }
  .float-fruit:nth-child(4) { top: 70%; right: 8%; animation-delay: 2.2s; font-size: 2.2rem; }
  .float-fruit:nth-child(5) { top: 45%; left: 48%; animation-delay: 1s; font-size: 1.8rem; }
 
  @keyframes floatUp {
    0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.2; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.35; }
  }
 
  .hero-text { position: relative; z-index: 2; }
 
  .hero-tag {
    display: inline-block;
    background: var(--lime);
    color: var(--deep-green);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.6s ease both;
  }
 
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--deep-green);
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.7s 0.1s ease both;
  }
 
  .hero h1 em {
    font-style: italic;
    color: var(--cherry);
    display: block;
  }
 
  .hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeSlideUp 0.7s 0.2s ease both;
  }
 
  .hero-btns {
    display: flex;
    gap: 1rem;
    animation: fadeSlideUp 0.7s 0.3s ease both;
  }
 
  .btn-primary {
    background: var(--deep-green);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
  }
 
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,59,42,0.25); }
 
  .btn-secondary {
    background: transparent;
    color: var(--deep-green);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid var(--deep-green);
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
 
  .btn-secondary:hover { background: var(--deep-green); color: white; }
 
  /* Hero visual side */
  .hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeSlideUp 0.8s 0.15s ease both;
  }
 
  .fruit-bowl {
    position: relative;
    width: 420px;
    height: 420px;
  }
 
  .bowl-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(116,198,157,0.2), rgba(244,162,97,0.15));
    border: 2px solid rgba(26,59,42,0.08);
    animation: spin 20s linear infinite;
  }
 
  @keyframes spin { to { transform: rotate(360deg); } }
 
  .center-fruit {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9rem;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: centerFloat 4s ease-in-out infinite;
  }
 
  @keyframes centerFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.03); }
  }
 
  .orbit-fruit {
    position: absolute;
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    animation: orbit 8s linear infinite;
    transform-origin: 210px 210px;
  }
 
  .orbit-fruit:nth-child(2) { animation-delay: 0s; top: 10px; left: 50%; margin-left: -24px; }
  .orbit-fruit:nth-child(3) { animation-delay: -2s; top: 50%; right: 10px; margin-top: -24px; }
  .orbit-fruit:nth-child(4) { animation-delay: -4s; bottom: 10px; left: 50%; margin-left: -24px; }
  .orbit-fruit:nth-child(5) { animation-delay: -6s; top: 50%; left: 10px; margin-top: -24px; }
 
  /* STATS BAR */
  .stats {
    background: var(--deep-green);
    color: white;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }
 
  .stat-item {
    flex: 1;
    padding: 2rem 2.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
    cursor: default;
  }
 
  .stat-item:last-child { border-right: none; }
  .stat-item:hover { background: rgba(255,255,255,0.05); }
 
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lemon);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
  }
 
  .stat-label {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    opacity: 0.75;
    text-transform: uppercase;
  }
 
  /* FRUITS GRID */
  .fruits-section {
    padding: 6rem 5vw;
  }
 
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
 
  .section-tag {
    display: inline-block;
    color: var(--leaf-green);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
 
  .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--deep-green);
    line-height: 1.1;
  }
 
  .section-header h2 em { font-style: italic; color: var(--cherry); }
 
  .fruits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
  }
 
  .fruit-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
  }
 
  .fruit-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
 
  .fruit-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
    position: relative;
    overflow: hidden;
  }
 
  .fruit-card:hover .fruit-card-img .fruit-emoji {
    animation: bounce 0.5s ease;
  }
 
  @keyframes bounce {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.15); }
  }
 
  .fruit-card-body { padding: 1.2rem 1.4rem 1.6rem; }
 
  .fruit-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-green);
    margin-bottom: 0.3rem;
  }
 
  .fruit-origin {
    font-size: 0.78rem;
    color: var(--leaf-green);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
  }
 
  .fruit-desc {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1rem;
  }
 
  .fruit-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
  }
 
  .fruit-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-weight: 500;
  }
 
  .tag-sweet { background: rgba(255,209,102,0.3); color: #7B5F00; }
  .tag-citrus { background: rgba(244,162,97,0.25); color: #8A4000; }
  .tag-tropical { background: rgba(116,198,157,0.3); color: #1A5C3A; }
  .tag-berry { background: rgba(199,125,255,0.25); color: #5B0D8A; }
  .tag-stone { background: rgba(230,57,70,0.18); color: #8A0010; }
  .tag-seasonal { background: rgba(26,59,42,0.12); color: var(--deep-green); }
 
  /* SEASONAL BANNER */
  .seasonal {
    margin: 0 5vw;
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--leaf-green) 100%);
    border-radius: 28px;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    overflow: hidden;
    position: relative;
  }
 
  .seasonal::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
  }
 
  .seasonal-text { color: white; max-width: 500px; }
 
  .seasonal-text .section-tag { color: var(--lemon); }
 
  .seasonal-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
 
  .seasonal-text p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
    font-weight: 300;
    margin-bottom: 2rem;
  }
 
  .seasonal-fruits {
    display: flex;
    gap: 1rem;
    font-size: 4rem;
    flex-shrink: 0;
  }
 
  .seasonal-fruit {
    animation: floatUp 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
  }
 
  .seasonal-fruit:nth-child(2) { animation-delay: 1s; }
  .seasonal-fruit:nth-child(3) { animation-delay: 2s; }
 
  /* BENEFITS */
  .benefits {
    padding: 6rem 5vw;
  }
 
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
  }
 
  .benefit-card {
    padding: 2rem;
    border-radius: 16px;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.25s;
  }
 
  .benefit-card:hover { transform: translateY(-4px); }
 
  .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
 
  .benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-green);
    margin-bottom: 0.5rem;
  }
 
  .benefit-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
    font-weight: 300;
  }
 
  /* NEWSLETTER */
  .newsletter {
    padding: 5rem 5vw;
    text-align: center;
    background: var(--warm-white);
  }
 
  .newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--deep-green);
    margin-bottom: 0.8rem;
  }
 
  .newsletter p {
    color: var(--text-mid);
    margin-bottom: 2rem;
    font-weight: 300;
  }
 
  .newsletter-form {
    display: flex;
    gap: 0.7rem;
    max-width: 440px;
    margin: 0 auto;
  }
 
  .newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.4rem;
    border: 1.5px solid rgba(26,59,42,0.2);
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    background: white;
    outline: none;
    color: var(--text-dark);
    transition: border-color 0.2s;
  }
 
  .newsletter-form input:focus { border-color: var(--leaf-green); }
  .newsletter-form input::placeholder { color: #aaa; }
 
  /* FOOTER */
  footer {
    background: var(--deep-green);
    color: white;
    padding: 3.5rem 5vw 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
  }
 
  .footer-brand .logo { color: white; }
  .footer-brand .logo span { color: var(--lemon); }
 
  .footer-brand p {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.65;
    line-height: 1.7;
    font-weight: 300;
  }
 
  .footer-col h4 {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 1.2rem;
  }
 
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.88rem; font-weight: 300; transition: opacity 0.2s; }
  .footer-col ul a:hover { opacity: 1; color: var(--lemon); }
 
  .footer-bottom {
    background: rgba(0,0,0,0.15);
    padding: 1.2rem 5vw;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
  }
 
  /* SCROLL ANIMATIONS */
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
 
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
 
  .reveal.visible { opacity: 1; transform: translateY(0); }
 
  /* Responsive */
  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; padding-top: 100px; text-align: center; }
    .hero-visual { display: none; }
    .hero-btns { justify-content: center; }
    .hero p { margin: 0 auto 2.5rem; }
    .stats { flex-direction: column; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1.4rem; }
    footer { grid-template-columns: 1fr 1fr; }
    .seasonal { flex-direction: column; text-align: center; }
    .seasonal-fruits { justify-content: center; }
    nav ul { display: none; }
    .newsletter-form { flex-direction: column; border-radius: 12px; }
    .newsletter-form input, .btn-primary { border-radius: 12px; }
  }