/* Hero – Potato-e */
:root{
  --pe-green:#133225;
  --pe-orange:#df6a3e;
  --pe-beige:#f9eee2;
  --pe-white:#ffffff;
}

.pe-hero{position:relative; overflow:hidden; isolation:isolate;}
.pe-hero--beige{ background:var(--pe-beige); }
.pe-hero--white{ background:var(--pe-white); }

.pe-hero__container{
  max-width:1200px;
  margin:0 auto;
  padding: clamp(32px, 6vw, 80px) 20px;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 56px);
  align-items:center;
}

.pe-hero__title{
  color:var(--pe-green);
  font-size: clamp(28px, 4.2vw, 52px);
  line-height:1.08;
  letter-spacing:-0.02em;
  margin: 8px 0 12px;
}

.pe-hero__kicker{
  color:var(--pe-orange);
  font-weight:600;
  text-transform:uppercase;
  font-size: .9rem;
  letter-spacing:.08em;
  margin:0 0 4px;
}

.pe-hero__subtitle{
  color:#2d3b33;
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 60ch;
  margin:0 0 20px;
  line-height: 25px;
}

.pe-hero__cta{ display:flex; gap:12px; align-items:center; margin: 8px 0 20px; }
.pe-btn{
  display:inline-flex; align-items:center; justify-content:center;
  background:var(--pe-orange); color:white; text-decoration:none;
  padding: 12px 18px; border-radius: 999px; font-weight:700;
  box-shadow: 0 6px 18px rgba(223,106,62,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.pe-btn:hover{ transform: translateY(-1px); box-shadow:0 10px 24px rgba(223,106,62,.24); }
.pe-btn:active{ transform: translateY(0); }

.pe-hero__bullets{
  margin: 8px 0 0; padding:0; list-style:none; color:#253229; font-size:.98rem;
}
.pe-hero__bullets li{ display:flex; gap:10px; align-items:flex-start; margin: 6px 0; }
.pe-hero__bullets li::before{
  content:''; width:8px; height:8px; border-radius:50%; background:var(--pe-orange); margin-top:.45em;
}

.pe-hero__image{
  width:100%; height:auto; border-radius:20px;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  opacity:0; transform:translateY(8px);
  animation: peFade .6s ease .1s forwards;
}

.pe-hero__illus{
  width:100%; height:auto; opacity:.9;
  display:block; filter: drop-shadow(0 6px 24px rgba(0,0,0,.08));
  transform: scale(.98); opacity:0; animation: peFade .6s ease .1s forwards;
}

.pe-hero__decor{ position:absolute; inset:0; pointer-events:none; }
.pe-atom{
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: url(/wp-content/themes/charliens/assets/images/potato-add-1000-3.png);
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.1;
    background-size: 100%;
}
.pe-atom--a{ right:-60px; top:-40px; }
.pe-atom--b{ left:-80px; bottom:-60px;}

@keyframes peFade{ to{ opacity:1; transform:none; } }
@keyframes peDrift{
  0%{ transform: translate(0,0) rotate(0deg) }
  100%{ transform: translate(12px,8px) rotate(8deg) }
}

@media (max-width: 1750px){
.pe-atom {
    position: absolute;
    width: 1000px;
    height: 820px;
    background: url(/wp-content/themes/charliens/assets/images/potato-add-1000-3.png);
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.1;
    background-size: 70%;
}
}

@media (max-width: 1450px){
.pe-atom {
display: none;
}
}


@media (max-width: 920px){
  .pe-hero__container{ grid-template-columns:1fr; }
  .pe-hero__col--media{ order:-1; }
}

@media (prefers-reduced-motion: reduce){
  .pe-hero__image, .pe-hero__illus{ animation:none; opacity:1; transform:none; }
  .pe-atom{ display:none; }
}
