/* Easy K12 — design system */

:root {
  /* Warm sunset palette */
  --cream: #FBF6EE;
  --cream-2: #F5EDDF;
  --cream-3: #EEE3CF;
  --ink: #241C15;
  --ink-2: #4A3D30;
  --muted: #8C7B67;
  --line: #E8DCC6;

  /* Accents — all sunset family */
  --accent: #D65A2E;       /* terracotta sunset */
  --accent-2: #E89B42;     /* warm gold */
  --accent-soft: #FBE4D1;  /* peach wash */
  --accent-ink: #7A2E14;

  /* Density */
  --pad-section: 120px;
  --pad-card: 28px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* Fonts (overridable via tweaks) */
  --font-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-body: "Geist", "DM Sans", -apple-system, "Helvetica Neue", sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
}

[data-density="compact"] {
  --pad-section: 72px;
  --pad-card: 20px;
  --radius: 14px;
  --radius-lg: 20px;
}
[data-density="spacious"] {
  --pad-section: 160px;
  --pad-card: 36px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.wrap-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Typography */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
h1.display { font-size: clamp(48px, 7vw, 96px); }
h2.display { font-size: clamp(40px, 5.2vw, 68px); line-height: 1.05;}
h3.display { font-size: clamp(28px, 3.2vw, 44px); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 62ch;
}

p { color: var(--ink-2); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-light {
  background: var(--cream);
  color: var(--ink);
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 6px 16px -6px color-mix(in srgb, var(--accent) 60%, transparent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--ink); background: var(--cream-2); }
.nav-links a.active { color: var(--ink); background: var(--cream-2); }

.nav-drop {
  position: relative;
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: 0 20px 50px -20px rgba(36, 28, 21, 0.18);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-drop-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-drop-menu a:hover { background: var(--cream); color: var(--ink); }
.nav-drop-menu a strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 2px;
}
.nav-drop-menu a span { font-size: 12px; color: var(--muted); }

/* Sections */
section.section {
  padding: var(--pad-section) 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.section-header .lede { max-width: 52ch; }

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--pad-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -28px rgba(36, 28, 21, 0.25);
}

.card-warm {
  background: var(--cream-2);
  border-color: transparent;
}

/* Placeholder visual (striped, fallback when no image) */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      45deg,
      var(--cream-2),
      var(--cream-2) 12px,
      var(--cream-3) 12px,
      var(--cream-3) 24px
    );
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}
.placeholder .ph-label {
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
/* Image-backed visual — replaces .placeholder when real artwork exists */
.img-vis {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--line);
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--cream-2);
  padding: 96px 0 48px;
  margin-top: 80px;
}
.footer .logo { color: var(--cream); }
.footer .logo-mark { background: var(--accent-2); }
.footer a { color: var(--cream-2); opacity: 0.8; font-size: 14px; }
.footer a:hover { opacity: 1; color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-grid h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

/* Tweaks panel */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(36,28,21,0.25);
  padding: 20px;
  z-index: 1000;
  font-family: var(--font-body);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h4 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}
.tweaks-panel .sub {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.tweaks-row {
  margin-bottom: 18px;
}
.tweaks-row label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: var(--font-mono);
  display: block;
  margin-bottom: 8px;
}
.swatch-row, .font-row, .dens-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.swatch {
  width: 32px; height: 32px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease;
}
.swatch:hover { transform: scale(1.08); }
.swatch.active { border-color: var(--ink); }
.opt-btn {
  padding: 8px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--ink);
  transition: all .15s ease;
}
.opt-btn:hover { border-color: var(--ink); }
.opt-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Home hero variants */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 40px;
}
.hero-split .eyebrow { margin-bottom: 24px; display: inline-block; }
.hero-split h1 { margin: 0 0 24px; }
.hero-split .lede { margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #F5B268 0%, #D65A2E 55%, #8C3A1C 100%);
}
.hero-visual-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(251, 246, 238, 0.95);
  backdrop-filter: blur(14px);
  padding: 20px;
  border-radius: var(--radius);
}
.hero-visual-card .eyebrow { color: var(--accent); }
.hero-visual-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  margin: 8px 0 4px;
  color: var(--ink);
}
.hero-visual-card span {
  font-size: 13px;
  color: var(--ink-2);
}

/* little floating UI chips on hero */
.hero-chip {
  position: absolute;
  background: var(--cream);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px -10px rgba(36,28,21,0.3);
}
.hero-chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2E9954;
}

