
:root{
  --burnt:#bd5a0a;
  --burnt-dark:#9f4700;
  --teal:#68a6a4;
  --teal-dark:#4f8f8c;
  --ink:#343434;
  --muted:#666;
  --cream:#fbfaf7;
  --soft:#f6f5f1;
  --line:#e8e4dc;
  --shadow:0 14px 35px rgba(44,44,44,.12);
  --shadow-soft:0 8px 24px rgba(44,44,44,.08);
  --radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit}
.container{width:min(1180px,92vw);margin:0 auto}

/* HEADER */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(10px);
  border-top:1px solid #98ad9d;
  box-shadow:0 2px 14px rgba(0,0,0,.06)
}
.header-inner{
  min-height:74px;
  display:flex;align-items:center;justify-content:space-between;
  gap:30px
}
.logo{width:235px;height:auto}
.nav{display:flex;align-items:center;gap:30px;font-size:14px}
.nav a{text-decoration:none;transition:.2s ease}
.nav a:hover{color:var(--burnt)}
.menu-btn{
  display:none;background:#fff;border:1px solid var(--line);
  border-radius:10px;padding:8px 11px;font-size:22px
}

/* HERO */
.hero{
  position:relative;
  min-height:520px;
  overflow:hidden;
  background:url("assets/wpgplanners-homeschool.png") center 13% / cover no-repeat;
}
.hero:before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(to bottom,rgba(255,255,255,.02),rgba(255,255,255,.08));
}
.hero:after{
  content:"";
  position:absolute;left:-6%;right:-6%;bottom:-56px;height:130px;
  background:#fff;
  border-radius:50% 50% 0 0 / 65% 65% 0 0;
  box-shadow:0 -10px 26px rgba(255,255,255,.75)
}
.hero-product-wrap{
  position:absolute;left:50%;bottom:0;transform:translate(-50%,34%);
  z-index:3;width:min(760px,70vw);
  filter:drop-shadow(0 18px 18px rgba(0,0,0,.17));
}
.hero-product{width:100%;max-height:430px;object-fit:contain}

/* INTRO */
.intro{
  text-align:center;
  padding:180px 0 55px;
}
.eyebrow{
  display:inline-block;
  color:var(--teal-dark);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
  font-size:13px;
  margin-bottom:14px;
}
h1,h2,h3{margin-top:0;font-weight:400}
.intro h1{
  color:var(--burnt);
  font-size:clamp(42px,5vw,66px);
  line-height:.98;
  margin-bottom:24px;
}
.intro h2{
  color:var(--teal);
  font-size:clamp(26px,3vw,38px);
  margin-bottom:20px;
}
.lead{
  max-width:960px;margin:0 auto 30px;
  font-size:20px;color:#424242
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:52px;padding:12px 24px;
  border-radius:10px;
  border:1px solid var(--teal);
  color:var(--teal-dark);
  background:#fff;
  font-size:19px;
  text-decoration:none;
  box-shadow:0 5px 14px rgba(71,144,142,.08);
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease
}
.btn:hover{
  transform:translateY(-2px);
  background:#f5fbfa;
  box-shadow:0 10px 20px rgba(71,144,142,.15)
}
.btn-primary{
  background:var(--teal);
  color:#fff;border-color:var(--teal)
}
.btn-primary:hover{background:var(--teal-dark)}

/* SECTIONS */
.section{padding:76px 0}
.section-soft{background:linear-gradient(180deg,#fff 0%,var(--cream) 100%)}
.section-heading{text-align:center;max-width:990px;margin:0 auto 36px}
.section-heading h2{
  color:var(--burnt);
  font-size:clamp(30px,3.2vw,42px);
  margin-bottom:12px
}
.section-heading h3{
  color:var(--teal);
  font-size:clamp(23px,2.5vw,31px);
  margin-bottom:14px
}
.section-heading p{margin:0;color:#505050;font-size:17px}

/* DESIGN GRID */
.design-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:30px;
  max-width:1080px;margin:0 auto
}
.design-card{
  background:#fff;
  border:1px solid #f0eee9;
  border-radius:var(--radius);
  padding:24px 24px 26px;
  box-shadow:var(--shadow-soft);
  text-align:center;
  transition:transform .22s ease,box-shadow .22s ease
}
.design-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow)
}
.design-image{
  width:100%;height:330px;object-fit:contain;
  margin-bottom:18px
}
.design-card .btn{font-size:17px;min-height:44px;padding:9px 18px}

/* FEATURE STRIP */
.feature-band{
  background:
    radial-gradient(circle at 15% 10%,rgba(104,166,164,.12),transparent 30%),
    radial-gradient(circle at 85% 15%,rgba(189,90,10,.08),transparent 30%),
    #fff;
}
.features{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin:38px auto 32px;
  max-width:1120px;
}
.feature{
  background:#fff;
  border:1px solid #eeeae4;
  border-radius:16px;
  padding:26px 22px 28px;
  min-height:255px;
  text-align:center;
  box-shadow:0 8px 24px rgba(44,44,44,.08);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
}


.feature-icon{
  width:58px;
  height:58px;
  object-fit:contain;
  margin:0 auto 18px;
  display:block;
}

.feature h3{
  position:relative;z-index:2;
  color:#cc6814;
  font-size:21px;
  line-height:1.2;
  margin:16px 0 12px;
  font-weight:400
}
.feature p{
  color:#4f4f4f;
  margin:0;
  font-size:15px;
  line-height:1.5
}

/* CTA */
.cta{
  max-width:980px;margin:0 auto;
  border-radius:22px;
  padding:42px;
  background:linear-gradient(135deg,#f8f2e9,#eff8f7);
  border:1px solid #eee6dc;
  box-shadow:var(--shadow-soft);
  text-align:center
}
.cta p{font-size:17px;max-width:820px;margin:0 auto 24px}

/* FOOTER */
.footer{
  background:#faf9f6;
  border-top:1px solid #eeeae4;
  text-align:center;
  padding:26px 0 38px;
  font-size:14px;color:#666
}
.footer a{text-decoration:none}
.footer a:hover{color:var(--burnt)}

/* RESPONSIVE */
@media(max-width:960px){
  .nav{gap:18px;font-size:13px}
  .hero{min-height:440px}
  .features{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:760px){
  .header-inner{min-height:66px}
  .logo{width:190px}
  .nav{display:none}
  .menu-btn{display:block}
  .hero{min-height:360px}
  .hero-product-wrap{width:84vw;transform:translate(-50%,32%)}
  .intro{padding-top:140px}
  .lead{font-size:18px}
  .design-grid{grid-template-columns:1fr}
  .design-image{height:auto}
  .section{padding:58px 0}
}
@media(max-width:520px){
  .hero{min-height:310px}
  .intro{padding-top:110px}
  .features{grid-template-columns:1fr}
  .feature{min-height:auto}
  .cta{padding:30px 20px}
  .btn{width:100%}
}
