.fertilizer-main {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 64px;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--brand);
}

.module-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 0 28px;
}

.module-heading h1 {
  max-width: 780px;
  margin: 0;
  color: var(--brand-dark);
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.module-heading > div:first-child > p:last-child {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.mode-control {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #b9ccc1;
  border-radius: 7px;
  padding: 3px;
  background: var(--surface);
}

.mode-control button {
  min-height: 40px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #496259;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  padding: 0 14px;
}

.mode-control button.active {
  background: var(--brand);
  color: #fff;
}

.project-status {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #edf3ef;
  color: #425d53;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
}

.project-status strong {
  color: var(--brand);
}

.project-status .status-error {
  color: var(--danger);
}

.project-status .status-warning {
  color: #8a5a11;
}

.workbench {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.workflow {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  overflow: hidden;
}

.workflow__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.workflow__caption strong {
  color: var(--brand);
}

.workflow nav {
  display: grid;
  padding: 7px;
}

.workflow nav button {
  min-width: 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #36544a;
  cursor: pointer;
  text-align: left;
  padding: 10px;
}

.workflow nav button:hover {
  background: var(--surface-soft);
}

.workflow nav button.active {
  background: var(--brand);
  color: #fff;
}

.workflow nav span {
  grid-row: 1 / 3;
  color: #8ca096;
  font-size: 12px;
  font-weight: 900;
  padding-top: 2px;
}

.workflow nav button.active span,
.workflow nav button.active small {
  color: rgba(255, 255, 255, 0.68);
}

.workflow nav b {
  overflow-wrap: anywhere;
  font-size: 13px;
}

.workflow nav small {
  color: var(--muted);
  font-size: 11px;
}

.workflow__reset {
  width: calc(100% - 28px);
  min-height: 36px;
  margin: 4px 14px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.stage {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.step {
  display: none;
  padding: 28px 30px 10px;
}

.step.active {
  display: block;
}

.step-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.step-heading p {
  margin: 0 0 4px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.step-heading h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 27px;
  line-height: 1.15;
}

.step-heading__tag {
  flex: 0 0 auto;
  border-radius: 5px;
  background: #f2ebd8;
  color: #73560d;
  font-size: 11px;
  font-weight: 900;
  padding: 7px 10px;
}

.stage-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding: 18px 30px;
  background: #f8faf8;
}

.content-section {
  padding: 24px 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--line);
}

.content-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.content-title h3 {
  margin: 0;
  color: #24483c;
  font-size: 18px;
}

.content-title p {
  max-width: 560px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.form-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 6px;
  color: #3f5a51;
  font-size: 12px;
  font-weight: 800;
}

.field small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  min-width: 0;
  height: 42px;
  border: 1px solid #c7d5cc;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 0 11px;
}

.field input:focus,
.field select:focus {
  border-color: var(--brand);
  outline: 2px solid rgba(13, 80, 62, 0.12);
}

.field input.invalid,
.field select.invalid {
  border-color: var(--danger);
  background: #fff7f6;
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--line);
  overflow: hidden;
}

.summary-strip > div {
  min-width: 0;
  background: #f8faf8;
  padding: 14px;
}

.summary-strip span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.summary-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1.2;
}

.summary-strip strong.negative,
.negative {
  color: var(--danger);
}

.positive {
  color: var(--success);
}

.table-wrap {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  padding: 11px 10px;
}

