/* ============ TOKENS ============ */
  :root{
    --forest: #0F2818;
    --forest-deep: #0A1C10;
    --emerald: #1C5C3E;
    --emerald-light: #2E7A52;
    --olive: #6B7A3A;
    --leaf: #A8C686;
    --leaf-pale: #D7E4BE;
    --gold: #C9A14A;
    --gold-bright: #E0BC6B;
    --gold-deep: #9C7A2F;
    --cream: #F8F4E8;
    --cream-warm: #F1EAD6;
    --ink: #14160F;

    --display: 'Fraunces', serif;
    --body: 'Jost', sans-serif;

    --container: 1240px;
  }

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

  html{ scroll-behavior:smooth; }

  body{
    background: var(--cream);
    color: var(--ink);
    font-family: var(--body);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a{ color:inherit; text-decoration:none; }
  ul{ list-style:none; }
  img{ max-width:100%; display:block; }
  button{ font-family:inherit; cursor:pointer; border:none; background:none; }

  ::selection{ background: var(--gold); color: var(--forest-deep); }

  .container{
    width:100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce){
    *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior:auto !important; }
  }

  /* ============ TEXTURE / NOISE ============ */
  .grain{
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ============ NAV ============ */
  .nav{
    position: fixed;
    top:0; left:0; right:0;
    z-index: 100;
    padding: 28px 0 0;
    transition: padding 0.4s ease, background 0.4s ease;
  }
  .nav.scrolled{
    padding: 14px 0;
    background: rgba(15, 40, 24, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(201,161,74,0.25);
  }
  .nav-inner{
    display:flex;
    align-items:center;
    justify-content: space-between;
  }
  .nav-mark{
    display:flex;
    align-items:center;
    gap:12px;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--cream);
  }
  .nav-logo{ width:70px; height:70px; flex-shrink:0; object-fit: contain; }
  .nav-links{
    display:flex;
    align-items:center;
    gap: 36px;
  }
  .nav-links a{
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--leaf-pale);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
  }
  .nav-links a::after{
    content:'';
    position:absolute;
    left:0; bottom:0;
    width:0%; height:1px;
    background: var(--gold-bright);
    transition: width 0.35s ease;
  }
  .nav-links a:hover{ color: var(--gold-bright); }
  .nav-links a:hover::after{ width:100%; }

  .nav-cta{
    border:1px solid var(--gold);
    color: var(--gold-bright);
    padding: 11px 26px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.35s ease;
  }
  .nav-cta:hover{
    background: var(--gold);
    color: var(--forest-deep);
  }

  /* Mobile hamburger toggle */
  .nav-toggle{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201,161,74,0.4);
    border-radius: 2px;
    flex-shrink: 0;
  }
  .nav-toggle span{
    display:block;
    width: 18px;
    height: 1px;
    background: var(--gold-bright);
    transition: transform 0.35s ease, opacity 0.25s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2){
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile dropdown panel */
  .nav-mobile{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    max-height: 0;
    overflow: hidden;
    overflow-y: auto;
    background: rgba(10, 28, 16, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid transparent;
    transition: max-height 0.45s cubic-bezier(.22,1,.36,1), border-color 0.45s ease;
  }
  .nav-mobile.open{
    max-height: calc(100vh - 80px);
    border-top: 1px solid rgba(201,161,74,0.2);
    box-shadow: 0 24px 40px -12px rgba(0,0,0,0.5);
  }
  .nav-mobile-links{
    padding: 28px 40px 10px;
    display:flex;
    flex-direction:column;
    gap: 4px;
  }
  .nav-mobile-links a{
    display:block;
    padding: 14px 0;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--leaf-pale);
    border-bottom: 1px solid rgba(201,161,74,0.12);
    transition: color 0.3s ease, padding-left 0.3s ease;
  }
  .nav-mobile-links a:hover{ color: var(--gold-bright); padding-left: 6px; }
  .nav-cta-mobile{
    display:block;
    text-align:center;
    margin: 22px 40px 32px;
  }

  /* ============ HERO ============ */
  .hero{
    position: relative;
    min-height: 100vh;
    background:
      radial-gradient(ellipse 120% 80% at 50% -10%, rgba(46,122,82,0.35), transparent 60%),
      linear-gradient(180deg, var(--forest-deep) 0%, var(--forest) 55%, #102B19 100%);
    overflow: hidden;
    display:flex;
    align-items:center;
    padding-top: 80px;
  }

  .hero-foliage{
    position:absolute;
    inset:0;
    z-index:1;
    opacity: 0.9;
  }

  .hero-vignette{
    position:absolute;
    inset:0;
    background: radial-gradient(ellipse 70% 60% at 50% 40%, transparent 40%, rgba(10,28,16,0.55) 100%);
    z-index:2;
    pointer-events:none;
  }

  .hero-content{
    position:relative;
    z-index:5;
    width:100%;
    text-align:center;
    padding: 60px 40px 40px;
  }

  .hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:14px;
    color: var(--gold-bright);
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity:0;
    animation: fadeUp 1s ease 0.2s forwards;
  }
  .hero-eyebrow::before, .hero-eyebrow::after{
    content:'';
    width: 28px; height:1px;
    background: linear-gradient(90deg, transparent, var(--gold));
  }
  .hero-eyebrow::after{ background: linear-gradient(90deg, var(--gold), transparent); }

  .hero h1{
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(2.8rem, 6.4vw, 5.6rem);
    line-height: 1.04;
    color: var(--cream);
    letter-spacing: -0.01em;
    max-width: 16ch;
    margin: 0 auto;
    opacity:0;
    animation: fadeUp 1.1s ease 0.4s forwards;
  }
  .hero h1 em{
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(120deg, var(--leaf-pale) 10%, var(--gold-bright) 45%, var(--gold) 70%, var(--leaf-pale) 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-sub{
    max-width: 480px;
    margin: 28px auto 0;
    color: var(--leaf-pale);
    font-size: 1.08rem;
    line-height: 1.7;
    font-weight: 300;
    opacity:0;
    animation: fadeUp 1.1s ease 0.6s forwards;
  }

  .hero-actions{
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 22px;
    margin-top: 44px;
    opacity:0;
    animation: fadeUp 1.1s ease 0.8s forwards;
  }

  .btn-primary{
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--forest-deep);
    padding: 17px 38px;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    box-shadow: 0 8px 30px -8px rgba(201,161,74,0.55);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s ease;
  }
  .btn-primary:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 36px -8px rgba(201,161,74,0.7);
  }

  .btn-ghost{
    color: var(--cream);
    padding: 17px 6px;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display:flex;
    align-items:center;
    gap:10px;
    border-bottom: 1px solid rgba(248,244,232,0.3);
    transition: border-color 0.35s ease, color 0.35s ease, gap 0.35s ease;
  }
  .btn-ghost:hover{
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    gap: 16px;
  }

  .hero-scroll{
    position:absolute;
    bottom: 38px;
    left:50%;
    transform: translateX(-50%);
    z-index:5;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    color: var(--leaf-pale);
    opacity: 0.7;
    animation: fadeIn 1s ease 1.4s forwards, bob 2.6s ease-in-out 1.4s infinite;
    opacity:0;
  }
  .hero-scroll span{
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  .hero-scroll svg{ width:14px; height:22px; }

  @keyframes fadeUp{
    from{ opacity:0; transform: translateY(22px); }
    to{ opacity:1; transform: translateY(0); }
  }
  @keyframes fadeIn{
    from{ opacity:0; } to{ opacity:0.7; }
  }
  @keyframes bob{
    0%,100%{ transform: translate(-50%,0); }
    50%{ transform: translate(-50%,8px); }
  }

  /* ============ MARQUEE STRIP ============ */
  .strip{
    background: var(--gold);
    overflow: hidden;
    position: relative;
    z-index: 6;
  }
  .strip-track{
    display:flex;
    width: max-content;
    animation: scrollX 32s linear infinite;
  }
  .strip-track span{
    display:flex;
    align-items:center;
    gap: 16px;
    padding: 13px 36px;
    font-family: var(--display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--forest-deep);
    white-space: nowrap;
  }
  .strip-track span::after{
    content:'✦';
    font-style: normal;
    color: var(--forest);
    opacity:0.6;
  }
  @keyframes scrollX{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
  }

  /* ============ SECTION SHARED ============ */
  section{ position:relative; }
  .section-pad{ padding: 130px 0; }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:12px;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 22px;
  }
  .eyebrow::before{
    content:'';
    width:34px; height:1px;
    background: var(--gold-deep);
  }
  .section-title{
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(2.1rem, 3.6vw, 3.2rem);
    line-height: 1.12;
    color: var(--forest-deep);
    max-width: 14ch;
  }
  .section-title em{
    font-style: italic;
    font-weight: 400;
    color: var(--emerald);
  }

  /* ============ PHILOSOPHY / INTRO ============ */
  .philosophy{
    background: var(--cream);
    position:relative;
  }
  .philosophy-grid{
    display:grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 70px;
    align-items: start;
    padding-top: 40px;
  }
  .philosophy-divider{
    background: linear-gradient(180deg, transparent, var(--olive) 20%, var(--olive) 80%, transparent);
  }
  .philosophy-text p{
    font-size: 1.04rem;
    line-height: 1.85;
    color: #3A4030;
    font-weight: 300;
    margin-top: 26px;
  }
  .philosophy-text p strong{
    color: var(--emerald);
    font-weight: 500;
  }

  .leaf-stats{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 56px;
  }
  .leaf-stat{
    border-top: 1px solid var(--gold-deep);
    padding-top: 18px;
  }
  .leaf-stat .num{
    font-family: var(--display);
    font-size: 2.4rem;
    color: var(--forest-deep);
    font-weight: 500;
  }
  .leaf-stat .num span{ color: var(--gold-deep); font-size: 1.4rem; }
  .leaf-stat .lbl{
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6B6F5E;
    margin-top: 6px;
  }

  /* ============ FOUNDER PLATE (poster-inspired) ============ */
  .plate-wrap{
    position: sticky;
    top: 110px;
  }
  .plate{
    position: relative;
    background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
    border-radius: 4px;
    padding: 4px;
    box-shadow: 0 30px 60px -20px rgba(15,40,24,0.4);
  }
  .plate-border{
    border: 1.5px solid var(--gold);
    border-radius: 2px;
    padding: 46px 38px;
    position:relative;
    overflow:hidden;
  }
  .plate-border::before{
    content:'';
    position:absolute;
    inset: 8px;
    border: 1px solid rgba(201,161,74,0.35);
    border-radius:2px;
    pointer-events:none;
  }
  .plate-corner{
    position:absolute;
    width: 26px; height:26px;
    border: 1.5px solid var(--gold-bright);
  }
  .plate-corner.tl{ top:14px; left:14px; border-right:none; border-bottom:none; }
  .plate-corner.tr{ top:14px; right:14px; border-left:none; border-bottom:none; }
  .plate-corner.bl{ bottom:14px; left:14px; border-right:none; border-top:none; }
  .plate-corner.br{ bottom:14px; right:14px; border-left:none; border-top:none; }

  .plate-icon{
    width: 64px; height:64px;
    margin: 0 auto 22px;
    color: var(--gold);
  }
  .plate h3{
    text-align:center;
    font-family: var(--display);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--gold-bright);
    text-transform: uppercase;
    font-weight: 600;
  }
  .plate .role{
    text-align:center;
    color: var(--leaf-pale);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 8px;
    opacity:0.85;
  }
  .plate-rule{
    width: 60px; height:1px;
    background: var(--gold);
    margin: 24px auto;
    opacity:0.6;
  }
  .plate p.quote{
    text-align:center;
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    color: var(--cream);
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .plate-seal{
    margin: 26px auto 0;
    width: 92px; height:92px;
    border-radius:50%;
    border: 1px solid var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
  }
  .plate-seal::before{
    content:'';
    position:absolute;
    inset: 6px;
    border: 1px dashed rgba(201,161,74,0.5);
    border-radius:50%;
  }
  .plate-seal span{
    font-family: var(--display);
    font-style:italic;
    font-size: 0.68rem;
    color: var(--gold-bright);
    text-align:center;
    letter-spacing: 0.05em;
    line-height: 1.3;
  }

  /* ============ ABOUT ============ */
  .about{
    background: var(--cream-warm);
    border-top: 1px solid rgba(156,122,47,0.18);
  }
  .about-head{
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .about-head .eyebrow{ justify-content:center; }
  .about-head .eyebrow::after{
    content:'';
    width:34px; height:1px;
    background: var(--gold-deep);
  }
  .about-head .section-title{
    max-width: none;
    margin: 0 auto;
  }
  .about-intro{
    margin-top: 24px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3A4030;
    font-weight: 300;
  }

  .about-body{
    max-width: 820px;
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .about-body p{
    font-size: 0.98rem;
    line-height: 1.85;
    color: #4A4F3D;
    font-weight: 300;
  }

  .mv-pair{
    margin: 90px auto 0;
    max-width: 920px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 56px;
    background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 56px 60px;
    position: relative;
  }
  .mv-divider{
    background: linear-gradient(180deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    opacity: 0.4;
  }
  .mv-card{ text-align:center; }
  .mv-icon{
    width: 48px; height:48px;
    margin: 0 auto 22px;
    color: var(--gold-bright);
  }
  .mv-card h4{
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
  }
  .mv-card p{
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--leaf-pale);
    font-weight: 300;
  }

  .values-head{
    text-align:center;
    margin: 110px auto 50px;
  }
  .values-head .eyebrow{ justify-content:center; }
  .values-head .eyebrow::after{
    content:'';
    width:34px; height:1px;
    background: var(--gold-deep);
  }
  .values-title{
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--forest-deep);
  }
  .values-title em{ font-style: italic; color: var(--emerald); }

  .values-grid{
    display:grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(156,122,47,0.25);
    border: 1px solid rgba(156,122,47,0.25);
    max-width: 1140px;
    margin: 0 auto;
  }
  .value-card{
    background: var(--cream-warm);
    padding: 38px 26px;
    transition: background 0.4s ease;
  }
  .value-card:hover{ background: var(--cream); }
  .value-mark{
    font-family: var(--display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--gold-deep);
    margin-bottom: 18px;
  }
  .value-card h5{
    font-family: var(--display);
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--forest-deep);
    margin-bottom: 10px;
  }
  .value-card p{
    font-size: 0.86rem;
    line-height: 1.65;
    color: #5C6150;
    font-weight: 300;
  }

  .about-closing{
    text-align: center;
    max-width: 540px;
    margin: 70px auto 0;
    font-family: var(--display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--emerald);
    line-height: 1.6;
  }

  /* ============ PRODUCTS ============ */
  .products{
    background: var(--forest-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .products::before{
    content:'';
    position:absolute;
    top:-1px; left:0; right:0; height:1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .products-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom: 56px;
    gap: 40px;
  }
  .products .eyebrow{ color: var(--gold-bright); }
  .products .eyebrow::before{ background: var(--gold-bright); }
  .products .section-title{ color: var(--cream); }
  .products .section-title em{ color: var(--leaf); }
  .products-head p{
    max-width: 340px;
    color: var(--leaf-pale);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    padding-bottom: 6px;
  }

  /* Best Sellers strip */
  .bestsellers{
    display:flex;
    align-items:center;
    gap: 20px;
    background: rgba(201,161,74,0.1);
    border: 1px solid rgba(201,161,74,0.3);
    border-radius: 3px;
    padding: 16px 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .bestsellers-label{
    display:flex;
    align-items:center;
    gap: 7px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-bright);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .bestsellers-label svg{ width:13px; height:13px; color: var(--gold-bright); }
  .bestsellers-chips{
    display:flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
  }
  .bs-chip{
    font-size: 0.8rem;
    padding: 5px 13px;
    border-radius: 20px;
    background: rgba(168,198,134,0.12);
    border: 1px solid rgba(168,198,134,0.3);
    color: var(--leaf-pale);
  }
  .bs-cta{
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-bright);
    border-bottom: 1px solid rgba(201,161,74,0.4);
    padding-bottom: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.3s ease, color 0.3s ease;
  }
  .bs-cta:hover{ color: var(--gold); border-color: var(--gold); }

  /* Product group grid */
  .pg-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(201,161,74,0.12);
    border: 1px solid rgba(201,161,74,0.12);
  }
  .pg-card{
    background: var(--forest-deep);
    padding: 40px 34px 34px;
    display:flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.45s ease;
    position: relative;
  }
  .pg-card:hover{
    background: linear-gradient(160deg, #0e2817, #0a1c10);
  }
  .pg-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom: 4px;
  }
  .pg-emoji{ font-size: 1.9rem; line-height:1; }
  .pg-badge{
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-deep);
    border: 1px solid rgba(156,122,47,0.45);
    padding: 4px 10px;
    border-radius: 2px;
  }
  .pg-card h4{
    font-family: var(--display);
    font-size: 1.22rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.25;
  }
  .pg-for{
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--leaf-pale);
    font-weight: 300;
  }
  .pg-for strong{
    color: var(--leaf);
    font-weight: 500;
  }
  .pg-chips{
    display:flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
  }
  .pg-chips span{
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(168,198,134,0.2);
    color: rgba(215,228,190,0.75);
  }
  .pg-btn{
    margin-top: auto;
    display:inline-block;
    padding: 13px 20px;
    background: linear-gradient(135deg, rgba(201,161,74,0.18), rgba(201,161,74,0.08));
    border: 1px solid rgba(201,161,74,0.4);
    border-radius: 2px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--gold-bright);
    text-align: center;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
  }
  .pg-btn:hover{
    background: linear-gradient(135deg, rgba(201,161,74,0.32), rgba(201,161,74,0.16));
    border-color: var(--gold-bright);
    color: #fff;
  }

  /* Not Sure band */
  .not-sure{
    margin-top: 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 30px;
    background: rgba(37,107,72,0.25);
    border: 1px solid rgba(46,122,82,0.4);
    border-radius: 3px;
    padding: 28px 36px;
    flex-wrap: wrap;
  }
  .not-sure-title{
    font-family: var(--display);
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 6px;
  }
  .not-sure-sub{
    font-size: 0.88rem;
    color: var(--leaf-pale);
    font-weight: 300;
    line-height: 1.6;
    max-width: 52ch;
  }
  .not-sure-btn{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 14px 26px;
    background: #25D366;
    color: #fff;
    border-radius: 3px;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .not-sure-btn:hover{ background: #1ebe5a; transform: translateY(-2px); }
  .not-sure-btn svg{ width:18px; height:18px; }

  /* ============ PROCESS / RITUAL ============ */
  .process{
    background:
      linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  }
  .process-head{
    text-align:center;
    max-width: 600px;
    margin: 0 auto 80px;
  }
  .process-head .eyebrow{ justify-content:center; }
  .process-head .eyebrow::after{
    content:'';
    width:34px; height:1px;
    background: var(--gold-deep);
  }
  .process-head .section-title{ max-width:none; margin:0 auto; }

  .process-row{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position:relative;
  }
  .process-row::before{
    content:'';
    position:absolute;
    top: 30px;
    left: 12%; right:12%;
    height:1px;
    background: repeating-linear-gradient(90deg, var(--olive) 0 8px, transparent 8px 16px);
    opacity:0.5;
  }
  .process-step{
    text-align:center;
    padding: 0 22px;
    position:relative;
  }
  .process-mark{
    width: 62px; height:62px;
    border-radius: 50%;
    background: var(--cream-warm);
    border: 1.5px solid var(--gold-deep);
    display:flex;
    align-items:center;
    justify-content:center;
    margin: 0 auto 26px;
    position:relative;
    z-index:2;
    color: var(--emerald);
  }
  .process-mark svg{ width:26px; height:26px; }
  .process-step h5{
    font-family: var(--display);
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--forest-deep);
    margin-bottom: 10px;
  }
  .process-step p{
    font-size: 0.88rem;
    color: #5C6150;
    line-height: 1.7;
    font-weight: 300;
  }

  /* ============ TESTIMONIAL ============ */
  .testimonial{
    background: var(--emerald);
    position:relative;
    overflow:hidden;
  }
  .testimonial::before{
    content:'';
    position:absolute;
    inset:0;
    background: radial-gradient(circle at 80% 20%, rgba(168,198,134,0.25), transparent 50%);
  }
  .testimonial-inner{
    max-width: 760px;
    margin: 0 auto;
    text-align:center;
    position:relative;
    z-index:2;
  }
  .testimonial-mark{
    font-family: var(--display);
    font-size: 5rem;
    color: var(--gold-bright);
    line-height:1;
    opacity:0.7;
  }
  .testimonial blockquote{
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(1.4rem, 2.6vw, 2.1rem);
    line-height: 1.55;
    color: var(--cream);
    font-weight: 400;
    margin-top: 10px;
  }
  .testimonial-author{
    margin-top: 34px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
  }
  .testimonial-author .line{ width:34px; height:1px; background: var(--gold); }
  .testimonial-author span{
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--leaf-pale);
  }

  /* ============ CTA BAND ============ */
  .cta-band{
    background: var(--forest-deep);
    padding: 110px 0;
    text-align:center;
    position:relative;
    overflow:hidden;
  }
  .cta-band-glow{
    position:absolute;
    width: 600px; height:600px;
    border-radius:50%;
    background: radial-gradient(circle, rgba(201,161,74,0.18), transparent 70%);
    top:50%; left:50%;
    transform: translate(-50%,-50%);
    pointer-events:none;
  }
  .cta-band h2{
    position:relative;
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    color: var(--cream);
    max-width: 14ch;
    margin: 0 auto;
    line-height:1.15;
  }
  .cta-band h2 em{
    font-style:italic; font-weight:400;
    color: var(--gold-bright);
  }
  .cta-band-actions{
    position:relative;
    margin-top: 42px;
    display:flex;
    gap:22px;
    justify-content:center;
  }

  /* ============ OPPORTUNITY / NETWORK SECTION ============ */
