/* ================================================================
   Blake Strategies Group — app.css
   Version: PR2
   Compiled from tokens.css + component styles
   ================================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Design tokens ───────────────────────────────────────── */
:root {
  --paper:    #F4F0E8;
  --paper-2:  #ECE6DB;
  --paper-3:  #E3DCCB;
  --ink:      #0E1014;
  --ink-2:    #1B1F26;
  --ink-3:    #2A2F38;
  --muted:    #5A6671;
  --muted-2:  #8A93A0;
  --line:     #D9D2C2;
  --line-2:   #C5BCA8;
  --red:      #E5392B;
  --red-2:    #C42A1D;
  --red-soft: #FBE4E0;
  --green:    #1E7F4E;
  --amber:    #C28A2C;

  --sans:  "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --shadow:    0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
}

/* ── Base ────────────────────────────────────────────────── */
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

p { line-height: 1.55; }

/* ── Type scale ──────────────────────────────────────────── */
.display-xl { font-size: clamp(56px, 8vw, 120px); font-weight: 900; line-height: 0.92; letter-spacing: -0.045em; }
.display-l  { font-size: clamp(48px, 6vw, 96px);  font-weight: 900; line-height: 0.94; letter-spacing: -0.04em; }
.display-m  { font-size: clamp(40px, 5vw, 72px);  font-weight: 900; line-height: 0.96; letter-spacing: -0.035em; }
.display-s  { font-size: clamp(32px, 4vw, 56px);  font-weight: 800; line-height: 1.0;  letter-spacing: -0.03em; }
.h1 { font-size: clamp(28px, 3vw, 44px); font-weight: 800; line-height: 1.06; letter-spacing: -0.025em; }
.h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; line-height: 1.1;  letter-spacing: -0.02em; }
.h3 { font-size: clamp(18px, 2vw, 22px);   font-weight: 700; line-height: 1.18; letter-spacing: -0.015em; }
.h4 { font-size: 17px; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
.body   { font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.body-l { font-size: 19px; line-height: 1.55; color: var(--ink-2); letter-spacing: -0.005em; }
.small  { font-size: 13px; line-height: 1.45; color: var(--muted); }
.micro  { font-size: 11px; line-height: 1.3; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.mono   { font-family: var(--mono); }
.serif  { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  transition: all 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn-red     { background: var(--red);  color: #fff; }
.btn-red:hover { background: var(--red-2); }
.btn-primary { background: var(--ink);  color: var(--paper); }
.btn-primary:hover { background: var(--ink-2); }
.btn-ghost   { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.3); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }
.btn-sm  { padding: 10px 16px; font-size: 13px; }
.btn-lg  { padding: 18px 28px; font-size: 16px; }
.btn-full { width: 100%; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.card-dark {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
}
.card-paper {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* ── Tags / Pills ────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.6);
  color: var(--ink-2);
}
.tag-red   { background: var(--red-soft); color: var(--red-2);  border-color: transparent; }
.tag-ink   { background: var(--ink);      color: var(--paper);  border-color: transparent; }
.tag-green { background: #DCEFE3;          color: var(--green);  border-color: transparent; }

/* ── Status dots ─────────────────────────────────────────── */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.dot-red   { background: var(--red); }
.dot-green { background: var(--green); }
.dot-amber { background: var(--amber); }
.dot-muted { background: var(--muted-2); }

/* ── Underline brush accent ──────────────────────────────── */
.underline-brush {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.underline-brush::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: -0.1em;
  height: 0.18em;
  background:
    radial-gradient(ellipse at 20% 50%, var(--red) 30%, transparent 70%),
    radial-gradient(ellipse at 80% 50%, var(--red) 30%, transparent 70%),
    linear-gradient(90deg, transparent 0%, var(--red) 12%, var(--red) 88%, transparent 100%);
  border-radius: 50%;
  transform: skewX(-8deg) rotate(-1deg);
  z-index: -1;
  opacity: 0.9;
}

/* ── Form elements ───────────────────────────────────────── */
.input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
  background: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.15s, outline 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.input::placeholder { color: var(--muted-2); font-weight: 400; }
.input:focus { outline: 2px solid var(--ink); outline-offset: -1px; border-color: var(--ink); }
textarea.input { resize: vertical; line-height: 1.55; }
select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6671' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 6px;
}

/* ── Divider ─────────────────────────────────────────────── */
.divider { height: 1px; background: var(--line); }

.hero { padding: 48px 56px; max-width: 1400px; margin: 0 auto; }
.section { padding: 96px 56px; max-width: 1400px; margin: 0 auto; }
.section-sm { padding: 64px 56px; max-width: 1400px; margin: 0 auto; }
.section-lg { padding: 120px 56px; max-width: 1400px; margin: 0 auto; }

/* Full-bleed sections (dark bg etc) need a wrapper approach */
.section-full { padding: 96px 0; }
.section-full .inner { max-width: 1400px; margin: 0 auto; padding: 0 56px; }

/* ── Grid helpers ────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Nav ─────────────────────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 88px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.site-nav__left { display: flex; align-items: center; gap: 48px; }
.site-nav__logo img { height: 65px; width: auto; display: block; }
.site-nav__links { display: flex; gap: 32px; }
.site-nav__links a {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  transition: color 0.15s;
  position: relative;
  padding-bottom: 3px;
}
.site-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.4,0,0.2,1);
}
.site-nav__links a:hover { color: var(--ink); }
.site-nav__links a:hover::after,
.site-nav__links a.active::after { width: 100%; }
.site-nav__links a:hover,
.site-nav__links a.active { color: var(--ink); }
.site-nav__right { display: flex; align-items: center; gap: 16px; }
.site-nav__portal {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s;
}
.site-nav__portal:hover { color: var(--ink); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 20px 24px 28px;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 16px; }

/* ── Proof strip ─────────────────────────────────────────── */
.proof-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.proof-strip__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.proof-strip__clients {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
}
.proof-strip__clients span {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ink-3);
  opacity: 0.85;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 56px 40px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.site-footer__tagline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 24px;
}
.site-footer__contact a {
  display: block;
  font-size: 14px;
  color: var(--muted-2);
  margin-bottom: 8px;
  transition: color 0.15s;
}
.site-footer__contact a:hover { color: var(--paper); }
.site-footer__col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 20px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.site-footer__links a:hover { color: var(--paper); }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__legal {
  font-size: 12px;
  color: var(--muted-2);
}
.site-footer__legal a { color: var(--muted-2); transition: color 0.15s; }
.site-footer__legal a:hover { color: var(--paper); }

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 88px 56px 64px; }
.hero__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero__btns { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero__founder {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
}
.hero__founder-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--line-2);
}
.hero__cards { display: flex; flex-direction: column; gap: 12px; }
.hero__cards > *:last-child { flex: unset; }

/* ── Service list (services page) ────────────────────────── */
.service-row {
  display: grid;
  grid-template-columns: 72px 1.4fr 1fr 48px;
  gap: 32px;
  padding: 40px 16px;
  border-bottom: 1px solid var(--line-2);
  align-items: start;
  transition: background 0.15s, padding 0.15s;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
}
.service-row:hover {
  background: var(--paper-2);
  padding-left: 28px;
  padding-right: 28px;
}
.service-row__includes {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.service-row__includes span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
}

/* ── Blog cards ──────────────────────────────────────────── */
.blog-card { display: flex; flex-direction: column; gap: 16px; text-decoration: none; color: inherit; }
.blog-card__img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/3; background: var(--paper-3); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card__img img { transform: scale(1.03); }
.blog-card__cat { color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── Testimonial cards ───────────────────────────────────── */
.testimonial { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.testimonial__quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  flex: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper-3);
  flex-shrink: 0;
  object-fit: cover;
}

/* ── Promises grid ───────────────────────────────────────── */
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.promise-item__check { color: var(--red); font-weight: 900; font-size: 20px; margin-bottom: 10px; }

/* ── What we help with ───────────────────────────────────── */
.problem-list { display: flex; flex-direction: column; }
.problem-item {
  padding: 24px 0;
  border-top: 1px solid var(--line-2);
}
.problem-item:first-child { border-top-color: var(--ink); }

/* ── Contact form ────────────────────────────────────────── */
.contact-steps { display: flex; gap: 6px; margin-bottom: 32px; }
.contact-step-bar {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--line);
  transition: background 0.3s;
}
.contact-step-bar.active { background: var(--red); }

