/* ========= Blythe Business Solutions — Global Styles (Light / Monochrome) ========= */

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html:focus-within { scroll-behavior: smooth; }
html, body { height: 100%; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul[role='list'], ol[role='list'] { list-style: none; padding: 0; }
img, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ---- Brand Palette (no blue) ---- */
:root{
  --bg:#e4e2dd;          /* brand background */
  --surface:#f6f5f1;     /* card surface on beige */
  --ink:#2b282b;         /* main text / headings */
  --muted:#6a665f;       /* secondary text */
  --accent:#9a948a;      /* subtle taupe accent (dots, hovers) */
  --radius:12px;
  --shadow:0 8px 24px rgba(43,40,43,.08);
  --maxw:1120px;
}

/* lock to light scheme */
@media (prefers-color-scheme: dark){ :root{ --bg:#e4e2dd; --surface:#f6f5f1; --ink:#2b282b; --muted:#6a665f; --accent:#9a948a; } }

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:wght@600;700&display=swap');

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

/* Containers & utilities */
.container{ max-width: var(--maxw); margin: 0 auto; padding: 24px; }
.stack > * + *{ margin-top: 16px; }
.grid{ display: grid; gap: 16px; }
.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 900px){ .grid-3{ grid-template-columns:1fr 1fr; } }
@media (max-width: 680px){ .grid-2, .grid-3{ grid-template-columns:1fr; } }

.surface{
  background: var(--surface);
  border:1px solid rgba(43,40,43,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

h1, .display{ font-family:"Playfair Display", serif; color: var(--ink); line-height:1.15; }
h1{ font-size: clamp(38px, 6vw, 56px); letter-spacing:-0.02em; }
h2{ font-size: clamp(26px, 3.5vw, 34px); color: var(--ink); }
h3{ font-size: 20px; color: var(--ink); }
.muted{ color: var(--muted); }

/* Buttons (ink-based) */
.btn{ display:inline-flex; align-items:center; gap:10px; border-radius:999px; padding:12px 18px; font-weight:600; border:2px solid transparent; transition:.2s ease; cursor:pointer; }
.btn--primary{ background: var(--ink); color:#f0efec; }
.btn--primary:hover{ transform: translateY(-1px); background:#1f1d1e; }
.btn--outline{ background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--outline:hover{ background: var(--ink); color:#f0efec; }
.btn-row{ display:flex; flex-wrap:wrap; gap:12px; }

/* Header & Nav */
.site-header{
  position: sticky; top:0; z-index:1000;
  backdrop-filter: saturate(140%) blur(8px);
  /* soft ink tint on beige */
  background: color-mix(in oklab, var(--bg) 88%, #000 12%);
  border-bottom: 1px solid rgba(43,40,43,.10);
}
.navbar{ display:flex; align-items:center; justify-content:space-between; }
.brand{ display:flex; align-items:center; gap:12px; font-weight:800; color: var(--ink); }
.brand-mark-img{ inline-size:34px; block-size:34px; object-fit:contain; border-radius:8px; }
.nav{ display:flex; align-items:center; gap:18px; }
.nav a{ color: var(--ink); font-weight:600; padding:10px 12px; border-radius:8px; }
.nav a[aria-current="page"]{ background: rgba(43,40,43,.10); }
.nav a:hover{ background: rgba(43,40,43,.08); }

.burger{ display:none; width:42px; aspect-ratio:1/1; border:1px solid rgba(43,40,43,.18); border-radius:10px; background: transparent; align-items:center; justify-content:center; }
.burger span{ width:20px; height:2px; background: var(--ink); position:relative; display:block; }
.burger span::before, .burger span::after{ content:""; position:absolute; left:0; width:100%; height:2px; background: var(--ink); }
.burger span::before{ top:-6px; } .burger span::after{ top:6px; }

@media (max-width: 880px){
  .burger{ display:flex; }
  .nav{ position: fixed; inset: 64px 16px auto 16px; background: var(--surface); border-radius: 12px; box-shadow: var(--shadow); padding: 14px; flex-direction: column; gap:8px; display:none; }
  .nav.open{ display:flex; }
}

/* Hero */
.hero{ padding: 64px 0; }
.hero .eyebrow{ text-transform: uppercase; font-size: 12px; letter-spacing: .2em; color: var(--muted); font-weight:700; }
.hero p{ font-size: clamp(16px, 2.2vw, 19px); color: var(--muted); }

/* Cards & sections */
.card{ padding: 22px; }
.card h3{ margin-bottom:6px; }
.section{ padding: 28px 0; }
.section .section-head{ margin-bottom: 14px; }

/* Feature list */
.feature-list{ display:grid; gap:8px; }
.feature{ display:flex; align-items:flex-start; gap:10px; }
.feature .dot{ width:10px; height:10px; border-radius:50%; background: var(--accent); margin-top:7px; }

/* Process Steps */
.steps{ counter-reset: step; display:grid; gap:12px; }
.step{ padding:18px; border:1px solid rgba(43,40,43,.10); border-radius:12px; background: var(--surface); }
.step::before{ counter-increment: step; content: counter(step); font-weight:800; background: var(--ink); color:#f0efec; display:inline-grid; place-items:center; width:28px; height:28px; border-radius:50%; margin-right:10px; }

/* Forms */
form{ display:grid; gap:12px; }
input, select, textarea{
  width:100%; border:1px solid rgba(43,40,43,.18); border-radius:10px; padding:12px 14px;
  background: #fff; color: var(--ink);
}
textarea{ min-height: 120px; resize: vertical; }

/* Footer */
.site-footer{ padding: 42px 0; color: var(--muted); }
.footer-inner{ display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; }
.footer-nav{ display:flex; gap:14px; }
.footer-inner img{ opacity:.9; }

/* Utilities */
.kicker{ color: var(--muted); font-weight:700; }
.center{ text-align:center; }
/* ===== Homepage upgrade patch ===== */

.hero--split{
  padding: 72px 0 48px;
}

.hero-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 28px;
  align-items: center;
}

.hero-panel{
  padding: 26px;
}

.hero-panel__top h2{
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 32px);
}

.hero-metrics{
  display:grid;
  gap: 14px;
  margin-top: 18px;
}

.metric{
  padding: 14px 0;
  border-top: 1px solid rgba(43,40,43,.10);
}

.metric:first-child{
  border-top: 0;
  padding-top: 0;
}

.metric strong{
  display:block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--ink);
}

.metric span{
  color: var(--muted);
  font-size: 15px;
}

.section-head--left{
  max-width: 760px;
  margin-bottom: 20px;
}

.section-copy{
  margin-top: 8px;
  font-size: 17px;
}

.services-grid{
  margin-top: 8px;
}

.service-card{
  position: relative;
  min-height: 100%;
}

.service-card__label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--muted);
  margin-bottom: 10px;
}

.focus-banner{
  padding: 28px;
}

.focus-banner .grid{
  margin-top: 18px;
}

.focus-item{
  padding: 18px;
  border: 1px solid rgba(43,40,43,.10);
  border-radius: 12px;
  background: rgba(255,255,255,.35);
}

.cta-card{
  background: #2b282b;
  color: #f3f1ed;
}

.cta-card h2,
.cta-card .kicker{
  color: #f3f1ed;
}

.cta-card .muted{
  color: rgba(243,241,237,.78);
}

.footer--dark{
  background: #242123;
  color: #f3f1ed;
  margin-top: 18px;
}

.footer--dark .muted,
.footer--dark a{
  color: rgba(243,241,237,.76);
}

.footer-stack{
  display:grid;
  gap: 16px;
}

.footer-copy{
  max-width: 620px;
}

.footer-branding{
  display:grid;
  gap: 10px;
}

@media (max-width: 900px){
  .hero-grid{
    grid-template-columns: 1fr;
  }
}