.data-table th {
  background: #edf3ef;
  color: #3a594e;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  line-height: 1.3;
}
.data-table th .unit {
  display: block;
  margin-top: 3px;
  color: #6d8579;
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.data-table thead tr + tr th {
  border-top: 1px solid #d3e0d8;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table td strong {
  color: #24483c;
}

.data-table input,
.data-table select {
  min-width: 90px;
  height: 36px;
  border: 1px solid #c7d5cc;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  padding: 0 8px;
}

.data-table select {
  min-width: 145px;
}

.data-table .row-action {
  border: 0;
  background: transparent;
  color: var(--danger);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 7px;
}

.formula {
  border-left: 3px solid var(--accent);
  background: #f8f6ef;
  padding: 13px 15px;
}

.formula + .formula {
  margin-top: 10px;
}

.formula b,
.formula code,
.formula span {
  display: block;
}

.formula b {
  color: #4d4a32;
  font-size: 12px;
}

.formula code {
  margin-top: 6px;
  color: #24483c;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 13px;
  white-space: normal;
}

.formula span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.formula-grid .formula {
  margin: 0;
}

.details-list {
  display: grid;
  gap: 10px;
}

.formula-details {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfcfb;
}

.formula-details summary {
  cursor: pointer;
  color: #2e5145;
  font-size: 13px;
  font-weight: 850;
  padding: 13px 15px;
}

.formula-details[open] summary {
  border-bottom: 1px solid var(--line);
}

.formula-details .formula-grid {
  padding: 14px;
}

.variable-line {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.data-table td small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.note {
  border: 1px solid #dacda9;
  border-radius: 6px;
  background: #fbf7ea;
  color: #5f563e;
  font-size: 13px;
  padding: 13px 15px;
}

.note strong {
  color: #674e0e;
}

.note--danger {
  border-color: #e5c2be;
  background: #fff7f6;
  color: #74433f;
}

.validation-list,
.audit-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.validation-list li,
.audit-list li {
  border-left: 3px solid var(--warning);
  background: #fbf7ea;
  color: #5f563e;
  padding: 10px 12px;
  font-size: 12px;
}

.validation-list li.error,
.audit-list li.correction {
  border-left-color: var(--danger);
  background: #fff7f6;
}

.audit-list b {
  display: block;
  margin-bottom: 2px;
  color: #324f45;
}

.metric {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 5px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  padding: 0 8px;
  white-space: nowrap;
}

.metric--warn {
  background: #f4e6df;
  color: #8c3e37;
}

.report-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  border-bottom: 2px solid var(--brand);
  padding: 24px 0 18px;
}

.report-head h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 24px;
}

.report-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.report-head__meta {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.report-section {
  padding: 22px 0;
}

.report-section + .report-section {
  border-top: 1px solid var(--line);
}

.report-section h3 {
  margin: 0 0 13px;
  color: #24483c;
  font-size: 18px;
}

.report-conclusion {
  border: 1px solid #b9cec2;
  border-radius: 7px;
  background: #edf3ef;
  color: #334f45;
  padding: 18px;
}

.report-conclusion p {
  margin: 0 0 8px;
}

.report-conclusion p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .workbench {
    grid-template-columns: 1fr;
  }

  .workflow {
    position: static;
  }

  .workflow nav {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 170px;
    overflow-x: auto;
  }

  .workflow__reset {
    display: none;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .fertilizer-main {
    width: min(100% - 28px, 1240px);
    padding-top: 14px;
  }

  .module-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    padding: 26px 0 22px;
  }

  .module-heading h1 {
    font-size: 34px;
  }

  .mode-control button {
    padding: 0 8px;
  }

  .project-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .step {
    padding: 22px 18px 6px;
  }

  .step-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .step-heading h2 {
    font-size: 23px;
  }

  .form-grid,
  .form-grid--2,
  .formula-grid,
  .summary-strip {
    grid-template-columns: 1fr;
  }

  .stage-actions {
    padding: 16px 18px;
  }

  .report-head {
    grid-template-columns: 1fr;
  }

  .report-head__meta {
    text-align: left;
  }
}