/* ── Case study ──────────────────────────────────────────── */
.result-metric { display: flex; flex-direction: column; gap: 4px; }
.result-metric__value { font-size: clamp(36px, 4vw, 64px); font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.result-metric__label { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ── About story sidebar ─────────────────────────────────── */
.story-nav { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 100px; }
.story-nav a {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  border-left: 2px solid transparent;
  color: var(--muted);
  transition: all 0.15s;
}
.story-nav a.active,
.story-nav a:hover { border-left-color: var(--red); color: var(--ink); }

/* ── Placeholder media blocks ────────────────────────────── */
.ph {
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 14px),
    var(--paper-3);
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  text-align: center;
  padding: 12px;
}

/* ── Page header (inner pages) ───────────────────────────── */
.page-header { padding: 96px 56px 56px; }
.page-header .micro { margin-bottom: 20px; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-item {
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  background: none;
  color: var(--ink);
  letter-spacing: -0.01em;
  cursor: pointer;
  gap: 20px;
}
.faq-toggle__icon {
  font-size: 20px;
  color: var(--red);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-toggle[aria-expanded="true"] .faq-toggle__icon { transform: rotate(45deg); }
.faq-body {
  display: none;
  padding-bottom: 24px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 680px;
}
.faq-body.open { display: block; }

/* ── Blog filter bar ─────────────────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--line-2);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* ── CTA section ─────────────────────────────────────────── */
.cta-section {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 56px;
  text-align: center;
}
.cta-section .display-m { color: var(--paper); margin-bottom: 24px; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 18px; margin-bottom: 36px; }

/* ── Image with caption ──────────────────────────────────── */
.img-wrap { border-radius: var(--radius); overflow: hidden; }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-nav__links { gap: 20px; }
  .site-nav { padding: 0 32px; }
  .hero { padding: 64px 32px 48px; }
  .section { padding: 72px 32px; }
  .section-sm { padding: 48px 32px; }
  .site-footer { padding: 56px 32px 32px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-header { padding: 72px 32px 40px; }
}

@media (max-width: 768px) {
  /* ── Nav ── */
  .site-nav { padding: 0 20px; height: 60px; }
  .site-nav__logo img { max-height: 36px; width: auto; }
  .site-nav__links { display: none; }
  .site-nav__right .btn { display: none; }
  .site-nav__portal { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.open { display: flex; }
  
  .page-header > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding-bottom: 40px !important;
  }
  section.page-header .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding-bottom: 40px !important;
  }

  /* ── Hero ── */
  .hero { padding: 48px 20px 40px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__cards { display: none; }

  /* ── Typography ── */
  .display-xl { font-size: 44px; }
  .display-l  { font-size: 36px; }
  .display-m  { font-size: 30px; }
  .display-s  { font-size: 26px; }

  /* ── Sections ── */
  .section { padding: 48px 20px; }
  .section-sm { padding: 32px 20px; }
  .page-header { padding: 48px 20px 32px; }
  .page-header [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* ── Grids ── */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .promise-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* ── Footer ── */
  .site-footer { padding: 48px 20px 28px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }

  /* ── Misc ── */
  .proof-strip__clients { gap: 20px; }
  .service-row { grid-template-columns: 48px 1fr; gap: 16px; }
  .service-row > *:last-child { display: none; }
  .service-row > *:nth-child(3) { grid-column: 2; }

  /* ── Home page sections — force single column ── */
  .section [style*="grid-template-columns:1fr 1.4fr"],
  .section [style*="grid-template-columns:1fr 1.5fr"],
  .section [style*="grid-template-columns:1fr 1fr"],
  .section [style*="grid-template-columns:2fr 1fr"],
  .section [style*="grid-template-columns:1.5fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Testimonials grid — stack on mobile ── */
  [style*="grid-template-columns:1.5fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Founder section — image smaller ── */
  .img-wrap { max-height: 280px; overflow: hidden; border-radius: var(--radius); }

  /* ── Post body sidebar — hide on mobile ── */
  [style*="grid-template-columns:1fr 280px"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 280px"] aside {
    display: none;
  }

  /* ── Services grid ── */
  [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Rotator section ── */
  .rotator-section .rotator-inner { padding: 0 20px; }
  #rotWho, #rotWhen { white-space: normal; }
}

@media (max-width: 480px) {
  .promise-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; align-items: stretch; }
  .hero__btns .btn { width: 100%; text-align: center; justify-content: center; }
  .display-l { font-size: 32px; }
  .display-m { font-size: 26px; }
}

/* ── Alpine.js cloak ─────────────────────────────────────── */
[x-cloak] { display: none !important; }

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .site-nav, .site-footer, .btn, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
}