/* ── SeatingPot — Premium Restaurant Interior Design ── */

:root {
  color-scheme: light;
  --ink: #2c2825;
  --ink-light: #5a534e;
  --paper: #faf8f5;
  --white: #ffffff;
  --surface: #f2efeb;
  --surface-warm: #ede8e2;
  --line: #d9d3cc;
  --line-light: #e8e3dd;
  --charcoal: #33302d;
  --stone: #8c857d;
  --olive: #6b7c5e;
  --olive-muted: #8a9a7d;
  --terracotta: #c2684a;
  --terracotta-light: #d88b72;
  --copper: #b8835f;
  --copper-muted: rgba(184, 131, 95, 0.12);
  --dark-bg: #1e1c1a;
  --dark-surface: #2a2724;
  --radius: 10px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { display: block; max-width: 100%; }

/* ── Typography ── */

h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.15;
  font-weight: 400;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-family: 'DM Sans', Inter, sans-serif; font-weight: 600; }
h4 { font-size: 1.1rem; font-family: 'DM Sans', Inter, sans-serif; font-weight: 600; }

.eyebrow {
  font-family: 'DM Sans', Inter, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
}

.subtitle {
  color: var(--ink-light);
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 580px;
}

/* ── Header ── */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 48px;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-light);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--terracotta); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--charcoal);
  color: var(--paper) !important;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--ink); }

/* ── Hero ── */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 640px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
  max-width: 720px;
}

.hero-content .eyebrow { margin-bottom: 20px; }

.hero-content h1 { margin-bottom: 24px; }

.hero-content .subtitle { margin-bottom: 36px; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: #b55d40; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--stone);
  background: var(--surface);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--paper) 0%, transparent 18%);
  pointer-events: none;
}

/* ── Trust bar ── */

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 28px 48px;
  background: var(--white);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--olive);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── How It Works ── */

.how-it-works {
  padding: 96px 48px;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .eyebrow { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .subtitle { margin: 0 auto; text-align: center; }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.flow-step {
  text-align: center;
  padding: 28px 16px;
  position: relative;
}

.step-number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-warm);
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.flow-step h4 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.flow-step p {
  color: var(--stone);
  font-size: 0.82rem;
  line-height: 1.5;
}

.flow-step::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 40px;
  color: var(--line);
  font-size: 1.2rem;
}

.flow-step:last-child::after { display: none; }

/* ── Service Offers ── */

.offers {
  padding: 96px 48px;
  background: var(--paper);
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  background: var(--white);
  border: 1.5px solid var(--line-light);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.offer-card:hover {
  border-color: var(--copper);
  box-shadow: 0 8px 32px rgba(44, 40, 37, 0.06);
}

.offer-card.featured {
  border-color: var(--terracotta);
  background: var(--dark-bg);
  color: var(--paper);
  position: relative;
}

.offer-card.featured h3,
.offer-card.featured h4,
.offer-card.featured .offer-price {
  color: var(--paper);
}

.offer-card.featured .offer-features li {
  color: rgba(250, 248, 245, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
}

.offer-card.featured .offer-features li::before {
  color: var(--terracotta-light);
}

.offer-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  align-self: flex-start;
}

.offer-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.offer-subtitle {
  color: var(--stone);
  font-size: 0.88rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.offer-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--ink);
}

.offer-price-note {
  font-size: 0.82rem;
  color: var(--stone);
  margin-bottom: 28px;
}

.offer-features {
  list-style: none;
  display: grid;
  gap: 0;
  margin-bottom: 32px;
  flex: 1;
}

.offer-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.88rem;
  color: var(--ink-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.offer-features li::before {
  content: '✓';
  color: var(--olive);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.offer-card .btn-primary,
.offer-card .btn-secondary {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ── Proof / Before-After ── */

.proof {
  padding: 96px 48px;
  background: var(--dark-bg);
  color: var(--paper);
}

.proof .section-header h2 { color: var(--paper); }
.proof .section-header .subtitle { color: rgba(250, 248, 245, 0.65); }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}

.proof-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-surface);
}

.proof-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.proof-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.proof-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 12px;
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.7);
}

.proof-content {
  padding: 28px;
}

.proof-content h4 {
  color: var(--paper);
  margin-bottom: 12px;
}

.proof-metrics {
  display: flex;
  gap: 24px;
}

.proof-metric {
  display: flex;
  flex-direction: column;
}

.proof-metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--terracotta-light);
}

.proof-metric-label {
  font-size: 0.78rem;
  color: rgba(250, 248, 245, 0.55);
}

