:root{
    --bg: #7ED957;
    --ink: #063413;
    --green-dark: #2F7B2F;
    --white: #ffffff;
  }
  
  *{ box-sizing: border-box; }
  
  html, body{ height: 100%; }
  
  body{
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
  }
  
  a{ color: inherit; }
  
  .hero{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 64px);
    padding: clamp(24px, 4.5vw, 64px);
    position: relative;
    overflow: hidden;
  }
  
  /* Decorative corner leaves */
  .leaf{
    position: absolute;
    z-index: 0;
    pointer-events: none;
    user-select: none;
  }
  
  .leaf--tl{ top: -6px; left: -6px; width: clamp(1060px, 20vw, 1160px); }
  .leaf--tr{ top: -6px; right: -6px; width: clamp(1040px, 18vw, 1120px); }
  
  .hero__col{
    z-index: 1;
    flex: 1 1 0;
  }
  
  .left{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 620px;
    margin-inline: auto;
  }
  
  .pretitle{
    margin: 0 0 clamp(18px, 2vw, 28px);
    font-weight: 900;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    font-size: clamp(20px, 2.2vw, 34px);
  }
  
  .logo{
    width: min(760px, 100%);
    height: auto;
    display: block;
  }
  
  .location{
    margin: clamp(18px, 2.2vw, 28px) 0 0;
    font-weight: 900;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-size: clamp(18px, 2vw, 30px);
  }
  
  .phone{
    margin-top: clamp(26px, 3vw, 44px);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.08em;
    font-size: clamp(20px, 2.2vw, 36px);
  }
  
  .phone__icon{
    width: clamp(28px, 3vw, 42px);
    height: auto;
    flex: 0 0 auto;
  }
  
  .right{
    display: flex;
    justify-content: center;
  }
  
  .card{
    width: min(520px, 100%);
    background: var(--white);
    border-radius: 26px;
    padding: clamp(18px, 2.6vw, 34px);
    padding-bottom: clamp(16px, 2.4vw, 28px);
    box-shadow: 0 18px 0 rgba(0,0,0,0.06);
  }
  
  .plant-list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 1.8vw, 18px);
  }
  
  .pill{
    display: block;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.04em;
    padding: clamp(14px, 1.8vw, 18px) clamp(16px, 2.2vw, 24px);
    border-radius: 999px;
    background: var(--bg);
    border: 3px solid var(--green-dark);
    color: var(--ink);
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.1;
    transition: transform 120ms ease, filter 120ms ease;
  }
  
  .pill::after{
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.8);
    pointer-events: none;
  }
  
  .pill:hover{
    transform: translateY(-1px);
    filter: brightness(1.02);
  }
  
  .social{
    margin-top: clamp(16px, 2.4vw, 22px);
    display: flex;
    justify-content: center;
    gap: 18px;
  }
  
  .social a{
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
  }
  
  .social svg{
    width: 24px;
    height: 24px;
  }
  
  .mascot{
    position: absolute;
    right: clamp(-101px, 2.8vw, -334px);
    bottom: clamp(6px, 2.6vw, -214px);
    width: clamp(520px, 16vw, 220px);
    height: auto;
    z-index: 2;
    pointer-events: none;
    user-select: none;
  }
  
  /* Mobile layout */
  @media (max-width: 920px){
    .hero{
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 34px;
    }
  
    .right{
      width: 100%;
    }
  
    .mascot{
      position: static;
      width: min(200px, 60vw);
      margin-left: auto;
      margin-top: 16px;
    }
  }