@media print {
  @page { size: A4 landscape; margin: 12mm; }
  .site-header, .site-footer, .breadcrumbs, .module-heading, .project-status, .workflow, .stage-actions,
  .ref, .fill, .row-action, .button, .mode-control, .print-actions, .note, .step-heading__tag { display: none !important; }
  body, .fertilizer-main, .workbench, .stage, .step { width: 100%; max-width: none; margin: 0; border: 0; background: #fff; box-shadow: none; padding: 0; display: block; }
  .step { display: none !important; }
  body.print-all .step, body.print-report #report { display: block !important; }
  body.print-all .step + .step { page-break-before: always; }
  .step-heading { border: 0; padding: 0 0 6px; }
  .step-heading p { display: none; }
  .step-heading h2 { font-size: 16px; margin: 0; }
  .content-section { padding: 6px 0; border: 0; }
  .content-title h3 { font-size: 13px; margin: 8px 0 4px; }
  .content-title p, .summary-strip span { font-size: 10px; }
  .table-wrap { overflow: visible; }
  .data-table { font-size: 8.5px; width: 100%; table-layout: auto; }
  .data-table th, .data-table td { padding: 2px 3px; border: 1px solid #999; word-break: normal; overflow-wrap: normal; hyphens: manual; }
  .data-table th { font-size: 7.5px; line-height: 1.2; }
  .data-table th .unit { font-size: 7.5px; margin-top: 1px; }
  .data-table.wide { font-size: 7px; }
  .data-table.wide th { font-size: 6.5px; }
  .data-table.wide th, .data-table.wide td { padding: 1px 2px; }
  .data-table.wide td small { font-size: 6px; }
  .data-table input, .data-table select { display: none !important; }
  .print-value { display: inline !important; font-size: 9px; }
  .form-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px 10px; }
  .form-grid .field { display: block; font-size: 9px; border-bottom: 1px dotted #999; padding: 2px 0; }
  .form-grid .field input, .form-grid .field select { display: none !important; }
  .form-grid .field small { display: none !important; }
  .formula-details, .details-list { display: none !important; }
  .formula { border: 1px solid #ccc; padding: 4px 6px; font-size: 9px; }
  .conclusion { border: 1px solid #999; background: #fff; padding: 6px 8px; font-size: 10px; }
  .conclusion p { font-size: 10px; }
  .summary-strip { border: 1px solid #ccc; font-size: 10px; }
  .report-section, .formula, .conclusion, .data-table tr { break-inside: avoid; }
  .report-conclusion p, .report-list { font-size: 10.5px; }
}
.print-value { display: none; }
.print-actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }

/* ---------- справочные блоки, выводы, подсветка (v7) ---------- */
.ref { margin: 14px 0 0; border: 1px solid #e3d9bf; border-radius: 8px; background: #fbf8ef; overflow: hidden; }
.ref summary { display: flex; align-items: center; gap: 12px; padding: 10px 14px; cursor: pointer; list-style: none; }
.ref summary::-webkit-details-marker { display: none; }
.ref summary::before { content: "▸"; color: var(--accent-dark); font-size: 12px; transition: transform 160ms ease; }
.ref[open] summary::before { transform: rotate(90deg); }
.ref summary span { flex: 0 0 auto; padding: 2px 8px; border-radius: 4px; background: #f0e4c4; color: var(--accent-dark); font-size: 11px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.ref summary b { color: #5b4a1b; font-size: 13.5px; }
.ref__body { padding: 0 14px 14px; }
.ref__body .table-wrap { margin-top: 8px; }
.ref__body .data-table { font-size: 12.5px; }
.ref__body .data-table th { background: #f3ecd8; }
.ref__body .data-table tr.highlight td { background: #fff4d6; font-weight: 700; }
.ref__body p { margin: 8px 0 0; color: #5b4a1b; font-size: 13.5px; }
.ref__note { color: #7a6636 !important; font-size: 12.5px !important; }
.ref__list { margin: 8px 0 0; padding-left: 18px; color: #4d4531; font-size: 13.5px; }
.ref__list li { margin: 3px 0; }
.fill { display: inline-flex; align-items: center; min-height: 20px; margin-left: 4px; padding: 0 8px; border: 1px solid #c9b77d; border-radius: 999px; background: #fff; color: var(--accent-dark); cursor: pointer; font-size: 11px; font-weight: 800; line-height: 1; vertical-align: middle; }
.fill:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.field small .fill { margin-left: 6px; }
.conclusion { margin-top: 14px; border-left: 4px solid var(--brand); border-radius: 0 8px 8px 0; background: #eef5f0; padding: 12px 16px; }
.conclusion b { display: block; margin-bottom: 4px; color: var(--brand); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.conclusion p { margin: 0; color: #2b4a3f; font-size: 14px; line-height: 1.6; }
.subhead { margin: 18px 0 8px; color: var(--brand-dark); font-size: 15px; }
.data-table tr.highlight td { background: #fff4d6; }
.data-table tr.subtotal td { background: #f4f7f4; }
.data-table td small { display: block; color: var(--muted); font-size: 11.5px; line-height: 1.3; margin-top: 2px; }
.data-table tfoot td { background: #f3f6f2; font-weight: 600; }
.data-table th[colspan] { text-align: center; border-bottom: 1px solid #d3e0d8; }
.validation-list li.info { border-left-color: #6a8fb5; background: #eef4fa; }
.form-grid .field small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
/* подпись, поле и подсказка каждой колонки лежат на общих дорожках строки: поля всегда на одной высоте */
@supports (grid-template-rows: subgrid) {
  .form-grid .field { grid-row: span 3; grid-template-rows: subgrid; row-gap: 6px; }
  .form-grid .field__label { align-self: end; }
  .form-grid .field small { margin-top: 0; }
}
@media print { .ref, .fill, .stage-actions, .workflow, .mode-control { display: none !important; } .step { display: block !important; page-break-before: always; } .step:first-of-type { page-break-before: auto; } }

.report-list { margin: 0; padding-left: 22px; color: #2b4a3f; font-size: 14px; line-height: 1.6; }
.report-list li { margin: 4px 0; }

/* ---------- модальное окно контроля данных ---------- */
.status-button { display: inline-flex; align-items: center; gap: 10px; border: 0; background: transparent; padding: 0; font: inherit; font-weight: 700; color: inherit; cursor: pointer; text-align: right; }
.status-button:hover .status-button__hint { text-decoration: underline; }
.status-button__hint { color: var(--brand); font-size: 12px; font-weight: 700; }
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: rgba(9, 61, 48, 0.45); padding: 20px; }
.modal[hidden] { display: none; }
.modal__panel { width: min(820px, 100%); max-height: min(86vh, 900px); display: flex; flex-direction: column; border-radius: 12px; background: var(--surface); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3); overflow: hidden; }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 18px 22px 14px; border-bottom: 1px solid var(--line); }
.modal__head h3 { margin: 0; color: var(--brand-dark); font-size: 20px; }
.modal__head p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.modal__close { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--brand); cursor: pointer; font-size: 22px; line-height: 1; }
.modal__close:hover { background: var(--brand-soft); }
.modal__body { overflow: auto; padding: 14px 22px 22px; }
.modal__group { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 8px; color: var(--brand-dark); font-size: 14px; }
.modal__group span { padding: 1px 8px; border-radius: 999px; background: var(--brand-soft); color: var(--brand); font-size: 12px; }
.modal__group.error span { background: #f8e1df; color: var(--danger); }
.modal__group.warning span { background: #f8ecd6; color: #8a5a11; }
.modal__group small { color: var(--muted); font-weight: 500; }
.modal__list li { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.modal__list li span { flex: 1; }
.modal__list li .fill { flex: 0 0 auto; margin-top: 2px; white-space: nowrap; }
body.modal-open { overflow: hidden; }
@media print { .modal, .status-button__hint { display: none !important; } }

/* ---------- инструкция «Как работать» ---------- */
.mode-control { grid-template-columns: repeat(3, auto); }
.guide-view[hidden], .workbench[hidden], .project-status[hidden] { display: none !important; }
.guide { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 18px; align-items: start; margin-top: 18px; }
.guide__toc { position: sticky; top: 100px; display: grid; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); overflow: hidden; max-height: calc(100vh - 120px); overflow-y: auto; }
.guide__toc a { display: block; padding: 7px 14px; border-top: 1px solid #eef3f0; color: #36544a; font-size: 12.5px; font-weight: 700; }
.guide__toc a:hover { background: var(--surface-soft); color: var(--brand); }
.guide__content { display: grid; gap: 16px; }
.guide__section { border: 1px solid var(--line); border-radius: 7px; background: var(--surface); padding: 22px 26px 24px; scroll-margin-top: 100px; }
.guide__title { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.guide__title h3 { margin: 0; color: var(--brand-dark); font-size: 20px; line-height: 1.2; }
.guide__lead { margin: 0 0 14px; color: #2b4a3f; font-size: 15px; line-height: 1.65; }
.guide__block { margin-top: 14px; border: 1px solid #e3ebe6; border-radius: 7px; padding: 12px 16px 14px; background: #fbfcfb; }
.guide__block.note { background: #fbf8ef; border-color: #e3d9bf; }
.guide__block h4 { margin: 0 0 8px; color: var(--brand); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.guide__block p, .guide__block li { color: #2b4a3f; font-size: 14px; line-height: 1.6; }
.guide__block p { margin: 0; }
.guide__block ul, .guide__block ol, .guide__section > ul { margin: 0; padding-left: 20px; }
.guide__section > ul li { color: #2b4a3f; font-size: 14px; line-height: 1.6; margin: 6px 0; }
.guide__block li { margin: 4px 0; }
.guide__formula { margin-top: 14px; border-left: 4px solid var(--accent); border-radius: 0 7px 7px 0; background: #fbf8ef; padding: 12px 16px; }
.guide__formula b { display: block; color: #5b4a1b; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.guide__formula code { display: block; font-family: "Cascadia Mono", "Consolas", monospace; font-size: 14px; color: var(--brand-dark); margin-bottom: 6px; }
.guide__where { margin: 0; color: #5b4a1b; font-size: 13px; line-height: 1.55; }
.guide__example { margin: 8px 0 0; padding: 8px 10px; border-radius: 5px; background: #fff; color: var(--ink); font-size: 13.5px; line-height: 1.55; }
.guide__example span { color: var(--accent-dark); font-weight: 800; margin-right: 4px; }
.sym { font-style: normal; font-weight: 800; color: var(--brand-dark); }
.guide__goto { margin-top: 14px; min-height: 30px; padding: 0 14px; font-size: 12.5px; }
@media (max-width: 1000px) { .guide { grid-template-columns: 1fr; } .guide__toc { position: static; max-height: none; } }
@media (max-width: 720px) { .mode-control { grid-template-columns: 1fr; } .guide__section { padding: 16px; } }
@media print { .guide-view { display: none !important; } }