.opportunity-section {
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(156,122,47,0.1);
  border-bottom: 1px solid rgba(156,122,47,0.1);
  position: relative;
  overflow: hidden;
}

.opportunity-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,161,74,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.opportunity-badge {
  text-align: center;
  margin-bottom: 20px;
}

.opportunity-badge span {
  display: inline-block;
  background: var(--gold);
  color: var(--forest-deep);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.opportunity-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.opportunity-sub {
  font-size: 1.05rem;
  color: #5C6150;
  line-height: 1.8;
  margin-top: 16px;
}

.opportunity-sub strong {
  color: var(--forest-deep);
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .opportunity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .opportunity-grid {
    grid-template-columns: 1fr;
  }
}

.opportunity-card {
  background: var(--cream);
  padding: 30px 24px;
  border: 1px solid rgba(156,122,47,0.1);
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.opportunity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: var(--gold);
}

.opportunity-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}

.opportunity-card h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--forest-deep);
  margin-bottom: 8px;
}

.opportunity-card p {
  font-size: 0.9rem;
  color: #6B6F5E;
  line-height: 1.7;
  margin: 0;
}

/* Testimonial */
.opportunity-testimonial {
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 0 20px;
}

.opportunity-testimonial-inner {
  background: var(--forest);
  padding: 40px 48px;
  border-radius: 4px;
  border: 1px solid var(--gold);
  position: relative;
}

