/* MasterKraftPNW.com — lightweight static site
   Notes:
   - Keep it calm, warm, professional.
   - Avoid “marketing machine” vibes.
*/

:root{
  --bg: #f6f4ef;            /* warm paper */
  --panel: rgba(10, 15, 20, .06);
  --panel2: rgba(10, 15, 20, .045);
  --text: rgba(10, 15, 20, .92);
  --muted: rgba(10, 15, 20, .72);
  --muted2: rgba(10, 15, 20, .56);
  --border: rgba(10, 15, 20, .14);
  --accent: rgba(16, 110, 84, .92);  /* evergreen */
  --accent2: rgba(16, 110, 84, .14);
  --shadow: 0 18px 44px rgba(10, 15, 20, .12);
  --radius: 10px;
  --radius2: 7px;
  --max: 1100px;
}

*{ box-sizing: border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  letter-spacing: -0.01em;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

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

.skip-link{
  position:absolute;
  top:-100px;
  left:10px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
  z-index:999;
}
.skip-link:focus{ top:10px; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,244,239,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 16px 0;
}
.brand-lockup{
  display:inline-block;
  text-decoration:none;
}
.brand-name{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.brand-subtitle{
  margin-top: 2px;
  font-size: 11px;             /* as small as we can get away with */
  font-variant-caps: all-small-caps;
  letter-spacing: 0.12em;
  color: var(--muted2);
  line-height: 1.05;
}

.nav{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content:center;
}
.nav-link{
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav-link:hover{
  text-decoration:none;
  border-color: var(--border);
  background: rgba(10,15,20,.03);
}
.nav-link.active{
  color: var(--text);
  border-color: var(--border);
  background: rgba(10,15,20,.04);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration:none !important;
  user-select:none;
}
.btn:hover{ filter: brightness(1.05); }
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(180deg, rgba(233,215,172,.95), rgba(233,215,172,.78));
  color: rgba(0,0,0,.88);
  border-color: rgba(233,215,172,.35);
}
.btn-secondary{
  background: rgba(10,15,20,.06);
}
.btn-ghost{
  background: transparent;
}

/* Hero */
.hero{
  padding: 44px 0 28px;
  background:
    radial-gradient(760px 420px at 12% 10%, rgba(16,110,84,.10), transparent 60%),
    radial-gradient(680px 380px at 86% 0%, rgba(41, 98, 255, .06), transparent 62%);
  border-bottom: 1px solid var(--border);
}
.hero-compact{
  padding: 36px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 26px;
  align-items:start;
}
h1{
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 12px;
  line-height: 1.08;
}
.muted{ color: var(--muted2); }

.lede{
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
}

.cta-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
}
.cta-row-center{ justify-content:center; }
.cta-row .btn-primary{
  font-size: 16px;
  padding: 14px 18px;
}

.hero-bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}
.hero-bullets li{ margin: 6px 0; }

/* Cards (shared surface) */
.card{
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
}

/* Shadow is opt-in */
.card--shadow{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
  box-shadow: var(--shadow);
}

/* Subtle variant */
.card.subtle{
  background: rgba(255,255,255,.62);
  box-shadow: none;
  margin-top: 12px;
}

.card-title{
  padding: 16px 16px 0;
  font-weight: 700;
}
.card-body{
  padding: 12px 16px 16px;
  color: var(--muted);
  line-height: 1.55;
}

.contact-lines .label,
.label{
  display:inline-block;
  min-width: 92px;
  color: var(--muted2);
  font-size: 12px;
  font-variant-caps: all-small-caps;
  letter-spacing: .10em;
}
.divider{
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}
.micro{
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.55;
}
.big{
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.stack{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

/* Sections */
.section{
  padding: 44px 0;
}
.section.alt{
  background: rgba(10,15,20,.02);
  /*border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);*/
}
.section + .section {
  border-top: 1px solid var(--border);
}
.section-head{
  margin-bottom: 18px;
}
h2{
  margin: 0 0 10px;
  font-size: 22px;
}
.subhead{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.feature, .panel{
  padding: 16px;
}
.feature h3, .panel h3{
  margin: 0 0 8px;
  color: var(--text);
  font-size: 16px;
}
.feature p, .panel p{ margin: 0; color: var(--muted); line-height:1.6; }

.checklist{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.note{
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(16,110,84,.08);
  border-color: rgba(16,110,84,.22);
  color: var(--muted);
}

.contact-card{ margin-top: 18px; }
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items:center;
}
.contact-actions{
  display:flex;
  flex-direction: column;
  gap: 10px;
  justify-self:end;
}

.fineprint{
  margin-top: 18px;
  color: var(--muted2);
  font-size: 12px;
  text-align:center;
}

/* Callout */
.callout{
  margin-top: 18px;
  background: rgba(10,15,20,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.callout-title{
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.callout-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

/* Why */
.soft-list {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.soft-list li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.soft-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--muted2);
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.step{
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display:flex;
  gap: 12px;
}
.step-num{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent2);
  border: 1px solid rgba(233,215,172,.28);
  color: var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
}
.step-body h3{
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--text);
}
.step-body p{ margin: 0; color: var(--muted); line-height:1.6; }

/* Pricing */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.price-card{
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.price-card.featured{
  background: rgba(233,215,172,.08);
  border-color: rgba(233,215,172,.22);
}
.price-tier{
  color: var(--muted2);
  font-size: 12px;
  font-variant-caps: all-small-caps;
  letter-spacing: .10em;
  margin-bottom: 8px;
}
.price{
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.price-note{
  color: var(--muted);
  line-height: 1.6;
}

/* FAQ */
.faq{
  margin-top: 18px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
details{
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
}
summary{
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
}
summary::-webkit-details-marker{ display:none; }
.details-body{
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .header-inner{ flex-wrap: wrap; }
  .nav{ justify-content:flex-start; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-actions{ justify-self: start; flex-direction: row; }
}
