/*
 * narrow.bg/project-1 — ASSEMBLED mobile layout.
 * This file is conditionally loaded only for the project-1 page.
 * All rules are mobile-only; desktop remains governed by narrow-custom.css.
 */
@media (max-width: 768px) {
  :root {
    --p1-gutter: 20px;
    --p1-space: 48px;
    --p1-gap: 12px;
    --p1-radius: 12px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .assembled-case,
  .assembled-case *,
  .assembled-case *::before,
  .assembled-case *::after {
    box-sizing: border-box;
  }

  .inside-header {
    padding: 8px var(--p1-gutter) !important;
  }

  .assembled-case {
    width: 100%;
    overflow: hidden;
  }

  .assembled-case .section,
  .assembled-case .ac-task,
  .assembled-case .final-cta-section {
    width: 100%;
    margin: 0 !important;
    padding: var(--p1-space) 0 !important;
  }

  .assembled-case .container,
  .assembled-case .container-wide,
  .assembled-case .final-cta-inner {
    width: 100%;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--p1-gutter) !important;
    padding-left: var(--p1-gutter) !important;
  }

  .assembled-case .section-tag {
    margin-bottom: 14px !important;
    font-size: 0.625rem;
    line-height: 1.3;
    letter-spacing: 0.12em;
  }

  .assembled-case .cs-h2,
  .assembled-case .final-cta-title {
    margin: 0;
    font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
    line-height: 1.08 !important;
    overflow-wrap: anywhere;
  }

  .assembled-case .cs-h3 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .assembled-case .cs-lead-p,
  .assembled-case .cs-p,
  .assembled-case .ac-hero-copy > p {
    font-size: 0.9375rem !important;
    line-height: 1.62 !important;
  }

  .assembled-case .cs-section-head,
  .assembled-case .ac-section-head--flush {
    max-width: none;
    margin-bottom: 28px;
  }

  .assembled-case .cs-section-head .cs-lead-p {
    margin-top: 14px;
  }

  /* Common bounded media/placeholder treatment */
  .assembled-case .ac-placeholder,
  .assembled-case .ac-refined-image-window,
  .assembled-case .ac-task-video-placeholder,
  .assembled-case .ac-refined-performance-preview,
  .assembled-case .ac-refined-qa-image {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
    border: 1px solid rgba(38, 35, 34, 0.14);
    border-radius: var(--p1-radius);
    background: rgba(38, 35, 34, 0.06);
    text-align: center;
  }

  .assembled-case .bg-secondary .ac-placeholder,
  .assembled-case .bg-secondary .ac-task-video-placeholder,
  .assembled-case .bg-secondary .ac-refined-performance-preview {
    border-color: rgba(255, 247, 236, 0.14);
    background: rgba(255, 247, 236, 0.04);
  }

  .assembled-case .ac-placeholder > span,
  .assembled-case .ac-refined-image-window > span,
  .assembled-case .ac-task-video-placeholder > span,
  .assembled-case .ac-refined-performance-preview > span,
  .assembled-case .ac-refined-qa-image > span {
    max-width: 100%;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  .assembled-case .ac-placeholder small,
  .assembled-case .ac-refined-image-window small,
  .assembled-case .ac-task-video-placeholder small,
  .assembled-case .ac-refined-performance-preview small,
  .assembled-case .ac-refined-qa-image small {
    max-width: 24ch;
    margin-top: 6px;
    font-size: 0.625rem;
    line-height: 1.4;
    opacity: 0.62;
  }

  .assembled-case img,
  .assembled-case video,
  .assembled-case iframe {
    display: block;
    max-width: 100%;
    height: auto;
  }

  /* Hero */
  .assembled-case .ac-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0 !important;
    padding: 0 0 var(--p1-space) !important;
  }

  .assembled-case .ac-hero-media {
    width: 100%;
    height: clamp(13rem, 58vw, 16rem) !important;
    min-height: 0 !important;
    border: 0;
    border-radius: 0;
  }

  .assembled-case .ac-hero-copy {
    padding-top: 28px;
  }

  .assembled-case .ac-hero-copy h1 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
    line-height: 1.02;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
  }

  .assembled-case .ac-hero-copy > p {
    max-width: none;
    margin: 16px 0 0;
  }

  .assembled-case .ac-service-line {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
  }

  .assembled-case .ac-service-line span {
    padding: 6px 9px;
    border: 1px solid rgba(255, 247, 236, 0.18);
    border-radius: 999px;
    font-size: 0.5625rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  /* Brand */
  .assembled-case .cs-brand-v2-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
  }

  .assembled-case .cs-brand-v2-copy {
    min-width: 0;
    padding-right: 0;
  }

  .assembled-case .cs-brand-v2-copy .cs-h2 {
    margin-bottom: 18px;
  }

  .assembled-case .cs-brand-v2-facts {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    margin-top: 22px;
  }

  .assembled-case .cs-brand-v2-facts div,
  .assembled-case .cs-brand-v2-facts div + div {
    min-width: 0;
    min-height: 0;
    padding: 12px 8px !important;
    border-top: 0 !important;
    border-left: 1px solid var(--narrow-border) !important;
  }

  .assembled-case .cs-brand-v2-facts div:first-child {
    border-left: 0 !important;
  }

  .assembled-case .cs-brand-v2-facts strong {
    font-size: 1.125rem;
  }

  .assembled-case .cs-brand-v2-facts span {
    max-width: none;
    font-size: 0.5625rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .assembled-case .ac-refined-brand-windows {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--p1-gap) !important;
    margin-top: 0;
  }

  .assembled-case .ac-refined-image-window {
    width: 100%;
    min-height: 0 !important;
    aspect-ratio: 4 / 5;
    padding: 12px;
  }

  .assembled-case .ac-refined-image-window--detail {
    margin-top: 20px;
  }

  /* Task */
  .assembled-case .ac-task {
    display: block;
  }

  .assembled-case .ac-task-statement {
    padding: 0 var(--p1-gutter) 28px !important;
  }

  .assembled-case .ac-task-statement-inner {
    padding: 0 !important;
  }

  .assembled-case .ac-task-statement p {
    margin: 0;
    font-size: clamp(1.15rem, 5.4vw, 1.45rem);
    line-height: 1.45;
  }

  .assembled-case .ac-task-video-placeholder {
    width: auto;
    height: 13rem;
    min-height: 0 !important;
    margin: 0 var(--p1-gutter) !important;
    aspect-ratio: auto;
  }

  /* Concept cards */
  .assembled-case .ac-concept-motion-list {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: var(--p1-gap) !important;
    margin-top: 0;
  }

  .assembled-case .ac-concept-motion-list article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 14px;
    min-width: 0;
    padding: 16px !important;
    border: 1px solid rgba(255, 247, 236, 0.14);
    border-radius: var(--p1-radius);
  }

  .assembled-case .ac-concept-motion-list article > span {
    grid-row: 1 / 3;
    font-size: 0.6875rem;
    color: var(--narrow-accent);
  }

  .assembled-case .ac-concept-motion-list h3,
  .assembled-case .ac-concept-motion-list p {
    margin: 0;
  }

  .assembled-case .ac-concept-motion-list h3 {
    font-size: 1rem;
  }

  .assembled-case .ac-concept-motion-list p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  /* Custom icons: compact 4 × 4 grid */
  .assembled-case .ac-section-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
  }

  .assembled-case .ac-icon-board {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
    margin-top: 24px;
  }

  .assembled-case .ac-icon-board-copy {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .assembled-case .ac-icon-board-copy p {
    max-width: 24ch;
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .assembled-case .ac-icon-board-count {
    flex: 0 0 auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--narrow-accent);
  }

  .assembled-case .ac-icon-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100%;
  }

  .assembled-case .ac-icon-slot {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 !important;
    padding: 8px 4px !important;
    border: 1px solid var(--narrow-border) !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: inherit;
    box-shadow: none !important;
  }

  .assembled-case .ac-icon-slot.is-active {
    border-color: var(--narrow-accent) !important;
    background: rgba(255, 120, 79, 0.08) !important;
  }

  .assembled-case .ac-icon-slot-art {
    display: block;
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px;
    border: 1px solid currentColor;
    border-radius: 50%;
  }

  .assembled-case .ac-icon-slot small {
    max-width: 100%;
    font-size: 0.4375rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
  }

  /* Visual system */
  .assembled-case .ac-system-board,
  .assembled-case .ac-refined-system-board {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: var(--p1-gap) !important;
  }

  .assembled-case .ac-palette {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .assembled-case .ac-swatch {
    display: flex;
    min-width: 0;
    min-height: 7rem !important;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px;
    border-radius: 8px;
  }

  .assembled-case .ac-swatch span {
    font-size: 0.6875rem;
  }

  .assembled-case .ac-swatch small {
    font-size: 0.5rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .assembled-case .ac-type-board,
  .assembled-case .ac-controls-board,
  .assembled-case .ac-refined-system-note {
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--narrow-border);
    border-radius: var(--p1-radius);
  }

  .assembled-case .ac-type-board strong {
    display: block;
    margin: 8px 0;
    font-size: 1.5rem;
  }

  .assembled-case .ac-type-board p,
  .assembled-case .ac-controls-board p,
  .assembled-case .ac-refined-system-note p {
    margin-bottom: 0;
    font-size: 0.75rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .assembled-case .ac-controls-board > div {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
    margin: 12px 0;
  }

  .assembled-case .ac-controls-board button {
    width: 100% !important;
    min-height: 44px;
    margin: 0 !important;
    padding: 10px 12px !important;
    font-size: 0.625rem;
  }

  /* Product UX */
  .assembled-case .ac-product-showcase {
    display: grid !important;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) !important;
    gap: var(--p1-gap) !important;
    margin-top: 24px;
    align-items: stretch;
  }

  .assembled-case .ac-product-showcase .ac-placeholder--desktop,
  .assembled-case .ac-product-showcase .ac-placeholder--mobile {
    width: 100%;
    height: 13rem;
    min-height: 0 !important;
  }

  .assembled-case .ac-marker {
    display: none;
  }

  .assembled-case .ac-annotations {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    margin-top: 16px;
  }

  .assembled-case .ac-annotations > div {
    padding: 12px 0 !important;
    border-top: 1px solid rgba(255, 247, 236, 0.12);
  }

  .assembled-case .ac-annotations p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  /* Admin */
  .assembled-case .ac-admin-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--p1-gap) !important;
    margin-top: 24px;
  }

  .assembled-case .ac-placeholder--admin {
    width: 100%;
    height: 10rem;
    min-height: 0 !important;
    padding: 12px;
  }

  .assembled-case .ac-flow {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
    margin-top: 20px;
  }

  .assembled-case .ac-flow > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--narrow-border);
    border-radius: 8px;
  }

  .assembled-case .ac-flow strong,
  .assembled-case .ac-flow small {
    font-size: 0.6875rem;
  }

  .assembled-case .ac-flow i {
    justify-self: center;
    transform: rotate(90deg);
  }

  /* Decisions */
  .assembled-case .ac-refined-decisions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: var(--p1-gap) !important;
  }

  .assembled-case .ac-refined-decisions > article {
    min-width: 0;
    padding: 16px !important;
    border: 1px solid rgba(255, 247, 236, 0.14);
    border-radius: var(--p1-radius);
  }

  .assembled-case .ac-refined-decision-title {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .assembled-case .ac-refined-decision-icon {
    font-size: 1rem;
    color: var(--narrow-accent);
  }

  .assembled-case .ac-refined-decision-title h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
  }

  .assembled-case .ac-refined-decision-steps {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    margin-top: 12px;
  }

  .assembled-case .ac-refined-decision-steps > div {
    padding: 12px 0 !important;
    border-top: 1px solid rgba(255, 247, 236, 0.1);
  }

  .assembled-case .ac-refined-decision-steps small {
    font-size: 0.5625rem;
    color: var(--narrow-accent);
  }

  .assembled-case .ac-refined-decision-steps p {
    margin: 5px 0 0;
    font-size: 0.75rem;
    line-height: 1.5;
  }

  /* Performance */
  .assembled-case .ac-refined-performance-evidence {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: var(--p1-gap) !important;
  }

  .assembled-case .ac-refined-performance-preview {
    width: 100%;
    height: 13rem;
    min-height: 0 !important;
  }

  .assembled-case .ac-refined-performance-preview > div {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 56px;
    margin-top: 14px;
  }

  .assembled-case .ac-refined-performance-preview i {
    display: block;
    width: 12px;
    background: var(--narrow-accent);
  }

  .assembled-case .ac-refined-performance-preview i:nth-child(1) { height: 35%; }
  .assembled-case .ac-refined-performance-preview i:nth-child(2) { height: 58%; }
  .assembled-case .ac-refined-performance-preview i:nth-child(3) { height: 76%; }
  .assembled-case .ac-refined-performance-preview i:nth-child(4) { height: 100%; }

  .assembled-case .ac-refined-performance-copy {
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--narrow-border);
    border-radius: var(--p1-radius);
  }

  .assembled-case .ac-refined-performance-copy ul {
    margin: 0;
    padding-left: 18px;
  }

  .assembled-case .ac-refined-performance-copy li {
    margin-bottom: 7px;
    font-size: 0.8125rem;
  }

  .assembled-case .ac-refined-performance-copy > div {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--narrow-border);
  }

  .assembled-case .ac-refined-performance-copy strong,
  .assembled-case .ac-refined-performance-copy span {
    display: block;
    font-size: 0.6875rem;
    line-height: 1.45;
  }

  /* Responsive device grid */
  .assembled-case .ac-refined-responsive-shell {
    padding-right: var(--p1-gutter) !important;
    padding-left: var(--p1-gutter) !important;
  }

  .assembled-case .ac-refined-responsive-head {
    margin-bottom: 24px;
  }

  .assembled-case .ac-device-stage {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    align-items: end;
  }

  .assembled-case .ac-device {
    position: static !important;
    width: 100% !important;
    min-width: 0;
    margin: 0 !important;
    transform: none !important;
  }

  .assembled-case .ac-device--desktop {
    grid-column: 1 / -1;
  }

  .assembled-case .ac-device--desktop .ac-placeholder {
    height: 11rem;
    min-height: 0 !important;
  }

  .assembled-case .ac-device--phone .ac-placeholder {
    height: 9rem;
    min-height: 0 !important;
    padding: 6px;
  }

  .assembled-case .ac-device--phone .ac-placeholder span,
  .assembled-case .ac-device--phone .ac-placeholder small {
    font-size: 0.4375rem;
  }

  /* Founder Q&A */
  .assembled-case .ac-refined-qa-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
  }

  .assembled-case .ac-refined-qa-image {
    width: 100%;
    height: 12rem;
    min-height: 0 !important;
  }

  .assembled-case .ac-refined-qa-list {
    margin-top: 24px;
    border-top: 1px solid var(--narrow-border);
  }

  .assembled-case .ac-refined-qa-list details {
    margin: 0;
    padding: 0 !important;
    border-bottom: 1px solid var(--narrow-border);
  }

  .assembled-case .ac-refined-qa-list summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 56px;
    padding: 14px 0 !important;
    font-size: 0.875rem !important;
    line-height: 1.45 !important;
    cursor: pointer;
  }

  .assembled-case .ac-refined-qa-list summary i {
    width: 24px;
    height: 24px;
  }

  .assembled-case .ac-refined-qa-list details > div {
    padding: 0 0 16px !important;
  }

  .assembled-case .ac-refined-qa-list p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  /* Results scope: balanced 2-column grid */
  .assembled-case .ac-scope-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--p1-gap) !important;
    margin-top: 24px;
  }

  .assembled-case .ac-scope-grid article {
    display: flex;
    min-width: 0;
    min-height: 7rem;
    align-items: flex-end;
    padding: 14px !important;
    border: 1px solid rgba(255, 247, 236, 0.14);
    border-radius: var(--p1-radius);
  }

  .assembled-case .ac-scope-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 5rem;
  }

  .assembled-case .ac-scope-grid h3 {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.35;
  }

  /* Final CTA */
  .assembled-case .final-cta-section {
    padding: 0 !important;
  }

  .assembled-case .final-cta-inner {
    padding-top: var(--p1-space) !important;
    padding-bottom: var(--p1-space) !important;
  }

  .assembled-case .final-cta-sub {
    margin: 16px 0 24px;
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .assembled-case .final-cta-buttons {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .assembled-case .final-cta-buttons .btn {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  /* Final refinements for the Project-1 mobile presentation */
  .assembled-case .ac-icon-grid {
    grid-auto-rows: 62px !important;
    gap: 7px !important;
  }

  .assembled-case .ac-icon-slot {
    height: 62px !important;
    min-height: 62px !important;
    max-height: 62px !important;
    aspect-ratio: auto !important;
    gap: 4px;
    padding: 5px 2px !important;
  }

  .assembled-case .ac-icon-slot-art {
    width: 20px !important;
    height: 20px !important;
    flex: 0 0 20px !important;
  }

  .assembled-case .ac-icon-slot small {
    font-size: 0.375rem;
    line-height: 1;
  }

  .assembled-case .ac-swatch {
    min-height: 6.75rem !important;
    border: 1px solid rgba(27, 24, 22, 0.14);
    box-shadow: none !important;
  }

  .assembled-case .ac-swatch--assembled-ink {
    background: #1b1816 !important;
    color: #fffdfa !important;
  }

  .assembled-case .ac-swatch--assembled-beige {
    background: #c9a792 !important;
    color: #1b1816 !important;
  }

  .assembled-case .ac-swatch--assembled-paper {
    background: #fffdfa !important;
    color: #1b1816 !important;
    border-color: rgba(27, 24, 22, 0.22) !important;
  }

  .assembled-case .ac-swatch--assembled-ink span,
  .assembled-case .ac-swatch--assembled-ink small,
  .assembled-case .ac-swatch--assembled-beige span,
  .assembled-case .ac-swatch--assembled-beige small,
  .assembled-case .ac-swatch--assembled-paper span,
  .assembled-case .ac-swatch--assembled-paper small {
    color: inherit !important;
    opacity: 1;
  }

  .assembled-case .ac-type-board strong,
  .assembled-case .ac-type-board p {
    font-family: "Manrope", sans-serif !important;
  }

  .assembled-case .ac-type-board strong {
    font-weight: 700 !important;
    letter-spacing: -0.045em;
  }

  .assembled-case .ac-admin-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  .assembled-case .ac-placeholder--admin {
    height: clamp(13rem, 82vw, 20rem) !important;
    min-height: 0 !important;
    padding: 18px;
  }

  .assembled-case .ac-placeholder--admin img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
  }

  .assembled-case .ac-refined-decisions {
    gap: 18px !important;
  }

  .assembled-case .ac-refined-decisions > article {
    padding: 18px !important;
    background: rgba(255, 247, 236, 0.035);
  }

  .assembled-case .ac-refined-decision-title {
    gap: 12px;
  }

  .assembled-case .ac-refined-decision-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(201, 167, 146, 0.55);
    border-radius: 50%;
    font-size: 0.875rem;
  }

  .assembled-case .ac-refined-decision-steps {
    gap: 8px !important;
    margin-top: 16px;
    counter-reset: ac-decision-step;
  }

  .assembled-case .ac-refined-decision-steps > div {
    position: relative;
    display: block;
    padding: 13px 14px !important;
    border: 1px solid rgba(255, 247, 236, 0.12);
    border-left: 2px solid #c9a792;
    border-radius: 8px;
    background: rgba(255, 247, 236, 0.045);
    counter-increment: ac-decision-step;
  }

  .assembled-case .ac-refined-decision-steps small {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c9a792 !important;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .assembled-case .ac-refined-decision-steps small::before {
    content: "0" counter(ac-decision-step);
    color: rgba(255, 247, 236, 0.62);
    font-size: 0.5rem;
  }

  .assembled-case .ac-refined-decision-steps p {
    margin: 7px 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  .assembled-case .ac-scope-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
    counter-reset: ac-result;
  }

  .assembled-case .ac-scope-grid article,
  .assembled-case .ac-scope-grid article:last-child {
    display: grid !important;
    grid-column: auto;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    align-items: center;
    min-height: 0;
    padding: 16px 14px !important;
    border: 1px solid rgba(255, 247, 236, 0.16);
    border-left: 2px solid #c9a792;
    border-radius: 8px;
    background: rgba(255, 247, 236, 0.045);
    counter-increment: ac-result;
  }

  .assembled-case .ac-scope-grid article::before {
    content: "0" counter(ac-result);
    color: #c9a792;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .assembled-case .ac-scope-grid h3 {
    font-size: 0.9375rem;
    line-height: 1.35;
  }

  /* Live Project-1 mobile system — aligned with Home, Projects and Services */
  :root {
    --p1-gutter: 30px;
    --p1-space: 40px;
  }

  .assembled-case .section,
  .assembled-case .ac-task {
    padding-top: var(--p1-space) !important;
    padding-bottom: var(--p1-space) !important;
  }

  .assembled-case .section-tag {
    display: inline-flex;
    margin: 0 0 24px !important;
    font-size: 0.6875rem !important;
    line-height: 1.3 !important;
  }

  .assembled-case .cs-h2,
  .assembled-case .final-cta-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
    line-height: 1.12 !important;
  }

  .assembled-case .cs-lead-p,
  .assembled-case .cs-p,
  .assembled-case .ac-hero-copy > p {
    font-size: 0.9375rem !important;
    line-height: 1.7 !important;
  }

  .assembled-case .cs-section-head,
  .assembled-case .ac-section-head--flush {
    margin-bottom: 32px !important;
  }

  .assembled-case .ac-section-grid {
    gap: 0 !important;
  }

  .assembled-case .section-tag + .cs-h2,
  .assembled-case .section-tag + h2 {
    margin-top: 0 !important;
  }

  .assembled-case .cs-h2 + .cs-lead-p,
  .assembled-case .cs-h2 + .cs-p,
  .assembled-case .ac-section-grid > .cs-lead-p,
  .assembled-case .cs-section-head > .cs-lead-p,
  .assembled-case .ac-refined-responsive-head > .cs-lead-p {
    margin: 18px 0 0 !important;
  }

  .assembled-case .cs-brand-v2-copy .cs-lead-p + .cs-p {
    margin: 16px 0 0 !important;
  }

  /* Task — editorial brief first, cinematic media second */
  .assembled-case .ac-task {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .assembled-case .ac-task > .container {
    display: flex !important;
    flex-direction: column;
  }

  .assembled-case .ac-task-statement,
  .assembled-case .ac-task-brief {
    order: 1;
    padding: 0 !important;
  }

  .assembled-case .ac-task-question .section-tag {
    margin-bottom: 20px !important;
  }

  .assembled-case .ac-task-question h2 {
    max-width: 13ch;
    margin: 0 !important;
    color: var(--narrow-text-light);
    font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
    font-weight: 700;
    line-height: 1.12 !important;
    letter-spacing: -0.035em;
  }

  .assembled-case .ac-task-answer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 247, 236, 0.16);
  }

  .assembled-case .ac-task-answer > small {
    display: block;
    margin-bottom: 10px;
    color: #c9a792;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.11em;
  }

  .assembled-case .ac-task-answer > p {
    max-width: 34ch;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: none !important;
    color: rgba(255, 247, 236, 0.78);
    font-size: 0.9375rem !important;
    font-weight: 400;
    line-height: 1.72 !important;
  }

  .assembled-case .ac-task-balance {
    display: grid;
    grid-template-columns: auto minmax(32px, 1fr) auto;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
    color: rgba(255, 247, 236, 0.56);
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .assembled-case .ac-task-balance i {
    display: block;
    height: 1px;
    background: linear-gradient(90deg, #c9a792, rgba(201, 167, 146, 0.18));
  }

  .assembled-case .ac-task-video {
    order: 2;
    width: 100%;
    margin-top: 36px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 247, 236, 0.14);
    border-radius: 12px;
    background: #1b1816;
  }

  .assembled-case .ac-task-project-video {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
  }

  /* Current production motion cards */
  .assembled-case .ac-motion-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .assembled-case .ac-motion-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 247, 236, 0.14);
    border-radius: 12px;
  }

  .assembled-case .ac-motion-video {
    width: 92px;
    height: 112px !important;
    object-fit: cover;
  }

  .assembled-case .ac-motion-card > div {
    padding: 14px 14px 14px 0;
  }

  .assembled-case .ac-motion-card h3 {
    margin: 0 0 6px;
    font-size: 0.9375rem;
    line-height: 1.35;
  }

  .assembled-case .ac-motion-card p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  /* Icons — four calm columns with explicitly bounded artwork */
  .assembled-case .ac-icon-board--manual {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    margin-top: 30px;
  }

  .assembled-case .ac-icon-group {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    aspect-ratio: auto !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0 !important;
    padding: 8px 4px !important;
    overflow: hidden;
    border: 1px solid rgba(38, 35, 34, 0.12) !important;
    border-radius: 9px !important;
    background: rgba(38, 35, 34, 0.025) !important;
    box-shadow: none !important;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot img {
    display: block !important;
    width: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    height: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    margin: 0 !important;
    object-fit: contain;
    transform: none !important;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot figcaption {
    width: 100%;
    margin: 0;
    overflow: hidden;
    color: var(--narrow-text-secondary);
    font-size: 0.5rem;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo {
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    border-color: rgba(201, 167, 146, 0.42) !important;
    background: rgba(201, 167, 146, 0.08) !important;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo img {
    width: 84px !important;
    min-width: 0 !important;
    max-width: 84px !important;
    height: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--spacer {
    display: none !important;
  }

  /* Key decisions — focus, challenge and solution are separate reading levels */
  .assembled-case .ac-decision-map {
    display: block !important;
    margin-top: 0;
    counter-reset: ac-mobile-focus;
    border-bottom: 1px solid rgba(255, 247, 236, 0.14);
  }

  .assembled-case .ac-decision-map-head {
    display: none !important;
  }

  .assembled-case .ac-decision-map > article {
    display: block !important;
    margin: 0;
    padding: 26px 0 !important;
    border: 0 !important;
    border-top: 1px solid rgba(255, 247, 236, 0.14) !important;
    border-radius: 0 !important;
    background: transparent !important;
    counter-increment: ac-mobile-focus;
  }

  .assembled-case .ac-decision-map > article > h3 {
    margin: 0 !important;
    color: var(--narrow-text-light);
    font-size: 1.125rem !important;
    line-height: 1.35 !important;
  }

  .assembled-case .ac-decision-map > article > h3::before {
    display: block;
    margin-bottom: 9px;
    color: #c9a792;
    content: "ФОКУС / 0" counter(ac-mobile-focus);
    font-size: 0.5625rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.11em;
  }

  .assembled-case .ac-decision-map > article > p {
    position: relative;
    margin: 18px 0 0 !important;
    padding: 0 0 0 18px !important;
    border-left: 2px solid rgba(255, 247, 236, 0.18);
    color: rgba(255, 247, 236, 0.7);
    font-size: 0.875rem !important;
    line-height: 1.68 !important;
  }

  .assembled-case .ac-decision-map > article > p::before {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 247, 236, 0.46);
    content: "ПРЕДИЗВИКАТЕЛСТВО";
    font-size: 0.5625rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.09em;
  }

  .assembled-case .ac-decision-map > article > p:last-child {
    margin-top: 14px !important;
    padding: 14px 14px 14px 16px !important;
    border-left-color: #c9a792;
    background: rgba(201, 167, 146, 0.08);
    color: rgba(255, 247, 236, 0.88);
  }

  .assembled-case .ac-decision-map > article > p:last-child::before {
    color: #c9a792;
    content: "РЕШЕНИЕ";
  }

  .assembled-case .ac-decision-map > article > i {
    display: none !important;
  }

  /* Results — one composed outcome panel with a compact deliverables matrix */
  .assembled-case .ac-results-board {
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 247, 236, 0.16);
    border-radius: 14px;
    background: rgba(255, 247, 236, 0.04);
  }

  .assembled-case .ac-result-feature {
    padding: 24px 20px !important;
    background: #c9a792;
    color: #1b1816;
  }

  .assembled-case .ac-result-feature > span {
    display: block;
    margin-bottom: 18px;
    font-size: 0.5625rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.11em;
  }

  .assembled-case .ac-result-feature h3 {
    margin: 0;
    color: inherit;
    font-size: clamp(1.45rem, 6.5vw, 1.8rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .assembled-case .ac-result-feature p {
    margin: 16px 0 0;
    color: rgba(27, 24, 22, 0.76);
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .assembled-case .ac-result-feature a {
    display: inline-flex;
    margin-top: 20px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(27, 24, 22, 0.4);
    color: #1b1816;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
  }

  .assembled-case .ac-result-deliverables {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1px !important;
    background: rgba(255, 247, 236, 0.14);
  }

  .assembled-case .ac-result-deliverables > article {
    display: flex;
    min-width: 0;
    min-height: 126px;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 13px !important;
    background: #1b1816;
  }

  .assembled-case .ac-result-deliverables > article > span {
    color: #c9a792;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
  }

  .assembled-case .ac-result-deliverables h3 {
    margin: 0;
    color: var(--narrow-text-light);
    font-size: 0.875rem;
    line-height: 1.35;
  }

  .assembled-case .ac-result-deliverables p {
    margin: 6px 0 0;
    color: rgba(255, 247, 236, 0.5);
    font-size: 0.6875rem;
    line-height: 1.5;
  }

  /* Narrow visual language and clearer production content */
  .assembled-case .ac-task-answer > small,
  .assembled-case .ac-decision-map > article > h3::before,
  .assembled-case .ac-decision-map > article > p:last-child::before {
    color: var(--narrow-accent, #ff784f) !important;
  }

  .assembled-case .ac-task-balance i {
    background: linear-gradient(90deg, var(--narrow-accent, #ff784f), rgba(255, 120, 79, 0.14));
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo {
    border-color: rgba(255, 120, 79, 0.42) !important;
    background: rgba(255, 120, 79, 0.07) !important;
  }

  .assembled-case .ac-decision-map > article > p:last-child {
    border-left-color: var(--narrow-accent, #ff784f);
    background: rgba(255, 120, 79, 0.07);
  }

  /* Product UX — numbered decisions instead of abstract symbols */
  .assembled-case .ac-annotations {
    display: block !important;
    margin-top: 28px;
    border-top: 1px solid rgba(255, 247, 236, 0.16);
    counter-reset: ac-product-note;
  }

  .assembled-case .ac-annotations > article {
    display: grid !important;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin: 0;
    padding: 18px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 247, 236, 0.16) !important;
    border-radius: 0 !important;
    background: transparent !important;
    counter-increment: ac-product-note;
  }

  .assembled-case .ac-annotations > article::before {
    grid-column: 1;
    color: var(--narrow-accent, #ff784f);
    content: "0" counter(ac-product-note);
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }

  .assembled-case .ac-annotations > article > span {
    display: none !important;
  }

  .assembled-case .ac-annotations > article > div {
    grid-column: 2;
    min-width: 0;
  }

  .assembled-case .ac-annotations small {
    display: block;
    margin: 0 0 7px;
    color: var(--narrow-text-light);
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.06em;
  }

  .assembled-case .ac-annotations p {
    margin: 0 !important;
    color: rgba(255, 247, 236, 0.62);
    font-size: 0.875rem !important;
    line-height: 1.65 !important;
  }

  /* Admin screenshots already explain the workflow; remove the repeated three-box diagram */
  .assembled-case .ac-flow {
    display: none !important;
  }

  .assembled-case .ac-admin-grid {
    margin-top: 28px;
  }

  .assembled-case .ac-admin-media {
    width: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--narrow-border);
    border-radius: 12px;
    background: rgba(38, 35, 34, 0.04);
  }

  .assembled-case .ac-admin-media img {
    display: block;
    width: 100%;
    height: auto !important;
  }

  /* Interview — editorial opening, without a detached "start" badge */
  .assembled-case .ac-interview-story {
    margin-top: 30px;
    border-top: 1px solid var(--narrow-border);
  }

  .assembled-case .ac-interview-opening {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 0 12px;
    padding: 24px 0;
    border-bottom: 1px solid var(--narrow-border);
    counter-reset: none;
  }

  .assembled-case .ac-interview-opening::before {
    grid-column: 1;
    grid-row: 1 / 3;
    color: var(--narrow-accent, #ff784f);
    content: "01";
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }

  .assembled-case .ac-interview-opening > span {
    display: none !important;
  }

  .assembled-case .ac-interview-opening h3 {
    grid-column: 2;
    margin: 0;
    color: var(--narrow-text-primary);
    font-size: 1.0625rem;
    line-height: 1.4;
  }

  .assembled-case .ac-interview-opening p {
    grid-column: 2;
    margin: 10px 0 0;
    color: var(--narrow-text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .assembled-case .ac-interview-more {
    margin: 0;
    border-bottom: 1px solid var(--narrow-border);
  }

  .assembled-case .ac-interview-more summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 58px;
    padding: 16px 0;
    color: var(--narrow-text-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    list-style: none;
  }

  .assembled-case .ac-interview-more summary::-webkit-details-marker {
    display: none;
  }

  .assembled-case .ac-interview-more summary i {
    color: var(--narrow-accent, #ff784f);
    font-style: normal;
  }

  .assembled-case .ac-interview-more:not([open]) .is-open,
  .assembled-case .ac-interview-more[open] .is-closed {
    display: none;
  }

  .assembled-case .ac-interview-more-body article {
    padding: 20px 0;
    border-top: 1px solid var(--narrow-border);
  }

  .assembled-case .ac-interview-more-body h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.45;
  }

  .assembled-case .ac-interview-more-body p {
    margin: 9px 0 0;
    color: var(--narrow-text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
  }

  /* Results — Narrow orange feature and slash/title on the same line */
  .assembled-case .ac-result-feature {
    background: var(--narrow-accent, #ff784f);
    color: var(--narrow-text-primary);
  }

  .assembled-case .ac-result-feature > p {
    font-size: 0 !important;
    line-height: 0 !important;
  }

  .assembled-case .ac-result-feature > p::before {
    display: block;
    color: rgba(38, 35, 34, 0.76);
    content: "От първото движение до управлението на продуктите. Всяка част работи като елемент от една система.";
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .assembled-case .ac-result-deliverables > article {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 0 8px;
    align-content: start;
    min-height: 126px;
  }

  .assembled-case .ac-result-deliverables > article > span {
    grid-column: 1;
    align-self: start;
    color: var(--narrow-accent, #ff784f);
    line-height: 1.35;
  }

  .assembled-case .ac-result-deliverables > article > div {
    grid-column: 2;
    min-width: 0;
  }

  .assembled-case .ac-result-deliverables h3 {
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (max-width: 768px) and (hover: none) {
  .assembled-case button:hover,
  .assembled-case .btn:hover {
    transform: none;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .assembled-case *,
  .assembled-case *::before,
  .assembled-case *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Project-1 desktop layout — scoped to the live ASSEMBLED markup. */
@media (min-width: 769px) {
  .assembled-case {
    --p1-desktop-gutter: clamp(2rem, 5vw, 5rem);
    --p1-desktop-space: clamp(5rem, 9vw, 8.5rem);
    --p1-desktop-gap: clamp(1.5rem, 3vw, 3.5rem);
    overflow: hidden;
  }

  .assembled-case,
  .assembled-case *,
  .assembled-case *::before,
  .assembled-case *::after {
    box-sizing: border-box;
  }

  .assembled-case img,
  .assembled-case video {
    display: block;
    max-width: 100%;
  }

  .assembled-case .container,
  .assembled-case .container-wide,
  .assembled-case .final-cta-inner {
    width: min(calc(100% - (var(--p1-desktop-gutter) * 2)), 80rem);
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
  }

  .assembled-case .section,
  .assembled-case .ac-task {
    width: 100%;
    margin: 0;
    padding: var(--p1-desktop-space) 0;
  }

  .assembled-case .section-tag {
    display: inline-flex;
    margin: 0 0 1.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.1em;
  }

  .assembled-case .cs-h2,
  .assembled-case .final-cta-title {
    margin: 0;
    font-size: clamp(2.75rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .assembled-case .cs-lead-p,
  .assembled-case .cs-p,
  .assembled-case .ac-hero-copy > p {
    max-width: 43rem;
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.72;
  }

  .assembled-case .cs-section-head {
    max-width: 48rem;
    margin: 0 0 clamp(2.5rem, 5vw, 4.5rem);
  }

  .assembled-case .cs-section-head .cs-lead-p,
  .assembled-case .cs-h2 + .cs-lead-p,
  .assembled-case .cs-h2 + .cs-p {
    margin-top: 1.5rem;
  }

  .assembled-case .ac-section-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
    gap: var(--p1-desktop-gap);
    align-items: end;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  }

  .assembled-case .ac-section-grid > .cs-lead-p {
    justify-self: end;
    max-width: 29rem;
  }

  /* Hero */
  .assembled-case .ac-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(27rem, 0.9fr);
    min-height: min(48rem, 85vh);
    padding: 0 !important;
  }

  .assembled-case .ac-hero-media {
    min-height: min(48rem, 85vh);
    overflow: hidden;
  }

  .assembled-case .ac-hero-media img,
  .assembled-case .ac-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .assembled-case .ac-hero-copy {
    display: flex;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: clamp(4rem, 8vw, 8rem) var(--p1-desktop-gutter);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .assembled-case .ac-hero-copy h1 {
    max-width: 11ch;
    margin: 0;
    font-size: clamp(3.25rem, 5.5vw, 6rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .assembled-case .ac-hero-copy > p { margin-top: 1.75rem; }

  .assembled-case .ac-service-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .assembled-case .ac-service-line span {
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255, 247, 236, 0.2);
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
  }

  /* Brand */
  .assembled-case .cs-brand-v2-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
  }

  .assembled-case .cs-brand-v2-copy { min-width: 0; padding: 0; }
  .assembled-case .cs-brand-v2-copy .cs-h2 { margin-bottom: 1.5rem; }
  .assembled-case .cs-brand-v2-copy .cs-p { margin-top: 1rem; }

  .assembled-case .cs-brand-v2-facts {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 3rem;
    border-top: 1px solid var(--narrow-border);
  }

  .assembled-case .cs-brand-v2-facts div {
    min-width: 0;
    padding: 1rem 1rem 0 0;
    border-right: 1px solid var(--narrow-border);
  }

  .assembled-case .cs-brand-v2-facts div + div { padding-left: 1rem; }
  .assembled-case .cs-brand-v2-facts div:last-child { border-right: 0; }
  .assembled-case .cs-brand-v2-facts strong,
  .assembled-case .cs-brand-v2-facts span { display: block; }
  .assembled-case .cs-brand-v2-facts strong { font-size: 0.875rem; }
  .assembled-case .cs-brand-v2-facts span {
    margin-top: 0.4rem;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--narrow-text-secondary);
  }

  .assembled-case .ac-refined-brand-windows {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
  }

  .assembled-case .ac-refined-image-window {
    display: flex;
    min-height: 22rem;
    padding: 1.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--narrow-border);
    border-radius: 14px;
    background: rgba(38, 35, 34, 0.04);
    text-align: center;
  }

  .assembled-case .ac-refined-image-window--detail { margin-top: 4rem; }

  /* Task */
  .assembled-case .ac-task > .container {
    display: grid !important;
    grid-template-columns: minmax(0, 0.88fr) minmax(30rem, 1.12fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
  }

  .assembled-case .ac-task-statement,
  .assembled-case .ac-task-brief { min-width: 0; }

  .assembled-case .ac-task-question h2 {
    max-width: 11ch;
    margin: 0;
    color: var(--narrow-text-light);
    font-size: clamp(2.5rem, 4.4vw, 4.5rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .assembled-case .ac-task-answer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 247, 236, 0.18);
  }

  .assembled-case .ac-task-answer > small {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--narrow-accent);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .assembled-case .ac-task-answer > p {
    max-width: 33rem;
    margin: 0;
    color: rgba(255, 247, 236, 0.72);
    font-size: 1rem;
    line-height: 1.75;
  }

  .assembled-case .ac-task-balance {
    display: grid;
    grid-template-columns: auto minmax(4rem, 1fr) auto;
    gap: 1rem;
    align-items: center;
    margin-top: 1.75rem;
    color: rgba(255, 247, 236, 0.55);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .assembled-case .ac-task-balance i {
    height: 1px;
    background: linear-gradient(90deg, var(--narrow-accent), rgba(255, 120, 79, 0.12));
  }

  .assembled-case .ac-task-video {
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255, 247, 236, 0.14);
    border-radius: 14px;
    background: #1b1816;
  }

  .assembled-case .ac-task-project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Motion */
  .assembled-case .ac-motion-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .assembled-case .ac-motion-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 247, 236, 0.14);
    border-radius: 14px;
    background: rgba(255, 247, 236, 0.03);
  }

  .assembled-case .ac-motion-video {
    width: 100%;
    aspect-ratio: 452 / 620;
    object-fit: cover;
  }

  .assembled-case .ac-motion-card > div { padding: 1.25rem 1.35rem 1.5rem; }
  .assembled-case .ac-motion-card h3,
  .assembled-case .ac-motion-card p { margin: 0; }
  .assembled-case .ac-motion-card h3 { font-size: 1.125rem; line-height: 1.3; }
  .assembled-case .ac-motion-card p {
    margin-top: 0.5rem;
    color: rgba(255, 247, 236, 0.62);
    font-size: 0.875rem;
    line-height: 1.6;
  }


  /* Icon system */
  .assembled-case .ac-icon-board--manual {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.5fr) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    align-items: center;
    margin-top: clamp(2.5rem, 5vw, 4rem);
  }

  .assembled-case .ac-icon-group {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot {
    display: flex !important;
    min-width: 0;
    min-height: 8rem;
    margin: 0;
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    overflow: hidden;
    border: 1px solid var(--narrow-border);
    border-radius: 10px;
    background: rgba(38, 35, 34, 0.025);
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot img {
    display: block;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot figcaption {
    max-width: 100%;
    overflow: hidden;
    color: var(--narrow-text-secondary);
    font-size: 0.5625rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo {
    display: flex;
    min-height: 15rem;
    padding: 2rem;
    border-color: rgba(255, 120, 79, 0.36);
    background: rgba(255, 120, 79, 0.06);
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo img {
    width: min(100%, 12rem);
    height: auto;
    max-height: 3rem;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--spacer { display: none; }

  /* Visual system */
  .assembled-case .ac-system-board,
  .assembled-case .ac-refined-system-board {
    display: grid !important;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 1rem;
  }

  .assembled-case .ac-palette {
    display: grid !important;
    grid-column: span 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .assembled-case .ac-swatch {
    display: flex;
    min-height: 16rem;
    padding: 1.25rem;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(38, 35, 34, 0.14);
    border-radius: 12px;
  }

  .assembled-case .ac-swatch--assembled-ink { background: #1b1816; color: #fffdfa; }
  .assembled-case .ac-swatch--assembled-beige { background: #c9a792; color: #1b1816; }
  .assembled-case .ac-swatch--assembled-paper { background: #fffdfa; color: #1b1816; }
  .assembled-case .ac-swatch span,
  .assembled-case .ac-swatch small { color: inherit; }
  .assembled-case .ac-swatch span { font-size: 0.875rem; font-weight: 700; }
  .assembled-case .ac-swatch small { margin-top: 0.35rem; font-size: 0.6875rem; line-height: 1.45; }

  .assembled-case .ac-type-board,
  .assembled-case .ac-controls-board,
  .assembled-case .ac-refined-system-note {
    min-width: 0;
    padding: 1.5rem;
    border: 1px solid var(--narrow-border);
    border-radius: 12px;
  }

  .assembled-case .ac-type-board { grid-row: span 2; }
  .assembled-case .ac-type-board strong {
    display: block;
    margin: 1rem 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -0.06em;
  }

  .assembled-case .ac-type-board p,
  .assembled-case .ac-controls-board p,
  .assembled-case .ac-refined-system-note p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  .assembled-case .ac-controls-board > div {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
  }

  .assembled-case .ac-controls-board button {
    padding: 0.75rem 1rem;
    border: 1px solid #1b1816;
    border-radius: 0;
    background: #1b1816;
    color: #fffdfa;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .assembled-case .ac-controls-board button.is-outline { background: transparent; color: #1b1816; }

  /* Product experience and admin */
  .assembled-case .ac-product-showcase {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.34fr);
    gap: 1rem;
    align-items: start;
  }

  .assembled-case .ac-product-media,
  .assembled-case .ac-admin-media {
    display: block;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 247, 236, 0.16);
    border-radius: 14px;
    background: rgba(255, 247, 236, 0.04);
  }

  .assembled-case .ac-product-media--desktop { aspect-ratio: 16 / 10; }
  .assembled-case .ac-product-media--mobile { aspect-ratio: 9 / 16; }

  .assembled-case .ac-product-media img,
  .assembled-case .ac-admin-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .assembled-case .ac-annotations {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .assembled-case .ac-annotations > article {
    display: grid;
    grid-template-columns: 1.75rem minmax(0, 1fr);
    gap: 0.75rem;
    min-width: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 247, 236, 0.16);
  }

  .assembled-case .ac-annotations > article > span { color: var(--narrow-accent); }
  .assembled-case .ac-annotations small {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
  }
  .assembled-case .ac-annotations p { margin: 0; color: rgba(255, 247, 236, 0.62); font-size: 0.8125rem; line-height: 1.6; }

  .assembled-case .ac-admin-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 0;
  }

  .assembled-case .ac-admin-media {
    border-color: var(--narrow-border);
    background: rgba(38, 35, 34, 0.04);
  }

  .assembled-case .ac-admin-media img { height: auto; object-fit: contain; }
  .assembled-case .ac-flow { display: none; }

  /* Key decisions */
  .assembled-case .ac-decision-map {
    margin-top: 0;
    border-top: 1px solid rgba(255, 247, 236, 0.16);
    border-bottom: 1px solid rgba(255, 247, 236, 0.16);
  }

  .assembled-case .ac-decision-map-head,
  .assembled-case .ac-decision-map > article {
    display: grid !important;
    grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1fr) 2rem minmax(0, 1fr);
    gap: 1.5rem;
  }

  .assembled-case .ac-decision-map-head {
    padding: 0.85rem 0;
    color: rgba(255, 247, 236, 0.42);
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.09em;
  }

  .assembled-case .ac-decision-map > article {
    align-items: start;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 247, 236, 0.14);
  }

  .assembled-case .ac-decision-map > article h3,
  .assembled-case .ac-decision-map > article p { margin: 0; }
  .assembled-case .ac-decision-map > article h3 { font-size: 1.125rem; line-height: 1.35; }
  .assembled-case .ac-decision-map > article p { color: rgba(255, 247, 236, 0.66); font-size: 0.875rem; line-height: 1.65; }
  .assembled-case .ac-decision-map > article i { color: var(--narrow-accent); font-style: normal; text-align: center; }


  /* Performance */
  .assembled-case .ac-refined-performance-evidence {
    display: grid !important;
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
    gap: var(--p1-desktop-gap);
    align-items: stretch;
  }

  .assembled-case .ac-refined-performance-preview {
    display: flex;
    min-height: 25rem;
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--narrow-border);
    border-radius: 14px;
    background: rgba(38, 35, 34, 0.04);
    text-align: center;
  }

  .assembled-case .ac-refined-performance-preview > div {
    display: flex;
    height: 9rem;
    gap: 0.75rem;
    align-items: end;
    margin: 2rem 0;
  }

  .assembled-case .ac-refined-performance-preview i {
    display: block;
    width: 1.5rem;
    background: var(--narrow-accent);
  }
  .assembled-case .ac-refined-performance-preview i:nth-child(1) { height: 36%; }
  .assembled-case .ac-refined-performance-preview i:nth-child(2) { height: 58%; }
  .assembled-case .ac-refined-performance-preview i:nth-child(3) { height: 76%; }
  .assembled-case .ac-refined-performance-preview i:nth-child(4) { height: 100%; }

  .assembled-case .ac-refined-performance-copy {
    align-self: stretch;
    padding: clamp(2rem, 4vw, 4rem);
    border: 1px solid var(--narrow-border);
    border-radius: 14px;
  }

  .assembled-case .ac-refined-performance-copy ul { margin: 0; padding-left: 1.25rem; }
  .assembled-case .ac-refined-performance-copy li { margin-bottom: 0.8rem; font-size: 1rem; line-height: 1.5; }
  .assembled-case .ac-refined-performance-copy > div {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--narrow-border);
  }
  .assembled-case .ac-refined-performance-copy strong,
  .assembled-case .ac-refined-performance-copy span { display: block; }
  .assembled-case .ac-refined-performance-copy span { margin-top: 0.4rem; color: var(--narrow-text-secondary); font-size: 0.8125rem; line-height: 1.5; }

  /* Responsive evidence */
  .assembled-case .ac-refined-responsive-shell { width: min(calc(100% - (var(--p1-desktop-gutter) * 2)), 80rem); }
  .assembled-case .ac-refined-responsive-head { max-width: 42rem; margin-bottom: 3rem; }
  .assembled-case .ac-refined-responsive-head .cs-lead-p { margin-top: 1.5rem; }

  .assembled-case .ac-device-stage {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: end;
  }

  .assembled-case .ac-device { min-width: 0; }
  .assembled-case .ac-device--desktop { grid-column: 1 / span 8; }
  .assembled-case .ac-device--phone-a { grid-column: 9 / span 2; }
  .assembled-case .ac-device--phone-b { grid-column: 11 / span 2; }
  .assembled-case .ac-device--phone-c { grid-column: 9 / span 2; }

  .assembled-case .ac-device .ac-placeholder {
    display: flex;
    min-height: 0;
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 247, 236, 0.15);
    border-radius: 12px;
    background: rgba(255, 247, 236, 0.04);
    text-align: center;
  }

  .assembled-case .ac-device--desktop .ac-placeholder { aspect-ratio: 16 / 9; }
  .assembled-case .ac-device--phone .ac-placeholder { aspect-ratio: 9 / 16; }

  /* Interview */
  .assembled-case .ac-refined-qa-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.65fr);
    gap: var(--p1-desktop-gap);
    align-items: center;
  }

  .assembled-case .ac-refined-qa-intro { margin-top: 1.5rem; }
  .assembled-case .ac-refined-qa-image {
    display: flex;
    min-height: 24rem;
    padding: 1.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--narrow-border);
    border-radius: 14px;
    background: rgba(38, 35, 34, 0.04);
    text-align: center;
  }

  .assembled-case .ac-interview-story {
    max-width: 52rem;
    margin-top: 4rem;
    border-top: 1px solid var(--narrow-border);
  }

  .assembled-case .ac-interview-opening {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 0 1.5rem;
    padding: 2.25rem 0;
    border-bottom: 1px solid var(--narrow-border);
  }

  .assembled-case .ac-interview-opening > span { display: none; }
  .assembled-case .ac-interview-opening::before {
    grid-row: 1 / 3;
    color: var(--narrow-accent);
    content: "01";
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  .assembled-case .ac-interview-opening h3 { margin: 0; font-size: 1.25rem; line-height: 1.4; }
  .assembled-case .ac-interview-opening p { margin: 0.75rem 0 0; color: var(--narrow-text-secondary); font-size: 0.9375rem; line-height: 1.7; }

  .assembled-case .ac-interview-more { border-bottom: 1px solid var(--narrow-border); }
  .assembled-case .ac-interview-more summary {
    display: flex;
    min-height: 4.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    list-style: none;
  }
  .assembled-case .ac-interview-more summary::-webkit-details-marker { display: none; }
  .assembled-case .ac-interview-more summary i { color: var(--narrow-accent); font-style: normal; }
  .assembled-case .ac-interview-more:not([open]) .is-open,
  .assembled-case .ac-interview-more[open] .is-closed { display: none; }
  .assembled-case .ac-interview-more-body article { padding: 1.5rem 0; border-top: 1px solid var(--narrow-border); }
  .assembled-case .ac-interview-more-body h3 { margin: 0; font-size: 1.0625rem; line-height: 1.4; }
  .assembled-case .ac-interview-more-body p { margin: 0.6rem 0 0; color: var(--narrow-text-secondary); font-size: 0.9375rem; line-height: 1.7; }

  /* Results */
  .assembled-case .ac-results-board {
    display: grid;
    grid-template-columns: minmax(22rem, 0.92fr) minmax(0, 1.08fr);
    margin-top: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 247, 236, 0.16);
    border-radius: 14px;
    background: rgba(255, 247, 236, 0.04);
  }

  .assembled-case .ac-result-feature {
    padding: clamp(2.5rem, 5vw, 5rem);
    background: var(--narrow-accent);
    color: var(--narrow-text-primary);
  }
  .assembled-case .ac-result-feature > span { display: block; margin-bottom: 1.5rem; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; }
  .assembled-case .ac-result-feature h3 { margin: 0; font-size: clamp(2.25rem, 3.5vw, 3.75rem); line-height: 1.04; letter-spacing: -0.045em; }
  .assembled-case .ac-result-feature > p { font-size: 0; line-height: 0; }
  .assembled-case .ac-result-feature > p::before {
    display: block;
    margin-top: 1.5rem;
    color: rgba(38, 35, 34, 0.76);
    content: "От първото движение до управлението на продуктите. Всяка част работи като елемент от една система.";
    font-size: 1rem;
    line-height: 1.7;
  }
  .assembled-case .ac-result-feature a {
    display: inline-flex;
    margin-top: 2rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid rgba(38, 35, 34, 0.48);
    color: inherit;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
  }

  .assembled-case .ac-result-deliverables {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 247, 236, 0.15);
  }
  .assembled-case .ac-result-deliverables > article {
    display: grid;
    grid-template-columns: 1.125rem minmax(0, 1fr);
    gap: 0.65rem;
    align-content: start;
    min-height: 15rem;
    padding: 1.75rem;
    background: #1b1816;
  }
  .assembled-case .ac-result-deliverables > article > span { color: var(--narrow-accent); font-size: 1rem; font-weight: 700; line-height: 1.35; }
  .assembled-case .ac-result-deliverables h3 { margin: 0; color: var(--narrow-text-light); font-size: 1rem; line-height: 1.35; }
  .assembled-case .ac-result-deliverables p { margin: 0.6rem 0 0; color: rgba(255, 247, 236, 0.52); font-size: 0.8125rem; line-height: 1.6; }

  /* Final CTA */
  .assembled-case .final-cta-section { padding: 0; }
  .assembled-case .final-cta-inner { padding-top: var(--p1-desktop-space); padding-bottom: var(--p1-desktop-space); }
  .assembled-case .final-cta-sub { max-width: 38rem; margin: 1.5rem 0 2rem; font-size: 1.0625rem; line-height: 1.7; }
  .assembled-case .final-cta-buttons { display: flex !important; flex-wrap: wrap; gap: 0.75rem; }
}


/* Project-1 component alignment with the shared Narrow visual language. */
.assembled-case .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  margin: 0 0 1rem !important;
  color: var(--narrow-text-secondary);
  font-size: 0.6875rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
}

.assembled-case .section-tag::before {
  display: inline-block;
  color: var(--narrow-accent);
  content: "/";
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-0.02em);
  rotate: 356deg;
}

.assembled-case .bg-secondary .section-tag,
.assembled-case .ac-hero .section-tag {
  color: rgba(255, 247, 236, 0.6);
}

.assembled-case .ac-case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  color: var(--narrow-text-light);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.assembled-case .ac-case-study-link svg {
  transition: transform 0.2s ease;
}

.assembled-case .ac-case-study-link:hover,
.assembled-case .ac-case-study-link:focus-visible {
  color: var(--narrow-accent);
}

.assembled-case .ac-case-study-link:hover svg,
.assembled-case .ac-case-study-link:focus-visible svg {
  transform: translate(2px, -2px);
}

@media (min-width: 769px) {
  .assembled-case {
    --p1-desktop-space: 80px;
  }

  .assembled-case .section,
  .assembled-case .ac-task {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .assembled-case .final-cta-section {
    padding: 0 !important;
  }

  .assembled-case .final-cta-inner {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  /* Keep the established editorial scale used across the site. */
  .assembled-case .ac-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.75rem, 4.2vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .assembled-case .cs-h2,
  .assembled-case .final-cta-title {
    font-size: clamp(2.25rem, 3.3vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  /* Task: full-width media first, then the section label and editorial copy. */
  .assembled-case .ac-task > .container {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .assembled-case .ac-task-video {
    order: 1;
    width: 100%;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  .assembled-case .ac-task-brief {
    display: grid;
    order: 2;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
    margin-top: 40px;
  }

  .assembled-case .ac-task-question h2 {
    max-width: 16ch;
    margin: 0;
    font-size: clamp(2.25rem, 3.3vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .assembled-case .ac-task-answer {
    margin: 0;
    padding: 0 0 0 2rem;
    border-top: 0;
    border-left: 1px solid rgba(255, 247, 236, 0.18);
  }

  .assembled-case .ac-task-answer > p {
    max-width: 38rem;
    font-size: 1.0625rem;
    line-height: 1.72;
  }

  /* Fallback for the older placeholder task markup. */
  .assembled-case .ac-task:has(> .ac-task-video-placeholder) {
    display: flex;
    flex-direction: column;
  }

  .assembled-case .ac-task-video-placeholder {
    display: flex;
    order: 1;
    width: min(calc(100% - (var(--p1-desktop-gutter) * 2)), 80rem);
    min-height: 0;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 247, 236, 0.14);
    border-radius: 14px;
    background: rgba(255, 247, 236, 0.04);
  }

  .assembled-case .ac-task-statement {
    order: 2;
    width: min(calc(100% - (var(--p1-desktop-gutter) * 2)), 80rem);
    margin: 40px auto 0;
    padding: 0;
  }

  .assembled-case .ac-task-statement-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .assembled-case .ac-task-statement p {
    max-width: 58rem;
    margin: 0;
    color: rgba(255, 247, 236, 0.82);
    font-size: 1.0625rem;
    line-height: 1.72;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot,
  .assembled-case .ac-icon-board--manual .ac-icon-slot img,
  .assembled-case .ac-icon-board--manual .ac-icon-slot figcaption {
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  }

  @media (hover: hover) and (pointer: fine) {
    .assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):hover,
    .assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):focus-within {
      border-color: #262322 !important;
      background: #262322 !important;
      box-shadow: 0 14px 30px rgba(38, 35, 34, 0.16);
      transform: translateY(-2px);
    }

    .assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):hover img,
    .assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):focus-within img {
      filter: brightness(0) saturate(100%) invert(58%) sepia(85%) saturate(2383%) hue-rotate(326deg) brightness(103%) contrast(101%);
      transform: scale(1.06);
    }

    .assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):hover figcaption,
    .assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):focus-within figcaption {
      color: var(--narrow-text-light) !important;
    }
  }
}


/* Project-1 section refinements: decisions, responsive, interview, results and typography. */
.assembled-case .ac-type-board--controls-slot {
  display: flex;
  min-width: 0;
  min-height: 15rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid #1b1816;
  border-radius: 12px;
  background: #1b1816;
  color: var(--narrow-text-light);
}

.assembled-case .ac-type-board--controls-slot > small {
  color: var(--narrow-accent);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.assembled-case .ac-type-board--controls-slot > strong {
  display: block;
  margin: 1.5rem 0;
  color: var(--narrow-text-light);
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.assembled-case .ac-type-board--controls-slot > p {
  margin: 0;
  color: rgba(255, 247, 236, 0.58);
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.assembled-case .ac-result-icon {
  display: none;
}

@media (max-width: 768px) {
  .assembled-case .ac-type-board--controls-slot {
    min-height: 14rem;
    padding: 20px;
  }

  .assembled-case .ac-type-board--controls-slot > strong {
    margin: 24px 0;
    font-size: clamp(2.75rem, 14vw, 4rem);
  }
}

@media (min-width: 769px) {
  /* Key decisions: readable focus column and calmer spacing. */
  .assembled-case .ac-decision-map-head,
  .assembled-case .ac-decision-map > article {
    grid-template-columns: minmax(13rem, 0.72fr) minmax(0, 1fr) 2.5rem minmax(0, 1fr);
    gap: clamp(1.75rem, 3vw, 3rem);
  }

  .assembled-case .ac-decision-map-head {
    padding: 1.15rem 0;
    color: rgba(255, 247, 236, 0.64);
  }

  .assembled-case .ac-decision-map > article {
    padding: clamp(2.5rem, 4vw, 3.25rem) 0;
  }

  .assembled-case .ac-decision-map > article > h3,
  .assembled-case .ac-refined-decision-title > h3 {
    margin: 0;
    color: var(--narrow-text-light) !important;
    line-height: 1.45;
  }

  .assembled-case .ac-decision-map > article > p {
    color: rgba(255, 247, 236, 0.72);
    line-height: 1.75;
  }

  .assembled-case .ac-refined-decisions {
    gap: 1.5rem !important;
  }

  .assembled-case .ac-refined-decisions > article {
    padding: clamp(1.75rem, 3vw, 2.5rem) !important;
  }

  .assembled-case .ac-refined-decision-steps {
    gap: 1rem !important;
    margin-top: 1.5rem;
  }

  /* Responsive showcase: large central desktop with phones composed around it. */
  .assembled-case .ac-device-stage {
    position: relative;
    display: grid !important;
    grid-template-columns: repeat(14, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr);
    min-height: 36rem;
    padding: 1.5rem 0;
    align-items: stretch;
    isolation: isolate;
  }

  .assembled-case .ac-device {
    min-width: 0;
  }

  .assembled-case .ac-device--desktop {
    z-index: 1;
    grid-column: 2 / 14;
    grid-row: 1;
    align-self: center;
  }

  .assembled-case .ac-device--desktop .ac-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  }

  .assembled-case .ac-device--phone {
    z-index: 2;
    width: min(100%, 11rem);
  }

  .assembled-case .ac-device--phone .ac-placeholder {
    width: 100%;
    aspect-ratio: 9 / 16;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
  }

  .assembled-case .ac-device--phone-a {
    grid-column: 1 / 4;
    grid-row: 1;
    align-self: end;
    justify-self: start;
    transform: translateY(1rem) rotate(-2deg);
  }

  .assembled-case .ac-device--phone-b {
    grid-column: 12 / 15;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    transform: translateY(-0.5rem) rotate(2deg);
  }

  .assembled-case .ac-device--phone-c {
    z-index: 3;
    grid-column: 11 / 14;
    grid-row: 1;
    align-self: end;
    justify-self: end;
    transform: translate(1.5rem, 1.5rem) rotate(1deg);
  }

  .assembled-case .ac-device img,
  .assembled-case .ac-device video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Founder interview: a featured editorial opening instead of a numbered list row. */
  .assembled-case .ac-interview-story {
    max-width: 58rem;
    margin-top: 3.5rem;
    border-top: 0;
  }

  .assembled-case .ac-interview-opening {
    position: relative;
    display: block;
    padding: clamp(2.25rem, 4vw, 3.5rem);
    overflow: hidden;
    border: 1px solid rgba(38, 35, 34, 0.12);
    border-radius: 14px;
    background: rgba(38, 35, 34, 0.035);
  }

  .assembled-case .ac-interview-opening::before {
    display: block;
    width: 3.5rem;
    height: 3px;
    margin-bottom: 1.75rem;
    background: var(--narrow-accent);
    content: "";
  }

  .assembled-case .ac-interview-opening h3 {
    max-width: 25ch;
    margin: 0;
    color: var(--narrow-text-primary);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.28;
    letter-spacing: -0.025em;
  }

  .assembled-case .ac-interview-opening p {
    max-width: 52rem;
    margin: 1.25rem 0 0;
    color: var(--narrow-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
  }

  .assembled-case .ac-interview-opening + .ac-interview-more {
    margin-top: 1.25rem;
    border-top: 1px solid var(--narrow-border);
  }

  /* Results: more internal space and a dedicated icon rail on the right. */
  .assembled-case .ac-results-board {
    grid-template-columns: minmax(22rem, 0.88fr) minmax(0, 1.12fr);
  }

  .assembled-case .ac-result-feature {
    padding: clamp(3rem, 5vw, 4.5rem);
  }

  .assembled-case .ac-result-feature > span {
    margin-bottom: 2rem;
  }

  .assembled-case .ac-result-feature > p::before {
    margin-top: 1.75rem;
  }

  .assembled-case .ac-result-feature a {
    margin-top: 2.5rem;
  }

  .assembled-case .ac-result-deliverables > article {
    position: relative;
    display: grid;
    min-height: 13rem;
    padding: clamp(2rem, 3vw, 2.75rem) !important;
    grid-template-columns: minmax(0, 1fr) 3rem;
    gap: 1.25rem;
    align-content: start;
  }

  .assembled-case .ac-result-deliverables > article > span:not(.ac-result-icon) {
    display: none;
  }

  .assembled-case .ac-result-deliverables > article > div {
    grid-column: 1;
    min-width: 0;
  }

  .assembled-case .ac-result-deliverables h3 {
    font-size: 1.0625rem;
    line-height: 1.45;
  }

  .assembled-case .ac-result-deliverables p {
    margin-top: 0.85rem;
    font-size: 0.8125rem;
    line-height: 1.7;
  }

  .assembled-case .ac-result-icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    grid-column: 2;
    grid-row: 1;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(255, 120, 79, 0.4);
    border-radius: 50%;
    color: var(--narrow-accent);
    background: rgba(255, 120, 79, 0.07);
  }

  .assembled-case .ac-result-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* Move the type specimen into the former controls slot. */
  .assembled-case .ac-system-board,
  .assembled-case .ac-refined-system-board {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }

  .assembled-case .ac-palette {
    grid-column: 1;
    grid-row: 1;
  }

  .assembled-case .ac-type-board--controls-slot {
    grid-column: 1;
    grid-row: 2;
  }

  .assembled-case .ac-refined-system-note {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}


/* Project-1 hero browser preview and motion-free icon states. */
.assembled-case .ac-hero-inner {
  min-width: 0;
}

.assembled-case .ac-case-study-preview {
  width: 100%;
  margin-top: 2rem;
}

.assembled-case .ac-case-study-browser {
  border-color: rgba(255, 247, 236, 0.18);
  background: #f5f5f5;
}

.assembled-case .ac-case-study-browser .cns-browser-body {
  min-height: 0 !important;
  padding: 0 !important;
  background: #fff;
}

.assembled-case .ac-case-study-browser img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.assembled-case .ac-case-study-preview > .cns-demo-link {
  margin-top: 1rem;
  color: var(--narrow-text-light);
}

.assembled-case .ac-case-study-preview > .cns-demo-link:hover,
.assembled-case .ac-case-study-preview > .cns-demo-link:focus-visible {
  color: var(--narrow-accent);
}

.assembled-case .ac-icon-board--manual .ac-icon-slot {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  box-shadow: none !important;
  transform: none !important;
  transition: background-color 0.18s ease, border-color 0.18s ease !important;
}

.assembled-case .ac-icon-board--manual .ac-icon-slot img {
  transform: none !important;
  transition: none !important;
}

.assembled-case .ac-icon-board--manual .ac-icon-slot figcaption {
  transition: color 0.18s ease !important;
}

.assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):hover,
.assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):focus-visible,
.assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):focus-within,
.assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):active {
  border-color: #262322 !important;
  background: #262322 !important;
  box-shadow: none !important;
  transform: none !important;
}

.assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):hover img,
.assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):focus-visible img,
.assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):focus-within img,
.assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):active img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(85%) saturate(2383%) hue-rotate(326deg) brightness(103%) contrast(101%) !important;
  transform: none !important;
}

.assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):hover figcaption,
.assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):focus-visible figcaption,
.assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):focus-within figcaption,
.assembled-case .ac-icon-board--manual .ac-icon-slot:not(.ac-icon-slot--logo):active figcaption {
  color: var(--narrow-text-light) !important;
}

@media (max-width: 768px) {
  .assembled-case .ac-hero {
    display: block !important;
  }

  .assembled-case .ac-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .assembled-case .ac-case-study-preview {
    margin-top: 24px;
  }
}

@media (min-width: 769px) {
  .assembled-case .ac-hero {
    display: block !important;
    min-height: 0;
    padding: 0 var(--p1-desktop-gutter) !important;
  }

  .assembled-case .ac-hero-inner {
    display: grid;
    width: min(100%, 80rem);
    margin: 0 auto;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: stretch;
  }

  .assembled-case .ac-hero-media {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 80px 0;
    overflow: hidden;
    border-radius: 14px;
  }

  .assembled-case .container-wide.ac-hero-copy {
    display: flex;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 80px 0 !important;
    justify-content: center;
  }

  .assembled-case .ac-hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.25rem, 3.3vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .assembled-case .ac-case-study-preview {
    max-width: 38rem;
  }

  .assembled-case .ac-case-study-preview + .ac-service-line {
    margin-top: 1.5rem;
  }

  .assembled-case .ac-task-statement.ac-task-brief,
  .assembled-case .ac-task-brief {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}


/* Project-1 light task, editorial interview and final layout corrections. */
.assembled-case .ac-task--light {
  background: var(--narrow-bg-primary) !important;
  color: var(--narrow-text-primary);
}

.assembled-case .ac-task--light .section-tag {
  color: var(--narrow-text-secondary) !important;
}

.assembled-case .ac-task--light .ac-task-question h2,
.assembled-case .ac-task--light .ac-task-statement p {
  color: var(--narrow-text-primary) !important;
}

.assembled-case .ac-task--light .ac-task-answer {
  border-color: var(--narrow-border) !important;
}

.assembled-case .ac-task--light .ac-task-answer > p {
  color: var(--narrow-text-secondary) !important;
}

.assembled-case .ac-task--light .ac-task-balance {
  color: rgba(38, 35, 34, 0.58);
}

.assembled-case .ac-task--light .ac-task-video,
.assembled-case .ac-task--light .ac-task-video-placeholder {
  border-color: var(--narrow-border);
  background: rgba(38, 35, 34, 0.04);
}

.assembled-case .final-cta-inner > .section-tag,
.assembled-case .final-cta-inner > .final-cta-sub {
  display: none !important;
}

.assembled-case .final-cta-inner > .final-cta-title {
  margin-bottom: 2rem;
}

/* Founder interview — editorial question trail. */
.assembled-case .ac-interview-story {
  counter-reset: ac-interview-question;
  border: 0;
}

.assembled-case .ac-interview-opening {
  counter-increment: ac-interview-question;
}

.assembled-case .ac-interview-opening::before {
  display: inline-flex;
  width: auto;
  height: auto;
  margin: 0 0 1.25rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 120, 79, 0.35);
  border-radius: 999px;
  background: rgba(255, 120, 79, 0.07);
  color: var(--narrow-accent);
  content: "Q / 01";
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.assembled-case .ac-interview-more {
  counter-increment: ac-interview-question;
  overflow: hidden;
  border: 1px solid var(--narrow-border) !important;
  border-radius: 12px;
  background: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.assembled-case .ac-interview-more + .ac-interview-more {
  margin-top: 12px;
}

.assembled-case .ac-interview-more[open] {
  border-color: rgba(255, 120, 79, 0.28) !important;
  background: rgba(255, 120, 79, 0.035);
}

.assembled-case .ac-interview-more summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  min-height: 0;
  padding: 1.25rem 1.35rem;
}

.assembled-case .ac-interview-more summary::before {
  align-self: center;
  color: var(--narrow-accent);
  content: "Q / 0" counter(ac-interview-question);
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

.assembled-case .ac-interview-more summary i {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid rgba(255, 120, 79, 0.3);
  border-radius: 50%;
}

.assembled-case .ac-interview-more-body {
  padding: 0 1.35rem 1.35rem 4.9rem;
}

.assembled-case .ac-interview-more-body article {
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--narrow-border);
}

.assembled-case .ac-interview-more-body p {
  max-width: 60ch;
  line-height: 1.8;
}

/* Results: comfortable distance from the frame. */
.assembled-case .ac-result-feature {
  padding: 32px 28px !important;
}

.assembled-case .ac-result-feature h3,
.assembled-case .ac-result-feature > p::before {
  max-width: 30rem;
}

/* Decision map: separated rows and orange hierarchy accents. */
.assembled-case .ac-decision-map {
  display: grid !important;
  gap: 12px;
  border-top: 0;
  border-bottom: 0;
}

.assembled-case .ac-decision-map-head {
  border-bottom: 1px solid rgba(255, 247, 236, 0.18);
}

.assembled-case .ac-decision-map-head > :first-child,
.assembled-case .ac-decision-map-head > :nth-child(3),
.assembled-case .ac-decision-map > article > i {
  color: var(--narrow-accent) !important;
}

.assembled-case .ac-decision-map > article {
  border: 1px solid rgba(255, 247, 236, 0.14) !important;
  border-left: 3px solid var(--narrow-accent) !important;
  border-radius: 12px !important;
  background: rgba(255, 247, 236, 0.035) !important;
}

.assembled-case .ac-decision-map > article > p:last-of-type {
  border-radius: 8px;
  background: rgba(255, 120, 79, 0.06);
  color: rgba(255, 247, 236, 0.88) !important;
}

@media (max-width: 768px) {
  .assembled-case .ac-task--light .ac-task-statement {
    padding-bottom: 28px !important;
  }

  .assembled-case .ac-interview-story {
    margin-top: 28px;
  }

  .assembled-case .ac-interview-opening {
    display: block;
    padding: 24px 20px;
    border: 1px solid var(--narrow-border);
    border-radius: 12px;
    background: rgba(38, 35, 34, 0.025);
  }

  .assembled-case .ac-interview-opening h3,
  .assembled-case .ac-interview-opening p {
    grid-column: auto;
  }

  .assembled-case .ac-interview-opening h3 {
    font-size: 1.125rem;
  }

  .assembled-case .ac-interview-opening p {
    margin-top: 12px;
  }

  .assembled-case .ac-interview-opening + .ac-interview-more {
    margin-top: 12px;
  }

  .assembled-case .ac-interview-more summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 16px 14px;
  }

  .assembled-case .ac-interview-more summary::before {
    font-size: 0.5625rem;
  }

  .assembled-case .ac-interview-more-body {
    padding: 0 14px 16px 14px;
  }

  .assembled-case .ac-result-feature {
    padding: 36px 28px !important;
  }

  .assembled-case .ac-decision-map {
    gap: 14px;
    border: 0;
  }

  .assembled-case .ac-decision-map > article {
    padding: 24px 20px !important;
  }

  .assembled-case .ac-decision-map > article > p:last-child {
    padding: 16px !important;
  }
}

@media (min-width: 769px) {
  /* Loop media first; case-study copy and browser preview below it. */
  .assembled-case .ac-hero {
    padding: 0 !important;
  }

  .assembled-case .ac-hero-inner {
    display: block;
    width: 100%;
    max-width: none;
  }

  .assembled-case .ac-hero-media {
    width: 100%;
    height: min(46rem, 66vw);
    min-height: 34rem;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .assembled-case .container-wide.ac-hero-copy {
    display: grid;
    width: min(calc(100% - (var(--p1-desktop-gutter) * 2)), 80rem);
    margin: 0 auto;
    padding: 80px 0 !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
    grid-template-rows: auto auto auto auto;
    column-gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
  }

  .assembled-case .ac-hero-copy > .section-tag {
    grid-column: 1;
    grid-row: 1;
  }

  .assembled-case .ac-hero-copy > h1 {
    grid-column: 1;
    grid-row: 2;
  }

  .assembled-case .ac-hero-copy > p {
    grid-column: 1;
    grid-row: 3;
    margin-top: 1.5rem;
  }

  .assembled-case .ac-hero-copy > .ac-service-line {
    grid-column: 1;
    grid-row: 4;
  }

  .assembled-case .ac-case-study-preview {
    grid-column: 2;
    grid-row: 1 / span 4;
    max-width: none;
    margin-top: 0;
  }

  .assembled-case .ac-task-statement.ac-task-brief {
    margin: 40px 0 0 !important;
  }

  .assembled-case .ac-device-stage {
    min-height: 40rem;
  }

  .assembled-case .ac-device--phone {
    width: min(100%, 10rem);
    aspect-ratio: 9 / 16;
  }

  .assembled-case .ac-device--phone .ac-placeholder {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 9 / 16 !important;
  }

  .assembled-case .ac-interview-opening {
    padding: clamp(2.5rem, 4vw, 3.75rem);
    border: 1px solid var(--narrow-border);
    border-radius: 14px;
    background: rgba(38, 35, 34, 0.025);
  }

  .assembled-case .ac-interview-opening h3 {
    font-size: clamp(1.5rem, 2.3vw, 2rem);
  }

  .assembled-case .ac-interview-opening + .ac-interview-more {
    margin-top: 16px;
  }

  .assembled-case .ac-result-feature {
    padding: clamp(4rem, 6vw, 5.5rem) !important;
  }

  .assembled-case .ac-decision-map {
    gap: 16px;
  }

  .assembled-case .ac-decision-map-head {
    padding: 0 1.5rem 1.25rem;
  }

  .assembled-case .ac-decision-map > article {
    padding: clamp(2.75rem, 4vw, 3.5rem) 1.5rem !important;
  }

  .assembled-case .ac-decision-map > article > p:last-of-type {
    padding: 1.1rem 1.25rem;
  }
}


/* Project-1 final hero, media and decision corrections. */
.assembled-case .ac-hero-copy > h1 {
  color: var(--narrow-text-light) !important;
}

@media (max-width: 768px) {
  .assembled-case .ac-decision-map > article > h3::before {
    display: none !important;
    content: none !important;
  }
}

@media (min-width: 769px) {
  .assembled-case .container-wide.ac-hero-copy {
    display: grid !important;
  }

  .assembled-case .ac-admin-grid {
    align-items: start !important;
  }

  .assembled-case .ac-admin-media--products {
    align-self: start;
    height: fit-content !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    line-height: 0;
  }

  .assembled-case .ac-admin-media--products img {
    display: block;
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
  }

  .assembled-case .ac-decision-map > article {
    padding: clamp(0.1rem, 1vw, 1rem) 1.5rem !important;
  }

  .assembled-case .ac-heading--single-line {
    max-width: none !important;
    font-size: clamp(1.9rem, 2.8vw, 3rem) !important;
    white-space: nowrap;
  }

  .assembled-case .ac-heading--single-line br {
    display: none;
  }

  .assembled-case .ac-task-video {
    height: auto !important;
    aspect-ratio: auto !important;
  }

  .assembled-case .ac-task-project-video {
    display: block;
    width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
  }
}


/* Project-1 full-width interview and requested desktop refinements. */
.assembled-case .ac-interview-story {
  width: 100%;
  max-width: none !important;
  margin-right: 0;
  margin-left: 0;
  border: 0;
}

.assembled-case .ac-interview-opening {
  width: 100%;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
}

.assembled-case .ac-interview-opening::before,
.assembled-case .ac-interview-more summary::before {
  display: none !important;
  content: none !important;
}

.assembled-case .ac-interview-opening h3::before {
  display: block;
  width: 3rem;
  height: 3px;
  margin-bottom: 1.25rem;
  background: var(--narrow-accent);
  content: "";
}

.assembled-case .ac-interview-more,
.assembled-case .ac-interview-more[open] {
  width: 100%;
  margin: 0;
  border: 0 !important;
  border-bottom: 1px solid var(--narrow-border) !important;
  border-radius: 0;
  background: transparent;
}

.assembled-case .ac-interview-more:first-of-type {
  border-top: 1px solid var(--narrow-border) !important;
}

.assembled-case .ac-interview-more + .ac-interview-more {
  margin-top: 0;
}

.assembled-case .ac-interview-more summary {
  grid-template-columns: minmax(0, 1fr) auto;
  padding-right: 0;
  padding-left: 0;
  font-size: 1rem;
  letter-spacing: 0;
}

.assembled-case .ac-interview-more-body {
  padding-right: 0;
  padding-left: 0;
}

.assembled-case .ac-interview-more-body article {
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 768px) {
  .assembled-case .ac-interview-opening {
    padding: 24px 0;
    border-top: 1px solid var(--narrow-border);
    border-bottom: 1px solid var(--narrow-border);
  }

  .assembled-case .ac-interview-opening h3 {
    max-width: 24ch;
  }

  .assembled-case .ac-interview-more summary {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 18px 0;
  }

  .assembled-case .ac-interview-more-body {
    padding: 0 0 20px;
  }
}

@media (min-width: 769px) {
  .assembled-case .ac-interview-story {
    margin-top: 3.5rem;
  }

  .assembled-case .ac-interview-opening {
    display: grid;
    grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
    padding: 3rem 0;
    border-top: 1px solid var(--narrow-border);
    border-bottom: 1px solid var(--narrow-border);
  }

  .assembled-case .ac-interview-opening h3 {
    max-width: 22ch;
  }

  .assembled-case .ac-interview-opening p {
    max-width: 58rem;
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.85;
  }

  .assembled-case .ac-interview-opening + .ac-interview-more {
    margin-top: 2rem;
  }

  .assembled-case .ac-interview-more summary {
    min-height: 5rem;
    padding: 1.5rem 0;
    font-size: 1.0625rem;
  }

  .assembled-case .ac-interview-more-body {
    padding: 0 4rem 2rem 0;
  }

  .assembled-case .ac-result-feature {
    padding: 42px 46px !important;
  }

  .assembled-case .ac-result-feature > p {
    display: none !important;
  }

  .assembled-case .ac-device--phone {
    width: min(100%, 12rem);
    aspect-ratio: 9 / 16 !important;
  }

  .assembled-case .ac-device--phone .ac-placeholder {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 9 / 16 !important;
  }

  .assembled-case .ac-device--phone .ac-placeholder > span {
    white-space: nowrap;
  }

  .assembled-case .ac-responsive .cs-h2 {
    max-width: none;
    font-size: clamp(2rem, 3vw, 3.25rem) !important;
    white-space: nowrap;
  }

  .assembled-case .ac-decision-map > article {
    align-items: center !important;
  }

  .assembled-case .ac-result-deliverables > article {
    align-content: center;
  }

  .assembled-case .ac-task-statement.ac-task-brief {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto auto;
    gap: 1.5rem;
  }

  .assembled-case .ac-task-statement.ac-task-brief .ac-task-answer {
    margin: 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--narrow-border);
    border-left: 0;
  }
}


/* Project-1 CTA, result icons and mobile presentation refinements. */
.assembled-case .ac-hero-copy > p {
  color: rgba(255, 247, 236, 0.76) !important;
}

.assembled-case .ac-result-deliverables > article > span:not(.ac-result-icon) {
  display: none !important;
}

.assembled-case .ac-result-deliverables > article > div {
  display: grid !important;
  grid-column: 1 / -1 !important;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0.65rem 0.85rem;
  align-items: center;
}

.assembled-case .ac-result-deliverables .ac-result-icon {
  display: block !important;
  width: 1.4rem;
  height: 1.4rem;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--narrow-accent);
}

.assembled-case .ac-result-deliverables .ac-result-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.assembled-case .ac-result-deliverables h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.assembled-case .ac-result-deliverables p {
  grid-column: 2;
  grid-row: 2;
}

@media (max-width: 768px) {
  .assembled-case .ac-hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(1.7rem, 7.4vw, 2rem) !important;
    line-height: 1.08 !important;
  }

  .assembled-case .cs-h2,
  .assembled-case .final-cta-title {
    font-size: clamp(1.55rem, 6.8vw, 1.9rem) !important;
    line-height: 1.12 !important;
  }

  .assembled-case .ac-desktop-break {
    display: none;
  }

  .assembled-case .ac-product-showcase {
    position: relative;
    display: block !important;
    margin-top: 28px;
    padding: 0 42px 30px 0;
    overflow: visible;
  }

  .assembled-case .ac-product-media--desktop {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  }

  .assembled-case .ac-product-media--mobile {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 31%;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    border: 4px solid #1b1816;
    border-radius: 16px;
    background: #1b1816;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
    clip-path: inset(0 round 16px);
  }

  .assembled-case .ac-product-media--desktop img,
  .assembled-case .ac-product-media--mobile img {
    display: block;
    width: 100%;
    height: 100% !important;
    border-radius: 0 !important;
    object-fit: cover;
  }

  .assembled-case .ac-annotations {
    display: grid !important;
    gap: 0 !important;
    margin-top: 30px;
    counter-reset: none;
  }

  .assembled-case .ac-annotations > article {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 12px;
  }

  .assembled-case .ac-annotations > article::before {
    display: none !important;
    content: none !important;
  }

  .assembled-case .ac-annotations > article > span {
    display: grid !important;
    width: 2rem;
    height: 2rem;
    grid-column: 1;
    place-items: center;
    color: var(--narrow-accent);
  }

  .assembled-case .ac-annotations > article > span svg,
  .assembled-case .ac-annotations > article > span img {
    width: 1.25rem;
    height: 1.25rem;
  }

  .assembled-case .ac-annotations > article > div {
    grid-column: 2;
  }

  .assembled-case .ac-result-deliverables h3::before {
    color: var(--narrow-accent);
    content: "/ ";
  }
}

@media (min-width: 769px) {
  .assembled-case .final-cta-inner {
    display: flex !important;
    min-height: 42rem;
    padding-top: 120px !important;
    padding-bottom: 120px !important;
    flex-direction: column;
    justify-content: center;
  }

  .assembled-case .ac-heading--two-lines .ac-desktop-break {
    display: block;
  }

  .assembled-case .ac-heading--two-lines {
    max-width: 22ch;
  }
}


/* Project-1 unified mobile headings, result watermark icons and transcript interview. */
.assembled-case .ac-result-feature > p {
  display: none !important;
}

/* Replace the orange AI-style rail with the Narrow slash accent. */
.assembled-case .ac-decision-map > article {
  position: relative;
  border-left: 1px solid rgba(255, 247, 236, 0.14) !important;
}

.assembled-case .ac-decision-map > article::after {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  color: var(--narrow-accent);
  content: "/";
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  rotate: 356deg;
}

/* Founder interview — full-width dark transcript bands, no numbering. */
.assembled-case .ac-interview-story {
  display: grid;
  width: 100%;
  max-width: none !important;
  gap: 2px;
  background: var(--narrow-bg-primary);
}

.assembled-case .ac-interview-opening {
  display: grid;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: var(--narrow-bg-secondary);
  color: var(--narrow-text-light);
}

.assembled-case .ac-interview-opening::before {
  display: block !important;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--narrow-accent);
  content: "ВЪПРОС" !important;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.assembled-case .ac-interview-opening h3::before {
  display: none;
  content: none;
}

.assembled-case .ac-interview-opening h3 {
  margin: 0;
  color: var(--narrow-text-light);
}

.assembled-case .ac-interview-opening p {
  margin: 0;
  color: rgba(255, 247, 236, 0.68);
}

.assembled-case .ac-interview-more,
.assembled-case .ac-interview-more:first-of-type,
.assembled-case .ac-interview-more[open] {
  width: 100%;
  margin: 0 !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0;
  background: var(--narrow-bg-secondary);
}

.assembled-case .ac-interview-more + .ac-interview-more {
  margin-top: 0 !important;
}

.assembled-case .ac-interview-more summary {
  display: grid;
  width: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  color: var(--narrow-text-light);
  list-style: none;
  transition: background-color 0.18s ease;
}

.assembled-case .ac-interview-more summary::before {
  display: block !important;
  color: var(--narrow-accent);
  content: "ВЪПРОС" !important;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.assembled-case .ac-interview-more summary:hover,
.assembled-case .ac-interview-more summary:focus-visible,
.assembled-case .ac-interview-more[open] summary {
  background: rgba(255, 247, 236, 0.045);
}

.assembled-case .ac-interview-more summary i {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid rgba(255, 120, 79, 0.42);
  border-radius: 50%;
  color: var(--narrow-accent);
}

.assembled-case .ac-interview-more-body {
  width: 100%;
  background: var(--narrow-bg-secondary);
}

.assembled-case .ac-interview-more-body article {
  border-top: 1px solid rgba(255, 247, 236, 0.12);
}

.assembled-case .ac-interview-more-body h3 {
  color: var(--narrow-text-light);
}

.assembled-case .ac-interview-more-body p {
  color: rgba(255, 247, 236, 0.68);
}

@media (max-width: 768px) {
  /* One deliberate title scale for every Project-1 section, including Task. */
  .assembled-case h2,
  .assembled-case .ac-task-question h2,
  .assembled-case .cs-h2,
  .assembled-case .final-cta-title {
    font-size: clamp(1.5rem, 6.5vw, 1.85rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em;
  }

  .assembled-case .ac-hero-copy h1 {
    font-size: clamp(1.65rem, 7vw, 1.95rem) !important;
  }

  .assembled-case .cs-brand-v2-copy > .cs-p {
    display: none !important;
  }

  .assembled-case .ac-decision-map > article {
    padding-right: 2.5rem !important;
  }

  .assembled-case .ac-decision-map > article::after {
    top: 1.25rem;
    right: 1.1rem;
  }

  /* Large low-opacity icon watermark behind each mobile deliverable. */
  .assembled-case .ac-result-deliverables > article {
    position: relative;
    overflow: hidden;
  }

  .assembled-case .ac-result-deliverables > article > div {
    position: static;
    display: block !important;
  }

  .assembled-case .ac-result-deliverables .ac-result-icon {
    position: absolute;
    right: -0.8rem;
    bottom: -0.8rem;
    z-index: 0;
    display: block !important;
    width: 6rem;
    height: 6rem;
    opacity: 0.09;
    pointer-events: none;
  }

  .assembled-case .ac-result-deliverables h3,
  .assembled-case .ac-result-deliverables p {
    position: relative;
    z-index: 1;
    display: block;
  }

  .assembled-case .ac-result-deliverables h3 {
    margin-bottom: 0.55rem;
  }

  .assembled-case .ac-interview-story {
    margin-top: 28px;
  }

  .assembled-case .ac-interview-opening {
    display: block;
    padding: 24px 20px;
  }

  .assembled-case .ac-interview-opening::before {
    margin-bottom: 14px;
  }

  .assembled-case .ac-interview-opening h3 {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .assembled-case .ac-interview-opening p {
    margin-top: 12px;
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .assembled-case .ac-interview-more summary {
    gap: 12px;
    min-height: 0;
    padding: 20px;
    font-size: 0.9375rem;
    line-height: 1.45;
  }

  .assembled-case .ac-interview-more-body {
    padding: 0 20px 22px;
  }

  .assembled-case .ac-interview-more-body article {
    padding-top: 18px;
  }
}

@media (min-width: 769px) {
  .assembled-case .ac-heading--two-lines {
    width: max-content;
    max-width: none !important;
    font-size: clamp(2rem, 3vw, 3.25rem) !important;
    white-space: nowrap;
  }

  .assembled-case .ac-heading--two-lines .ac-desktop-break {
    display: block;
  }

  .assembled-case .ac-decision-map > article {
    padding-right: 3.25rem !important;
  }

  .assembled-case .ac-interview-opening {
    grid-template-columns: 7rem minmax(16rem, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
    padding: 2.5rem 3rem;
  }

  .assembled-case .ac-interview-opening::before {
    padding-top: 0.35rem;
  }

  .assembled-case .ac-interview-opening h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.35;
  }

  .assembled-case .ac-interview-opening p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .assembled-case .ac-interview-more summary {
    grid-template-columns: 7rem minmax(0, 1fr) auto;
    gap: clamp(2rem, 4vw, 4rem);
    min-height: 5.5rem;
    padding: 1.5rem 3rem;
    font-size: 1.0625rem;
  }

  .assembled-case .ac-interview-more-body {
    padding: 0 3rem 2rem 14rem;
  }

  .assembled-case .ac-interview-more-body article {
    padding-top: 1.5rem;
  }
}


/* Project-1 light interview, decision details and shared CTA alignment. */
.assembled-case .ac-interview-story {
  gap: 0;
  background: transparent;
}

.assembled-case .ac-interview-opening {
  border-color: var(--narrow-border) !important;
  background: rgba(38, 35, 34, 0.025);
  color: var(--narrow-text-primary);
}

.assembled-case .ac-interview-opening::before {
  color: var(--narrow-accent);
}

.assembled-case .ac-interview-opening h3,
.assembled-case .ac-interview-more summary,
.assembled-case .ac-interview-more-body h3 {
  color: var(--narrow-text-primary);
}

.assembled-case .ac-interview-opening p,
.assembled-case .ac-interview-more-body p {
  color: var(--narrow-text-secondary);
}

.assembled-case .ac-interview-more,
.assembled-case .ac-interview-more:first-of-type,
.assembled-case .ac-interview-more[open] {
  border: 0 !important;
  border-bottom: 1px solid var(--narrow-border) !important;
  background: transparent;
}

.assembled-case .ac-interview-more:first-of-type {
  border-top: 1px solid var(--narrow-border) !important;
}

.assembled-case .ac-interview-more summary:hover,
.assembled-case .ac-interview-more summary:focus-visible,
.assembled-case .ac-interview-more[open] summary {
  background: rgba(38, 35, 34, 0.035);
}

.assembled-case .ac-interview-more-body {
  background: transparent;
}

.assembled-case .ac-interview-more-body article {
  margin: 0;
  padding: 0;
  border: 0 !important;
}

.assembled-case .ac-interview-more-body article + article {
  margin-top: 1.25rem;
}

.assembled-case .ac-interview-more-body h3 {
  margin: 0;
}

.assembled-case .ac-interview-more-body p {
  margin: 0.5rem 0 0;
}

@media (min-width: 769px) {
  .assembled-case .ac-decision-map > article {
    padding-right: 1.5rem !important;
  }

  .assembled-case .ac-decision-map > article::after {
    display: none !important;
    content: none !important;
  }

  .assembled-case .final-cta-inner > .final-cta-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    line-height: 1.1 !important;
  }

  .assembled-case .ac-interview-story {
    margin-top: 2.5rem;
  }

  .assembled-case .ac-interview-opening {
    grid-template-columns: 6rem minmax(14rem, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    padding: 2rem 1.5rem;
  }

  .assembled-case .ac-interview-more summary {
    grid-template-columns: 6rem minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 3vw, 3rem);
    min-height: 0;
    padding: 1.25rem 1.5rem;
  }

  .assembled-case .ac-interview-more-body {
    padding: 0 1.5rem 1.5rem 10.5rem;
  }
}

@media (max-width: 768px) {
  .assembled-case .ac-task-answer,
  .assembled-case .ac-task--light .ac-task-answer {
    border-top: 0 !important;
  }

  .assembled-case .ac-decision-map > article > p:last-child,
  .assembled-case .ac-decision-map > article > p:last-of-type {
    border-left: 2px solid var(--narrow-accent) !important;
    border-radius: 0 !important;
  }

  .assembled-case .ac-interview-story {
    margin-top: 24px;
  }

  .assembled-case .ac-interview-opening {
    padding: 20px 16px;
  }

  .assembled-case .ac-interview-opening::before {
    margin-bottom: 10px;
  }

  .assembled-case .ac-interview-opening p {
    margin-top: 10px;
  }

  .assembled-case .ac-interview-more summary {
    gap: 10px;
    padding: 16px;
  }

  .assembled-case .ac-interview-more-body {
    padding: 0 16px 18px;
  }

  .assembled-case .final-cta-section.final-cta-accent {
    margin-top: 40px !important;
    padding: 20px !important;
    text-align: center;
  }

  .assembled-case .final-cta-inner {
    display: block !important;
    width: 100%;
    max-width: 800px;
    min-height: 0;
    padding: 28px 2rem !important;
  }

  .assembled-case .final-cta-inner > .section-tag {
    display: none !important;
  }

  .assembled-case .final-cta-inner > .final-cta-title {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 1.25rem;
    font-size: clamp(1.75rem, 7.5vw, 2.5rem) !important;
    line-height: 1.2 !important;
    text-align: center;
  }

  .assembled-case .final-cta-inner > .final-cta-sub {
    display: block !important;
    margin: 0 0 3rem;
    font-size: 1.0625rem;
    line-height: 1.6;
    text-align: center;
  }

  .assembled-case .final-cta-buttons {
    display: flex !important;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem !important;
    align-items: center;
    justify-content: center;
  }

  .assembled-case .final-cta-buttons .btn {
    width: auto !important;
    margin: 0;
  }
}


/* Project-1 mobile heading wrap and plain-light interview. */
.assembled-case .ac-interview-opening,
.assembled-case .ac-interview-more,
.assembled-case .ac-interview-more:first-of-type,
.assembled-case .ac-interview-more[open],
.assembled-case .ac-interview-more-body,
.assembled-case .ac-interview-more summary:hover,
.assembled-case .ac-interview-more summary:focus-visible,
.assembled-case .ac-interview-more[open] summary {
  background: transparent !important;
}

.assembled-case .ac-interview-opening::before,
.assembled-case .ac-interview-more summary::before {
  display: none !important;
  content: none !important;
}

@media (max-width: 768px) {
  .assembled-case .ac-heading--two-lines {
    width: max-content;
    max-width: 100%;
    font-size: clamp(1.45rem, 6.1vw, 1.7rem) !important;
    white-space: nowrap;
  }

  .assembled-case .ac-heading--two-lines .ac-desktop-break {
    display: block;
  }
}


/* Project-1 supplied media updates. */
.assembled-case .ac-motion-card-title {
  color: var(--narrow-accent);
}

.assembled-case .ac-refined-system-note--photo {
  position: relative;
  display: block;
  height: 100%;
  min-height: 18rem;
  padding: 0 !important;
  overflow: hidden;
}

.assembled-case .ac-refined-system-note--photo > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: 0.45rem 0.6rem;
  background: rgba(27, 24, 22, 0.72);
  color: var(--narrow-text-light);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.assembled-case .ac-refined-system-note--photo > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

@media (max-width: 768px) {
  .assembled-case .ac-refined-system-note--photo {
    height: 14rem;
    min-height: 14rem;
  }

  /* Keep the supplied 400 × 580 composition in compact thumbnails. */
  .assembled-case .ac-motion-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .assembled-case .ac-motion-video {
    width: 78px;
    height: auto !important;
    aspect-ratio: 400 / 580;
  }
}


/* Project-1 follow-up media corrections. */
.assembled-case .ac-motion-video {
  aspect-ratio: 400 / 580;
  object-fit: contain;
}

.assembled-case .ac-icon-board--manual .ac-icon-slot--favorites img {
  position: relative;
  top: -0.35rem;
  width: 2.75rem;
  min-width: 2.75rem;
  max-width: 2.75rem;
  height: 2.75rem;
  min-height: 2.75rem;
  max-height: 2.75rem;
}

/* Keep only the intrinsic PNG without a device-style frame. */
.assembled-case .ac-product-media--mobile {
  width: min(100%, 10rem);
  height: auto !important;
  min-height: 0 !important;
  justify-self: end;
  overflow: visible !important;
  aspect-ratio: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  clip-path: none !important;
}

.assembled-case .ac-product-media--mobile img {
  display: block;
  width: 100%;
  height: auto !important;
  object-fit: contain;
}

@media (max-width: 768px) {
  .assembled-case .ac-icon-board--manual .ac-icon-slot--favorites img {
    top: -3px;
    width: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
  }

  .assembled-case .ac-product-media--mobile {
    width: 24%;
  }
}


/* Project-1 native media sizing and mobile presentation. */
.assembled-case .ac-motion-video {
  aspect-ratio: 400 / 580;
  object-fit: contain;
}

.assembled-case .ac-product-media--mobile {
  width: min(100%, 13rem);
  padding: 0;
  line-height: 0;
  background: transparent !important;
}

@media (min-width: 769px) {
  .assembled-case .ac-motion-grid {
    grid-template-columns: repeat(3, minmax(0, 400px));
    justify-content: space-between;
  }

  .assembled-case .ac-motion-video {
    width: 400px;
    max-width: 100%;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .assembled-case .ac-refined-system-note--photo {
    height: 20rem;
    min-height: 20rem;
  }

  .assembled-case .ac-motion-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.25rem !important;
  }

  .assembled-case .ac-motion-card {
    display: block;
  }

  .assembled-case .ac-motion-video {
    display: block;
    width: min(100%, 400px);
    height: auto !important;
    margin: 0 auto;
    aspect-ratio: 400 / 580;
    object-fit: contain;
  }

  .assembled-case .ac-motion-card > div {
    padding: 1rem 1.25rem 1.25rem;
  }

  .assembled-case .ac-product-media--mobile {
    width: 29%;
  }
}
/* Project-1 final media refinements. */
.assembled-case .ac-hero-copy .ac-service-line span {
  color: var(--narrow-text-light) !important;
}

@media (min-width: 769px) {
  .assembled-case .ac-motion-grid {
    grid-template-columns: repeat(3, minmax(0, 360px));
  }

  .assembled-case .ac-motion-video {
    width: 360px;
    aspect-ratio: 360 / 522;
  }

  .assembled-case .ac-product-media--mobile {
    position: relative;
    z-index: 2;
    width: min(100%, 15rem);
    margin-left: -2.5rem;
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .assembled-case .ac-refined-system-note--photo {
    height: 24rem;
    min-height: 24rem;
  }

  .assembled-case .ac-motion-video {
    width: min(100%, 360px);
    aspect-ratio: 360 / 522;
  }
}
/* Project-1 product, interview and performance refinements. */
.assembled-case .ac-refined-performance-preview > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 769px) {
  .assembled-case .ac-product-media--mobile {
    align-self: end;
  }

  .assembled-case .ac-motion-grid {
    justify-content: center;
  }

  .assembled-case .ac-interview-more summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
  }

  .assembled-case .ac-interview-more summary .is-closed,
  .assembled-case .ac-interview-more summary .is-open {
    white-space: nowrap;
  }

  .assembled-case .ac-refined-performance-preview {
    padding: 0;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .assembled-case .ac-refined-system-note--photo {
    height: 26rem;
    min-height: 26rem;
  }
}
/* Project-1 content and PageSpeed preview refinement. */
.assembled-case .ac-refined-performance-preview {
  background: #fff !important;
}

.assembled-case .ac-refined-performance-preview > img {
  width: 88%;
  max-width: 32rem;
  margin: 0 auto;
}
/* Project-1 mobile clarity and PageSpeed scores. */
.assembled-case .ac-refined-performance-preview > .psi-scores-row {
  display: grid;
  width: 100%;
  height: auto;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: start;
}

.assembled-case .ac-refined-performance-preview .psi-circle::after {
  background: #fff;
}

@media (max-width: 768px) {
  .assembled-case .cs-brand-v2-facts strong {
    font-size: 1rem;
  }

  .assembled-case .cs-brand-v2-facts span {
    font-size: 0.625rem;
  }

  .assembled-case .ac-motion-card p {
    color: var(--narrow-text-light);
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo {
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo img {
    width: 96px !important;
    max-width: 96px !important;
    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
  }
}
/* Project-1 final mobile facts, logo and PSI score spacing. */
.assembled-case .psi-card-name,
.assembled-case .psi-score-label {
  color: #1b1816 !important;
}

@media (min-width: 769px) {
  .assembled-case .psi-score-item:nth-child(3) .psi-score-label {
    max-width: 9ch;
  }
}

@media (max-width: 768px) {
  .assembled-case .cs-brand-v2-facts strong {
    font-size: 0.875rem;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo img {
    width: 112px !important;
    max-width: 112px !important;
    height: 26px !important;
    min-height: 26px !important;
    max-height: 26px !important;
  }

  .assembled-case .ac-refined-performance-preview > .psi-scores-row {
    column-gap: 0.75rem;
    row-gap: 1.5rem;
  }
}
/* Project-1 final mobile PSI, logo and facts sizing. */
@media (max-width: 768px) {
  .assembled-case .ac-refined-performance-preview {
    width: 100%;
    height: 16rem;
  }

  .assembled-case .psi-score-item:nth-child(3) .psi-score-label {
    max-width: 9ch;
  }

  .assembled-case .cs-brand-v2-facts strong {
    font-size: 0.8125rem;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo {
    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo img {
    width: 124px !important;
    max-width: 124px !important;
    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
  }
}
/* Project-1 final mobile PSI label spacing and logo scale. */
@media (max-width: 768px) {
  .assembled-case .ac-refined-performance-preview {
    padding: 2rem 1rem !important;
  }

  .assembled-case .psi-score-item:nth-child(3) .psi-score-label {
    max-width: none;
    white-space: nowrap;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo {
    height: 120px !important;
    min-height: 120px !important;
    max-height: 120px !important;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo img {
    width: min(100%, 180px) !important;
    max-width: 180px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }
}
/* Project-1 final mobile hero ratio and logo balance. */
@media (max-width: 768px) {
  .assembled-case .ac-hero-media.ac-placeholder--hero {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 9 / 16;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo {
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
  }

  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo img {
    width: min(100%, 150px) !important;
    max-width: 150px !important;
  }
}
/* Project-1 final logo scale and desktop PSI two-line label. */
@media (min-width: 769px) {
  .assembled-case .psi-score-item:nth-child(3) .psi-score-label {
    max-width: none;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo img {
    width: min(100%, 110px) !important;
    max-width: 110px !important;
  }
}
/* Project-1 compact desktop PSI scores and reduced mobile logo. */
@media (min-width: 769px) {
  .assembled-case .ac-refined-performance-preview > .psi-scores-row {
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
    column-gap: 1rem;
  }
}

@media (max-width: 768px) {
  .assembled-case .ac-icon-board--manual .ac-icon-slot--logo img {
    width: min(100%, 55px) !important;
    max-width: 55px !important;
  }
}
