/* The Focused Freelancer - shared styles */
:root{
  --bg:#FAF9F6; --ink:#3A3A3A; --soft:#6f6f6f;
  --sage:#8AA899; --sage-dark:#6f8c7d; --terra:#D8A48F; --terra-dark:#c98d76;
  --line:#E4E0D8; --card:#ffffff; --cream2:#F0EDE6;
  --maxw:1080px; --radius:16px;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:"Nunito","Segoe UI",-apple-system,BlinkMacSystemFont,Roboto,Helvetica,Arial,sans-serif;
  line-height:1.65; font-size:18px; -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
/* prevent CSS grid/flex blowout from large intrinsic images */
.hero-grid>*, .split>*, .grid>*, .feat>*, .nav>*{ min-width:0; }
.hero-img{ width:100%; }
a{ color:var(--sage-dark); }
h1,h2,h3{ line-height:1.2; letter-spacing:-.4px; margin:0 0 .4em; font-weight:900; }
h1{ font-size:clamp(32px,5vw,52px); }
h2{ font-size:clamp(26px,3.6vw,36px); }
h3{ font-size:22px; }
p{ margin:0 0 1em; }
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 22px; }
.muted{ color:var(--soft); }
.center{ text-align:center; }

/* Header / nav */
.site-header{ position:sticky; top:0; z-index:50; background:rgba(250,249,246,.92);
  backdrop-filter:saturate(120%) blur(8px); border-bottom:1px solid var(--line); }