@media (max-width: 600px) {
  .opportunity-testimonial-inner {
    padding: 24px;
  }
}

.testimonial-quote {
  font-family: var(--display);
  font-size: 3.6rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 8px;
}

.opportunity-testimonial blockquote {
  font-size: 1.1rem;
  color: var(--leaf-pale);
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 20px 0;
  font-family: var(--body);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.testimonial-name {
  color: var(--gold-bright);
  font-weight: 500;
  font-size: 0.95rem;
}

.testimonial-role {
  color: var(--leaf-pale);
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Stats */
.opportunity-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(156,122,47,0.1);
  border-bottom: 1px solid rgba(156,122,47,0.1);
}

@media (max-width: 600px) {
  .opportunity-stats {
    flex-direction: column;
    gap: 16px;
  }
  .stat-divider {
    display: none;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest-deep);
}

.stat-label {
  font-size: 0.8rem;
  color: #6B6F5E;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(156,122,47,0.2);
}

/* CTA */
.opportunity-cta {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  border-radius: 4px;
  border: 1px solid var(--gold);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .opportunity-cta {
    padding: 32px 20px;
  }
}

.opportunity-cta::before {
  content: '💰';
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 120px;
  opacity: 0.06;
  pointer-events: none;
}

.opportunity-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.opportunity-cta-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.opportunity-cta h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 500;
}

