:root{
  --bg:#fbf6ef;
  --text:#1f1f1f;
  --muted:#5a5a5a;
  --card:#ffffff;
  --border:rgba(0,0,0,.10);
  --btn:#1f6b4f;
  --radius:18px;
}

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

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

img{max-width:100%;display:block}

.container{
  width:min(1100px, calc(100% - 40px));
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  background:rgba(251,246,239,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
  z-index:50;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.site-logo{
  height:92px;
  width:auto;
}

/* NAV */
.nav{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
  font-size:15px;
}

.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:10px;
  white-space:nowrap;
}

.nav a:hover{
  background:rgba(0,0,0,.05);
  color:var(--text);
}

.nav-cta{
  border:1px solid var(--border);
  background:rgba(255,255,255,.70);
}

.nav-cta:hover{
  background:rgba(255,255,255,.90);
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  text-decoration:none;
  border:1px solid transparent;
  transition:transform .06s ease, background .12s ease;
}

.btn:active{
  transform:translateY(1px);
}

.btn.primary{
  background:var(--btn);
  color:#fff;
}

.btn.primary:hover{
  background:#175a43;
}

.btn.ghost{
  background:rgba(255,255,255,.65);
  border-color:var(--border);
  color:var(--text);
}

.btn.ghost:hover{
  background:rgba(255,255,255,.92);
}

/* HERO */
.hero{
  padding:46px 0 8px;
}

.hero-inner{
  display:grid;

  /* ✅ This is what moves the phones LEFT without resizing them */
  grid-template-columns: 0.88fr 1.12fr;

  /* ✅ This removes the huge empty gap */
  gap:0;

  align-items:center;
}

.hero-copy{
  min-width:0;
  position:relative;
  z-index:2;
}

.hero-media{
  min-width:0;
  display:flex;
  justify-content:flex-start;
  align-items:center;

  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
  margin:0 !important;
}

/* ✅ Phones stay big (your locked size) */
.hero-image{
  width:140%;
  max-width:1500px;
  height:auto;
  background:none;
  border:none;
  box-shadow:none;
  border-radius:0;
}

/* TYPE */
h1{
  font-size:clamp(32px,4vw,50px);
  line-height:1.05;
  margin:0 0 12px;
  letter-spacing:-.02em;
}

.lede{
  font-size:18px;
  color:var(--muted);
  margin:0 0 16px;
  max-width:60ch;
}

.micro{
  font-size:14px;
  color:var(--muted);
  margin:10px 0 0;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:8px 0 6px;
}

/* SECTIONS */
.section{
  padding:34px 0;
}

.section.alt{
  background:rgba(255,255,255,.55);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.section h2{
  font-size:28px;
  margin:0 0 8px;
}

.section p{
  margin:0;
  color:var(--muted);
  max-width:85ch;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:16px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}

.card h3{
  margin:10px 0 6px;
  font-size:18px;
}

.card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.card img{
  border-radius:14px;
  border:1px solid var(--border);
}

/* BLOG */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:16px;
}

.post-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  text-decoration:none;
  color:inherit;
}

.post-card h3{
  margin:0 0 8px;
}

.post-card p{
  margin:0;
  color:var(--muted);
}

/* CONTACT FORM */
.contact-form{
  margin-top:16px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  max-width:720px;
}

.contact-form label{
  display:block;
  margin:10px 0 6px;
  font-weight:800;
  font-size:14px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid var(--border);
  font-size:16px;
  background:#fff;
}

.contact-form textarea{
  resize:vertical;
}

/* FOOTER */
.site-footer{
  padding:22px 0 30px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  border-top:1px solid var(--border);
  padding-top:14px;
}

.footer-small{
  font-size:13px;
  color:var(--muted);
  margin:0;
}

.footer-links{
  margin-top:10px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.footer-links a{
  color:var(--muted);
  text-decoration:none;
}

.footer-links a:hover{
  color:var(--text);
  text-decoration:underline;
}

/* MOBILE */
@media (max-width: 900px){
  .header-inner{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:12px 0;
  }

  .site-logo{
    height:74px;
  }

  .nav{
    justify-content:center;
  }

  .hero-inner{
    grid-template-columns:1fr;
    gap:18px;
  }

  .hero-media{
    justify-content:center;
  }

  /* keep your mobile phone sizing */
  .hero-image{
    width:112%;
    max-width:650px;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .blog-grid{
    grid-template-columns:1fr;
  }
}