.nav{ display:flex; align-items:center; justify-content:space-between; height:68px; }
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--ink); font-weight:900; }
.brand img{ width:38px; height:38px; }
.brand span{ font-size:18px; letter-spacing:.2px; }
.nav-links{ display:flex; gap:26px; align-items:center; }
.nav-links a{ text-decoration:none; color:var(--ink); font-weight:700; font-size:16px; }
.nav-links a:hover{ color:var(--sage-dark); }
.nav-cta{ background:var(--sage); color:#fff !important; padding:9px 18px; border-radius:30px; }
.nav-cta:hover{ background:var(--sage-dark); }
.menu-btn{ display:none; background:none; border:0; font-size:26px; cursor:pointer; color:var(--ink); }

/* Buttons */
.btn{ display:inline-block; text-decoration:none; font-weight:800; border-radius:30px;
  padding:15px 30px; font-size:17px; transition:.15s; }
.btn-primary{ background:var(--terra); color:#fff; }
.btn-primary:hover{ background:var(--terra-dark); }
.btn-ghost{ background:transparent; color:var(--ink); border:2px solid var(--line); }
.btn-ghost:hover{ border-color:var(--sage); color:var(--sage-dark); }
.kicker{ color:var(--sage-dark); font-weight:800; text-transform:uppercase; letter-spacing:2.5px; font-size:13px; margin-bottom:14px; }

/* Sections */
section{ padding:70px 0; }
.section-tight{ padding:44px 0; }
.hero{ padding:76px 0 60px; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:52px; align-items:center; }
.hero h1{ margin-bottom:.35em; }
.lead{ font-size:21px; color:var(--soft); max-width:36em; }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-top:26px; }
.hero-img{ border-radius:var(--radius); box-shadow:0 24px 60px rgba(120,110,95,.16); }

.band{ background:var(--cream2); }
.band-sage{ background:var(--sage); color:#fff; }
.band-sage .kicker{ color:#EAF1EC; }
.band-sage .muted{ color:#EDF3EE; }

/* Product grid */
.grid{ display:grid; gap:26px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; display:flex; flex-direction:column; transition:.15s; }
.card:hover{ transform:translateY(-4px); box-shadow:0 18px 40px rgba(120,110,95,.14); }
.card img{ aspect-ratio:1/1; object-fit:cover; }
.card-body{ padding:22px 22px 26px; display:flex; flex-direction:column; flex:1; }
.card-body h3{ margin-bottom:.25em; }
.card-body p{ color:var(--soft); font-size:16px; }
.card .btn{ margin-top:auto; padding:12px 22px; font-size:15px; }
.price{ font-weight:900; color:var(--terra-dark); }

/* Feature list */
.feat{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:10px; }
.feat .f-ic{ font-size:34px; margin-bottom:8px; }
.feat h3{ font-size:20px; }
.feat p{ color:var(--soft); font-size:16px; margin:0; }

/* About teaser */
.split{ display:grid; grid-template-columns:.9fr 1.1fr; gap:46px; align-items:center; }
.split img{ border-radius:var(--radius); box-shadow:0 20px 50px rgba(120,110,95,.15); }

/* CTA band */
.cta-band{ text-align:center; }
.cta-band h2{ max-width:16em; margin:0 auto .5em; }
.cta-band p{ max-width:30em; margin:0 auto 1.4em; }

/* Article */
.article{ max-width:720px; margin:0 auto; padding:54px 22px 20px; }
.article .kicker{ text-align:left; }
.article h1{ margin-bottom:.3em; }
.article .meta{ color:var(--soft); font-size:15px; margin-bottom:30px; }
.article h2{ margin-top:1.6em; }
.article h3{ margin-top:1.4em; }
.article p, .article li{ font-size:18px; }
.article ul, .article ol{ padding-left:1.2em; margin:0 0 1.2em; }
.article li{ margin:.4em 0; }
.article blockquote{ margin:1.4em 0; padding:14px 22px; border-left:4px solid var(--sage);
  background:var(--cream2); border-radius:0 12px 12px 0; color:var(--ink); font-style:italic; }
.callout{ background:#fff; border:1.5px solid var(--terra); border-radius:14px; padding:22px 24px; margin:1.8em 0; }
.callout p{ margin:0 0 .5em; }
.callout p:last-child{ margin:0; }
.article hr{ border:none; border-top:1px solid var(--line); }
ul.readmore{ list-style:none; padding:0; margin:6px 0 0; }
ul.readmore li{ margin:0; border-top:1px solid var(--line); }
ul.readmore li:last-child{ border-bottom:1px solid var(--line); }
ul.readmore a{ display:block; padding:15px 4px; text-decoration:none; color:var(--ink); font-weight:800; font-size:17px; }
ul.readmore a:hover{ color:var(--sage-dark); }

/* Blog list */
.post-row{ display:grid; grid-template-columns:200px 1fr; gap:24px; align-items:center;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; margin-bottom:20px; text-decoration:none; color:inherit; transition:.15s; }
.post-row:hover{ box-shadow:0 14px 34px rgba(120,110,95,.13); }
.post-row .thumb{ aspect-ratio:1/1; object-fit:cover; height:100%; }
.post-row .pr-body{ padding:22px 24px 22px 0; }
.post-row h3{ margin-bottom:.2em; }
.post-row p{ color:var(--soft); font-size:16px; margin:0; }

/* Footer */
.site-footer{ background:var(--ink); color:#EDEAE3; padding:52px 0 34px; margin-top:20px; }
.site-footer a{ color:#EDEAE3; text-decoration:none; }
.site-footer a:hover{ color:var(--terra); }
.foot-grid{ display:flex; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.foot-brand{ display:flex; align-items:center; gap:12px; font-weight:900; margin-bottom:10px; }
.foot-brand img{ width:34px; height:34px; }
.foot-links{ display:flex; gap:40px; flex-wrap:wrap; }
.foot-col h4{ font-size:14px; text-transform:uppercase; letter-spacing:1.5px; color:var(--terra); margin:0 0 10px; }
.foot-col a{ display:block; margin:6px 0; font-size:15px; }
.foot-bottom{ border-top:1px solid #4a4a4a; margin-top:34px; padding-top:20px; font-size:13px; color:#b8b3aa; display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; }

/* Mobile */
@media(max-width:860px){
  body{ font-size:17px; }
  .hero-grid, .split{ grid-template-columns:1fr; gap:30px; }
  .hero-img{ order:-1; }
  .grid-3, .grid-2, .feat{ grid-template-columns:1fr; }
  .nav-links{ position:fixed; inset:68px 0 auto 0; background:var(--bg); flex-direction:column;
    gap:0; border-bottom:1px solid var(--line); padding:8px 0; display:none; }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:14px 22px; width:100%; border-top:1px solid var(--line); }
  .nav-cta{ margin:10px 22px; text-align:center; }
  .menu-btn{ display:block; }
  .post-row{ grid-template-columns:1fr; }
  .post-row .thumb{ aspect-ratio:2/1; width:100%; }
  .post-row .pr-body{ padding:0 22px 22px; }
  section{ padding:52px 0; }
}
