
  /* ========== Section header ========== */
  .section-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-8);
    margin-bottom: var(--s-8);
    align-items: end;
  }
  .section-head .sh-left {
    display: flex; flex-direction: column; gap: var(--s-4);
  }
  .section-head .display-title {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(36px, 4.4vw, 64px); line-height: 1.05;
    letter-spacing: var(--ls-snug); margin: 0; color: var(--ink);
  }
  .section-head .display-title em { font-style: italic; color: var(--accent); }
  .section-head .sh-desc {
    font-family: var(--font-body); font-size: var(--fs-body);
    line-height: var(--lh-body); color: var(--ink-2);
    margin: 0; max-width: 44ch;
  }
  .section-head .sh-right-col {
    display: flex; flex-direction: column; gap: var(--s-4); align-self: end;
  }
  .section-head .sh-cta {
    font-family: var(--font-body); font-weight: 500; font-size: 14px;
    color: var(--accent); text-decoration: none;
    display: inline-flex; align-items: center; gap: var(--s-1);
    transition: color var(--t-base) var(--ease); margin-top: var(--s-2);
  }
  .section-head .sh-cta:hover { color: var(--accent-hover); }
  .section-head .sh-cta svg {
    width: 14px; height: 14px;
    transition: transform var(--t-base) var(--ease);
  }
  .section-head .sh-cta:hover svg { transform: translateX(4px); }
  @media (max-width: 860px) {
    .section-head {
      grid-template-columns: 1fr; gap: var(--s-5); margin-bottom: var(--s-7);
    }
  }

  /* ========== Section 2: Situational Routing Cards ========== */
  .routing {
    background: var(--paper);
    padding: var(--s-10) 0;
    border-top: 1px solid var(--rule);
  }
  .routing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5);
  }
  .routing-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--rule);
    padding: var(--s-7);
    display: flex; flex-direction: column; gap: var(--s-4);
    transition:
      transform var(--t-base) var(--ease),
      border-color var(--t-base) var(--ease),
      box-shadow var(--t-base) var(--ease);
  }
  .routing-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--t-base) var(--ease);
  }
  .routing-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(127, 86, 217, 0.08);
  }
  .routing-card:hover::before { transform: scaleX(1); }

  /* Urgent / time-sensitive variant — amber accent */
  .routing-card--urgent {
    border-left: 3px solid #d99a2b;
  }
  .routing-card--urgent::before { background: #d99a2b; }
  .routing-card--urgent:hover {
    border-color: #d99a2b;
    box-shadow: 0 8px 24px rgba(217, 154, 43, 0.1);
  }
  .routing-card--urgent .routing-card__icon { color: #d99a2b; }
  .routing-card--urgent .routing-card__link { color: #b97d18; }
  .routing-card--urgent .routing-card__link:hover { color: #a06a10; }

  .routing-card__top {
    display: flex; align-items: center; gap: var(--s-4);
  }
  .routing-card__thumb {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--paper-3) 0%, var(--paper-2) 100%);
    border: 1px solid var(--rule);
    flex-shrink: 0; overflow: hidden;
    filter: sepia(0.15) saturate(0.9);
    display: flex; align-items: center; justify-content: center;
  }
  .routing-card__thumb .ph-label {
    font-family: 'Courier New', monospace;
    font-size: 7px; color: var(--muted);
    text-align: center; line-height: 1.3;
  }
  .routing-card__icon {
    width: 48px; height: 48px;
    color: var(--accent); flex-shrink: 0;
  }
  .routing-card__icon svg {
    width: 48px; height: 48px; stroke-width: 1.2;
  }
  .routing-card h3 {
    font-family: var(--font-display); font-weight: 400;
    font-size: var(--fs-h4); line-height: var(--lh-heading);
    color: var(--ink); margin: 0;
  }
  .routing-card p {
    font-family: var(--font-body); font-size: 15px;
    line-height: var(--lh-body); color: var(--ink-2);
    margin: 0; flex: 1;
  }
  .routing-card__link {
    font-family: var(--font-body); font-weight: 500; font-size: 14px;
    color: var(--accent); text-decoration: none;
    display: inline-flex; align-items: center; gap: var(--s-2);
    transition: color var(--t-base) var(--ease);
  }
  .routing-card__link:hover { color: var(--accent-hover); }
  .routing-card__link svg {
    width: 16px; height: 16px;
    transition: transform var(--t-base) var(--ease);
  }
  .routing-card__link:hover svg { transform: translateX(4px); }
  @media (max-width: 860px) {
    .routing-cards { grid-template-columns: 1fr; }
  }

  /* ========== Section 3: Asset Types — Tabs ========== */
  .types {
    background: var(--paper-2);
    padding: var(--s-10) 0;
    border-top: 1px solid var(--rule);
    --teal: #0d8576;
    --teal-hover: #0a6b5e;
  }
  .types-tabs {
    display: flex; gap: 0;
    border-bottom: 1px solid var(--rule);
    margin-bottom: var(--s-7);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .types-tabs::-webkit-scrollbar { display: none; }
  .types-tab {
    flex-shrink: 0;
    display: inline-flex; align-items: center; gap: var(--s-2);
    padding: var(--s-4) var(--s-5);
    font-family: var(--font-body); font-weight: 500; font-size: 14px;
    color: var(--muted); background: none; border: none;
    border-bottom: 3px solid transparent; cursor: pointer;
    transition: color var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
    white-space: nowrap;
  }
  .types-tab:hover { color: var(--ink); }
  .types-tab[aria-selected="true"] {
    color: var(--teal);
    border-bottom-color: var(--teal);
  }
  .types-tab svg {
    width: 20px; height: 20px; stroke-width: 1.5; flex-shrink: 0;
  }
  .types-panel {
    display: none;
    animation: types-fade 0.2s var(--ease);
  }
  .types-panel[aria-hidden="false"] {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--s-7);
    align-items: start;
  }
  @keyframes types-fade {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .types-panel__text {
    display: flex; flex-direction: column; gap: var(--s-5);
  }
  .types-panel__title {
    font-family: var(--font-display); font-weight: 400;
    font-size: var(--fs-h3); line-height: var(--lh-heading);
    color: var(--ink); margin: 0;
  }
  .types-panel__body {
    font-family: var(--font-body); font-size: var(--fs-body);
    line-height: var(--lh-body); color: var(--ink-2);
    margin: 0; max-width: var(--content-measure);
  }
  .types-panel__cta {
    font-family: var(--font-body); font-weight: 500; font-size: 14px;
    color: var(--teal); text-decoration: none;
    display: inline-flex; align-items: center; gap: var(--s-2);
    transition: color var(--t-base) var(--ease);
  }
  .types-panel__cta:hover { color: var(--teal-hover); }
  .types-panel__cta svg {
    width: 15px; height: 15px;
    transition: transform var(--t-base) var(--ease);
  }
  .types-panel__cta:hover svg { transform: translateX(4px); }
  .types-panel__list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: var(--s-3);
  }
  .types-panel__list li {
    display: flex; align-items: flex-start; gap: var(--s-3);
    font-family: var(--font-body); font-size: 15px;
    line-height: var(--lh-body); color: var(--ink-2);
  }
  .types-panel__list li::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: var(--teal); flex-shrink: 0; margin-top: 8px;
  }
  .types-panel__example {
    font-family: var(--font-display); font-style: italic; font-weight: 400;
    font-size: 16px; line-height: 1.5; color: var(--ink);
    border-left: 2px solid var(--teal); padding-left: var(--s-4); margin: 0;
  }
  .types-panel__photo {
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--paper-3) 0%, var(--paper-2) 100%);
    border: 1px solid var(--rule);
    overflow: hidden; filter: sepia(0.15) saturate(0.9);
    display: flex; align-items: center; justify-content: center;
  }
  .types-panel__photo .ph-label {
    font-family: 'Courier New', monospace; font-size: 11px;
    color: var(--muted); text-align: center; line-height: 1.5; max-width: 22ch;
  }
  @media (max-width: 600px) {
    .types-tabs { scroll-snap-type: x mandatory; }
    .types-tab {
      scroll-snap-align: start; padding: var(--s-3) var(--s-4); font-size: 13px;
    }
    .types-panel[aria-hidden="false"] { grid-template-columns: 1fr; }
    .types-panel__photo { display: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    .types-panel { animation: none; }
  }

  /* ========== Section 4: Wizard ========== */
  .wizard-section {
    background: var(--paper);
    padding: var(--s-10) 0;
    border-top: 1px solid var(--rule);
  }
  #wizard-root { max-width: 760px; margin: 0 auto; }

  /* ========== Section 5: Court vs Notarial ========== */
  .modes {
    background: var(--paper-2);
    padding: var(--s-10) 0;
    border-top: 1px solid var(--rule);
  }
  .modes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-5);
    margin-bottom: var(--s-7);
    align-items: stretch;
  }
  .mode-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--rule);
    border-top: 3px solid var(--teal-accent, #0d8576);
    padding: var(--s-7);
    display: flex;
    flex-direction: column;
    gap: var(--s-5);
  }
  .mode-card--notarial { --teal-accent: #0d8576; }
  .mode-card--court { border-top-color: #d99a2b; }
  .mode-card__head {
    display: flex; align-items: center; gap: var(--s-3);
    padding-bottom: var(--s-4);
    border-bottom: 1px solid var(--rule);
  }
  .mode-card__badge {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .mode-card--notarial .mode-card__badge { background: rgba(13,133,118,0.1); color: #0d8576; }
  .mode-card--court .mode-card__badge { background: rgba(217,154,43,0.12); color: #b97d18; }
  .mode-card__badge svg { width: 22px; height: 22px; stroke-width: 1.6; }
  .mode-card__head h3 {
    font-family: var(--font-display); font-weight: 400;
    font-size: var(--fs-h4); line-height: var(--lh-heading);
    color: var(--ink); margin: 0;
  }
  .mode-card__rows {
    display: flex; flex-direction: column; gap: var(--s-4);
    flex: 1;
  }
  .mode-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: var(--s-4);
    align-items: baseline;
  }
  .mode-row__label {
    font-family: var(--font-body); font-weight: 500;
    font-size: var(--fs-eyebrow); text-transform: uppercase;
    letter-spacing: var(--ls-eyebrow); color: var(--muted);
    line-height: 1.4;
  }
  .mode-row__value {
    font-family: var(--font-body); font-size: 15px;
    line-height: var(--lh-body); color: var(--ink-2);
  }
  .mode-card__note {
    font-family: var(--font-display); font-style: italic; font-weight: 400;
    font-size: 15px; line-height: 1.5; color: var(--ink);
    padding-left: var(--s-4);
    border-left: 2px solid var(--teal-accent, #0d8576);
  }
  .mode-card--court .mode-card__note { border-left-color: #d99a2b; }
  .modes-footer {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  .modes-footer p {
    font-family: var(--font-body); font-size: var(--fs-body);
    line-height: var(--lh-body); color: var(--ink-2); margin: 0 0 var(--s-5);
  }
  @media (max-width: 860px) {
    .modes-grid { grid-template-columns: 1fr; }
    .mode-row { grid-template-columns: 110px 1fr; }
  }

  /* ========== Section 6: Process Steps ========== */
  .process-section {
    background: var(--paper);
    padding: var(--s-10) 0;
    border-top: 1px solid var(--rule);
  }
  .process-layout {
    display: grid;
    grid-template-columns: 1fr 0.42fr;
    gap: var(--s-8);
    align-items: start;
  }
  .process-steps {
    display: flex; flex-direction: column; gap: 0;
  }
  .process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: var(--s-5);
    padding: var(--s-6) 0;
    border-bottom: 1px solid var(--rule);
  }
  .process-step:first-child { padding-top: 0; }
  .process-step:last-child { border-bottom: none; }
  .process-step__num {
    font-family: var(--font-display); font-style: italic;
    font-size: 22px; color: var(--accent);
    letter-spacing: 0.04em; padding-top: 2px; text-align: center;
  }
  .process-step__content {
    display: flex; flex-direction: column; gap: var(--s-2);
  }
  .process-step h3 {
    font-family: var(--font-display); font-weight: 400;
    font-size: 24px; line-height: 1.2; margin: 0; color: var(--ink);
  }
  .process-step p {
    font-family: var(--font-body); font-size: 15px;
    line-height: 1.6; color: var(--ink-2);
    margin: 0; max-width: 52ch; text-wrap: pretty;
  }
  .process-step__time {
    font-family: var(--font-body); font-weight: 500;
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--muted);
    margin-top: var(--s-1);
    display: inline-flex; align-items: center; gap: var(--s-2);
  }
  .process-step__time svg { width: 14px; height: 14px; color: var(--accent); }
  .process-photos {
    position: sticky; top: 140px;
    display: flex; flex-direction: column; gap: var(--s-3);
    max-height: fit-content;
  }
  .process-photo {
    aspect-ratio: 5 / 3;
    background: linear-gradient(135deg, var(--paper-3) 0%, var(--paper-2) 100%);
    border: 1px solid var(--rule); overflow: hidden;
    filter: sepia(0.15) saturate(0.9);
    display: flex; align-items: center; justify-content: center;
  }
  .process-photo .ph-label {
    font-family: 'Courier New', monospace;
    font-size: 10px; color: var(--muted);
    text-align: center; line-height: 1.5; max-width: 22ch; padding: var(--s-4);
  }
  .process-photo--mobile {
    display: none;
    aspect-ratio: 16 / 9;
    margin: var(--s-4) 0;
  }
  @media (max-width: 860px) {
    .process-layout { grid-template-columns: 1fr; }
    .process-photos { display: none; }
    .process-photo--mobile { display: flex; }
  }

  /* ========== Section 7: Service Description ========== */
  .service {
    background: var(--paper-2);
    padding: var(--s-10) 0;
    border-top: 1px solid var(--rule);
  }
  .service-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--s-8);
    align-items: start;
  }
  .service-prose {
    display: flex; flex-direction: column; gap: var(--s-5);
  }
  .service-prose p {
    font-family: var(--font-body); font-size: var(--fs-body);
    line-height: var(--lh-body); color: var(--ink-2);
    margin: 0; max-width: var(--content-measure); text-wrap: pretty;
  }
  .service-callout {
    border-left: 2px solid var(--accent);
    background: var(--accent-soft);
    padding: var(--s-5) var(--s-6);
    margin: var(--s-2) 0;
  }
  .service-callout p {
    font-family: var(--font-display); font-style: italic; font-weight: 400;
    font-size: clamp(18px, 1.6vw, 22px); line-height: 1.4;
    color: var(--ink); margin: 0; max-width: 52ch;
  }
  .service-cta-link {
    font-family: var(--font-body); font-weight: 500; font-size: var(--fs-body);
    color: var(--accent); text-decoration: none;
    display: inline-flex; align-items: center; gap: var(--s-2);
    transition: color var(--t-base) var(--ease); width: fit-content;
  }
  .service-cta-link:hover { color: var(--accent-hover); }
  .service-cta-link svg {
    width: 16px; height: 16px;
    transition: transform var(--t-base) var(--ease);
  }
  .service-cta-link:hover svg { transform: translateX(4px); }
  .service-photo {
    position: sticky; top: 140px;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--paper-3) 0%, var(--paper-2) 100%);
    border: 1px solid var(--rule); overflow: hidden;
    filter: sepia(0.15) saturate(0.9);
    display: flex; align-items: center; justify-content: center;
  }
  .service-photo .ph-label {
    font-family: 'Courier New', monospace;
    font-size: 11px; color: var(--muted);
    text-align: center; line-height: 1.5; max-width: 24ch; padding: var(--s-5);
  }
  @media (max-width: 860px) {
    .service-layout { grid-template-columns: 1fr; }
    .service-photo {
      position: static; aspect-ratio: 16 / 9; order: -1;
    }
  }

  /* ========== Section 8: Hidden Assets (amber) ========== */
  .hidden-assets {
    background: var(--paper);
    padding: var(--s-10) 0;
    border-top: 3px solid #d99a2b;
  }
  .hidden-assets .section-head .display-title em { color: #b97d18; }
  .hidden-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--s-8);
    align-items: start;
  }
  .hidden-prose {
    display: flex; flex-direction: column; gap: var(--s-5);
  }
  .hidden-prose p {
    font-family: var(--font-body); font-size: var(--fs-body);
    line-height: var(--lh-body); color: var(--ink-2);
    margin: 0; max-width: var(--content-measure); text-wrap: pretty;
  }
  .hidden-callout {
    border-left: 2px solid #d99a2b;
    background: rgba(217,154,43,0.08);
    padding: var(--s-5) var(--s-6);
    margin: var(--s-2) 0;
  }
  .hidden-callout p {
    font-family: var(--font-display); font-style: italic; font-weight: 400;
    font-size: clamp(18px, 1.6vw, 22px); line-height: 1.4;
    color: var(--ink); margin: 0; max-width: 54ch;
  }
  .btn-amber {
    background: #c8881a;
    color: #fff;
    border-color: #c8881a;
    width: fit-content;
  }
  .btn-amber:hover { background: #b07414; border-color: #b07414; }
  .hidden-photo {
    position: sticky; top: 140px;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--paper-3) 0%, var(--paper-2) 100%);
    border: 1px solid var(--rule); overflow: hidden;
    filter: sepia(0.15) saturate(0.9);
    display: flex; align-items: center; justify-content: center;
  }
  .hidden-photo .ph-label {
    font-family: 'Courier New', monospace;
    font-size: 11px; color: var(--muted);
    text-align: center; line-height: 1.5; max-width: 24ch; padding: var(--s-5);
  }
  @media (max-width: 860px) {
    .hidden-layout { grid-template-columns: 1fr; }
    .hidden-photo {
      position: static; aspect-ratio: 16 / 9; order: -1;
    }
  }

  /* ========== Section 9: Unequal Shares & Expenditure ========== */
  .shares {
    background: var(--paper-2);
    padding: var(--s-10) 0;
    border-top: 1px solid var(--rule);
  }
  .shares-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-5);
    margin-bottom: var(--s-6);
  }
  .shares-block {
    background: var(--card);
    border: 1px solid var(--rule);
    padding: var(--s-7);
    display: flex; flex-direction: column; gap: var(--s-4);
  }
  .shares-block__label {
    display: inline-flex; width: fit-content;
    font-family: var(--font-body); font-weight: 500;
    font-size: var(--fs-eyebrow); text-transform: uppercase;
    letter-spacing: var(--ls-eyebrow); color: var(--accent);
    background: var(--accent-soft); padding: var(--s-1) var(--s-3);
    border-radius: var(--r-1);
  }
  .shares-block h3 {
    font-family: var(--font-display); font-weight: 400;
    font-size: var(--fs-h4); line-height: var(--lh-heading);
    color: var(--ink); margin: 0;
  }
  .shares-block p {
    font-family: var(--font-body); font-size: 15px;
    line-height: var(--lh-body); color: var(--ink-2);
    margin: 0; text-wrap: pretty;
  }
  .shares-block__example {
    font-family: var(--font-display); font-style: italic; font-weight: 400;
    font-size: 15px; line-height: 1.5; color: var(--ink);
    border-left: 2px solid var(--accent); padding-left: var(--s-4);
    margin: var(--s-1) 0 0;
  }
  .shares-callout {
    background: var(--ink);
    color: var(--paper);
    padding: var(--s-7);
    display: flex; flex-direction: column; gap: var(--s-5);
    align-items: flex-start;
  }
  .shares-callout p {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(20px, 2vw, 26px); line-height: 1.35;
    color: var(--paper); margin: 0; max-width: 64ch;
  }
  .shares-callout .btn-primary {
    background: var(--paper); color: var(--ink); border-color: var(--paper);
  }
  .shares-callout .btn-primary:hover { background: var(--card); }
  @media (max-width: 860px) {
    .shares-blocks { grid-template-columns: 1fr; }
  }

  /* ========== Section 10: Photo Break ========== */
  .photo-break {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    background: var(--gray-900);
  }
  .photo-break__image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    filter: sepia(0.15) saturate(0.9);
    display: flex; align-items: center; justify-content: center;
  }
  .photo-break__image .ph-label {
    font-family: 'Courier New', monospace;
    font-size: 12px; color: var(--gray-500);
    text-align: center; line-height: 1.5;
  }
  .photo-break__quote {
    position: absolute;
    bottom: var(--s-7); right: var(--s-7);
    max-width: 480px;
    background: rgba(16, 24, 40, 0.88);
    backdrop-filter: blur(12px);
    padding: var(--s-6) var(--s-7);
    border-left: 2px solid var(--accent);
  }
  .photo-break__quote blockquote {
    font-family: var(--font-display); font-style: italic; font-weight: 400;
    font-size: clamp(17px, 1.6vw, 22px); line-height: 1.45;
    color: var(--gray-100); margin: 0 0 var(--s-3);
  }
  .photo-break__quote cite {
    font-family: var(--font-body); font-style: normal;
    font-size: var(--fs-meta); color: var(--gray-400);
  }
  @media (max-width: 960px) {
    .photo-break__image { height: 300px; }
    .photo-break__quote {
      position: relative;
      bottom: auto; right: auto;
      max-width: none;
      border-left: none;
      border-top: 2px solid var(--accent);
    }
  }

  /* ========== Section 11: Costs ========== */
  .costs {
    background: var(--paper);
    padding: var(--s-10) 0;
    border-top: 1px solid var(--rule);
  }
  .costs-fixed {
    background: var(--paper-2);
    border: 1px solid var(--rule);
    padding: var(--s-7);
    margin-bottom: var(--s-7);
  }
  .costs-fixed__title {
    font-family: var(--font-display); font-weight: 400;
    font-size: var(--fs-h4); line-height: var(--lh-heading);
    color: var(--ink); margin: 0 0 var(--s-5);
    padding-bottom: var(--s-4); border-bottom: 1px solid var(--rule);
  }
  .costs-fixed__rows {
    display: flex; flex-direction: column; gap: 0;
  }
  .costs-fixed__row {
    display: grid; grid-template-columns: 1fr auto;
    gap: var(--s-5); align-items: baseline;
    padding: var(--s-4) 0; border-bottom: 1px solid var(--rule);
  }
  .costs-fixed__row:last-child { border-bottom: none; }
  .costs-fixed__row-label {
    font-family: var(--font-body); font-size: 15px;
    line-height: var(--lh-body); color: var(--ink-2);
  }
  .costs-fixed__row-label small {
    display: block; font-size: var(--fs-meta); color: var(--muted); margin-top: 2px;
  }
  .costs-fixed__row-value {
    font-family: var(--font-display); font-weight: 400;
    font-size: 22px; color: var(--ink);
    white-space: nowrap; text-align: right;
  }
  .costs-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5); margin-bottom: var(--s-7);
  }
  .costs-card {
    background: var(--card); border: 1px solid var(--rule);
    padding: var(--s-7);
    display: flex; flex-direction: column; gap: var(--s-4);
    position: relative;
  }
  .costs-card--featured { border-color: var(--accent); }
  .costs-card__label {
    display: inline-flex; width: fit-content;
    font-family: var(--font-body); font-weight: 500;
    font-size: var(--fs-eyebrow); text-transform: uppercase;
    letter-spacing: var(--ls-eyebrow); color: var(--accent);
    background: var(--accent-soft); padding: var(--s-1) var(--s-3);
    border-radius: var(--r-1);
  }
  .costs-card h3 {
    font-family: var(--font-display); font-weight: 400;
    font-size: var(--fs-h4); line-height: var(--lh-heading);
    color: var(--ink); margin: 0;
  }
  .costs-card__price {
    font-family: var(--font-display); font-weight: 300;
    font-size: clamp(28px, 3vw, 40px); line-height: 1;
    letter-spacing: var(--ls-tight); color: var(--ink);
  }
  .costs-card__price span {
    font-family: var(--font-body); font-size: var(--fs-meta);
    color: var(--muted); font-weight: 400;
  }
  .costs-card__for {
    font-family: var(--font-body); font-size: 14px;
    line-height: var(--lh-body); color: var(--ink-2);
    margin: 0;
  }
  .costs-card__includes {
    display: flex; flex-direction: column; gap: var(--s-3);
    padding: 0; margin: 0; list-style: none;
    border-top: 1px solid var(--rule); padding-top: var(--s-4);
  }
  .costs-card__includes li {
    display: flex; align-items: flex-start; gap: var(--s-3);
    font-family: var(--font-body); font-size: 14px;
    line-height: var(--lh-body); color: var(--ink-2);
  }
  .costs-card__includes li svg {
    width: 15px; height: 15px; color: var(--accent);
    flex-shrink: 0; margin-top: 3px;
  }
  .costs-footer {
    text-align: center; max-width: 580px; margin: 0 auto;
  }
  .costs-footer p {
    font-family: var(--font-body); font-size: var(--fs-body);
    line-height: var(--lh-body); color: var(--ink-2); margin: 0 0 var(--s-5);
  }
  @media (max-width: 960px) {
    .costs-cards { grid-template-columns: 1fr; }
  }

  /* ========== Section 12: FAQ + sidebar — przeniesione do section-faq.css + section-commons.css (warunkowo) ========== */

  /* ========== Section 13: Testimonials — przeniesione do section-testimonials.css (warunkowo) ========== */

  /* Section: Team — przeniesione do section-team.css (warunkowo) */

  /* Section: Related Services — przeniesione do section-related.css (warunkowo) */
  /* Section: Contact form — przeniesione do section-contact-form.css (warunkowo) */

  /* ========== Fade-in ========== */
  .fade-in {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.6s var(--ease) forwards;
  }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  /* ========== Responsive ========== */
  @media (max-width: 860px) {
    .hero-grid {
      grid-template-columns: 1fr;
    }
  }