.opportunity-cta h3 em {
  color: var(--gold-bright);
  font-style: italic;
}

.opportunity-cta p {
  color: var(--leaf-pale);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
}

.opportunity-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #25D366;
  color: #fff;
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--body);
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201,161,74,0.4);
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--body);
}

.btn-secondary:hover {
  background: rgba(201,161,74,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.opportunity-cta-note {
  font-size: 0.8rem !important;
  color: rgba(248,244,232,0.6) !important;
  margin-bottom: 0 !important;
}

/* ============ PROMOTIONAL IMAGE BANNER ============ */
.promo-banner {
  background: var(--cream-warm);
  padding: 40px 0;
  position: relative;
  border-top: 1px solid rgba(156,122,47,0.1);
  border-bottom: 1px solid rgba(156,122,47,0.1);
}

.promo-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 0 auto;
  background: var(--cream);
}

.promo-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.promo-image-wrapper:hover img {
  transform: scale(1.02);
}

.promo-image-wrapper a {
  display: block;
  width: 100%;
  text-decoration: none;
}

/* Loading state */
.promo-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  min-height: 300px;
  color: #9A9E8E;
  font-size: 0.9rem;
  gap: 16px;
}

.promo-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(156,122,47,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: promoSpin 0.8s linear infinite;
}