/* service grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.svc-card:hover .svc-num,
.svc-card:hover .svc-desc { color: var(--cream-2); }
.svc-card:hover .svc-arrow { color: var(--accent-2); transform: translate(4px, -4px); }
.svc-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.svc-title {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
  margin: 12px 0 8px;
  letter-spacing: -0.01em;
}
.svc-desc {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.svc-arrow {
  font-size: 24px;
  align-self: flex-end;
  transition: all .2s ease;
}

/* stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 40px 24px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.stat-num .unit { color: var(--accent); }
.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* diff section */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pillar {
  background: var(--cream);
  padding: 40px 32px 48px;
}
.pillar-num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 10px;
}
.pillar p { margin: 0; font-size: 15px; }

/* CTA band */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: 0.35;
}
.cta-band h2 { margin: 0; color: var(--cream); position: relative; }
.cta-band .lede { color: var(--cream-2); }
.cta-band-right { position: relative; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }

/* Page hero (subpages) */
.page-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin: 16px 0 32px; max-width: 18ch; line-height: 1.08; }
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--cream-3); }

/* Feature rows for subpages */
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.feat-row:last-child { border-bottom: none; }
.feat-row.reverse .feat-visual { order: -1; }
.feat-visual {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
}
.feat-row h2 { margin: 16px 0 16px; }
.feat-row ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.feat-row li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-2);
  padding-left: 0;
}
.feat-row li::before {
  content: '';
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-radius: 3px;
  background: var(--accent);
  margin-top: 7px;
}

/* Pricing / tier cards for products */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.tier.feat {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.tier.feat .tier-desc, .tier.feat h3 { color: var(--cream); }
.tier.feat .tier-price .unit { color: var(--accent-2); }

.tier h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0 0 8px;
  font-weight: 400;
}
.tier-desc {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 28px;
  min-height: 42px;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  margin-bottom: 28px;
}
.tier-price .unit {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.tier ul { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 10px; }
.tier li { font-size: 14px; display: flex; gap: 10px; }
.tier li::before { content: '→'; color: var(--accent); }
.tier.feat li::before { color: var(--accent-2); }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card .placeholder {
  aspect-ratio: 4/5;
  margin-bottom: 16px;
}
.team-card h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 2px;
}
.team-card .role {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.team-card p { font-size: 14px; margin: 12px 0 0; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card .placeholder {
  aspect-ratio: 16/10;
  margin-bottom: 20px;
}
.blog-card .meta {
  display: flex; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.blog-card .meta .tag { color: var(--accent); }
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.blog-card p { font-size: 14px; margin: 0; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 80px 0;
}
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form-field textarea { min-height: 120px; resize: vertical; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 13px;
  cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { border-color: var(--ink-2); }
.chip.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Marquee logos */
.logos-row {
  display: flex;
  gap: 64px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 32px 0;
}
.logo-placeholder {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--muted);
  opacity: 0.7;
  letter-spacing: -0.01em;
  font-style: italic;
}

/* Floating badge / seal */
.seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.seal .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* Hero V2 — editorial wide */
.hero-editorial {
  padding: 64px 0 40px;
}
.hero-editorial h1 {
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 24px 0 32px;
}
.hero-editorial h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.hero-editorial-row p { font-size: 15px; margin: 0; }

/* Hero V3 — interactive product */
.hero-product {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  padding: 80px 0 40px;
  align-items: center;
}
.product-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 40px 80px -40px rgba(36,28,21,0.25);
  position: relative;
}
.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 14px;
}
.mock-titlebar .tdot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--cream-3);
}
.mock-titlebar .turl {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 6px;
  flex: 1;
}

/* Hero toggle */
.hero-toggle {
  position: fixed;
  top: 84px;
  right: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  display: flex;
  z-index: 40;
  box-shadow: 0 10px 30px -10px rgba(36,28,21,0.15);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-toggle button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink-2);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.hero-toggle button.active {
  background: var(--ink);
  color: var(--cream);
}

/* Tweaks toggle button */
.tweaks-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 20px 40px -15px rgba(36,28,21,0.4);
  border: none;
  font-family: var(--font-mono);
  font-size: 11px;
}
.tweaks-fab:hover { background: var(--accent); }

/* Responsive */
@media (max-width: 960px) {
  .hero-split, .hero-product { grid-template-columns: 1fr; }
  .svc-grid, .tier-grid, .team-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .feat-row { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .feat-row.reverse .feat-visual { order: 0; }
  .hero-editorial-row { grid-template-columns: 1fr; gap: 24px; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .svc-grid, .tier-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