/* ── Intake Preview (Brief Form) ── */

.intake-preview {
  padding: 96px 48px;
  background: var(--white);
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

.intake-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
}

.intake-form-header {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.intake-form-header h3 { margin-bottom: 4px; }

.intake-form-header p {
  font-size: 0.88rem;
  color: var(--stone);
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-light);
}

.wide { grid-column: 1 / -1; }

input, select, textarea {
  width: 100%;
  min-width: 0;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

textarea { resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(194, 104, 74, 0.1);
}

.completeness-meter {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meter-bar {
  height: 6px;
  background: var(--surface);
  border-radius: 3px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--olive), var(--olive-muted));
  border-radius: 3px;
  transition: width 0.4s ease;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--stone);
  font-weight: 600;
}

/* Scope Panel */

.scope-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: var(--dark-bg);
  color: var(--paper);
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}

.scope-panel h3 { color: var(--paper); }

.scope-grid {
  display: grid;
  gap: 16px;
}

.scope-grid > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scope-grid dt {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 248, 245, 0.5);
}

.scope-grid dd {
  font-size: 1.1rem;
  font-weight: 700;
}

.action-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.action-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(250, 248, 245, 0.75);
  line-height: 1.5;
}

.action-list li::before {
  content: '→';
  color: var(--terracotta-light);
  flex-shrink: 0;
  font-weight: 700;
}

/* ── Furniture Priorities ── */

.priorities {
  padding: 96px 48px;
  background: var(--paper);
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.priority-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}

.priority-card:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
}

.priority-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--copper-muted);
  color: var(--copper);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.priority-card h4 {
  color: var(--ink);
  margin-bottom: 10px;
}

.priority-card p {
  color: var(--stone);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* ── CTA / Handoff ── */

.cta-section {
  padding: 96px 48px;
  background: var(--surface-warm);
  text-align: center;
}

.cta-section h2 { margin-bottom: 16px; }

.cta-section .subtitle {
  margin: 0 auto 36px;
  text-align: center;
}

.cta-checklist {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-checklist span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-light);
  font-weight: 500;
}

.cta-checklist span::before {
  content: '✓';
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Footer ── */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
  background: var(--dark-bg);
  color: rgba(250, 248, 245, 0.5);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(250, 248, 245, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--paper); }

/* ── Internal Catalog QA ── */

.qa-body {
  background: #f6f7f4;
}

.qa-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  background: #ffffff;
  border-bottom: 1px solid #dde2d8;
  position: sticky;
  top: 0;
  z-index: 100;
}

.qa-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.qa-nav a {
  color: #485248;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.qa-console {
  display: grid;
  gap: 28px;
  padding: 32px;
}

.qa-status-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid #d8ded3;
}

.qa-status-band h1 {
  margin: 8px 0 10px;
}

.qa-intro,
.qa-muted {
  color: #667064;
}

.qa-status-actions {
  flex: 0 0 auto;
}

.qa-metrics,
.qa-fact-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 12px;
}

.qa-metric {
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #d8ded3;
  border-radius: 8px;
}

.qa-metric-label,
.qa-metric-note {
  color: #667064;
  font-size: 0.78rem;
  font-weight: 700;
}

.qa-metric-value {
  color: #253126;
  font-size: 1.4rem;
}

.qa-workbench {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.qa-sidebar,
.qa-detail,
.qa-queue-panel {
  background: #ffffff;
  border: 1px solid #d8ded3;
  border-radius: 8px;
}

.qa-sidebar {
  position: sticky;
  top: 92px;
  overflow: hidden;
}

.qa-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #e5eadf;
}

.qa-sidebar-header h2 {
  margin-top: 8px;
}

.qa-cluster-list {
  display: grid;
  gap: 8px;
  max-height: 720px;
  overflow: auto;
  padding: 12px;
}

.qa-cluster-row {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: #f8faf6;
  border: 1px solid #e2e7dc;
  border-radius: 8px;
  color: #253126;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.qa-cluster-row:hover,
.qa-cluster-row.selected {
  border-color: #718568;
  background: #eef4ea;
}

.qa-reason-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.qa-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 8px;
  background: #e8efe4;
  color: #364332;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.qa-badge.outline {
  background: transparent;
  border: 1px solid #cad4c3;
}

.qa-badge.approved,
.qa-badge.merged,
.qa-badge.ok {
  background: #dcefd8;
  color: #27501d;
}