/* ============================================================
   DODATEK MOBILNY (≤600px) — jednokolumnowy układ na telefonie.
   Wyłącznie max-width; desktop nietknięty.
   ============================================================ */
@media (max-width: 600px) {
  .routing-cards,
  .costs-cards,
  .testimonials-grid,
  .related-grid { grid-template-columns: 1fr !important; }
  .faq-layout { grid-template-columns: 1fr !important; }
  .cd-sidebar { position: static !important; top: auto !important; }
  .process-photos,
  .service-photo,
  .hidden-photo { display: none !important; }
  .section-head { grid-template-columns: 1fr !important; }
  .mode-row { grid-template-columns: auto 1fr !important; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .cform-field input { min-height: 44px; }
}

/* ============================================================
   DODATEK MOBILNY — POLISH (≤600). Desktop (>600) nietknięty.
   ============================================================ */
@media (max-width: 600px) {
  .hero, .routing, .types, .modes, .process-section, .service, .hidden-assets,
  .shares, .costs, .faq-section, .testimonials, .team, .related,
  .contact-section, .wizard-section { padding-top: var(--s-7); padding-bottom: var(--s-7); }
  /* Kadr: sama wysokość, BEZ aspect-ratio — proporcja + max-height przenosi
     limit wysokości na max-WIDTH (190 × 16/10 = 304px) i kadr zwężał się. */
  .hero-photo__frame { aspect-ratio: auto; height: 190px; max-height: none; min-height: 0; }
  .photo-break__image { height: 200px; min-height: 0; }
  .routing-card, .costs-card, .mode-card, .testimonial-card { padding: var(--s-5); }
}

/* Hero: na telefonie bez wymuszania pełnego ekranu — przylega do treści (koniec pustki) */
@media (max-width: 600px) {
  .hero { min-height: auto; }
}