@keyframes promoSpin {
  to { transform: rotate(360deg); }
}

/* Empty state */
.promo-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  min-height: 300px;
  color: #9A9E8E;
  font-size: 0.9rem;
  gap: 8px;
  background: var(--cream-warm);
}

.promo-empty-icon {
  font-size: 3rem;
  opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-banner {
    padding: 24px 0;
  }
  .promo-image-wrapper {
    border-radius: 4px;
  }
  .promo-loading,
  .promo-empty {
    min-height: 200px;
    padding: 40px 16px;
  }
}

@media (max-width: 480px) {
  .promo-image-wrapper {
    border-radius: 0;
  }
}

  /* ============ FOOTER ============ */
  footer{
    background: var(--forest-deep);
    border-top: 1px solid rgba(201,161,74,0.2);
    padding: 70px 0 30px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 56px;
  }
  .footer-mark{
    display:flex;
    align-items:center;
    gap:12px;
    font-family: var(--display);
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 18px;
  }
  .footer-mark svg, .footer-logo{ width:70px; height:70px; object-fit: contain; }
  .footer-grid p{
    color: var(--leaf-pale);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 30ch;
  }
  .footer-col h6{
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .footer-col a{
    display:block;
    color: var(--leaf-pale);
    font-size: 0.92rem;
    margin-bottom: 13px;
    transition: color 0.3s ease, padding-left 0.3s ease;
  }
  .footer-col a:hover{ color: var(--gold-bright); padding-left: 4px; }
  .footer-bottom{
    border-top: 1px solid rgba(201,161,74,0.15);
    padding-top: 26px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap: 14px;
  }
  .footer-bottom span{
    font-size: 0.8rem;
    color: rgba(248,244,232,0.45);
    letter-spacing:0.02em;
  }
  .footer-socials{ display:flex; gap:18px; }
  .footer-socials a{
    width: 36px; height:36px;
    border:1px solid rgba(201,161,74,0.3);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    color: var(--gold-bright);
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  .footer-socials a:hover{ background: var(--gold); border-color: var(--gold); color: var(--forest-deep); }
  .footer-socials svg{ width:15px; height:15px; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1180px){
    .nav-links{ display:none; }
    .nav-cta{ display:none; }
    .nav-mobile .nav-cta{ display:block; }
    .nav-toggle{ display:flex; }
    .pg-grid{ grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 980px){
    .philosophy-grid{ grid-template-columns: 1fr; }
    .philosophy-divider{ display:none; }
    .plate-wrap{ position:static; max-width: 420px; margin: 0 auto; }
    .process-row{ grid-template-columns: 1fr 1fr; row-gap: 50px; }
    .process-row::before{ display:none; }
    .footer-grid{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
    .about-body{ grid-template-columns: 1fr; gap: 24px; }
    .mv-pair{ grid-template-columns: 1fr; padding: 44px 36px; gap: 40px; }
    .mv-divider{ width:100%; height:1px; background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent); }
    .values-grid{ grid-template-columns: repeat(2, 1fr); }
    .not-sure{ flex-direction: column; align-items:flex-start; padding: 24px 28px; }
  }
  @media (max-width: 600px){
    .container{ padding: 0 22px; }
    .nav-mobile-links{ padding: 24px 22px 6px; }
    .nav-cta-mobile{ margin: 20px 22px 28px; }
    .hero-actions{ flex-direction:column; gap:18px; }
    .leaf-stats{ grid-template-columns:1fr; gap:22px; }
    .products-head{ flex-direction:column; align-items:flex-start; }
    .pg-grid{ grid-template-columns: 1fr; }
    .bestsellers{ flex-direction:column; align-items:flex-start; gap:12px; }
    .process-row{ grid-template-columns: 1fr; }
    .footer-grid{ grid-template-columns: 1fr; }
    .cta-band-actions{ flex-direction:column; }
    .values-grid{ grid-template-columns: 1fr; }
    .mv-pair{ padding: 36px 24px; }
    .not-sure-btn{ width:100%; justify-content:center; }
  }
  @media (max-width: 380px){
    .nav-mark{ font-size: 1.25rem; gap:9px; }
    .nav-logo{ width:70px; height:70px; }
  }