.qa-badge.rejected,
.qa-badge.warn {
  background: #f4e2dc;
  color: #7d2d20;
}

.qa-badge.split {
  background: #e5e5f2;
  color: #363b75;
}

.qa-detail {
  display: grid;
  gap: 20px;
  min-width: 0;
  padding: 22px;
}

.qa-detail-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 20px;
  align-items: start;
}

.qa-product-image {
  width: 180px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #d8ded3;
  background: #eef0ec;
}

.qa-decision-panel,
.qa-offer-panel,
.qa-field-section,
.qa-audit {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: #f8faf6;
  border: 1px solid #e2e7dc;
  border-radius: 8px;
}

.qa-button-row,
.qa-offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.qa-button-row .btn-primary,
.qa-button-row .btn-secondary,
.qa-offer-panel .btn-secondary {
  text-transform: capitalize;
}

.qa-offer-grid label {
  flex: 1 1 180px;
}

.qa-field-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d8ded3;
  border-radius: 8px;
}

.qa-field-table th,
.qa-field-table td {
  padding: 12px;
  border-bottom: 1px solid #e5eadf;
  text-align: left;
  vertical-align: top;
}

.qa-field-table th {
  color: #485248;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.qa-field-name {
  width: 180px;
  color: #253126;
  font-weight: 800;
}

.qa-field-values {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow: auto;
}

.qa-field-value {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(180px, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 8px;
  background: #f8faf6;
  border-radius: 8px;
}

.qa-provenance,
.qa-source-link {
  color: #667064;
  font-size: 0.82rem;
}

.qa-source-link {
  font-weight: 800;
}

.qa-audit-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.qa-audit-list li {
  display: grid;
  gap: 4px;
}

.qa-queue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.qa-queue-panel {
  overflow: hidden;
}

.qa-queue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid #e5eadf;
}

.qa-queue-list {
  display: grid;
  max-height: 520px;
  overflow: auto;
}

.qa-queue-group {
  display: grid;
  gap: 0;
  border-bottom: 1px solid #eef2ea;
}

.qa-queue-group h4 {
  padding: 14px 18px 6px;
  color: #485248;
  font-size: 0.9rem;
  text-transform: capitalize;
}

.qa-queue-row {
  display: grid;
  gap: 5px;
  padding: 14px 18px;
  border-bottom: 1px solid #eef2ea;
}

.qa-queue-group .qa-queue-row:last-child {
  border-bottom: 0;
}

.qa-workflow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.qa-inline-action {
  width: fit-content;
  padding: 7px 10px;
  background: #253126;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.qa-error {
  padding: 12px;
  background: #f4e2dc;
  border: 1px solid #d7a095;
  border-radius: 8px;
  color: #7d2d20;
  font-weight: 800;
}

/* ── Responsive ── */

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }

  .hero-image { height: 400px; }

  .hero-image::after {
    background: linear-gradient(180deg, var(--paper) 0%, transparent 20%);
  }

  .hero-content { padding: 64px 48px 48px; }

  .flow-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .flow-step:nth-child(3)::after { display: none; }

  .offer-cards { grid-template-columns: 1fr; max-width: 480px; }

  .proof-grid { grid-template-columns: 1fr; }

  .intake-layout { grid-template-columns: 1fr; }

  .scope-panel { position: static; }

  .priority-grid { grid-template-columns: repeat(2, 1fr); }

  .qa-workbench,
  .qa-queue-grid {
    grid-template-columns: 1fr;
  }

  .qa-sidebar {
    position: static;
  }

  .qa-metrics,
  .qa-fact-strip {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 12px;
  }

  .site-nav { flex-wrap: wrap; gap: 16px; }

  .hero-content { padding: 40px 24px; }

  .hero-image { height: 300px; }

  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .flow-step:nth-child(2n)::after { display: none; }

  .how-it-works,
  .offers,
  .proof,
  .intake-preview,
  .priorities,
  .cta-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .intake-form { grid-template-columns: 1fr; padding: 24px; }

  .priority-grid { grid-template-columns: 1fr; }

  .trust-bar {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .proof-metrics { flex-direction: column; gap: 12px; }

  .site-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px;
  }

  .cta-checklist {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .qa-topbar,
  .qa-status-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .qa-console {
    padding: 22px;
  }

  .qa-metrics,
  .qa-fact-strip,
  .qa-detail-header {
    grid-template-columns: 1fr;
  }

  .qa-product-image {
    width: 100%;
  }

  .qa-field-value {
    grid-template-columns: 1fr;
  }
}
