  /* ============================================================
     DESIGN TOKENS
     ============================================================ */
  :root{
    --ivory:        #F7F3EA;
    --ivory-deep:   #EFE8D8;
    --grove:        #1E2B19;
    --grove-soft:   #2C3D24;
    --citrus:       #E85C2C;
    --citrus-deep:  #C7451C;
    --ink:          #362E23;
    --gold:         #C79A3C;
    --white:        #FFFFFF;
    --pomegranate:  #8B1E3F;
    --lemon:        #E4B92C;

    --display: 'Fraunces', serif;
    --body: 'Manrope', sans-serif;
    --mono: 'Space Mono', monospace;

    --container: 1180px;
    --edge: clamp(20px, 6vw, 64px);
    --header-h: 72px;
    --panel-h: 100lvh;

    --ease: cubic-bezier(.22, .61, .36, 1);
  }

  *,*::before,*::after{ box-sizing: border-box; }
  html{
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
  }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    *,*::before,*::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  }

  body{
    margin:0;
    font-family: var(--body);
    background: var(--ivory);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
  }
  @supports not (overflow: clip){
    body{ overflow-x: hidden; }
  }

  img{ max-width:100%; display:block; }
  a{ color: inherit; text-decoration: none; }
  ul{ margin:0; padding:0; list-style:none; }
  button{ font-family: inherit; cursor:pointer; border:none; background:none; color:inherit; }
  h1,h2,h3,h4,p{ margin:0; }

  :focus-visible{
    outline: 2px solid var(--citrus);
    outline-offset: 4px;
    border-radius: 2px;
  }

  .wrap{
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--edge);
  }

  .eyebrow{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--citrus-deep);
    display:flex;
    align-items:center;
    gap: 10px;
  }
  .eyebrow::before{
    content:"";
    width: 22px; height: 1px;
    background: var(--citrus-deep);
    display:inline-block;
  }
  .eyebrow.on-dark{ color: var(--lemon); }
  .eyebrow.on-dark::before{ background: var(--lemon); }

  .reveal{
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  .reveal.is-visible{ opacity: 1; transform: translateY(0); }
  .reveal-scale{ opacity:0; transform: scale(0.94); transition: opacity 1s var(--ease), transform 1s var(--ease); }
  .reveal-scale.is-visible{ opacity:1; transform: scale(1); }

  /* ============================================================
     HEADER
     ============================================================ */
  .site-header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--header-h);
    box-sizing: border-box;
    padding: 0 var(--edge);
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
  }
  .site-header.scrolled{
    background: rgba(247,243,234,0.88);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(30,43,25,0.08);
  }
  .brand-mark{
    display:flex;
    align-items:center;
    line-height:0;
  }
  .brand-mark img{
    display:block;
    height: clamp(34px, 7.5vw, 46px);
    width:auto;
    transition: filter 0.5s var(--ease);
  }
  .site-header:not(.scrolled) .brand-mark img{
    filter: brightness(0);
  }
  .site-header.scrolled .brand-mark img{
    filter: none;
  }

  .nav-desktop{ display:none; }
  @media (min-width: 900px){
    .nav-desktop{
      display:flex;
      align-items:center;
      gap: 36px;
      font-size: 14px;
      font-weight: 600;
    }
    .nav-desktop a{
      color: var(--white);
      position:relative;
      padding: 4px 0;
      transition: color 0.3s, text-shadow 0.3s;
    }
    .site-header:not(.scrolled) .nav-desktop a:not(.nav-cta){
      text-shadow:0 1px 1px rgba(0,0,0,0.7);
    }
    .site-header.scrolled .nav-desktop a{
      color: var(--ink);
      text-shadow: none;
    }
    .nav-desktop a::after{
      content:"";
      position:absolute;
      left:0; bottom:-2px;
      width:0; height:1px;
      background: currentColor;
      transition: width 0.3s var(--ease);
    }
    .nav-desktop a:hover::after{ width:100%; }
    .nav-desktop a.is-active{
      color: var(--citrus) !important;
    }
    .nav-desktop a.is-active::after{
      width: 100%;
      height: 2px;
      background: var(--citrus);
    }
    .site-header:not(.scrolled) .nav-desktop a.is-active{
      color: var(--ink) !important;
    }
    .site-header:not(.scrolled) .nav-desktop a.is-active::after{
      background: var(--ink);
    }
    .nav-desktop a.nav-cta{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      border-radius: 100px;
      font-family: var(--display);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
      border: none;
      background: var(--citrus);
      color: var(--white) !important;
      box-shadow: 0 12px 28px -14px rgba(232,92,44,0.55);
      transition:
        transform 0.4s var(--ease),
        background 0.4s var(--ease),
        box-shadow 0.4s var(--ease);
    }
    .site-header.scrolled .nav-desktop a.nav-cta{
      background: var(--citrus);
      color: var(--white) !important;
      box-shadow: 0 12px 28px -14px rgba(232,92,44,0.5);
    }
    .nav-desktop a.nav-cta::after{ display:none; }
    .nav-cta-arrow{
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      opacity: 0.9;
      transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
    }
    .nav-desktop a.nav-cta:hover{
      background: var(--citrus-deep);
      transform: translateY(-1px);
      box-shadow: 0 16px 32px -12px rgba(232,92,44,0.65);
    }
    .site-header.scrolled .nav-desktop a.nav-cta:hover{
      background: var(--citrus-deep);
    }
    .nav-desktop a.nav-cta:hover .nav-cta-arrow{
      transform: translateX(3px);
      opacity: 1;
    }
  }

  .menu-toggle{
    display:flex;
    flex-direction:column;
    gap: 5px;
    padding: 10px;
    z-index: 300;
    position:relative;
  }
  @media (min-width: 900px){ .menu-toggle{ display:none; } }
  .menu-toggle span{
    width: 24px; height: 2px;
    background: var(--white);
    transition: transform 0.4s var(--ease), opacity 0.3s, background 0.3s, filter 0.3s;
  }
  .site-header:not(.scrolled) .menu-toggle:not(.open) span{
    filter:drop-shadow(0 1px 1px rgba(0,0,0,0.7));
  }
  .site-header.scrolled .menu-toggle span{
    background: var(--ink);
    filter: none;
  }
  body.menu-open .site-header{
    z-index: 260;
    background: transparent;
    box-shadow: none;
  }
  body.menu-open .site-header.scrolled{
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.menu-open .brand-mark img{
    filter: brightness(0) invert(1);
  }
  .menu-toggle.open span{ background: var(--white) !important; }
  .menu-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2){ opacity: 0; }
  .menu-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu{
    position: fixed;
    inset: 0;
    background: var(--grove);
    z-index: 250;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding: var(--edge);
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease);
  }
  .mobile-menu.open{ transform: translateY(0); }
  .mobile-menu ul{ display:flex; flex-direction:column; gap: 6px; }
  .mobile-menu a{
    font-family: var(--display);
    font-size: clamp(30px, 9vw, 44px);
    color: var(--ivory);
    padding: 10px 0;
    display:inline-block;
    border-bottom: 1px solid rgba(247,243,234,0.12);
  }
  .mobile-menu .menu-foot{
    margin-top: 40px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--lemon);
    letter-spacing: 0.1em;
  }

  /* ============================================================
     HERO
     ============================================================ */
  .hero{
    position: relative;
    min-height: 100svh;
    display:flex;
    align-items: center;
    background-image:
      url('../assets/images/background_deskop.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: calc(var(--header-h) + clamp(32px, 6vh, 64px)) 0 clamp(96px, 12vh, 140px);
  }
  .hero-inner{
    position:relative;
    z-index:5;
    width:100%;
    padding: 0 var(--edge);
  }
  .hero-seal{
    position:absolute;
    top: clamp(90px, 14vh, 150px);
    right: var(--edge);
    width: clamp(84px, 13vw, 128px);
    height: clamp(84px, 13vw, 128px);
    z-index: 6;
  }
  .hero-seal svg{ width:100%; height:100%; animation: spin 22s linear infinite; }
  @keyframes spin{ to{ transform: rotate(360deg); } }
  .hero-seal-core{
    position:absolute; inset: 26%;
    background: var(--citrus);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }
  .hero-seal-core svg{ width:44%; height:44%; animation:none; }

  .hero .hero-eyebrow{
    color: #C2410C;
    margin-bottom: 22px;
  }
  .hero h1{
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(32px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.01em;
    color: #1F2937;
    max-width: 15ch;
  }
  .hero h1 em{
    font-style: italic;
    font-weight: 400;
    color: #C2410C;
  }
  .hero-sub{
    margin-top: 26px;
    font-size: clamp(14px, 1.65vw, 16px);
    line-height: 1.6;
    color: #4B5563;
    max-width: 46ch;
    font-weight: 500;
  }
  .hero-actions{
    display: none;
  }
  .hero-visual{
    display: none;
  }
  .scroll-cue{
    position:absolute;
    bottom: 16px;
    left: var(--edge);
    display:flex;
    align-items:center;
    gap: 12px;
    color: #000;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform:uppercase;
    z-index: 5;
  }
  .scroll-cue .line{
    width: 1px; height: 34px;
    background: #000;
    position:relative;
    overflow:hidden;
  }
  .scroll-cue .line::after{
    content:"";
    position:absolute; top:-100%; left:0; width:100%; height:100%;
    background: #000;
    animation: drip 2.2s ease-in-out infinite;
  }
  @keyframes drip{ 0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; } }

  @media (max-width: 768px){
    .hero{
      display: block;
      min-height: 100dvh;
      min-height: 100svh;
      background-image: none;
      background-color: #F7F3EA;
      padding: calc(var(--header-h) + 16px) 0 48px;
      overflow: hidden;
    }
    .hero::after{
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        to bottom,
        rgba(245,240,230,0.85) 0%,
        rgba(245,240,230,0.3) 40%,
        transparent 70%
      );
      pointer-events: none;
    }
    .hero-seal{
      display: none;
    }
    .hero-inner{
      position: relative;
      z-index: 2;
      padding: 0 var(--edge);
    }
    .hero .hero-eyebrow{
      margin-bottom: 14px;
      font-size: 11px;
    }
    .hero h1{
      font-size: clamp(34px, 9.2vw, 46px);
      line-height: 1.08;
      max-width: none;
    }
    .hero-sub{
      margin-top: 18px;
      font-size: 15px;
      line-height: 1.65;
      max-width: none;
      text-shadow:
        0 -0.2px 0 rgba(255, 255, 255, 0.65),
        0  0.2px 0 rgba(255, 255, 255, 0.65),
       -0.2px 0 0 rgba(255, 255, 255, 0.65),
        0.2px 0 0 rgba(255, 255, 255, 0.65);
    }
    .hero-visual{
      display: block;
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      margin: 0;
      border-radius: 0;
      aspect-ratio: auto;
      background: #F7F3EA;
      box-shadow: none;
      overflow: hidden;
    }
    .hero-visual img{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: bottom center;
      display: block;
    }
    .scroll-cue{
      position: absolute;
      bottom: 8px;
      left: var(--edge);
      z-index: 2;
      margin: 0;
      color: #000;
      font-weight: 500;
    }
    .scroll-cue .line{
      background: #000;
    }
    .scroll-cue .line::after{
      background: #000;
    }
  }
  @media (max-width: 480px){
    .hero{
      padding-bottom: 40px;
    }
    .hero .hero-eyebrow{
      margin-bottom: 12px;
    }
    .hero h1{
      font-size: clamp(30px, 8.8vw, 38px);
      line-height: 1.1;
    }
    .hero-sub{
      margin-top: 14px;
      font-size: 14px;
      line-height: 1.6;
    }
  }

  /* ============================================================
     MARQUEE STRIP (between hero and story)
     ============================================================ */
  .marquee{
    background: var(--ink);
    padding: 16px 0;
    overflow:hidden;
    white-space:nowrap;
  }
  .marquee-track{
    display:inline-flex;
    gap: 40px;
    animation: scroll-left 26s linear infinite;
  }
  @keyframes scroll-left{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
  .marquee span{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ivory-deep);
    display:inline-flex;
    align-items:center;
    gap: 40px;
  }
  .marquee span::after{ content:"·"; color: var(--citrus); font-size:16px; }

  /* ============================================================
     BRAND STORY
     ============================================================ */
  .story{
    padding: clamp(70px, 12vh, 140px) 0;
    background: var(--ivory);
  }
  .story-grid{
    display:grid;
    gap: 48px;
  }
  @media (min-width: 880px){
    .story-grid{
      grid-template-columns: 1.1fr 0.9fr;
      align-items:center;
      gap: 80px;
    }
  }
  .story h2{
    font-family: var(--display);
    font-size: clamp(30px, 4.6vw, 52px);
    line-height: 1.12;
    font-weight: 500;
    margin: 18px 0 26px;
    letter-spacing: -0.01em;
  }
  .story p{
    font-size: 16px;
    line-height: 1.75;
    color: rgba(54,46,35,0.78);
    max-width: 52ch;
  }
  .story p + p{ margin-top: 16px; }
  .story-quote{
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(20px, 2.6vw, 26px);
    color: var(--grove);
    margin-top: 30px;
    padding-left: 22px;
    border-left: 2px solid var(--citrus);
    line-height: 1.4;
  }
  .story-visual{
    position:relative;
    overflow: visible;
  }
  .story-visual-media{
    position:relative;
    aspect-ratio: 4/5;
    border-radius: 28px;
    overflow:hidden;
    background: linear-gradient(155deg, #F2C879 0%, #E85C2C 46%, #7A2A15 100%);
  }
  .story-visual img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
  }

  /* ============================================================
     PRODUCTS — sticky card stack
     ============================================================ */
  .products{
    background: var(--grove);
    padding: clamp(70px,10vh,120px) 0;
  }
  .products-showcase{
    position: relative;
    isolation: isolate;
  }
  .products-head{
    position: relative;
    z-index: 0;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .products-head .eyebrow{
    justify-content: center;
  }
  .products-head h2{
    font-family: var(--display);
    color: var(--ivory);
    font-size: clamp(32px, 5.4vw, 58px);
    font-weight: 500;
    line-height: 1.08;
    max-width: 14ch;
    margin-top: 16px;
  }
  .products-head p{
    color: rgba(247,243,234,0.65);
    font-size: 16px;
    max-width: 46ch;
    margin-top: 18px;
    line-height: 1.7;
  }

  .product-panel{
    --panel-depth: 1;
    --panel-h: 100lvh;
    position: sticky;
    top: 0;
    z-index: var(--panel-depth);
    height: var(--panel-h);
    max-height: var(--panel-h);
    min-height: var(--panel-h);
    display:flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: clamp(20px, 4vh, 36px) var(--edge);
    overflow:hidden;
    background: var(--grove);
    box-sizing: border-box;
  }
  .product-panel:not(:first-child){
    box-shadow: 0 -28px 56px -24px rgba(0,0,0,0.42);
  }
  .panel-1{ --panel-depth: 1; }
  .panel-2{ --panel-depth: 2; }
  .panel-3{ --panel-depth: 3; }

  .product-panel .wrap-inner{
    max-width: var(--container);
    margin: 0 auto;
    width:100%;
    flex: 1;
    min-height: 0;
    display:grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(18px, 3.5lvh, 32px);
    align-content: start;
    align-items: start;
    overflow: hidden;
  }
  @media (min-width: 880px){
    .product-panel{
      padding: clamp(32px, 5vh, 56px) var(--edge);
    }
    .product-panel .wrap-inner{
      grid-template-columns: 1fr 1fr;
      grid-template-rows: none;
      gap: 70px;
      align-items: center;
    }
  }

  /* Sticky panellerde translateY reveal, üst üste binmeye yol açar */
  .product-panel .reveal,
  .product-panel .reveal-scale{
    transform: none;
    transition: opacity 0.85s var(--ease);
  }
  .product-panel .reveal:not(.is-visible),
  .product-panel .reveal-scale:not(.is-visible){
    opacity: 0;
  }
  .product-panel .reveal.is-visible,
  .product-panel .reveal-scale.is-visible{
    opacity: 1;
  }
  .product-index{
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.14em;
    color: var(--lemon);
    margin-bottom: 18px;
  }
  .product-panel h3{
    font-family: var(--display);
    font-size: clamp(28px, 8vw, 64px);
    color: var(--ivory);
    font-weight: 500;
    line-height: 1.02;
  }
  .product-panel .tag{
    display:inline-block;
    margin-top: 18px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform:uppercase;
    color: var(--grove);
    background: var(--lemon);
    padding: 6px 12px;
    border-radius: 100px;
  }
  .product-panel p.desc{
    margin-top: 16px;
    color: rgba(247,243,234,0.72);
    font-size: clamp(14px, 3.6vw, 15.5px);
    line-height: 1.65;
    max-width: 42ch;
  }
  .product-stats{
    display:flex;
    gap: clamp(16px, 4vw, 28px);
    margin-top: clamp(18px, 3vh, 30px);
    flex-wrap:wrap;
  }
  .product-stats strong{
    font-family: var(--display);
    font-size: clamp(20px, 5vw, 26px);
    color: var(--citrus);
    display:block;
  }
  .product-stats span{
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform:uppercase;
    color: rgba(247,243,234,0.55);
  }
  .product-visual{
    position:relative;
    width: min(100%, 280px);
    height: 100%;
    max-height: min(38lvh, 300px);
    margin: 0 auto;
    aspect-ratio: 3/4;
    border-radius: clamp(20px, 5vw, 30px);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    align-self: end;
  }
  @media (min-width: 880px){
    .product-visual{
      width: 100%;
      max-width: none;
      max-height: none;
      margin: 0;
      align-self: center;
    }
  }
  .product-visual img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  @media (max-width: 879px){
    .product-panel{
      --panel-available: calc(100lvh - var(--header-h));
      top: var(--header-h);
      height: var(--panel-available);
      min-height: var(--panel-available);
      max-height: var(--panel-available);
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: stretch;
      padding: 25px var(--edge);
      box-sizing: border-box;
      overflow: hidden;
    }
    .product-panel .wrap-inner{
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      flex: 1 1 auto;
      min-height: 0;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 30px;
      overflow: hidden;
      grid-template-rows: unset;
      grid-template-columns: unset;
      align-content: unset;
      align-items: stretch;
    }
    .product-panel .wrap-inner > .reveal{
      flex: 0 0 auto;
      min-height: 0;
    }
    .product-index{ margin-bottom: 12px; }
    .product-panel .tag{ margin-top: 14px; }
    .product-panel p.desc{ margin-top: 12px; }
    .product-stats{ margin-top: 16px; gap: 16px 20px; }
    .product-panel h3{
      font-size: clamp(26px, 7.5vw, 36px);
    }
    .product-panel .wrap-inner .reveal,
    .product-panel .wrap-inner .reveal-scale{
      opacity: 1;
      transform: none;
      transition: none;
    }
    .product-panel .wrap-inner .product-visual{
      width: 100%;
      flex: 1 1 0;
      min-height: clamp(170px, 25lvh, 210px);
      height: unset;
      max-height: none;
      aspect-ratio: auto;
      margin: 0;
      align-self: stretch;
    }
    .product-panel .wrap-inner .product-visual img{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }
  }

  .panel-1 .product-visual{ background: radial-gradient(circle at 40% 25%, #FFDA9E, #E85C2C 60%, #6E260F 100%); }
  .panel-2 .product-visual{ background: radial-gradient(circle at 40% 25%, #D98BA8, #8B1E3F 60%, #3B0C1B 100%); }
  .panel-3 .product-visual{ background: radial-gradient(circle at 40% 25%, #F3E48A, #C7A22C 55%, #5B4712 100%); }

  /* ============================================================
     NATURALNESS — full bleed dark-citrus seal section
     ============================================================ */
  .naturalness{
    position:relative;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory) 100%);
    padding: clamp(80px,14vh,160px) 0;
    overflow:hidden;
  }
  .nat-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    position:relative;
    z-index:2;
  }
  .nat-inner h2{
    font-family: var(--display);
    font-size: clamp(30px, 6vw, 60px);
    line-height: 1.12;
    max-width: 16ch;
    font-weight: 500;
    margin-top: 20px;
  }
  .nat-inner h2 .hl{ color: var(--citrus); font-style: italic; font-weight:400; }
  .nat-ring{
    margin-top: 50px;
    width: clamp(200px, 40vw, 320px);
    height: clamp(200px, 40vw, 320px);
    position:relative;
  }
  .nat-ring svg.ring-text{ width:100%; height:100%; animation: spin 30s linear infinite; }
  .nat-ring-core{
    position:absolute; inset: 20%;
    border-radius:50%;
    background: radial-gradient(circle at 35% 30%, #FFC873, #E85C2C 55%, #A23A18 100%);
    display:flex; align-items:center; justify-content:center;
    box-shadow: 0 30px 60px -18px rgba(232,92,44,0.5);
  }
  .nat-ring-core svg{ width:42%; height:42%; }
  .nat-pills{
    margin-top: 56px;
    display:flex;
    flex-wrap:wrap;
    gap: 12px;
    justify-content:center;
    max-width: 640px;
  }
  .nat-pills span{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid rgba(54,46,35,0.16);
    color: var(--ink);
  }

  /* ============================================================
     PROCESS / PRODUCTION QUALITY
     ============================================================ */
  .process{
    background: var(--white);
    padding: clamp(70px,12vh,140px) 0;
  }
  .process-head{ max-width: 640px; }
  .process-head h2{
    font-family: var(--display);
    font-size: clamp(30px,4.8vw,52px);
    font-weight:500;
    line-height:1.12;
    margin-top:16px;
  }
  .process-steps{
    margin-top: 60px;
    display:grid;
    gap: 1px;
    background: rgba(54,46,35,0.1);
    border-top: 1px solid rgba(54,46,35,0.1);
  }
  @media (min-width: 780px){
    .process-steps{ grid-template-columns: repeat(3,1fr); }
  }
  .process-step{
    background: var(--white);
    padding: 34px 26px;
    position:relative;
  }
  .process-step .num{
    font-family: var(--mono);
    font-size: 12px;
    color: var(--citrus-deep);
    letter-spacing: 0.08em;
  }
  .process-step h4{
    font-family: var(--display);
    font-size: 22px;
    font-weight:500;
    margin-top: 16px;
    color: var(--grove);
  }
  .process-step p{
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(54,46,35,0.7);
  }
  .process-step::after{
    content:"";
    position:absolute; top:0; left:0;
    width:0%; height:2px;
    background: var(--citrus);
    transition: width 0.6s var(--ease);
  }
  .process-step.is-visible::after{ width:100%; }

  /* ============================================================
     BENEFITS grid
     ============================================================ */
  .benefits{
    background: var(--ivory-deep);
    padding: clamp(70px,12vh,140px) 0;
  }
  .benefits-grid{
    margin-top: 54px;
    display:grid;
    gap: 20px;
  }
  @media (min-width: 720px){ .benefits-grid{ grid-template-columns: repeat(3,1fr); } }
  .benefit-card{
    background: var(--white);
    border-radius: 22px;
    padding: 32px 28px;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  }
  .benefit-card:hover{ transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(54,46,35,0.25); }
  .benefit-card svg{ width: 40px; height: 40px; }
  .benefit-card h4{
    font-family: var(--display);
    font-size: 20px;
    margin-top: 22px;
    color: var(--grove);
    font-weight:500;
  }
  .benefit-card p{
    margin-top: 10px;
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(54,46,35,0.7);
  }

  /* ============================================================
     FRUITS gallery
     ============================================================ */
  .fruits{
    background: var(--grove);
    padding: clamp(70px,12vh,140px) 0;
    overflow:hidden;
    position:relative;
  }
  .fruits-head h2{
    font-family: var(--display);
    color: var(--ivory);
    font-size: clamp(30px,4.8vw,52px);
    font-weight:500;
    margin-top:16px;
    max-width: 16ch;
  }
  .fruits-row{
    margin-top: 56px;
    display:grid;
    gap: 22px;
  }
  @media (min-width: 780px){ .fruits-row{ grid-template-columns: repeat(3,1fr); } }

  /* Fruits carousel — mobile only (desktop grid unchanged above) */
  .fruits-slider{
    position:relative;
  }
  @media (max-width: 779px){
    .fruits .wrap > .fruits-slider{
      width:100vw;
      max-width:100vw;
      margin-left:calc(50% - 50vw);
      margin-right:calc(50% - 50vw);
    }
    .fruits-slider{
      margin-top:36px;
      --fruit-slide-w:70vw;
      --fruit-gap:0;
    }
    .fruits-supply .fruits-slider{
      margin-top:26px;
    }
    .fruits-row{
      margin-top:0;
      display:flex !important;
      grid-template-columns:none !important;
      align-items:center;
      gap:var(--fruit-gap);
      width:max-content;
      will-change:transform;
      transition:transform 0.42s var(--ease);
    }
    .fruits-row.is-dragging,
    .fruits-row.is-resetting{
      transition:none !important;
    }
    .fruits-slider-viewport{
      overflow:hidden;
      touch-action:pan-y pinch-zoom;
      position:relative;
      width:100%;
      cursor:grab;
    }
    .fruits-slider-viewport.is-dragging{
      cursor:grabbing;
    }
    .fruits-nav:not([hidden]){
      display:flex;
    }
    .fruits-row .fruit-card{
      flex:0 0 var(--fruit-slide-w);
      width:var(--fruit-slide-w);
      max-width:var(--fruit-slide-w);
      min-width:0;
      position:relative;
      transform:scale(0.82);
      opacity:0.48;
      transform-origin:center center;
      transition:transform 0.34s var(--ease), opacity 0.34s var(--ease) !important;
    }
    .fruits-row.is-dragging .fruit-card,
    .fruits-row.is-resetting .fruit-card{
      transition:none !important;
    }
    .fruits-row .fruit-card.reveal,
    .fruits-row .fruit-card.reveal.is-visible{
      opacity:0.48;
      transform:scale(0.82);
    }
    .fruits-row .fruit-card.is-center,
    .fruits-row .fruit-card.reveal.is-center,
    .fruits-row .fruit-card.reveal.is-visible.is-center{
      transform:scale(1);
      opacity:1;
      z-index:2;
    }
    .fruits-row .fruit-card.is-loop{
      pointer-events:none;
    }
    .fruits-row .fruit-card:hover{
      transform:scale(0.82);
    }
    .fruits-row .fruit-card.is-center:hover{
      transform:scale(1);
    }
    .fruits-nav{
      position:absolute;
      top:50%;
      z-index:5;
      width:42px;
      height:42px;
      border-radius:50%;
      align-items:center;
      justify-content:center;
      color:var(--ivory);
      background:rgba(30,43,25,0.55);
      border:1px solid rgba(247,243,234,0.32);
      backdrop-filter:blur(12px);
      -webkit-backdrop-filter:blur(12px);
      box-shadow:0 8px 24px rgba(0,0,0,0.3);
      transform:translateY(-50%);
      transition:background 0.2s var(--ease), transform 0.2s var(--ease);
    }
    .fruits-nav svg{
      width:18px;
      height:18px;
      pointer-events:none;
    }
    .fruits-nav:active{
      transform:translateY(-50%) scale(0.94);
      background:rgba(30,43,25,0.72);
    }
    .fruits-nav--prev{ left:12px; }
    .fruits-nav--next{ right:12px; }
    .fruits-dots:not([hidden]){
      display:flex;
    }
    .fruits-dots{
      justify-content:center;
      align-items:center;
      gap:8px;
      margin-top:24px;
      padding:0 var(--edge);
    }
    .fruits-dot{
      width:7px;
      height:7px;
      border-radius:100px;
      padding:0;
      background:rgba(247,243,234,0.32);
      transition:width 0.3s var(--ease), background 0.3s var(--ease);
    }
    .fruits-dot.is-active{
      width:22px;
      background:var(--lemon);
    }
    .fruits-dot:active{
      opacity:0.75;
    }
  }
  @media (min-width: 780px){
    .fruits-nav,
    .fruits-dots{
      display:none !important;
    }
    .fruits-slider-viewport{
      overflow:visible;
    }
    .fruits-row .fruit-card.is-loop{
      display:none;
    }
    .fruits-supply .fruits-row{
      margin-top:26px;
    }
    .fruits-supply .fruits-head h2{
      font-size:clamp(16px, calc(2.8vw - 4px), 30px);
    }
  }
  .fruit-card{
    border-radius: 26px;
    aspect-ratio: 3/4;
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding: 26px;
    overflow:hidden;
    transition: transform 0.5s var(--ease);
  }
  .fruit-card:hover{ transform: translateY(-8px); }
  .fruit-card .fruit-photo{
    position:absolute;
    inset:0;
    width:calc(100% + 2px);
    height:calc(100% + 2px);
    margin:-1px;
    object-fit:cover;
    object-position:center center;
    z-index:0;
  }
  .fruit-card:has(.fruit-photo){
    background:#162113;
  }
  .fruit-card::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:52%;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.45) 38%,
      transparent 100%
    );
    z-index:1;
    pointer-events:none;
  }
  .fruit-card h4{
    font-family: var(--display);
    font-size: 24px;
    color: var(--white);
    font-weight: 500;
    position:relative; z-index:2;
  }
  .fruit-card p{
    color: rgba(255,255,255,0.8);
    font-size: 13.5px;
    margin-top: 8px;
    position:relative; z-index:2;
  }
  @media (max-width: 779px){
    .fruit-card::after{
      height:58%;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.94) 0%,
        rgba(0,0,0,0.58) 40%,
        rgba(0,0,0,0.2) 68%,
        transparent 100%
      );
    }
  }
  .fruit-1{ background: linear-gradient(200deg,#FFB65C,#E85C2C 60%,#7A2A15); }
  .fruit-2{ background: linear-gradient(200deg,#D9789A,#8B1E3F 60%,#3B0C1B); }
  .fruit-3{ background: linear-gradient(200deg,#F0E27A,#C7A22C 60%,#5B4712); }

  /* B2B supply — inside unified fruits section */
  .fruits-divider{
    height:55px;
    position:relative;
    overflow:visible;
    pointer-events:none;
  }
  .fruits-glow{
    position:absolute;
    right:-140px;
    top:50%;
    left:auto;
    transform:translateY(-50%);
    width:min(520px, 90vw);
    height:min(520px, 90vw);
    border-radius:50%;
    background:radial-gradient(circle, rgba(232,92,44,0.14) 0%, transparent 68%);
    pointer-events:none;
  }
  .fruits-block{
    position:relative;
    z-index:1;
  }
  .fruits-supply .fruits-head h2{
    font-size: clamp(20px, 2.8vw, 34px);
    max-width: 22ch;
    margin-top:0;
  }
  .supply-card-body{
    position:relative;
    z-index:2;
  }
  .supply-card .supply-teklif{
    position:relative;
    z-index:4;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    margin-top:12px;
    width:100%;
    padding:10px 16px;
    border-radius:100px;
    font-family:var(--mono);
    font-size:11px;
    font-weight:500;
    letter-spacing:0.09em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.9);
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.24);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    box-shadow:none;
    transition:background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  }
  .supply-card .supply-teklif svg{
    width:12px;
    height:12px;
    flex-shrink:0;
    opacity:0.85;
    transition:opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .supply-card .supply-teklif:hover{
    color:#fff;
    background:rgba(255,255,255,0.18);
    border-color:rgba(255,255,255,0.34);
  }
  .supply-card .supply-teklif:hover svg{
    opacity:1;
    transform:translateX(2px);
  }
  .supply-card h4{
    margin-bottom:0;
  }

  /* ============================================================
     PRODUCT DETAIL — fullscreen premium overlay
     ============================================================ */
  .product-card-trigger{
    cursor:pointer;
    -webkit-tap-highlight-color:transparent;
  }
  .product-card-trigger:focus-visible{
    outline:2px solid var(--citrus);
    outline-offset:4px;
  }
  .fruit-card.product-card-trigger::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:3;
    border-radius:inherit;
    transition:background 0.35s var(--ease);
    pointer-events:none;
  }
  .fruit-card.product-card-trigger:hover::before{
    background:rgba(255,255,255,0.06);
  }
  .fruit-card-zoom{
    position:absolute;
    top:14px;
    right:14px;
    z-index:4;
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:rgba(255,255,255,0.92);
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.28);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    pointer-events:none;
    transition:background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
  }
  .fruit-card-zoom svg{
    width:13px;
    height:13px;
    flex-shrink:0;
  }
  .fruit-card.product-card-trigger:hover .fruit-card-zoom{
    background:rgba(255,255,255,0.22);
    border-color:rgba(255,255,255,0.38);
    transform:scale(1.06);
  }

  html.pd-open,
  body.pd-open{
    overflow:hidden;
    touch-action:none;
  }
  .pd-overlay{
    position:fixed;
    inset:0;
    z-index:500;
    display:flex;
    align-items:stretch;
    justify-content:center;
    padding:0;
    visibility:hidden;
    pointer-events:none;
    transition:visibility 0s linear 0.38s;
  }
  .pd-overlay.is-open{
    visibility:visible;
    pointer-events:auto;
    transition:visibility 0s;
  }
  .pd-backdrop{
    position:absolute;
    inset:0;
    background:rgba(18,22,16,0.42);
    backdrop-filter:blur(0);
    -webkit-backdrop-filter:blur(0);
    opacity:0;
    transition:opacity 0.38s var(--ease), backdrop-filter 0.38s var(--ease), -webkit-backdrop-filter 0.38s var(--ease);
    will-change:opacity, backdrop-filter;
  }
  .pd-overlay.is-open .pd-backdrop{
    opacity:1;
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
  }
  .pd-shell{
    position:relative;
    z-index:1;
    width:100%;
    height:100%;
    max-height:100dvh;
    display:flex;
    flex-direction:column;
    background:rgba(247,243,234,0.88);
    backdrop-filter:blur(24px) saturate(1.2);
    -webkit-backdrop-filter:blur(24px) saturate(1.2);
    box-shadow:0 40px 120px -40px rgba(0,0,0,0.45);
    opacity:0;
    transform:translate3d(0,12px,0) scale(0.985);
    transition:opacity 0.38s var(--ease), transform 0.38s var(--ease);
    will-change:transform, opacity;
    overflow:hidden;
  }
  .pd-overlay.is-open .pd-shell{
    opacity:1;
    transform:translate3d(0,0,0) scale(1);
  }
  .pd-close{
    position:absolute;
    top:max(12px, env(safe-area-inset-top));
    left:max(12px, env(safe-area-inset-left));
    z-index:30;
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:var(--ink);
    background:rgba(255,255,255,0.38);
    border:1px solid rgba(255,255,255,0.45);
    backdrop-filter:blur(20px) saturate(1.4);
    -webkit-backdrop-filter:blur(20px) saturate(1.4);
    box-shadow:0 4px 20px rgba(30,43,25,0.12);
    transition:background 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  }
  .pd-close svg{
    width:22px;
    height:22px;
    stroke-width:1.6;
  }
  .pd-close-icon--x{
    display:none;
  }
  .pd-close:hover{
    background:rgba(255,255,255,0.52);
    backdrop-filter:blur(24px) saturate(1.5);
    -webkit-backdrop-filter:blur(24px) saturate(1.5);
    transform:translateX(-2px);
    color:var(--grove);
    box-shadow:0 6px 24px rgba(30,43,25,0.16);
  }
  .pd-layout{
    flex:1;
    min-height:0;
    display:flex;
    flex-direction:column;
    overflow:hidden;
  }
  .pd-scroll{
    flex:1;
    min-height:0;
    overflow-y:auto;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
    position:relative;
  }
  .pd-media{
    position:relative;
    flex-shrink:0;
    height:60dvh;
    min-height:220px;
    max-height:640px;
    overflow:hidden;
    background:#1a2218;
    z-index:1;
    margin-bottom:-18px;
  }
  .pd-media-inner{
    position:absolute;
    inset:0;
  }
  .pd-skeleton{
    position:absolute;
    inset:0;
    background:linear-gradient(110deg, rgba(255,255,255,0.04) 8%, rgba(255,255,255,0.1) 18%, rgba(255,255,255,0.04) 33%);
    background-size:200% 100%;
    animation:pdShimmer 1.2s ease-in-out infinite;
  }
  .pd-media.is-loaded .pd-skeleton{ display:none; }
  @keyframes pdShimmer{
    0%{ background-position:200% 0; }
    100%{ background-position:-200% 0; }
  }
  .pd-image{
    position:relative;
    z-index:1;
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    opacity:0;
    transition:opacity 0.4s var(--ease);
  }
  .pd-image.is-loaded{ opacity:1; }
  .pd-content{
    position:relative;
    flex-shrink:0;
    padding:28px var(--edge) max(32px, env(safe-area-inset-bottom));
    background:var(--ivory);
    border-radius:18px 18px 0 0;
    z-index:10;
    box-shadow:0 -8px 32px rgba(30,43,25,0.08);
  }
  .pd-category{
    font-family:var(--mono);
    font-size:11px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--citrus-deep);
    opacity:0;
    transform:translate3d(0,14px,0);
    transition:opacity 0.4s var(--ease), transform 0.4s var(--ease);
  }
  .pd-overlay.is-open .pd-category{
    opacity:1;
    transform:none;
    transition-delay:0.12s;
  }
  .pd-title{
    font-family:var(--display);
    font-size:clamp(28px,7vw,42px);
    font-weight:500;
    line-height:1.08;
    color:var(--grove);
    margin-top:10px;
    opacity:0;
    transform:translate3d(0,18px,0);
    transition:opacity 0.42s var(--ease), transform 0.42s var(--ease);
  }
  .pd-overlay.is-open .pd-title{
    opacity:1;
    transform:none;
    transition-delay:0.16s;
  }
  .pd-lead{
    margin-top:16px;
    font-size:15px;
    line-height:1.75;
    color:rgba(54,46,35,0.78);
    max-width:48ch;
    opacity:0;
    transition:opacity 0.42s var(--ease) 0.2s;
  }
  .pd-overlay.is-open .pd-lead{ opacity:1; }
  .pd-features{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:22px;
    padding:0;
    list-style:none;
    opacity:0;
    transition:opacity 0.42s var(--ease) 0.24s;
  }
  .pd-overlay.is-open .pd-features{ opacity:1; }
  .pd-features li{
    font-family:var(--mono);
    font-size:10px;
    letter-spacing:0.07em;
    text-transform:uppercase;
    padding:8px 12px;
    border-radius:100px;
    background:rgba(30,43,25,0.06);
    border:1px solid rgba(30,43,25,0.1);
    color:var(--grove);
  }
  .pd-sections{
    margin-top:28px;
    display:flex;
    flex-direction:column;
    gap:22px;
  }
  .pd-block{
    opacity:0;
    transform:translate3d(0,12px,0);
    transition:opacity 0.4s var(--ease), transform 0.4s var(--ease);
  }
  .pd-overlay.is-open .pd-block{
    opacity:1;
    transform:none;
  }
  .pd-overlay.is-open .pd-block:nth-child(1){ transition-delay:0.28s; }
  .pd-overlay.is-open .pd-block:nth-child(2){ transition-delay:0.32s; }
  .pd-overlay.is-open .pd-block:nth-child(3){ transition-delay:0.36s; }
  .pd-overlay.is-open .pd-block:nth-child(4){ transition-delay:0.4s; }
  .pd-block-head{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
    padding-bottom:10px;
    border-bottom:1px solid rgba(54,46,35,0.12);
  }
  .pd-block-head svg{
    width:18px;
    height:18px;
    flex-shrink:0;
    color:var(--citrus);
  }
  .pd-block-head h3{
    font-family:var(--mono);
    font-size:11px;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--grove);
    font-weight:700;
  }
  .pd-block p{
    font-size:14.5px;
    line-height:1.72;
    color:rgba(54,46,35,0.76);
  }
  .pd-block ul{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:8px;
  }
  .pd-block li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:14px;
    line-height:1.65;
    color:rgba(54,46,35,0.76);
  }
  .pd-block li::before{
    content:"";
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--citrus);
    margin-top:8px;
    flex-shrink:0;
  }
  .pd-pricing{
    margin-top:24px;
    padding:18px 20px;
    border-radius:18px;
    background:rgba(30,43,25,0.05);
    border:1px solid rgba(30,43,25,0.08);
    opacity:0;
    transition:opacity 0.42s var(--ease) 0.44s;
  }
  .pd-overlay.is-open .pd-pricing{ opacity:1; }
  .pd-pricing-label{
    font-family:var(--mono);
    font-size:10px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:rgba(54,46,35,0.55);
    margin-bottom:10px;
  }
  .pd-pricing-grid{
    display:flex;
    flex-wrap:wrap;
    gap:16px 24px;
  }
  .pd-pricing-item strong{
    font-family:var(--display);
    font-size:22px;
    color:var(--citrus);
    display:block;
    line-height:1.1;
  }
  .pd-pricing-item span{
    font-family:var(--mono);
    font-size:10px;
    letter-spacing:0.07em;
    text-transform:uppercase;
    color:rgba(54,46,35,0.55);
  }
  .pd-cta{
    margin-top:28px;
    opacity:0;
    transform:translate3d(0,10px,0);
    transition:opacity 0.42s var(--ease) 0.48s, transform 0.42s var(--ease) 0.48s;
  }
  .pd-overlay.is-open .pd-cta{
    opacity:1;
    transform:none;
  }
  .pd-cta-btn{
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:16px 24px;
    border-radius:100px;
    font-family:var(--mono);
    font-size:12px;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--ivory);
    background:linear-gradient(135deg, var(--citrus) 0%, var(--citrus-deep) 100%);
    box-shadow:0 16px 40px -12px rgba(232,92,44,0.55);
    transition:transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  }
  .pd-cta-btn svg{ width:16px; height:16px; flex-shrink:0; }
  .pd-cta-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 20px 48px -10px rgba(232,92,44,0.62);
  }
  .pd-cta-btn::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 60%);
    transform:scale(0);
    opacity:0;
    transition:transform 0.5s var(--ease), opacity 0.5s var(--ease);
  }
  .pd-cta-btn:active::after{
    transform:scale(2.5);
    opacity:1;
    transition:transform 0s, opacity 0s;
  }
  .pd-cta-secondary{
    display:block;
    margin-top:12px;
    text-align:center;
    font-size:13px;
    color:rgba(54,46,35,0.62);
    text-decoration:underline;
    text-underline-offset:3px;
  }
  @media (min-width: 900px){
    .pd-overlay{
      align-items:center;
      justify-content:center;
      padding:clamp(20px, 3vh, 40px) clamp(20px, 2.5vw, 40px);
    }
    .pd-overlay.is-open .pd-backdrop{
      background:rgba(18,22,16,0.55);
      backdrop-filter:blur(28px);
      -webkit-backdrop-filter:blur(28px);
    }
    .pd-shell{
      width:min(1120px, 100%);
      height:min(860px, calc(100dvh - 40px));
      max-height:calc(100dvh - 40px);
      border-radius:24px;
      background:var(--ivory);
      backdrop-filter:none;
      -webkit-backdrop-filter:none;
      box-shadow:
        0 56px 140px -48px rgba(0,0,0,0.42),
        0 0 0 1px rgba(255,255,255,0.65) inset;
    }
    .pd-close{
      top:20px;
      left:auto;
      right:20px;
    }
    .pd-close-icon--back{
      display:none;
    }
    .pd-close-icon--x{
      display:block;
    }
    .pd-close:hover{
      transform:scale(1.04);
    }
    .pd-layout{
      height:100%;
    }
    .pd-scroll{
      display:flex;
      flex-direction:row;
      height:100%;
      overflow:hidden;
    }
    .pd-media{
      flex:0 0 46%;
      width:46%;
      height:100%;
      min-height:0;
      max-height:none;
      margin-bottom:0;
    }
    .pd-media::after{
      content:'';
      position:absolute;
      inset:0;
      z-index:2;
      pointer-events:none;
      background:linear-gradient(to top, rgba(0,0,0,0.28) 0%, transparent 38%, rgba(0,0,0,0.06) 100%);
    }
    .pd-content{
      flex:1;
      min-width:0;
      height:100%;
      display:flex;
      flex-direction:column;
      overflow:hidden;
      border-radius:0;
      margin:0;
      max-width:none;
      padding:0;
      box-shadow:none;
      background:var(--ivory);
      border-left:1px solid rgba(54,46,35,0.08);
    }
    .pd-content-main{
      flex:1;
      min-height:0;
      overflow-x:hidden;
      overflow-y:auto;
      overscroll-behavior:contain;
      padding:44px 48px 28px;
      scrollbar-width:thin;
      scrollbar-color:rgba(54,46,35,0.18) transparent;
    }
    .pd-content-main::-webkit-scrollbar{ width:6px; }
    .pd-content-main::-webkit-scrollbar-track{ background:transparent; }
    .pd-content-main::-webkit-scrollbar-thumb{
      background:rgba(54,46,35,0.16);
      border-radius:99px;
    }
    .pd-category{
      font-size:11px;
    }
    .pd-title{
      font-size:clamp(34px, 3.4vw, 46px);
      margin-top:12px;
      max-width:14ch;
    }
    .pd-lead{
      font-size:16px;
      line-height:1.8;
      max-width:none;
      margin-top:18px;
      padding-bottom:26px;
      border-bottom:1px solid rgba(54,46,35,0.08);
    }
    .pd-features{
      margin-top:24px;
      gap:10px;
    }
    .pd-features li{
      font-size:10px;
      padding:9px 14px;
      background:rgba(255,255,255,0.7);
    }
    .pd-sections{
      margin-top:32px;
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:16px;
    }
    .pd-sections .pd-block:last-child:nth-child(odd){
      grid-column:1 / -1;
    }
    .pd-block{
      padding:20px 22px;
      border-radius:16px;
      background:rgba(255,255,255,0.62);
      border:1px solid rgba(54,46,35,0.08);
      box-shadow:0 1px 0 rgba(255,255,255,0.8) inset;
    }
    .pd-block-head{
      margin-bottom:12px;
      padding-bottom:0;
      border-bottom:none;
    }
    .pd-block-head h3{
      font-size:10px;
    }
    .pd-block p{
      font-size:14px;
      line-height:1.75;
    }
    .pd-pricing{
      margin-top:28px;
      padding:22px 24px;
      background:rgba(255,255,255,0.55);
    }
    .pd-pricing-grid{
      gap:20px 32px;
    }
    .pd-pricing-item strong{
      font-size:26px;
    }
    .pd-cta{
      flex-shrink:0;
      position:relative;
      z-index:3;
      margin-top:0;
      padding:18px 48px 26px;
      background:var(--ivory);
      border-top:1px solid rgba(54,46,35,0.08);
      box-shadow:0 -10px 28px -18px rgba(30,43,25,0.12);
    }
    .pd-cta-btn{
      max-width:none;
      width:100%;
    }
  }
  @media (hover: none) and (pointer: coarse) and (max-width: 899px){
    .pd-shell{
      backdrop-filter:none;
      -webkit-backdrop-filter:none;
      background:rgba(247,243,234,0.98);
    }
    .pd-overlay.is-open .pd-backdrop{
      backdrop-filter:blur(8px);
      -webkit-backdrop-filter:blur(8px);
    }
  }
  @media (prefers-reduced-motion: reduce){
    .pd-backdrop, .pd-shell, .pd-category, .pd-title, .pd-lead,
    .pd-features, .pd-block, .pd-pricing, .pd-cta{
      transition:none !important;
      transform:none !important;
      opacity:1 !important;
    }
  }

  /* ============================================================
     FAQ
     ============================================================ */
  .faq{
    background: var(--ivory);
    padding: clamp(70px,12vh,140px) 0;
  }
  .faq-grid{
    display:grid;
    gap: 56px;
  }
  @media (min-width: 880px){ .faq-grid{ grid-template-columns: 0.8fr 1.2fr; } }
  .faq-head h2{
    font-family: var(--display);
    font-size: clamp(30px,4.8vw,50px);
    font-weight:500;
    margin-top: 16px;
    line-height:1.12;
  }
  .faq-head p{
    margin-top: 18px;
    color: rgba(54,46,35,0.7);
    font-size: 15px;
    line-height: 1.7;
    max-width: 40ch;
  }
  .faq-item{
    border-bottom: 1px solid rgba(54,46,35,0.14);
  }
  .faq-item:first-child{ border-top: 1px solid rgba(54,46,35,0.14); }
  .faq-q{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 20px;
    padding: 24px 4px;
    text-align:left;
    font-family: var(--display);
    font-size: clamp(17px, 2.2vw, 20px);
    font-weight: 500;
    color: var(--grove);
  }
  .faq-q .plus{
    flex-shrink:0;
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(54,46,35,0.3);
    position:relative;
  }
  .faq-q .plus::before, .faq-q .plus::after{
    content:"";
    position:absolute;
    background: var(--grove);
    top:50%; left:50%;
    transform: translate(-50%,-50%);
  }
  .faq-q .plus::before{ width:10px; height:1.5px; }
  .faq-q .plus::after{ width:1.5px; height:10px; transition: transform 0.35s var(--ease); }
  .faq-item.open .faq-q .plus::after{ transform: translate(-50%,-50%) rotate(90deg) scale(0); }
  .faq-a{
    max-height:0;
    overflow:hidden;
    transition: max-height 0.5s var(--ease);
  }
  .faq-a p{
    padding: 0 4px 26px;
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(54,46,35,0.7);
    max-width: 56ch;
  }

  /* ============================================================
     CONTACT
     ============================================================ */
  .contact{
    background: var(--grove);
    padding: clamp(70px,12vh,140px) 0;
    position:relative;
    overflow:hidden;
  }
  .contact-grid{
    display:grid;
    gap: 48px;
    position:relative;
    z-index:2;
  }
  @media (min-width: 880px){ .contact-grid{ grid-template-columns: 1fr 1fr; gap: 70px; } }
  .contact-head h2{
    font-family: var(--display);
    color: var(--ivory);
    font-size: clamp(30px,5vw,54px);
    font-weight:500;
    margin-top: 16px;
    line-height: 1.1;
  }
  .contact-head p{
    margin-top: 20px;
    color: rgba(247,243,234,0.65);
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 40ch;
  }
  .contact-info{
    margin-top: 40px;
    display:flex;
    flex-direction:column;
    gap: 18px;
  }
  .contact-info div{
    display:flex;
    align-items:center;
    gap: 14px;
    color: var(--ivory);
    font-size: 14.5px;
  }
  .contact-info svg{ width:20px; height:20px; color: var(--lemon); flex-shrink:0; }
  .contact-info a{
    color: inherit;
    transition: color 0.3s;
  }
  .contact-info a:hover{ color: var(--lemon); }

  .contact-map{
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(247,243,234,0.12);
    box-shadow: 0 24px 60px -24px rgba(0,0,0,0.45);
    background: var(--ivory);
    min-height: 360px;
  }
  .contact-map iframe{
    display:block;
    width:100%;
    height: clamp(320px, 52vh, 480px);
    border:0;
  }
  .contact-map-link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 16px;
    padding: 14px 18px;
    background: var(--ivory);
    border-top: 1px solid rgba(54,46,35,0.1);
    font-size: 13.5px;
    color: var(--ink);
    transition: background 0.3s;
  }
  .contact-map-link:hover{ background: var(--ivory-deep); }
  .contact-map-link span{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--citrus-deep);
    white-space: nowrap;
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  .site-footer{
    background: var(--ink);
    color: var(--ivory-deep);
    padding: 64px 0 0;
  }
  .footer-top{
    display:grid;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(247,243,234,0.1);
  }
  @media (min-width: 780px){
    .footer-top{ grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  }
  .footer-brand{
    font-family: var(--display);
    font-size: 26px;
    color: var(--ivory);
  }
  .footer-brand img{
    display:block;
    height: 42px;
    width:auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
  }
  .footer-brand p{
    margin-top: 14px;
    font-size: 13.5px;
    color: rgba(247,243,234,0.55);
    line-height:1.6;
    max-width: 32ch;
  }
  .footer-col h5{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform:uppercase;
    color: var(--lemon);
    margin-bottom: 16px;
  }
  .footer-col ul{ display:flex; flex-direction:column; gap: 10px; }
  .footer-col a{
    font-size: 13.5px;
    color: rgba(247,243,234,0.65);
    transition: color 0.3s;
  }
  .footer-col a:hover{ color: var(--ivory); }
  .footer-bottom{
    padding: 26px 0 28px;
    display:flex;
    flex-wrap:wrap;
    gap: 14px;
    justify-content:space-between;
    align-items:center;
    font-size: 12.5px;
    color: rgba(247,243,234,0.4);
  }
  .footer-social{ display:flex; gap: 14px; }
  .footer-social a{
    width: 34px; height:34px;
    border-radius:50%;
    border: 1px solid rgba(247,243,234,0.18);
    display:flex; align-items:center; justify-content:center;
    transition: border-color 0.3s, background 0.3s;
  }
  .footer-social a:hover{ background: var(--citrus); border-color: var(--citrus); }
  .footer-social svg{ width:15px; height:15px; }
  .footer-credit{
    margin-top: 28px;
    background: #000;
    border-top: 1px solid rgba(247,243,234,0.08);
    padding: 10px var(--edge);
    text-align: center;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .footer-credit a{
    color: rgba(247,243,234,0.45);
    transition: color 0.3s;
  }
  .footer-credit a:hover{ color: rgba(247,243,234,0.85); }

  /* section title helper */
  .section-title{ max-width: 640px; }

  /* generic image-mask circle used for organic accents */
  .blob{ position:absolute; border-radius:50%; filter: blur(60px); opacity:0.5; pointer-events:none; }

  /* ============================================================
     MOBILE SPACING — unified vertical rhythm (≤768px)
     ============================================================ */
  @media (max-width: 768px){
    :root{
      --edge: 20px;
      --header-h: 64px;
      --section-pad: 48px;
      --section-pad-sm: 40px;
      --stack-lg: 24px;
    }

    .story{
      padding: var(--section-pad) 0;
    }
    .story-grid{ gap: var(--stack-lg); }
    .story h2{ margin: 14px 0 18px; }
    .story-quote{ margin-top: 22px; padding-left: 18px; }

    .products{ padding: var(--section-pad-sm) 0; }
    .products-head{ padding-bottom: 20px; }
    .products-head h2{ margin-top: 12px; }
    .products-head p{ margin-top: 14px; font-size: 15px; }

    .naturalness{ padding: var(--section-pad) 0; }
    .nat-inner h2{ margin-top: 14px; }
    .nat-ring{ margin-top: 32px; }
    .nat-pills{
      margin-top: 32px;
      gap: 8px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      max-width: 100%;
      width: 100%;
    }
    .nat-pills span{
      font-size: 10px;
      padding: 7px 10px;
      letter-spacing: 0.04em;
      text-align: center;
    }
    .nat-pills span:last-child:nth-child(odd){
      grid-column: 1 / -1;
      justify-self: center;
      width: calc(50% - 4px);
    }

    .process{ padding: var(--section-pad) 0; }
    .process-head h2{ margin-top: 12px; }
    .process-steps{ margin-top: 32px; }
    .process-step{ padding: 24px 20px; }

    .benefits{ padding: var(--section-pad) 0; }
    .benefits-grid{ margin-top: 32px; gap: 16px; }
    .benefit-card{ padding: 24px 20px; }
    .benefit-card h4{ margin-top: 16px; }

    .fruits{ padding: var(--section-pad) 0; }
    .fruits-head h2{ margin-top: 12px; }
    .fruits-slider{ margin-top: 36px; }
    .fruits-supply .fruits-slider{ margin-top: 26px; }
    .fruits-dots{ margin-top: 20px; }

    .faq{ padding: var(--section-pad) 0; }
    .faq-grid{ gap: 32px; }
    .faq-head h2{ margin-top: 12px; }
    .faq-head p{ margin-top: 14px; }
    .faq-q{ padding: 18px 0; gap: 16px; }
    .faq-a p{ padding: 0 0 18px; }

    .contact{ padding: var(--section-pad) 0; }
    .contact-grid{ gap: 32px; }
    .contact-head h2{ margin-top: 12px; }
    .contact-head p{ margin-top: 14px; font-size: 15px; }
    .contact-info{ margin-top: 28px; gap: 14px; }
    .contact-map{ min-height: 0; }
    .contact-map iframe{ height: 280px; }

    .site-footer{ padding-top: var(--section-pad); }
    .footer-top{ gap: 28px; padding-bottom: 32px; }
    .footer-bottom{ padding: 20px 0 24px; }
    .footer-credit{ margin-top: 0; }
  }

  @media (max-width: 480px){
    :root{
      --section-pad: 40px;
      --section-pad-sm: 36px;
    }
  }

  /* ============================================================
     SCROLL TO TOP
     ============================================================ */
  .scroll-top{
    position: fixed;
    right: clamp(16px, 4vw, 28px);
    bottom: clamp(16px, 4vw, 28px);
    z-index: 190;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grove);
    color: var(--ivory);
    border: 1px solid rgba(247,243,234,0.14);
    box-shadow: 0 10px 28px -8px rgba(30,43,25,0.45);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s, background 0.35s, box-shadow 0.35s;
    pointer-events: none;
  }
  .scroll-top svg{ width: 20px; height: 20px; }
  .scroll-top.is-visible{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .scroll-top:hover{
    background: var(--citrus);
    box-shadow: 0 14px 32px -8px rgba(232,92,44,0.45);
    transform: translateY(-2px);
  }
  .scroll-top.is-visible:hover{
    transform: translateY(-2px);
  }