/* core/assets/src/css/base.css */
@layer reset, core, components, theme, project, utilities;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    line-height: 1.5;
    text-size-adjust: 100%;
  }

  body {
    margin: 0;
  }

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

@layer core {
  :root {
    color-scheme: light;
    --color-bg: #ffffff;
    --color-bg-soft: #f5f5f5;
    --color-surface: #ffffff;
    --color-surface-muted: #eeeeee;
    --color-text: #111111;
    --color-muted: #555555;
    --color-subtle: #777777;
    --color-line: #dddddd;
    --color-accent: #333333;
    --color-accent-strong: #111111;
    --color-accent-soft: #eeeeee;
    --color-focus: #005fcc;

    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: var(--font-body);

    --container: min(1120px, calc(100vw - 40px));
    --container-narrow: min(760px, calc(100vw - 40px));
    --section: clamp(56px, 8vw, 112px);
    --section-tight: clamp(40px, 6vw, 72px);
    --section-spacious: clamp(72px, 9vw, 132px);
    --section-compact: clamp(36px, 5vw, 64px);
    --header-min-height: 72px;
    --header-padding-block: 18px;
    --header-padding-inline: 0px;
    --brand-logo-max-width: 168px;
    --brand-logo-max-height: 40px;
    --brand-name-max-width: 22ch;
    --mobile-nav-max-width: min(100%, 560px);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-soft: none;
    --shadow-card: none;
    --motion-duration: 560ms;
    --motion-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  html {
    color: var(--color-text);
    background: var(--color-bg);
    font-family: var(--font-body);
    text-rendering: optimizeLegibility;
  }

  body {
    min-width: 320px;
    color: var(--color-text);
    background: transparent;
  }

  a {
    color: inherit;
  }

  .external-link__icon {
    width: 0.86em;
    height: 0.86em;
    display: inline-flex;
    margin-left: 0.28em;
    vertical-align: -0.08em;
    color: currentColor;
    pointer-events: none;
  }

  .external-link__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    flex: none;
  }

  :focus-visible {
    outline: 3px solid var(--color-focus);
    outline-offset: 3px;
  }

  .skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--color-text);
    color: var(--color-surface);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(calc(-100% - 24px));
  }

  .skip-link:focus-visible {
    transform: translateY(0);
  }

  .container {
    width: var(--container);
    margin: 0 auto;
  }

  .site-header,
  .site-footer {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: var(--header-padding-block) var(--header-padding-inline);
  }

  .site-header {
    min-height: var(--header-min-height);
  }

  .site-nav,
  .site-footer nav,
  .site-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .site-links {
    align-items: center;
  }

  .site-links__icon {
    display: inline-grid;
    place-items: center;
    width: 1.12em;
    height: 1.12em;
  }

  .site-links__icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .site-links--social .site-links__link {
    display: inline-grid;
    place-items: center;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 0;
    text-decoration: none;
  }

  .site-links--social .site-links__label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
  }

  .site-links--actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42em;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 0.58rem 0.92rem;
    text-decoration: none;
  }

  .site-links--actions a[data-link-context="primary"] {
    background: var(--color-text);
    color: var(--color-surface);
  }

  .brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.72em;
    max-width: 100%;
    text-decoration: none;
  }

  .brand__logo {
    width: auto;
    max-width: var(--brand-logo-max-width);
    max-height: var(--brand-logo-max-height);
    object-fit: contain;
  }

  .brand__name {
    min-width: 0;
    max-width: var(--brand-name-max-width);
    display: inline-block;
    overflow-wrap: anywhere;
  }

  .site-footer__brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    text-decoration: none;
  }

  .site-footer__brand-logo {
    width: auto;
    max-width: min(220px, 48vw);
    max-height: 96px;
    object-fit: contain;
  }

  .site-nav a,
  .site-footer a {
    overflow-wrap: anywhere;
  }

  .site-nav a {
    text-decoration: none;
  }

  .site-nav a[aria-current="page"],
  .site-nav a[aria-current="location"],
  .site-footer a[aria-current="page"] {
    color: var(--color-text);
    font-weight: 700;
  }

  .selection-widget {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    min-height: 42px;
    border: 1px solid color-mix(in srgb, currentColor 22%, transparent);
    border-radius: 999px;
    padding: 0.45rem 0.58rem 0.45rem 0.72rem;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
  }

  .selection-widget:hover,
  .selection-widget:focus-visible {
    border-color: currentColor;
    text-decoration: none;
  }

  .selection-widget__icon {
    display: inline-grid;
    place-items: center;
    width: 1.1rem;
    height: 1.1rem;
  }

  .selection-widget__icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .selection-widget__label {
    font-weight: 700;
  }

  .selection-widget__count {
    display: inline-grid;
    place-items: center;
    min-width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    padding: 0 0.32rem;
    background: var(--color-text);
    color: var(--color-surface);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
  }

  .selection-widget[data-state="empty"] .selection-widget__count {
    background: color-mix(in srgb, currentColor 12%, transparent);
    color: currentColor;
  }

  .section {
    padding: var(--section) 0;
  }

  .section--density-spacious {
    padding-block: var(--section-spacious);
  }

  .section--density-compact {
    padding-block: var(--section-compact);
  }

  .section--density-balanced {
    padding-block: var(--section);
  }

  .hero {
    display: grid;
    align-items: center;
    --hero-overlay-opacity: 0.32;
    --hero-media-opacity: 1;
  }

  .hero--overlay-none {
    --hero-overlay-opacity: 0;
    --hero-media-opacity: 1;
  }

  .hero--overlay-soft {
    --hero-overlay-opacity: 0.18;
  }

  .hero--overlay-medium {
    --hero-overlay-opacity: 0.34;
  }

  .hero--overlay-strong {
    --hero-overlay-opacity: 0.52;
  }

  .hero--tone-light {
    color: var(--color-surface);
  }

  .hero--tone-dark {
    color: var(--color-text);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
    gap: clamp(32px, 6vw, 96px);
    align-items: center;
  }

  .hero-media,
  .image-placeholder {
    min-width: 0;
  }

  .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: grid;
    place-items: center;
    padding: 24px;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .prose {
    max-width: 760px;
  }

  .prose h1,
  .prose h2,
  .prose h3 {
    margin: 0 0 0.4em;
    font-family: var(--font-heading);
    line-height: 1.05;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
    text-wrap: balance;
  }

  .prose h1 {
    font-size: clamp(2.7rem, 6vw, 5.6rem);
    font-size: clamp(calc(2.7rem * var(--type-h1-scale, 1)), calc(6vw * var(--type-h1-scale, 1)), calc(5.6rem * var(--type-h1-scale, 1)));
  }

  .prose h2 {
    font-size: clamp(2.1rem, 4.8vw, 4.2rem);
    font-size: clamp(calc(2.1rem * var(--type-h2-scale, 1)), calc(4.8vw * var(--type-h2-scale, 1)), calc(4.2rem * var(--type-h2-scale, 1)));
  }

  .prose h3 {
    font-size: clamp(1.35rem, 2.1vw, 1.9rem);
    font-size: clamp(calc(1.35rem * var(--type-h3-scale, 1)), calc(2.1vw * var(--type-h3-scale, 1)), calc(1.9rem * var(--type-h3-scale, 1)));
  }

  .prose p,
  .prose blockquote {
    max-width: 64ch;
    margin: 0 0 1.1em;
    color: var(--color-muted);
    font-size: clamp(17px, 1.7vw, 21px);
    font-size: clamp(calc(17px * var(--type-body-scale, 1)), calc(1.7vw * var(--type-body-scale, 1)), calc(21px * var(--type-body-scale, 1)));
  }

  .text-lead {
    max-width: 52ch;
    color: var(--color-text);
    font-size: clamp(19px, 2vw, 26px);
    font-size: clamp(calc(19px * var(--type-lead-scale, 1)), calc(2vw * var(--type-lead-scale, 1)), calc(26px * var(--type-lead-scale, 1)));
  }

  .software-notice {
    margin-top: clamp(28px, 4vw, 52px);
    padding-top: clamp(20px, 3vw, 32px);
    border-top: 1px solid var(--color-line);
  }

  .prose .software-notice h2 {
    max-width: none;
    margin-bottom: 0.75rem;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  }

  .prose .software-notice p {
    max-width: 74ch;
    font-size: clamp(15px, 1.25vw, 18px);
    font-size: clamp(calc(15px * var(--type-body-scale, 1)), calc(1.25vw * var(--type-body-scale, 1)), calc(18px * var(--type-body-scale, 1)));
  }

  .image-credits {
    margin-top: clamp(32px, 5vw, 64px);
    padding-top: clamp(24px, 4vw, 40px);
    border-top: 1px solid var(--color-line);
  }

  .prose .image-credits h2 {
    max-width: none;
    margin-bottom: 1rem;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
  }

  .image-credits__list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .image-credits__item {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
    padding: 0.85rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--color-line) 70%, transparent);
    overflow-wrap: anywhere;
  }

  .image-credits__item strong,
  .image-credits__item span,
  .image-credits__item small {
    min-width: 0;
  }

  .prose .image-credits__item strong {
    color: var(--color-text);
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .prose .image-credits__item span,
  .prose .image-credits__item small {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .prose .image-credits__item small {
    color: var(--color-subtle);
  }

  .eyebrow {
    margin: 0 0 16px;
    color: var(--color-accent);
    font-size: 0.75rem;
    font-size: calc(0.75rem * var(--type-accent-scale, 1));
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .actions,
  .cta-box {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
  }

  .button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid var(--color-text);
    border-radius: var(--radius-md);
    background: var(--color-text);
    color: var(--color-surface);
    font-size: 1rem;
    font-size: calc(1rem * var(--type-button-scale, 1));
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero__button {
    border-color: currentColor;
  }

  .hero__button--solid {
    background: var(--color-text);
    color: var(--color-surface);
  }

  .hero__button--soft {
    border-color: transparent;
    background: color-mix(in srgb, var(--color-accent-soft) 78%, var(--color-surface));
    color: var(--color-accent-strong);
  }

  .hero__button--outline {
    background: transparent;
    color: currentColor;
  }

  .hero__button--text-link {
    min-height: 0;
    padding-inline: 0;
    border-color: transparent;
    background: transparent;
    color: currentColor;
    text-decoration: underline;
    text-underline-offset: 0.22em;
  }

  .cta-box {
    justify-content: space-between;
    padding: clamp(28px, 5vw, 56px);
  }

  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity var(--motion-duration) var(--motion-ease),
      transform var(--motion-duration) var(--motion-ease);
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 760px) {
    :root {
      --container: min(100% - 32px, 1120px);
    }

    .site-header,
    .site-footer {
      align-items: flex-start;
      flex-direction: column;
      gap: 14px;
      padding-block: 16px;
    }

    .site-header {
      min-height: auto;
    }

    .site-nav,
    .site-footer nav,
    .site-links {
      gap: 12px;
    }

    .selection-widget {
      align-self: flex-start;
    }

    .hero {
      min-height: auto;
      padding-top: var(--section-tight);
    }

    .hero-grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 32px;
    }

    .hero-media {
      order: -1;
      min-height: 280px;
    }

    .prose h1,
    .prose h2 {
      max-width: none;
    }
  }
}

@layer components {
  .image-text__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
  }

  .image-text__media {
    min-width: 0;
    min-height: clamp(260px, 38vw, 520px);
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: var(--color-surface-muted);
  }

  .image-text__grid > .image-text__media {
    order: 2;
  }

  .image-text__content {
    order: 1;
  }

  .image-text--image-first .image-text__grid > .image-text__media {
    order: 1;
  }

  .image-text--image-first .image-text__content {
    order: 2;
  }

  .image-text__media picture,
  .image-text__media img,
  .gallery__item picture,
  .gallery__item img,
  .card picture,
  .card__image {
    width: 100%;
    height: 100%;
  }

  .image-text__media img,
  .gallery__item img,
  .card__image {
    object-fit: cover;
  }

  .image-text__media figcaption,
  .gallery__item figcaption {
    padding: 10px 12px 0;
    color: var(--color-subtle);
    font-size: 0.9rem;
  }

  .cards__intro,
  .gallery__intro,
  .faq__intro,
  .logos__intro,
  .stats__intro,
  .team__intro,
  .steps__intro {
    margin-bottom: clamp(24px, 4vw, 48px);
  }

  .cards__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 32px);
  }

  .card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: var(--color-surface);
  }

  .card__media,
  .card picture {
    aspect-ratio: 4 / 3;
    flex: 0 0 auto;
    height: auto;
    min-height: 190px;
    background: var(--color-surface-muted);
    overflow: hidden;
  }

  .card__body {
    padding: clamp(20px, 3vw, 28px);
  }

  .card__body h3 {
    margin: 0 0 0.55em;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .card__body p {
    margin: 0 0 1.1em;
    color: var(--color-muted);
    overflow-wrap: anywhere;
  }

  .card__action {
    margin-top: 4px;
  }

  .hero--fullbleed {
    min-height: min(760px, 78vh);
    position: relative;
    overflow: hidden;
    color: var(--color-surface);
  }

  .hero--fullbleed::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgb(0 0 0 / var(--hero-overlay-opacity));
  }

  .hero--fullbleed .hero-grid {
    min-height: inherit;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero--fullbleed .prose,
  .hero--fullbleed .hero-media {
    grid-area: 1 / 1;
  }

  .hero--fullbleed .prose {
    position: relative;
    z-index: 2;
    max-width: 760px;
  }

  .hero--fullbleed .prose h1,
  .hero--fullbleed .text-lead {
    color: inherit;
  }

  .hero--fullbleed .hero-media {
    min-height: inherit;
    opacity: var(--hero-media-opacity);
  }

  .hero--compact {
    padding-block: var(--section-tight);
  }

  .hero--compact .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.72fr);
    gap: clamp(24px, 4vw, 56px);
  }

  .hero--compact .prose h1 {
    font-size: clamp(2.25rem, 4.8vw, 4.3rem);
  }

  .section-text--narrow .prose,
  .quote--pullquote .quote__figure,
  .faq--compact .faq__items {
    max-width: var(--container-narrow);
    margin-inline: auto;
  }

  .section-text--intro .prose p:first-of-type {
    color: var(--color-text);
    font-size: clamp(1.2rem, 2.2vw, 1.65rem);
    line-height: 1.35;
  }

  .image-text--feature .image-text__grid {
    grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
  }

  .image-text--compact .image-text__media {
    min-height: clamp(220px, 28vw, 380px);
  }

  .cards--benefits .cards__grid,
  .cards--references .cards__grid,
  .cards--compact .cards__grid,
  .cards--image-grid .cards__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .cards--compact .cards__grid {
    gap: 14px;
  }

  .cards--compact .card__body {
    padding: clamp(16px, 2vw, 22px);
  }

  .cards--compact .card__body h3 {
    margin-bottom: 0.42em;
    font-size: clamp(1.05rem, 1.45vw, 1.28rem);
    line-height: 1.18;
  }

  .cards--compact .card__body p {
    margin-bottom: 0.85em;
    font-size: 0.96rem;
  }

  .cards--compact .card picture,
  .cards--compact .card__media {
    min-height: 150px;
  }

  .cards--editorial .cards__grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: var(--container-narrow);
  }

  .cards--editorial .card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.8fr);
    gap: clamp(16px, 3vw, 32px);
    align-items: start;
    padding-block: clamp(18px, 3vw, 28px);
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
  }

  .cards--editorial .card picture,
  .cards--editorial .card__media {
    min-height: 140px;
    aspect-ratio: 16 / 10;
  }

  .cards--editorial .card__body {
    padding: 0;
  }

  .cards--image-grid .card {
    display: grid;
    align-content: end;
    min-height: clamp(240px, 32vw, 380px);
    position: relative;
    isolation: isolate;
    color: var(--color-surface);
  }

  .cards--image-grid .card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 28%, rgb(0 0 0 / 0.58));
    pointer-events: none;
  }

  .cards--image-grid .card picture,
  .cards--image-grid .card__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .cards--image-grid .card__body {
    position: relative;
    z-index: 2;
    padding: clamp(18px, 3vw, 28px);
  }

  .cards--image-grid .card__body h3,
  .cards--image-grid .card__body p {
    color: inherit;
  }

  .cards--benefits .card {
    border-left: 4px solid var(--color-accent);
  }

  .cards--references .card {
    background: var(--color-surface-muted);
  }

  .gallery--mosaic .gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery--mosaic .gallery__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery--showcase .gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .gallery--showcase .gallery__item picture,
  .gallery--showcase .gallery__placeholder {
    min-height: clamp(320px, 42vw, 560px);
  }

  .cta--highlight .cta-box {
    background: var(--color-text);
    color: var(--color-surface);
  }

  .cta--highlight .cta-box p,
  .cta--highlight .cta-box h2 {
    color: inherit;
  }

  .cta--highlight .button {
    border-color: var(--color-surface);
    background: var(--color-surface);
    color: var(--color-text);
  }

  .cta--quiet .cta-box {
    border-inline: 0;
    border-radius: 0;
    background: transparent;
  }

  .logos--strip .logos__grid,
  .stats--compact .stats__grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .stats--compact .stat {
    padding: 18px;
  }

  .stats--compact .stat__value {
    font-size: clamp(1.65rem, 3vw, 2.5rem);
  }

  .stats--principles .stats__grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: var(--container-narrow);
    gap: 0;
    counter-reset: principles;
    border-top: 1px solid var(--color-line);
  }

  .stats--principles .stat {
    display: grid;
    grid-template-columns: minmax(44px, 0.28fr) minmax(0, 1.72fr);
    gap: clamp(16px, 3vw, 32px);
    padding: clamp(20px, 3vw, 30px) 0;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
    counter-increment: principles;
  }

  .stats--principles .stat__value {
    align-self: start;
    color: var(--color-accent);
    font-size: clamp(1.15rem, 2vw, 1.8rem);
    line-height: 1;
  }

  .stats--principles .stat__label {
    grid-column: 2;
    margin-top: 0;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    letter-spacing: 0;
    line-height: 1.18;
    text-transform: none;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .stats--principles .stat__text {
    grid-column: 2;
    max-width: 62ch;
    margin-top: 8px;
  }

  .steps--timeline .steps__list {
    grid-template-columns: minmax(0, 1fr);
    max-width: var(--container-narrow);
  }

  .team--compact .team__grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }

  .team--compact .team-card__media,
  .team--compact .team-card__placeholder {
    min-height: 190px;
  }

  .logos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(16px, 2.6vw, 28px);
  }

  .logo-card {
    min-width: 0;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    overflow: hidden;
  }

  .logo-card__link {
    height: 100%;
    display: grid;
    color: inherit;
    text-decoration: none;
  }

  .logo-card__media {
    min-height: 148px;
    display: grid;
    place-items: center;
    padding: 20px;
    background: var(--color-surface-muted);
  }

  .logos__image,
  .logo-card__media picture,
  .logo-card__media img {
    width: 100%;
    height: 100%;
  }

  .logo-card__media img {
    object-fit: contain;
  }

  .logos__placeholder {
    min-height: 108px;
    border: 1px dashed color-mix(in srgb, var(--color-text) 18%, var(--color-line));
    border-radius: calc(var(--radius-md) - 2px);
    background: color-mix(in srgb, var(--color-surface-muted) 72%, var(--color-surface));
    color: var(--color-subtle);
    font-size: 0.95rem;
    font-weight: 700;
  }

  .logo-card__body {
    display: grid;
    gap: 8px;
    padding: 18px 18px 20px;
  }

  .logo-card__body h3,
  .step__body h3 {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    line-height: 1.15;
  }

  .logo-card__body p,
  .step__body p {
    margin: 0;
    color: var(--color-muted);
  }

  .stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(18px, 3vw, 32px);
  }

  .stat {
    min-width: 0;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: var(--color-surface);
  }

  .stat__value,
  .stat__label,
  .stat__text {
    margin: 0;
  }

  .stat__value {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.96;
  }

  .stat__label {
    margin-top: 12px;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .stat__text {
    margin-top: 12px;
    color: var(--color-muted);
    max-width: 38ch;
  }

  .team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(18px, 3vw, 32px);
  }

  .team-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: var(--color-surface);
  }

  .team-card__media,
  .team-card__media picture,
  .team-card__image,
  .team-card__media img {
    width: 100%;
  }

  .team-card__media {
    min-height: 260px;
    background: var(--color-surface-muted);
  }

  .team-card__image,
  .team-card__media picture,
  .team-card__media img {
    height: 100%;
  }

  .team-card__media img {
    object-fit: cover;
  }

  .team-card__placeholder {
    min-height: 260px;
    background: var(--color-surface-muted);
  }

  .team-card__body {
    display: grid;
    gap: 10px;
    padding: clamp(20px, 3vw, 28px);
  }

  .team-card__body h3 {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
    line-height: 1.12;
  }

  .team-card__body p {
    margin: 0;
    color: var(--color-muted);
  }

  .team-card__role {
    color: var(--color-accent);
    font-size: 0.88rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .team-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 4px;
  }

  .team-card__links a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
  }

  .team-card__action {
    margin-top: 6px;
    justify-self: start;
  }

  .steps__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(18px, 3vw, 32px);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .step {
    min-width: 0;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    align-items: start;
  }

  .step__index {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--color-accent-soft);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
  }

  .step__body {
    display: grid;
    gap: 10px;
  }

  .step__label,
  .step__meta {
    font-size: 0.9rem;
  }

  .step__label {
    color: var(--color-accent);
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .step__meta {
    color: var(--color-subtle);
  }

  .gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2.4vw, 28px);
  }

  .gallery__item {
    min-width: 0;
    margin: 0;
  }

  .gallery__item picture,
  .gallery__placeholder,
  .gallery__empty {
    min-height: clamp(220px, 28vw, 420px);
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: var(--color-surface-muted);
  }

  .quote__figure {
    max-width: var(--container-narrow);
    margin: 0 auto;
  }

  .quote__figure blockquote {
    margin: 0;
  }

  .quote__figure blockquote p {
    max-width: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.4vw, 3rem);
    line-height: 1.12;
  }

  .quote__figure figcaption {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 22px;
    color: var(--color-muted);
  }

  .quote__figure cite {
    color: var(--color-text);
    font-style: normal;
    font-weight: 700;
  }

  .faq__items {
    max-width: var(--container-narrow);
  }

  .faq__item {
    border-top: 1px solid var(--color-line);
  }

  .faq__item:last-child {
    border-bottom: 1px solid var(--color-line);
  }

  .faq__item summary {
    min-height: 56px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--color-text);
    font-weight: 750;
  }

  .faq__answer {
    padding: 0 0 18px;
  }

  .faq__answer p {
    max-width: 66ch;
    margin: 0 0 1em;
    color: var(--color-muted);
  }

  .contact-form {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
  }

  .contact-form__intro {
    max-width: 620px;
  }

  .contact-form__details {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
  }

  .contact-form__detail {
    display: grid;
    gap: 3px;
    padding-top: 14px;
    border-top: 1px solid var(--color-line);
  }

  .contact-form__detail dt {
    color: var(--color-subtle);
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .contact-form__detail dd {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.35;
  }

  .contact-form__detail a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
  }

  .contact-form__brand {
    margin-top: clamp(24px, 4vw, 42px);
  }

  .contact-form__brand-logo {
    width: auto;
    max-width: min(180px, 52vw);
    max-height: 140px;
    object-fit: contain;
  }

  .contact-form__form {
    display: grid;
    gap: 18px;
    min-width: 0;
  }

  .form__fields {
    display: grid;
    gap: 18px;
  }

  .form__field {
    position: relative;
    display: grid;
    gap: 7px;
  }

  .form__field label {
    color: var(--color-text);
    font-weight: 700;
    transition: color 180ms ease;
  }

  .form__field input:not([type="checkbox"]),
  .form__field textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-text);
    font: inherit;
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-focus) 0%, transparent);
    transition:
      border-color 180ms ease,
      box-shadow 180ms ease,
      background-color 180ms ease,
      transform 180ms ease;
  }

  .form__field input:not([type="checkbox"]):hover,
  .form__field textarea:hover {
    border-color: color-mix(in srgb, var(--color-text) 34%, var(--color-line));
  }

  .form__field input:not([type="checkbox"]):focus,
  .form__field textarea:focus {
    border-color: var(--color-focus);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-focus) 16%, transparent);
    outline: 0;
  }

  .form__field textarea {
    min-height: 150px;
    resize: vertical;
  }

  .form__field--checkbox {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .form__field--checkbox input {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
    accent-color: var(--color-accent-strong);
  }

  .form__field--checkbox .form__error,
  .form__field--checkbox .form__hint {
    grid-column: 2;
  }

  .form__privacy,
  .form__error,
  .form__hint,
  .form__status {
    margin: 0;
  }

  .form__privacy {
    max-width: 64ch;
    color: var(--color-muted);
    font-size: 0.95rem;
  }

  .form__error {
    color: #9d1c1c;
    font-size: 0.95rem;
    animation: form-message-in 180ms ease both;
  }

  .form__hint {
    color: var(--color-subtle);
    font-size: 0.86rem;
    justify-self: end;
  }

  .form__hint.is-warning {
    color: var(--color-accent-strong);
  }

  .form__status {
    padding: 12px 14px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-text);
    font-weight: 700;
    animation: form-status-in 220ms ease both;
  }

  .form__status--success {
    border-color: #2d7a46;
    background: color-mix(in srgb, #2d7a46 9%, var(--color-surface));
  }

  .form__status--error {
    border-color: #9d1c1c;
    background: color-mix(in srgb, #9d1c1c 8%, var(--color-surface));
  }

  .form__field.is-invalid label {
    color: #7f1616;
  }

  .form__field.is-invalid input:not([type="checkbox"]),
  .form__field.is-invalid textarea {
    border-color: #9d1c1c;
    background: color-mix(in srgb, #9d1c1c 4%, var(--color-surface));
  }

  .form__field.is-invalid input:not([type="checkbox"]):focus,
  .form__field.is-invalid textarea:focus {
    box-shadow: 0 0 0 4px color-mix(in srgb, #9d1c1c 14%, transparent);
  }

  .form__field.is-valid input:not([type="checkbox"]),
  .form__field.is-valid textarea {
    border-color: color-mix(in srgb, #2d7a46 72%, var(--color-line));
  }

  .contact-form__form.is-submitting {
    pointer-events: none;
  }

  .contact-form__form.is-submitting .button {
    opacity: 0.82;
    cursor: progress;
  }

  .contact-form__form .button {
    min-width: 150px;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      box-shadow 180ms ease;
  }

  .contact-form__form .button:disabled {
    transform: none;
  }

  @keyframes form-message-in {
    from {
      opacity: 0;
      transform: translateY(-4px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes form-status-in {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .form__trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  @media (max-width: 900px) {
    .cards__grid,
    .gallery__grid,
    .image-text__grid,
    .contact-form {
      grid-template-columns: minmax(0, 1fr);
    }

    .cards--editorial .card,
    .stats--principles .stat {
      grid-template-columns: minmax(0, 1fr);
    }

    .cards--editorial .card picture,
    .cards--editorial .card__media {
      min-height: 190px;
    }

    .stats--principles .stat__label,
    .stats--principles .stat__text {
      grid-column: auto;
    }

    .image-text__grid > .image-text__media,
    .image-text--image-first .image-text__grid > .image-text__media {
      order: 1;
    }

    .image-text__content,
    .image-text--image-first .image-text__content {
      order: 2;
    }

    .step {
      grid-template-columns: 56px minmax(0, 1fr);
      gap: 16px;
    }

    .step__index {
      width: 56px;
      height: 56px;
    }
  }
}

@layer components {
  .inquiry-shop__header {
    max-width: 760px;
    margin-bottom: var(--space-l, 2rem);
  }

  .inquiry-filter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
    align-items: end;
    margin: 0 0 var(--space-l, 2rem);
  }

  .inquiry-filter label,
  .inquiry-form label {
    display: grid;
    gap: 0.35rem;
  }

  .inquiry-filter input,
  .inquiry-filter select,
  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea,
  .selection-card input {
    width: 100%;
    border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
    border-radius: var(--radius-md, 8px);
    padding: 0.75rem 0.85rem;
    background: var(--color-surface, #fff);
    color: inherit;
    font: inherit;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .product-grid--related {
    width: 100%;
    max-width: 720px;
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: start;
  }

  .inquiry-shop .button--secondary,
  .inquiry-modal .button--secondary {
    border-color: color-mix(in srgb, currentColor 32%, transparent);
    background: transparent;
    color: var(--color-text, currentColor);
  }

  .inquiry-shop .inquiry-shop__primary-action {
    --button-bg: linear-gradient(
      135deg,
      color-mix(in srgb, var(--color-accent-strong, currentColor) 92%, var(--color-text, currentColor)),
      var(--color-accent-strong, var(--color-text, currentColor))
    );
    --button-color: var(--color-surface, #fff);
    --button-border: var(--color-accent-strong, var(--color-text, currentColor));
    --button-hover-bg: linear-gradient(
      135deg,
      var(--color-accent-strong, var(--color-text, currentColor)),
      color-mix(in srgb, var(--color-accent-strong, currentColor) 86%, #000)
    );
    --button-hover-color: var(--color-surface, #fff);

    border-color: var(--color-accent-strong, var(--color-text, currentColor));
    background:
      linear-gradient(
        135deg,
        color-mix(in srgb, var(--color-accent-strong, currentColor) 92%, var(--color-text, currentColor)),
        var(--color-accent-strong, var(--color-text, currentColor))
      );
    color: var(--color-surface, #fff);
    box-shadow: 0 14px 34px color-mix(in srgb, var(--color-accent-strong, currentColor) 22%, transparent);
  }

  .inquiry-shop .inquiry-shop__primary-action:hover,
  .inquiry-shop .inquiry-shop__primary-action:focus-visible {
    border-color: var(--color-accent-strong, var(--color-text, currentColor));
    box-shadow: 0 18px 42px color-mix(in srgb, var(--color-accent-strong, currentColor) 28%, transparent);
    transform: translateY(-1px);
  }

  .product-card {
    display: grid;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    border-radius: var(--radius-md, 8px);
    background: var(--color-surface, #fff);
  }

  .product-card__category {
    position: absolute;
    z-index: 1;
    top: 0.85rem;
    left: 0.85rem;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 1.7rem);
    min-height: 1.75rem;
    border: 1px solid rgb(255 255 255 / 0.55);
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
    background: color-mix(in srgb, var(--color-surface, #fff) 88%, transparent);
    color: var(--color-accent-strong, var(--color-text));
    font-size: 0.78rem;
    font-weight: 750;
    line-height: 1.15;
    overflow-wrap: anywhere;
    box-shadow: 0 0.45rem 1rem rgb(0 0 0 / 0.16);
  }

  .product-card__image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: color-mix(in srgb, currentColor 8%, transparent);
    overflow: hidden;
  }

  .product-card__image img,
  .product-detail__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .product-card__body {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
  }

  .product-card--compact {
    align-content: start;
  }

  .product-card--compact .product-card__image {
    aspect-ratio: 1 / 1;
  }

  .product-card--compact .product-card__category {
    top: 0.55rem;
    left: 0.55rem;
    max-width: calc(100% - 1.1rem);
    min-height: 1.45rem;
    padding: 0.12rem 0.45rem;
    font-size: 0.66rem;
  }

  .product-card--compact .product-card__body {
    gap: 0.65rem;
    padding: 0.75rem;
  }

  .product-card--compact h3 {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .product-card--compact .button {
    min-height: 2.35rem;
    width: 100%;
    padding: 0.48rem 0.62rem;
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .product-card__styles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .product-card__style {
    display: inline-flex;
    align-items: center;
    min-height: 1.55rem;
    border: 1px solid color-mix(in srgb, var(--color-accent, currentColor) 30%, transparent);
    border-radius: 999px;
    padding: 0.15rem 0.55rem;
    background: color-mix(in srgb, var(--color-accent, currentColor) 9%, transparent);
    color: var(--color-accent-strong, var(--color-text, currentColor));
    font-size: 0.76rem;
    font-weight: 750;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .product-card__actions,
  .product-detail__actions,
  .selection-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    align-items: center;
  }

  .inquiry-shop .selection-actions__clear {
    --button-color: color-mix(in srgb, #8e2f2f 72%, var(--color-text, currentColor));
    --button-border: color-mix(in srgb, #8e2f2f 28%, transparent);
    --button-hover-bg: color-mix(in srgb, #8e2f2f 8%, transparent);
    --button-hover-color: color-mix(in srgb, #8e2f2f 78%, var(--color-text, currentColor));

    border-color: color-mix(in srgb, #8e2f2f 28%, transparent);
    color: color-mix(in srgb, #8e2f2f 72%, var(--color-text, currentColor));
  }

  .inquiry-shop .selection-actions__clear:hover,
  .inquiry-shop .selection-actions__clear:focus-visible {
    border-color: color-mix(in srgb, #8e2f2f 52%, transparent);
    background: color-mix(in srgb, #8e2f2f 8%, transparent);
  }

  @media (max-width: 640px) {
    .inquiry-shop--selection .selection-actions {
      align-items: stretch;
    }

    .inquiry-shop--selection .inquiry-shop__primary-action {
      order: -1;
      width: 100%;
    }
  }

  .inquiry-load-more {
    display: grid;
    justify-items: center;
    gap: 0.75rem;
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
    text-align: center;
  }

  @media (max-width: 640px) {
    .inquiry-shop__header {
      margin-bottom: 1.15rem;
    }

    .inquiry-filter {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.62rem;
      align-items: end;
      margin-bottom: 1.2rem;
    }

    .inquiry-filter label {
      gap: 0.24rem;
      font-size: 0.86rem;
      line-height: 1.2;
    }

    .inquiry-filter label:first-child {
      grid-column: 1 / -1;
    }

    .inquiry-filter input,
    .inquiry-filter select {
      min-height: 42px;
      padding: 0.58rem 0.68rem;
      font-size: 0.95rem;
      line-height: 1.2;
    }

    .inquiry-filter .button {
      min-height: 42px;
      padding: 0.62rem 0.7rem;
      font-size: 0.88rem;
      line-height: 1.15;
    }

    .inquiry-filter__reset {
      grid-column: auto;
    }

    .product-card__body {
      gap: 0.72rem;
    }

    .product-grid--related {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 360px) {
    .product-grid--related {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  .inquiry-load-more p {
    margin: 0;
    color: var(--color-muted, currentColor);
    font-size: 0.94rem;
  }

  .product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
  }

  .product-detail__gallery {
    display: grid;
    gap: 0.85rem;
    min-width: 0;
  }

  .product-detail__media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md, 8px);
    overflow: hidden;
    background: color-mix(in srgb, currentColor 8%, transparent);
  }

  .product-detail__media-button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: zoom-in;
  }

  .product-detail__media-button::after {
    position: absolute;
    content: "";
    inset: auto 0 0;
    height: 34%;
    pointer-events: none;
    background: linear-gradient(transparent, rgb(0 0 0 / 0.42));
    opacity: 0;
    transition: opacity 160ms ease;
  }

  .product-detail__media-button:hover::after,
  .product-detail__media-button:focus-visible::after {
    opacity: 1;
  }

  .product-detail__media-zoom {
    position: absolute;
    z-index: 1;
    right: 0.85rem;
    bottom: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border: 1px solid rgb(255 255 255 / 0.55);
    border-radius: 999px;
    padding: 0;
    background: color-mix(in srgb, var(--color-surface, #fff) 88%, transparent);
    color: var(--color-accent-strong, var(--color-text));
    box-shadow: 0 0.45rem 1rem rgb(0 0 0 / 0.18);
  }

  .product-detail__media-zoom svg {
    width: 1.18rem;
    height: 1.18rem;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .product-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .product-detail__thumb {
    aspect-ratio: 4 / 3;
    border: 2px solid transparent;
    border-radius: var(--radius-md, 8px);
    padding: 0;
    background: color-mix(in srgb, currentColor 8%, transparent);
    cursor: pointer;
    overflow: hidden;
  }

  .product-detail__thumb[aria-current="true"],
  .product-detail__thumb:hover,
  .product-detail__thumb:focus-visible {
    border-color: var(--color-accent, currentColor);
  }

  .product-detail__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .product-detail__content {
    display: grid;
    gap: 1rem;
  }

  .product-detail__facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.8rem;
  }

  .product-detail__facts div {
    border-top: 1px solid color-mix(in srgb, currentColor 16%, transparent);
    padding-top: 0.65rem;
  }

  .product-detail__facts dt {
    font-size: 0.78rem;
    opacity: 0.72;
  }

  .product-detail__facts dd {
    margin: 0.15rem 0 0;
    font-weight: 700;
  }

  .product-related {
    display: grid;
    gap: clamp(1rem, 2vw, 1.35rem);
    margin-top: clamp(2.5rem, 6vw, 4.5rem);
  }

  .product-related__header {
    display: grid;
    gap: 0.35rem;
    max-width: 46rem;
  }

  .product-related__header h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
  }

  .inquiry-note,
  .inquiry-shop__empty {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md, 8px);
    background: color-mix(in srgb, currentColor 7%, transparent);
  }

  .inquiry-shop__empty {
    display: grid;
    gap: 0.25rem;
  }

  .selection-list {
    margin-bottom: 1rem;
  }

  .selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 360px));
    justify-content: start;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .selection-card {
    display: grid;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    border-radius: var(--radius-md, 8px);
    background: var(--color-surface, #fff);
  }

  .selection-card__media {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    min-height: 0;
    background: color-mix(in srgb, currentColor 8%, transparent);
    color: color-mix(in srgb, currentColor 68%, transparent);
    font-weight: 700;
    text-align: center;
    overflow: hidden;
  }

  .selection-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .selection-card__body {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
  }

  .selection-card__head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .selection-card__body h2 {
    min-width: 0;
    margin: 0;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  }

  .selection-card__remove {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    min-height: 2.25rem;
    border: 1px solid color-mix(in srgb, currentColor 16%, transparent);
    border-radius: 999px;
    padding: 0;
    background: transparent;
    color: color-mix(in srgb, currentColor 62%, transparent);
    cursor: pointer;
  }

  .selection-card__remove:hover,
  .selection-card__remove:focus-visible {
    border-color: currentColor;
    color: var(--color-text);
    background: color-mix(in srgb, currentColor 6%, transparent);
  }

  .selection-card__remove svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .selection-card__quantity {
    display: grid;
    gap: 0.35rem;
  }

  .selection-card__quantity input {
    max-width: 8rem;
  }

  .selection-save,
  .selection-share {
    display: grid;
    gap: 1rem;
    max-width: 720px;
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    border-radius: var(--radius-md, 8px);
    padding: clamp(1rem, 2vw, 1.25rem);
    background: color-mix(in srgb, var(--color-surface, #fff) 88%, transparent);
  }

  .selection-save[hidden] {
    display: none !important;
  }

  .selection-save h2,
  .selection-share h2 {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.15;
  }

  .selection-save p,
  .selection-share p {
    margin: 0.35rem 0 0;
    color: var(--color-muted, currentColor);
  }

  .selection-save__form {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    max-width: none;
  }

  .selection-save__form .form__status,
  .selection-save__form .form__error,
  .selection-save__form .form__trap {
    grid-column: 1 / -1;
  }

  .selection-share input {
    width: 100%;
    border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
    border-radius: var(--radius-md, 8px);
    padding: 0.7rem 0.8rem;
    background: var(--color-surface, #fff);
    color: inherit;
    font: inherit;
  }

  .inquiry-form-layout {
    display: grid;
    gap: 1.4rem;
  }

  .inquiry-flow {
    display: grid;
    gap: clamp(1.25rem, 3vw, 2rem);
  }

  .inquiry-flow__body {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
  }

  .inquiry-flow__summary {
    position: sticky;
    top: calc(var(--header-min-height, 72px) + 1rem);
    display: grid;
    gap: 0.85rem;
    border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    border-radius: var(--radius-md, 8px);
    padding: clamp(1rem, 2vw, 1.25rem);
    background: var(--color-surface, #fff);
  }

  .inquiry-flow__summary h2,
  .inquiry-success h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.15;
  }

  .inquiry-success {
    display: grid;
    gap: 0.75rem;
    border: 1px solid color-mix(in srgb, var(--color-accent, currentColor) 26%, transparent);
    border-radius: var(--radius-md, 8px);
    padding: clamp(1.1rem, 3vw, 1.5rem);
    background: color-mix(in srgb, var(--color-accent, currentColor) 9%, var(--color-surface, #fff));
  }

  .inquiry-public-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    border-radius: var(--radius-md, 8px);
    background: var(--color-surface, #fff);
    overflow: hidden;
  }

  .inquiry-public-details div {
    min-width: 0;
    padding: 1rem;
    border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent);
  }

  .inquiry-public-details div:nth-child(odd) {
    border-right: 1px solid color-mix(in srgb, currentColor 12%, transparent);
  }

  .inquiry-public-details dt {
    margin: 0 0 0.35rem;
    color: var(--color-muted, #6f6a61);
    font-size: 0.82rem;
    font-weight: 800;
  }

  .inquiry-public-details dd {
    margin: 0;
    color: var(--color-text, #1f1d1a);
    font-size: 1rem;
    line-height: 1.45;
  }

  .inquiry-section-title {
    margin: clamp(2rem, 4vw, 3rem) 0 1rem;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
  }

  .inquiry-form {
    display: grid;
    gap: 1rem;
    max-width: 860px;
  }

  .inquiry-form__fieldset {
    display: grid;
    gap: 0.85rem;
    min-width: 0;
    margin: 0;
    border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    border-radius: var(--radius-md, 8px);
    padding: clamp(1rem, 2vw, 1.25rem);
    background: color-mix(in srgb, var(--color-surface, #fff) 84%, transparent);
  }

  .inquiry-form__fieldset legend {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0 0.35rem;
    font-weight: 850;
  }

  .inquiry-form__fieldset legend span {
    color: var(--color-accent, currentColor);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .inquiry-form__hint,
  .form__help,
  .inquiry-form__submit p {
    margin: 0;
    color: var(--color-muted, currentColor);
    font-size: 0.94rem;
  }

  .inquiry-form .form__fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
  }

  .inquiry-form .form__field--checkbox {
    grid-column: 1 / -1;
  }

  .inquiry-summary__list {
    display: grid;
    gap: 0.55rem;
    padding: 0;
    list-style: none;
  }

  .inquiry-summary__list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    padding-bottom: 0.45rem;
  }

  .inquiry-form__submit {
    display: grid;
    justify-items: start;
    gap: 0.65rem;
    padding-top: 0.25rem;
  }

  [data-inquiry-add] {
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  }

  [data-inquiry-clear][hidden],
  [data-inquiry-request-action][hidden] {
    display: none !important;
  }

  [data-inquiry-add].is-selected {
    border-color: var(--color-accent, currentColor) !important;
    background: color-mix(in srgb, var(--color-accent, currentColor) 18%, var(--color-surface, #fff)) !important;
    color: var(--color-accent-strong, var(--color-text)) !important;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-accent, currentColor) 32%, transparent) !important;
  }

  [data-inquiry-add].is-added {
    transform: translateY(-1px);
    border-color: var(--color-accent-strong, currentColor) !important;
    background: var(--color-accent-strong, currentColor) !important;
    color: var(--color-surface, #fff) !important;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-accent, currentColor) 24%, transparent) !important;
  }

  .inquiry-modal {
    position: fixed;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    inset: 0;
  }

  .inquiry-modal[hidden] {
    display: none;
  }

  .inquiry-modal__backdrop {
    position: absolute;
    background: rgb(0 0 0 / 0.42);
    inset: 0;
  }

  .inquiry-modal__panel {
    position: relative;
    width: min(100%, 460px);
    border: 1px solid color-mix(in srgb, currentColor 14%, transparent);
    border-radius: var(--radius-md, 8px);
    padding: clamp(1.25rem, 4vw, 1.75rem);
    background: var(--color-surface, #fff);
    color: var(--color-text, #111);
    box-shadow: 0 1.25rem 3rem rgb(0 0 0 / 0.22);
  }

  .inquiry-modal__panel h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
  }

  .inquiry-modal__panel p {
    margin: 0;
    color: var(--color-muted, currentColor);
  }

  .inquiry-modal__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.7rem;
    margin-top: 1.25rem;
  }

  .inquiry-modal__danger {
    border-color: var(--color-accent-strong, currentColor) !important;
    background: var(--color-accent-strong, currentColor) !important;
    color: var(--color-surface, #fff) !important;
  }

  .inquiry-image-lightbox {
    z-index: 1100;
    padding: clamp(0.75rem, 3vw, 2rem);
  }

  .inquiry-image-lightbox__backdrop {
    background: rgb(0 0 0 / 0.86);
  }

  .inquiry-image-lightbox__panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0.85rem;
    width: min(100%, 1180px);
    max-height: min(92vh, 900px);
    color: #fff;
  }

  .inquiry-image-lightbox__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .inquiry-image-lightbox .inquiry-image-lightbox__bar h2 {
    min-width: 0;
    margin: 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 800;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .inquiry-image-lightbox__actions {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.7rem;
  }

  .inquiry-image-lightbox__counter {
    color: rgb(255 255 255 / 0.78);
    font-size: 0.92rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .inquiry-image-lightbox__close {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border: 1px solid rgb(255 255 255 / 0.45);
    border-radius: 999px;
    padding: 0;
    background: rgb(255 255 255 / 0.12);
    color: inherit;
    cursor: pointer;
  }

  .inquiry-image-lightbox__close svg,
  .inquiry-image-lightbox__nav svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .inquiry-image-lightbox__stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 0;
  }

  .inquiry-image-lightbox__stage img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(92vh - 5rem);
    object-fit: contain;
    border-radius: var(--radius-md, 8px);
    box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 0.34);
  }

  .inquiry-image-lightbox__nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgb(255 255 255 / 0.45);
    border-radius: 999px;
    padding: 0;
    background: rgb(0 0 0 / 0.32);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
  }

  .inquiry-image-lightbox__nav:hover,
  .inquiry-image-lightbox__nav:focus-visible {
    background: rgb(255 255 255 / 0.16);
  }

  .inquiry-image-lightbox__nav--prev {
    left: 1rem;
  }

  .inquiry-image-lightbox__nav--next {
    right: 1rem;
  }

  @media (max-width: 760px) {
    .inquiry-flow__body {
      grid-template-columns: 1fr;
    }

    .inquiry-public-details {
      grid-template-columns: 1fr;
    }

    .inquiry-public-details div:nth-child(odd) {
      border-right: 0;
    }

    .inquiry-flow__summary {
      position: static;
      order: -1;
    }

    .product-detail {
      grid-template-columns: 1fr;
    }

    .product-detail__media-zoom {
      right: 0.65rem;
      bottom: 0.65rem;
    }

    .selection-save__form {
      grid-template-columns: 1fr;
    }

    .inquiry-image-lightbox__bar {
      align-items: flex-start;
    }

    .inquiry-image-lightbox__nav {
      width: 2.75rem;
      height: 2.75rem;
    }

    .inquiry-image-lightbox__nav--prev {
      left: 0.55rem;
    }

    .inquiry-image-lightbox__nav--next {
      right: 0.55rem;
    }
  }
}

@layer utilities {
  @media (max-width: 760px) {
    .section.inquiry-shop {
      padding-top: max(var(--section, 4rem), 12rem);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    :root {
      --motion-duration: 1ms;
    }

    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      transition-duration: 1ms !important;
      animation-duration: 1ms !important;
      animation-iteration-count: 1 !important;
    }

    [data-reveal] {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .form__error,
    .form__status {
      animation: none;
    }
  }
}


/* themes/editorial-atelier/assets/src/theme.css */
@font-face {
  font-family: "Heimat Noto Serif Display";
  src: url("/assets/NotoSerifDisplay.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@layer theme {
  :root {
    color-scheme: light;
    --color-bg: #f8f6f1;
    --color-bg-soft: #ebe5d9;
    --color-surface: #fffdf8;
    --color-surface-muted: #e4ded2;
    --color-text: #211d18;
    --color-muted: #696158;
    --color-subtle: #90877b;
    --color-line: #d8d0c3;
    --color-accent: #6d7a60;
    --color-accent-strong: #2d3328;
    --color-accent-soft: #d8dece;
    --color-atelier-clay: #a86f55;
    --color-atelier-ink: #0f0f0d;
    --color-focus: #6d7a60;

    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: Baskervville, Georgia, "Times New Roman", serif;
    --font-accent: var(--font-body);
    --font-brand-serif: "Heimat Noto Serif Display", "Noto Serif Display", Georgia, "Times New Roman", serif;
    --type-h1-weight: 400;
    --type-h1-line: 1.02;
    --type-h1-tracking: 0em;
    --type-h1-transform: none;
    --type-h2-weight: 400;
    --type-h2-line: 1.08;
    --type-h2-tracking: 0em;
    --type-h2-transform: none;
    --type-h3-weight: 400;
    --type-h3-line: 1.14;
    --type-h3-tracking: 0em;
    --type-h3-transform: none;
    --type-body-weight: 400;
    --type-body-line: 1.58;
    --type-body-tracking: 0em;
    --type-body-transform: none;
    --type-lead-weight: 400;
    --type-lead-line: 1.42;
    --type-lead-tracking: 0em;
    --type-lead-transform: none;
    --type-button-weight: 760;
    --type-button-line: 1.1;
    --type-button-tracking: 0.045em;
    --type-button-transform: uppercase;
    --type-accent-weight: 700;
    --type-accent-line: 1.2;
    --type-accent-tracking: 0.08em;
    --type-accent-transform: uppercase;

    --container: min(1340px, calc(100vw - clamp(32px, 7vw, 112px)));
    --container-narrow: min(820px, calc(100vw - clamp(32px, 8vw, 128px)));
    --section: clamp(74px, 9.5vw, 140px);
    --section-tight: clamp(54px, 7vw, 92px);
    --section-spacious: clamp(88px, 11vw, 168px);
    --section-compact: clamp(44px, 6vw, 78px);
    --header-min-height: 76px;
    --brand-logo-max-width: 292px;
    --brand-logo-max-height: 62px;
    --brand-name-max-width: 24ch;
    --mobile-nav-max-width: min(100%, 620px);
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --motion-duration: 760ms;
    --motion-ease: cubic-bezier(0.19, 1, 0.22, 1);
  }

  html {
    scroll-behavior: smooth;
    background: var(--color-bg);
    overflow-x: clip;
  }

  body {
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgb(255 255 255 / 0.38), transparent 34%, rgb(109 122 96 / 0.035) 100%),
      var(--color-bg);
  }

  .container {
    width: var(--container);
  }

  .skip-link {
    border-radius: 0;
    background: var(--color-atelier-ink);
    color: var(--color-surface);
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    margin: 0;
    padding: clamp(22px, 3vw, 38px) clamp(24px, 4vw, 56px);
    transform: none;
    color: var(--color-text);
    mix-blend-mode: normal;
    transition:
      color 520ms var(--motion-ease),
      background-color 520ms var(--motion-ease),
      transform 620ms var(--motion-ease),
      border-color 520ms var(--motion-ease);
  }

  .is-over-hero:not(.has-mobile-nav-open) .site-header {
    color: #fff;
    background: transparent;
  }

  .is-scrolled:not(.has-mobile-nav-open) .site-header {
    color: var(--color-text);
    background: rgb(248 246 241 / 0.88);
    border-bottom: 1px solid rgb(33 29 24 / 0.08);
    backdrop-filter: blur(18px);
  }

  @media (min-width: 961px) {
    .site-header {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: clamp(24px, 4vw, 72px);
      align-items: center;
      padding-block: clamp(9px, 1.15vw, 14px);
    }

    .site-header .brand {
      position: static;
      justify-self: start;
      transform: none;
    }

    .site-header .nav-toggle {
      display: none;
    }

    .site-header .site-nav {
      position: static;
      inset: auto;
      z-index: auto;
      display: flex;
      justify-self: end;
      align-items: center;
      justify-content: flex-end;
      gap: clamp(14px, 1.7vw, 28px);
      padding: 0;
      background: transparent;
      color: inherit;
      opacity: 1;
      visibility: visible;
      transform: none;
      transition: none;
    }

    .site-header .site-nav a {
      max-width: none;
      color: inherit;
      font-family: var(--font-body);
      font-size: clamp(0.82rem, 0.86vw, 0.95rem);
      font-weight: 720;
      line-height: 1.2;
      letter-spacing: 0.03em;
      text-transform: none;
      white-space: nowrap;
      opacity: 1;
      transform: none;
      transition: color 260ms ease;
    }

    .site-header .site-nav a::after {
      bottom: -0.44rem;
      height: 2px;
      background: var(--color-focus);
      opacity: 0.72;
    }

    .site-header .site-nav a:hover::after,
    .site-header .site-nav a:focus-visible::after,
    .site-header .site-nav a[aria-current="location"]::after {
      transform: scaleX(1);
      opacity: 1;
    }

  .site-header .site-nav a[href^="/#"][aria-current="page"]::after {
      transform: scaleX(0);
    }

    .site-header .site-nav a[href="/kontakt"] {
      display: inline-flex;
      align-items: center;
      min-height: 43px;
      padding: 0.74rem 1.02rem;
      border: 1px solid color-mix(in srgb, currentColor 36%, transparent);
      background: color-mix(in srgb, currentColor 7%, transparent);
      box-shadow: inset 0 -1px 0 color-mix(in srgb, currentColor 18%, transparent);
    }

    .site-header .site-nav a[href="/kontakt"]::after {
      content: none;
      display: none;
    }

    .site-header .site-nav a[href="/kontakt"]:hover,
    .site-header .site-nav a[href="/kontakt"]:focus-visible {
      background: color-mix(in srgb, currentColor 12%, transparent);
      border-color: currentColor;
      box-shadow: inset 0 -2px 0 currentColor;
    }
  }

  .brand {
    position: relative;
    z-index: 104;
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.5vw, 1.42rem);
    font-weight: 780;
    letter-spacing: var(--type-accent-tracking);
    line-height: 1;
    text-transform: uppercase;
  }

  .brand svg,
  .brand img {
    max-width: var(--brand-logo-max-width);
    max-height: var(--brand-logo-max-height);
    width: auto;
  }

  .nav-toggle {
    position: relative;
    z-index: 104;
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    margin-left: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .nav-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
  }

  .nav-toggle__icon {
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
  }

  .nav-toggle__icon span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 28px;
    height: 2px;
    background: #ffffff;
    transform-origin: 50% 50%;
    transition:
      transform 360ms var(--motion-ease),
      opacity 280ms ease,
      background-color 420ms var(--motion-ease);
  }

  .nav-toggle__icon span:first-child {
    transform: translateY(-5px);
  }

  .nav-toggle__icon span:last-child {
    transform: translateY(5px);
  }

  .has-mobile-nav-open .nav-toggle__icon span:first-child,
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon span:first-child {
    transform: rotate(45deg);
  }

  .has-mobile-nav-open .nav-toggle__icon span:last-child,
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon span:last-child {
    transform: rotate(-45deg);
  }

  .site-header > .site-links--actions {
    display: none;
  }

  .has-mobile-nav-open .site-header > .site-links--actions {
    position: fixed;
    right: clamp(26px, 8vw, 132px);
    bottom: clamp(32px, 6vw, 72px);
    z-index: 104;
    display: flex;
    color: var(--color-text);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 103;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: clamp(10px, 1.5vw, 18px);
    padding: clamp(104px, 14vw, 180px) clamp(26px, 8vw, 132px) clamp(48px, 8vw, 96px);
    background:
      linear-gradient(90deg, var(--color-surface) 0%, var(--color-surface) 58%, color-mix(in srgb, var(--color-accent-soft) 48%, var(--color-surface)) 100%);
    color: var(--color-text);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 520ms var(--motion-ease),
      visibility 520ms var(--motion-ease),
      transform 640ms var(--motion-ease);
  }

  .has-mobile-nav-open {
    overflow: hidden;
  }

  .has-mobile-nav-open .site-header {
    color: var(--color-text);
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    transform: none;
  }

  .has-mobile-nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    position: relative;
    max-width: var(--mobile-nav-max-width);
    color: inherit;
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 6.1vw, 6rem);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: 0;
    text-decoration: none;
    overflow-wrap: break-word;
    hyphens: none;
    transform: translateY(18px);
    opacity: 0;
    transition:
      opacity 520ms var(--motion-ease),
      transform 700ms var(--motion-ease),
      color 260ms ease;
  }

  .has-mobile-nav-open .site-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .has-mobile-nav-open .site-nav a:nth-child(2) { transition-delay: 60ms; }
  .has-mobile-nav-open .site-nav a:nth-child(3) { transition-delay: 110ms; }
  .has-mobile-nav-open .site-nav a:nth-child(4) { transition-delay: 160ms; }
  .has-mobile-nav-open .site-nav a:nth-child(5) { transition-delay: 210ms; }

  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.03em;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 380ms var(--motion-ease);
  }

  .site-nav a:hover::after,
  .site-nav a:focus-visible::after,
  .site-nav a[aria-current="page"]::after,
  .site-nav a[aria-current="location"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .site-links--actions a,
  .button {
    --button-bg: transparent;
    --button-color: inherit;
    --button-border: color-mix(in srgb, currentColor 42%, transparent);
    --button-hover-bg: color-mix(in srgb, currentColor 9%, transparent);
    --button-hover-color: inherit;

    min-height: 43px;
    border: 1px solid var(--button-border);
    border-radius: 0;
    background: var(--button-bg);
    color: var(--button-color);
    padding: 0.76rem 1.08rem;
    box-shadow: inset 0 -1px 0 color-mix(in srgb, currentColor 18%, transparent);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 760;
    letter-spacing: 0.045em;
    line-height: 1.1;
    text-transform: uppercase;
    transition:
      border-color 260ms ease,
      background-color 260ms ease,
      box-shadow 260ms ease,
      color 260ms ease,
      transform 260ms var(--motion-ease);
  }

  .button:hover,
  .button:focus-visible,
  .site-links--actions a:hover,
  .site-links--actions a:focus-visible {
    border-color: currentColor;
    background: var(--button-hover-bg);
    color: var(--button-hover-color);
    box-shadow: inset 0 -2px 0 currentColor;
    transform: translateY(-1px);
  }

  .inquiry-shop .inquiry-shop__primary-action {
    --button-bg: var(--color-accent-strong);
    --button-color: #fff;
    --button-border: var(--color-accent-strong);
    --button-hover-bg: color-mix(in srgb, var(--color-accent-strong) 90%, #000);
    --button-hover-color: #fff;

    border-color: var(--button-border);
    background: var(--button-bg);
    color: var(--button-color);
    box-shadow: 0 16px 36px color-mix(in srgb, var(--color-accent-strong) 24%, transparent);
  }

  .inquiry-shop .inquiry-shop__primary-action:hover,
  .inquiry-shop .inquiry-shop__primary-action:focus-visible {
    background: var(--button-hover-bg);
    color: var(--button-hover-color);
    box-shadow: 0 20px 44px color-mix(in srgb, var(--color-accent-strong) 30%, transparent);
  }

  .inquiry-shop .selection-actions__clear {
    --button-color: color-mix(in srgb, #8e2f2f 76%, var(--color-text));
    --button-border: color-mix(in srgb, #8e2f2f 30%, transparent);
    --button-hover-bg: color-mix(in srgb, #8e2f2f 8%, transparent);

    border-color: var(--button-border);
    color: var(--button-color);
    box-shadow: inset 0 -1px 0 color-mix(in srgb, #8e2f2f 16%, transparent);
  }

  .inquiry-shop .selection-actions__clear:hover,
  .inquiry-shop .selection-actions__clear:focus-visible {
    border-color: color-mix(in srgb, #8e2f2f 56%, transparent);
    background: var(--button-hover-bg);
    color: color-mix(in srgb, #8e2f2f 82%, var(--color-text));
    box-shadow: inset 0 -2px 0 color-mix(in srgb, #8e2f2f 62%, transparent);
  }

  .hero {
    display: block;
    min-height: 100svh;
    padding: 0;
    color: #fff;
    background: var(--color-atelier-ink);
    overflow: clip;
  }

  .hero-grid {
    position: relative;
    width: 100%;
    min-height: 100svh;
    height: 100svh;
    display: grid;
    place-items: center;
    padding: clamp(96px, 12vw, 160px) clamp(24px, 5vw, 72px);
    isolation: isolate;
    overflow: clip;
  }

  .hero-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgb(0 0 0 / calc(var(--hero-overlay-opacity) * 0.74)), rgb(0 0 0 / 0.03) 44%, rgb(0 0 0 / calc(var(--hero-overlay-opacity) * 0.74))),
      radial-gradient(circle at 50% 48%, transparent 0%, rgb(0 0 0 / calc(var(--hero-overlay-opacity) * 0.62)) 100%);
  }

  .hero .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 100%;
    overflow: hidden;
    opacity: 0;
    transform: scale(1.025);
    transition:
      opacity 1100ms var(--motion-ease),
      transform 1600ms var(--motion-ease);
  }

  .is-loaded .hero .hero-media {
    opacity: 1;
    transform: scale(1);
  }

  .hero .hero-media picture,
  .hero .hero-media img,
  .hero .image-placeholder {
    width: 100%;
    height: 100%;
  }

  .hero .hero-media picture,
  .image-text__media picture,
  .gallery__item picture,
  .card picture,
  .team-card__media picture,
  .logo-card__media picture {
    display: block;
  }

  .hero .hero-media img {
    object-fit: cover;
    filter: saturate(0.78) contrast(0.94) brightness(0.9);
  }

  .hero .image-placeholder {
    background: linear-gradient(135deg, var(--color-accent-strong), var(--color-atelier-ink));
    color: rgb(255 255 255 / 0.74);
  }

  .hero .prose {
    position: relative;
    z-index: 2;
    width: min(860px, 82vw);
    max-width: 100%;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero .eyebrow {
    color: rgb(255 255 255 / 0.76);
  }

  .hero h1 {
    max-width: 14ch;
    margin-bottom: 0.3em;
    color: #fff;
    font-size: clamp(2.45rem, 4.65vw, 4.95rem);
    font-weight: 400;
    line-height: 0.98;
    text-wrap: balance;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 900ms var(--motion-ease) 180ms,
      transform 1000ms var(--motion-ease) 180ms;
  }

  .is-loaded .hero h1 {
    opacity: 1;
    transform: translateY(0);
  }

  .hero .text-lead {
    max-width: 36ch;
    color: rgb(255 255 255 / 0.78);
    font-size: clamp(0.96rem, 1.04vw, 1.05rem);
    line-height: 1.7;
  }

  .hero .actions {
    justify-content: center;
    margin-top: 0.7rem;
  }

  .hero .button {
    color: var(--button-color, #fff);
  }

  .hero .hero__button--solid {
    --button-bg: #fff;
    --button-color: var(--color-atelier-ink);
    --button-border: #fff;
    --button-hover-bg: rgb(255 255 255 / 0.86);
    --button-hover-color: var(--color-atelier-ink);
  }

  .hero .hero__button--soft {
    --button-bg: rgb(255 255 255 / 0.14);
    --button-color: #fff;
    --button-border: rgb(255 255 255 / 0.34);
    --button-hover-bg: rgb(255 255 255 / 0.22);
    --button-hover-color: #fff;
    backdrop-filter: blur(10px);
  }

  .hero .hero__button--outline {
    --button-bg: transparent;
    --button-color: #fff;
    --button-border: rgb(255 255 255 / 0.62);
    --button-hover-bg: rgb(255 255 255 / 0.12);
    --button-hover-color: #fff;
  }

  .hero .hero__button--text-link {
    border-color: transparent;
    background: transparent;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.26em;
  }

  .hero--tone-dark .prose,
  .hero--tone-dark .hero .prose,
  .hero--tone-dark h1,
  .hero--tone-dark .text-lead {
    color: var(--color-text);
    text-shadow: none;
  }

  .section:not(.hero) {
    position: relative;
    padding-block: var(--section);
  }

  .section--density-spacious:not(.hero) {
    padding-block: var(--section-spacious);
  }

  .section--density-compact:not(.hero) {
    padding-block: var(--section-compact);
  }

  .section--density-balanced:not(.hero) {
    padding-block: var(--section);
  }

  .section + .section {
    border-top: 1px solid color-mix(in srgb, var(--color-line) 62%, transparent);
  }

  .section > .container.prose {
    max-width: var(--container-narrow);
  }

  .prose {
    max-width: 780px;
  }

  .prose h1,
  .prose h2,
  .prose h3,
  .quote__figure blockquote p {
    font-weight: 400;
    letter-spacing: 0;
  }

  .prose h2 {
    max-width: 16ch;
    margin-bottom: 0.55em;
    color: var(--color-text);
    font-size: clamp(2.25rem, 5vw, 5.25rem);
    line-height: 0.98;
    text-wrap: balance;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }

  .prose h3 {
    font-size: clamp(1.55rem, 2.25vw, 2.25rem);
    line-height: 1.05;
  }

  .prose p,
  .prose blockquote {
    color: var(--color-muted);
    font-size: clamp(1rem, 1.22vw, 1.14rem);
    line-height: 1.72;
  }

  .prose .text-lead,
  .prose p:first-child:is(.text-lead) {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.6vw, 2.65rem);
    font-weight: 400;
    line-height: 1.16;
  }

  .hero .prose .text-lead {
    max-width: 42ch;
    color: rgb(255 255 255 / 0.84);
    font-family: var(--font-body);
    font-size: clamp(0.98rem, 1.12vw, 1.12rem);
    font-weight: 420;
    line-height: 1.7;
    text-shadow: 0 1px 18px rgb(0 0 0 / 0.36);
  }

  .eyebrow {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin-bottom: clamp(18px, 2.2vw, 28px);
    padding: 0 0.58rem 0.42rem 0;
    color: var(--color-accent-strong);
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 720;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
    background:
      linear-gradient(90deg, currentColor, color-mix(in srgb, currentColor 22%, transparent) 78%, transparent) 0 100% / 100% 2px no-repeat;
  }

  .eyebrow::before,
  .eyebrow::after,
  .section:not(.hero) .eyebrow::before {
    content: none;
    display: none;
  }

  .image-text__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.12fr);
    gap: clamp(38px, 8vw, 132px);
    align-items: center;
  }

  .image-text__media {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: clamp(460px, 72vh, 760px);
    border: 0;
    background: transparent;
  }

  .image-text__media img {
    filter: saturate(0.86) contrast(0.96) brightness(0.98);
    transform: scale(1.018);
    transition:
      transform 1200ms var(--motion-ease),
      opacity 900ms var(--motion-ease);
  }

  .image-text.is-visible .image-text__media img {
    transform: scale(1);
  }

  .image-text__content {
    max-width: 610px;
  }

  .image-text__media figcaption,
  .gallery__item figcaption {
    padding: 12px 0 0;
    color: var(--color-subtle);
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .cards .container,
  .gallery .container,
  .faq .container,
  .contact-form-section .container,
  .section-quote .container {
    max-width: var(--container);
  }

  .cards__intro,
  .gallery__intro,
  .faq__intro,
  .logos__intro,
  .stats__intro,
  .team__intro,
  .steps__intro {
    max-width: min(760px, 100%);
    margin-bottom: clamp(40px, 7vw, 86px);
  }

  .cards__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(56px, 8vw, 112px);
  }

  .card {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
    align-items: start;
    gap: clamp(30px, 7vw, 112px);
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .card:nth-child(even) {
    grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  }

  .card:nth-child(even) picture,
  .card:nth-child(even) .card__media {
    order: 2;
  }

  .card picture,
  .card__media {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: clamp(340px, 54vh, 620px);
    overflow: hidden;
    background: var(--color-atelier-ink);
  }

  .card__image {
    object-fit: cover;
    filter: saturate(0.86) contrast(0.96) brightness(0.98);
    transform: scale(1.018);
    transition: transform 1200ms var(--motion-ease);
  }

  .gallery__item img,
  .team-card__media img {
    filter: saturate(0.86) contrast(0.96) brightness(0.98);
  }

  .card:hover .card__image {
    transform: scale(1);
  }

  .card__body {
    max-width: 510px;
    padding: 0;
  }

  .card__body h3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 4.15rem);
    font-weight: 400;
    line-height: 0.98;
    text-wrap: balance;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }

  .card__body p {
    color: var(--color-muted);
    font-size: clamp(1rem, 1.18vw, 1.13rem);
    line-height: 1.7;
  }

  .cards--compact .cards__grid,
  .cards--image-grid .cards__grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: clamp(16px, 2.6vw, 28px);
  }

  .cards--compact .card,
  .cards--image-grid .card {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    border: 1px solid var(--color-line);
    background: color-mix(in srgb, var(--color-surface) 76%, transparent);
    overflow: hidden;
  }

  .cards--compact .card:nth-child(even),
  .cards--image-grid .card:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards--compact .card:nth-child(even) picture,
  .cards--compact .card:nth-child(even) .card__media,
  .cards--image-grid .card:nth-child(even) picture,
  .cards--image-grid .card:nth-child(even) .card__media {
    order: initial;
  }

  .cards--compact .card picture,
  .cards--compact .card__media {
    min-height: clamp(160px, 24vw, 240px);
  }

  .cards--compact .card__body {
    padding: clamp(18px, 2.4vw, 26px);
  }

  .cards--compact .card__body h3 {
    font-size: clamp(1.32rem, 2vw, 1.85rem);
    line-height: 1.08;
  }

  .cards--image-grid .card {
    min-height: clamp(260px, 34vw, 420px);
    border: 0;
    color: #fff;
  }

  .cards--image-grid .card__body {
    max-width: none;
    padding: clamp(18px, 3vw, 30px);
  }

  .cards--image-grid .card__body h3,
  .cards--image-grid .card__body p {
    color: inherit;
  }

  .logos__grid,
  .stats__grid,
  .team__grid,
  .steps__list {
    gap: 0;
    border-top: 1px solid var(--color-line);
  }

  .logo-card,
  .stat,
  .team-card,
  .step {
    border: 0;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    border-radius: 0;
    background: color-mix(in srgb, var(--color-surface) 74%, transparent);
  }

  .logo-card__media,
  .team-card__media,
  .team-card__placeholder {
    background: var(--color-surface-muted);
  }

  .stat__value {
    font-family: var(--font-heading);
    font-weight: 400;
  }

  .stats--principles .stats__grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
    border-top: 1px solid var(--color-line);
  }

  .stats--principles .stat {
    display: grid;
    grid-template-columns: minmax(42px, 0.18fr) minmax(16ch, 0.72fr) minmax(24ch, 1.1fr);
    column-gap: clamp(18px, 4vw, 64px);
    align-items: start;
    min-height: 0;
    padding: clamp(22px, 3vw, 34px) 0;
    border-right: 0;
    background: transparent;
  }

  .stats--principles .stat__value {
    align-self: start;
    font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  }

  .stats--principles .stat__label {
    grid-column: 2;
  }

  .stats--principles .stat__text {
    grid-column: 3;
  }

  .stats--principles .stat__label {
    margin-top: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.2vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
    text-transform: none;
  }

  .step {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: clamp(12px, 1.6vw, 18px);
  }

  .step__index {
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-line);
    background: transparent;
    color: var(--color-accent-strong);
    font-family: var(--font-heading);
    font-weight: 400;
  }

  .gallery__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(18px, 2.6vw, 38px);
    align-items: start;
  }

  .gallery__item {
    grid-column: span 4;
  }

  .gallery__item:nth-child(1) {
    grid-column: 1 / span 6;
  }

  .gallery__item:nth-child(2) {
    grid-column: 7 / span 6;
    margin-top: 0;
  }

  .gallery__item:nth-child(3) {
    grid-column: 1 / span 6;
    margin-top: 0;
  }

  .gallery__item:nth-child(4) {
    grid-column: 7 / span 6;
  }

  .gallery__item picture,
  .gallery__placeholder,
  .gallery__empty {
    aspect-ratio: 4 / 5;
    min-height: 0;
    height: auto;
    border: 0;
    border-radius: 0;
    background: var(--color-atelier-ink);
    overflow: hidden;
  }

  .gallery__item:nth-child(1) picture,
  .gallery__item:nth-child(2) picture,
  .gallery__item:nth-child(3) picture,
  .gallery__item:nth-child(4) picture {
    aspect-ratio: 4 / 3;
  }

  .gallery__item picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .section-quote {
    background: color-mix(in srgb, var(--color-accent-soft) 34%, var(--color-bg));
  }

  .quote__figure {
    max-width: min(920px, var(--container));
    text-align: center;
  }

  .quote__figure blockquote p {
    color: var(--color-text);
    font-size: clamp(2.1rem, 4.6vw, 5.4rem);
    line-height: 1.02;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .quote__figure figcaption {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--color-muted);
    text-align: center;
  }

  .faq__items {
    max-width: none;
    border-top: 1px solid var(--color-line);
  }

  .faq__item {
    border-top: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .faq__item summary {
    min-height: 76px;
    position: relative;
    padding-right: 58px;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 400;
    line-height: 1.12;
    list-style: none;
  }

  .faq__item summary::-webkit-details-marker {
    display: none;
  }

  .faq__item summary::before,
  .faq__item summary::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 260ms var(--motion-ease);
  }

  .faq__item summary::after {
    transform: rotate(90deg);
  }

  .faq__item[open] summary::after {
    transform: rotate(0deg);
  }

  .faq__answer {
    max-width: 780px;
    padding-bottom: 28px;
  }

  .cta {
    background: var(--color-atelier-ink);
    color: var(--color-surface);
  }

  .cta .prose h2,
  .cta .prose p {
    color: inherit;
  }

  .cta-box {
    padding: 0;
  }

  .contact-form {
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
    gap: clamp(42px, 8vw, 126px);
  }

  .contact-form__details,
  .contact-form__detail,
  .form__field input:not([type="checkbox"]),
  .form__field textarea,
  .form__status {
    border-color: var(--color-line);
  }

  .contact-form__form {
    padding-top: 8px;
  }

  .contact-form__brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: clamp(26px, 4vw, 44px);
    padding: 14px 16px;
    border: 1px solid color-mix(in srgb, var(--color-line) 78%, transparent);
    background: color-mix(in srgb, var(--color-surface) 94%, var(--color-accent-soft));
  }

  .contact-form__brand-logo {
    width: clamp(76px, 8vw, 112px);
    max-height: 132px;
  }

  .form__field label {
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 720;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .form__field input:not([type="checkbox"]),
  .form__field textarea {
    border-width: 0 0 1px;
    background: transparent;
    padding: 12px 0;
  }

  .form__trap {
    left: 0;
    top: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .site-footer {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 22px clamp(22px, 5vw, 80px);
    align-items: center;
    margin: 0;
    padding: clamp(30px, 4vw, 56px) clamp(24px, 5vw, 72px);
    border-top: 1px solid var(--color-line);
    background: var(--color-surface);
    color: var(--color-muted);
    font-size: 0.92rem;
  }

  .site-footer:not(.site-footer--has-brand-logo) {
    grid-template-columns: 1fr auto;
  }

  .site-footer__brand {
    justify-self: start;
    padding: 10px 12px;
    border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
    background: color-mix(in srgb, var(--color-surface) 96%, transparent);
  }

  .site-footer__brand-logo {
    width: clamp(64px, 7vw, 96px);
    max-height: 112px;
  }

  .site-footer p {
    margin: 0;
  }

  .site-footer nav,
  .site-footer .site-links {
    grid-column: 3;
    justify-content: end;
    gap: 14px 24px;
  }

  .site-footer:not(.site-footer--has-brand-logo) nav,
  .site-footer:not(.site-footer--has-brand-logo) .site-links {
    grid-column: auto;
  }

  .site-footer a {
    color: inherit;
    text-decoration: none;
  }

  .site-footer a:hover,
  .site-footer a:focus-visible {
    text-decoration: none;
  }

  [data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition:
      opacity 860ms var(--motion-ease),
      transform 980ms var(--motion-ease);
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .cards__grid .card,
  .gallery__grid .gallery__item,
  .steps__list .step,
  .team__grid .team-card,
  .stats__grid .stat,
  .logos__grid .logo-card {
    transition:
      opacity 800ms var(--motion-ease),
      transform 900ms var(--motion-ease),
      background-color 260ms ease;
  }

  @media (max-width: 960px) {
    :root {
      --container: min(100% - 34px, 880px);
      --container-narrow: min(100% - 34px, 760px);
      --section: clamp(70px, 14vw, 118px);
    }

    .site-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 12px 16px;
      width: 100%;
      padding: 18px 20px;
    }

    .site-header .brand {
      position: static;
      min-width: 0;
      transform: none;
      justify-self: start;
    }

    .site-header .nav-toggle {
      position: static;
      justify-self: end;
      margin: 0;
    }

    .site-header .site-nav {
      grid-column: 1 / -1;
      max-width: 100vw;
      overflow-x: hidden;
    }

    .has-mobile-nav-open .site-header > .site-links--actions {
      display: none;
    }

    .hero .prose {
      width: min(760px, 92vw);
      max-width: 100%;
    }

    .hero h1 {
      max-width: min(100%, 760px);
      font-size: clamp(2.35rem, 7.2vw, 3.55rem);
    }

    .image-text__grid,
    .contact-form,
    .card,
    .card:nth-child(even) {
      grid-template-columns: minmax(0, 1fr);
      gap: 30px;
    }

    .image-text__grid > .image-text__media,
    .image-text--image-first .image-text__grid > .image-text__media,
    .card:nth-child(even) picture,
    .card:nth-child(even) .card__media {
      order: 1;
    }

    .image-text__content,
    .image-text--image-first .image-text__content,
    .card__body {
      order: 2;
    }

    .image-text__media,
    .card picture,
    .card__media {
      min-height: clamp(320px, 58vh, 560px);
    }

    .card picture,
    .card__media {
      min-height: clamp(300px, 52vh, 500px);
    }

    .cards__grid {
      gap: 64px;
    }

    .gallery__grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 34px;
    }

    .gallery__item,
    .gallery__item:nth-child(1),
    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4) {
      grid-column: auto;
      margin-top: 0;
    }

    .gallery__item picture,
    .gallery__placeholder,
    .gallery__empty {
      aspect-ratio: 4 / 3;
      min-height: 0;
    }

    .site-footer {
      grid-template-columns: 1fr auto;
      align-items: start;
      gap: 22px 28px;
    }

    .site-footer__brand {
      grid-column: 1 / -1;
      grid-row: 1;
    }

    .site-footer p {
      grid-column: 1;
      grid-row: 1;
    }

    .site-footer--has-brand-logo p {
      grid-row: 2;
    }

    .site-footer .site-links {
      grid-column: 2;
      grid-row: 1;
      justify-content: end;
      justify-self: end;
    }

    .site-footer:not(.site-footer--has-brand-logo) .site-links {
      grid-column: 2;
    }

    .site-footer--has-brand-logo .site-links {
      grid-row: 2;
    }

    .site-footer nav {
      grid-column: 1 / -1;
      grid-row: 2;
      justify-content: start;
      width: 100%;
    }

    .site-footer:not(.site-footer--has-brand-logo) nav {
      grid-column: 1 / -1;
    }

    .site-footer--has-brand-logo nav {
      grid-row: 3;
    }
  }

  @media (max-width: 640px) {
    .brand {
      max-width: calc(100vw - 112px);
      font-size: 0.92rem;
      letter-spacing: 0.13em;
    }

    .site-nav {
      align-content: start;
      justify-items: stretch;
      gap: 8px;
      padding-inline: 24px;
      padding-block: 92px 34px;
      background: var(--color-surface);
      overflow-y: auto;
    }

    .site-nav > a {
      display: flex;
      width: 100%;
      max-width: min(100%, var(--mobile-nav-max-width));
      min-height: 46px;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid color-mix(in srgb, var(--color-line) 76%, transparent);
      color: var(--color-text);
      font-family: Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: clamp(1rem, 4.8vw, 1.32rem);
      font-weight: 760;
      line-height: 1.16;
    }

    .hero-grid {
      align-items: end;
      padding-inline: 24px;
      padding-bottom: clamp(72px, 16vw, 110px);
    }

    .hero .prose {
      justify-items: start;
      text-align: left;
      width: 100%;
      max-width: 100%;
    }

    .hero h1 {
      max-width: 100%;
      font-size: clamp(2.25rem, 10.5vw, 3.05rem);
      line-height: 1.02;
    }

    .hero .actions {
      justify-content: start;
    }

    .prose h2 {
      max-width: 13.5ch;
      font-size: clamp(2.15rem, 11vw, 3.75rem);
    }

    .prose .text-lead,
    .prose p:first-child:is(.text-lead) {
      font-size: clamp(1.32rem, 7vw, 2rem);
    }

    .image-text__media,
    .card picture,
    .card__media {
      min-height: min(72vh, 430px);
    }

    .card picture,
    .card__media {
      min-height: min(62vh, 360px);
    }

    .gallery__item picture,
    .gallery__placeholder,
    .gallery__empty {
      aspect-ratio: 4 / 3;
      min-height: 0;
    }

    .quote__figure blockquote p {
      font-size: clamp(2rem, 12vw, 3.35rem);
    }

    .faq__item summary {
      min-height: 68px;
      font-size: clamp(1.25rem, 7vw, 1.8rem);
    }
  }
}

@layer theme {
  @media (max-width: 900px) {
    .cards--editorial .card,
    .stats--principles .stat {
      grid-template-columns: minmax(0, 1fr);
    }

    .stats--principles .stat__label,
    .stats--principles .stat__text {
      grid-column: auto;
    }

    .cards--compact .card picture,
    .cards--compact .card__media,
    .cards--editorial .card picture,
    .cards--editorial .card__media {
      min-height: min(46vh, 300px);
    }
  }
}

/* Refined editorial atelier defaults. */
@layer theme {
  html {
    scroll-behavior: smooth;
  }

  .section[id] {
    scroll-margin-top: 96px;
  }

  .site-header {
    padding-block: clamp(16px, 2.2vw, 26px);
    border-bottom: 1px solid color-mix(in srgb, var(--color-line) 58%, transparent);
    background: color-mix(in srgb, var(--color-bg) 94%, white 6%);
  }

  .is-over-hero:not(.has-mobile-nav-open) .site-header {
    color: var(--color-accent-strong);
    border-bottom: 1px solid color-mix(in srgb, var(--color-line) 58%, transparent);
    background: color-mix(in srgb, var(--color-bg) 94%, white 6%);
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    width: clamp(150px, 18vw, 238px);
    height: auto;
    max-height: 48px;
    object-fit: contain;
  }

  .site-nav a {
    color: var(--color-accent-strong);
    text-decoration: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"],
  .site-nav a[aria-current="location"] {
    color: var(--color-accent);
    text-decoration: none;
  }

  .nav-toggle__icon span {
    background: var(--color-accent);
  }

  .site-header .selection-widget {
    width: fit-content;
    max-width: 100%;
    justify-self: start;
    font-family: var(--font-body);
    font-size: clamp(0.82rem, 0.86vw, 0.95rem);
    font-weight: 700;
    line-height: 1.2;
  }

  .inquiry-image-lightbox .inquiry-image-lightbox__bar h2 {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 800;
  }

  @media (max-width: 960px) {
    :root {
      --editorial-mobile-nav-top: 76px;
      --editorial-mobile-nav-inline: clamp(18px, 4vw, 34px);
      --editorial-mobile-nav-max-height: min(70svh, 520px);
    }

    .site-header {
      display: grid;
      grid-template-columns: minmax(168px, auto) minmax(0, 1fr) 52px;
      grid-auto-rows: auto;
      align-items: center;
      gap: 10px clamp(14px, 2.4vw, 24px);
      min-height: var(--editorial-mobile-nav-top);
      padding-block: 10px;
      padding-inline: clamp(20px, 4vw, 42px);
      color: var(--color-accent-strong);
      background: color-mix(in srgb, var(--color-bg) 96%, white 4%);
      border-bottom: 1px solid color-mix(in srgb, var(--color-line) 62%, transparent);
      backdrop-filter: blur(16px);
    }

    .has-mobile-nav-open .site-header {
      color: var(--color-accent-strong);
      background: color-mix(in srgb, var(--color-bg) 96%, white 4%);
      border-bottom-color: color-mix(in srgb, var(--color-line) 62%, transparent);
      backdrop-filter: blur(16px);
    }

    .site-header .brand {
      grid-column: 1;
      grid-row: 1;
      max-width: none;
      justify-self: start;
    }

    .site-header .brand__logo {
      width: clamp(168px, 24vw, 212px);
      max-height: 48px;
    }

    .site-header .selection-widget {
      grid-column: 2;
      grid-row: 1;
      justify-self: start;
      align-self: center;
      min-height: 38px;
      max-width: 100%;
      padding: 0.52rem 0.72rem;
      font-size: 0.84rem;
      white-space: nowrap;
    }

    .site-header .selection-widget__count {
      min-width: 28px;
      height: 28px;
      font-size: 0.8rem;
    }

    .site-header .nav-toggle {
      grid-column: 3;
      grid-row: 1;
      justify-self: end;
      align-self: center;
      position: static;
      margin: 0;
    }

    .site-header .site-nav {
      position: fixed;
      top: var(--editorial-mobile-nav-top);
      right: var(--editorial-mobile-nav-inline);
      bottom: auto;
      left: var(--editorial-mobile-nav-inline);
      z-index: 90;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: minmax(42px, auto);
      align-content: start;
      justify-items: stretch;
      gap: 0.25rem 0.5rem;
      width: auto;
      max-width: none;
      height: auto;
      max-height: var(--editorial-mobile-nav-max-height);
      padding: 18px;
      overflow-x: hidden;
      overflow-y: auto;
      overscroll-behavior: contain;
      border: 1px solid color-mix(in srgb, var(--color-line) 84%, transparent);
      border-radius: var(--radius-md);
      background: color-mix(in srgb, var(--color-surface) 98%, transparent);
      color: var(--color-text);
      box-shadow: 0 24px 70px rgb(0 0 0 / 0.16);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      pointer-events: none;
      transition:
        opacity 220ms ease,
        visibility 220ms ease,
        transform 260ms var(--motion-ease);
    }

    .has-mobile-nav-open .site-header .site-nav {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .site-header .site-nav a {
      display: flex;
      align-items: center;
      width: 100%;
      max-width: none;
      min-height: 42px;
      padding: 0.72rem 0.82rem;
      border: 0;
      border-radius: var(--radius-sm);
      color: var(--color-text);
      font-family: var(--font-body);
      font-size: clamp(0.94rem, 1.6vw, 1rem);
      font-weight: 760;
      line-height: 1.16;
      letter-spacing: 0;
      text-transform: none;
      text-decoration: none;
      opacity: 1;
      transform: none;
      transition:
        background-color 180ms ease,
        color 180ms ease;
    }

    .has-mobile-nav-open .site-header .site-nav a {
      opacity: 1;
      transform: none;
      transition-delay: 0ms;
    }

    .site-header .site-nav a::after {
      content: none;
      display: none;
    }

    .site-header .site-nav a:hover,
    .site-header .site-nav a:focus-visible,
    .site-header .site-nav a[aria-current="page"],
    .site-header .site-nav a[aria-current="location"] {
      background: color-mix(in srgb, var(--color-accent-soft) 48%, transparent);
      color: var(--color-accent-strong);
    }

    .site-header .site-nav a[href^="/#"][aria-current="page"] {
      color: var(--color-text);
    }

    .site-header[data-mobile-nav-layout="fullscreen"] .site-nav {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      grid-template-columns: minmax(0, 1fr);
      width: 100vw;
      max-height: none;
      height: auto;
      padding: clamp(96px, 15svh, 136px) clamp(22px, 7vw, 72px) 32px;
      border: 0;
      border-radius: 0;
    }
  }

  @media (max-width: 720px) {
    :root {
      --editorial-mobile-nav-top: 138px;
      --editorial-mobile-nav-inline: 16px;
      --editorial-mobile-nav-max-height: calc(100svh - 154px);
    }

    .site-header {
      grid-template-columns: minmax(0, 1fr) 52px;
      gap: 10px 12px;
      padding-inline: 18px;
      padding-block: 12px;
    }

    .site-header .brand {
      grid-column: 1;
      grid-row: 1;
      max-width: calc(100vw - 96px);
    }

    .site-header .brand__logo {
      width: min(196px, calc(100vw - 108px));
      max-height: 52px;
    }

    .site-header .nav-toggle {
      grid-column: 2;
      grid-row: 1;
    }

    .site-header .selection-widget {
      grid-column: 1 / -1;
      grid-row: 2;
      justify-self: start;
      max-width: min(100%, 280px);
    }

    .site-header .site-nav {
      grid-template-columns: minmax(0, 1fr);
      gap: 0.2rem;
      padding: 16px;
    }

    .site-header .site-nav a {
      min-height: 44px;
      padding: 0.74rem 0.8rem;
      font-size: clamp(0.96rem, 4vw, 1.08rem);
    }
  }

  @media (min-width: 961px) {
    .site-header {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: clamp(28px, 4vw, 72px);
      align-items: center;
      width: 100%;
      padding-block: clamp(9px, 1.15vw, 14px);
      padding-inline: clamp(32px, 4vw, 64px);
    }

    .site-header .brand {
      position: static;
      transform: none;
      justify-self: start;
    }

    .site-header .brand__logo {
      width: clamp(220px, 22vw, 292px);
      max-height: 62px;
    }

    .site-header .nav-toggle {
      display: none;
    }

    .site-header .site-nav {
      position: static;
      inset: auto;
      z-index: auto;
      display: flex;
      grid-column: 2;
      justify-self: end;
      align-items: center;
      justify-content: flex-end;
      gap: clamp(14px, 1.7vw, 28px);
      padding: 0;
      background: transparent;
      color: var(--color-accent-strong);
      opacity: 1;
      visibility: visible;
      transform: none;
      transition: none;
    }

    .site-header .selection-widget {
      grid-column: 3;
      grid-row: 1;
      justify-self: end;
    }

    .site-header .site-nav a {
      opacity: 1;
      transform: none;
      color: inherit;
      font-family: var(--font-body);
      font-size: clamp(0.82rem, 0.86vw, 0.95rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: 0.03em;
      text-transform: none;
      text-decoration: none;
      white-space: nowrap;
    }

    .site-header .site-nav a::after {
      bottom: -0.44rem;
      height: 2px;
      background: var(--color-focus);
      opacity: 0.72;
    }

    .site-header .site-nav a:hover::after,
    .site-header .site-nav a:focus-visible::after,
    .site-header .site-nav a[aria-current="location"]::after {
      transform: scaleX(1);
      opacity: 1;
    }

    .site-header .site-nav a[href^="/#"][aria-current="page"] {
      color: inherit;
    }

    .site-header .site-nav a[href^="/#"][aria-current="page"]::after {
      transform: scaleX(0);
    }

  }

  .prose h1,
  .hero h1,
  .prose h2,
  .section h2,
  .prose h3,
  .section h3 {
    font-family: var(--font-heading);
    color: var(--color-accent);
  }

  .prose h1,
  .hero h1 {
    font-weight: var(--type-h1-weight);
    line-height: var(--type-h1-line);
    letter-spacing: var(--type-h1-tracking);
    text-transform: var(--type-h1-transform);
  }

  .prose h2,
  .section h2 {
    font-weight: var(--type-h2-weight);
    line-height: var(--type-h2-line);
    letter-spacing: var(--type-h2-tracking);
    text-transform: var(--type-h2-transform);
  }

  .prose h3,
  .section h3 {
    font-weight: var(--type-h3-weight);
    line-height: var(--type-h3-line);
    letter-spacing: var(--type-h3-tracking);
    text-transform: var(--type-h3-transform);
  }

  .prose p:not(.eyebrow),
  .section p:not(.eyebrow) {
    font-family: var(--font-body);
    font-weight: var(--type-body-weight);
    line-height: var(--type-body-line);
    letter-spacing: var(--type-body-tracking);
    text-transform: var(--type-body-transform);
  }

  .text-lead {
    font-family: var(--font-body);
    font-weight: var(--type-lead-weight);
    line-height: var(--type-lead-line);
    letter-spacing: var(--type-lead-tracking);
    text-transform: var(--type-lead-transform);
    color: var(--color-accent-strong);
  }

  .eyebrow {
    color: var(--color-subtle);
    font-family: var(--font-accent);
    font-weight: var(--type-accent-weight);
    line-height: var(--type-accent-line);
    letter-spacing: var(--type-accent-tracking);
    text-transform: var(--type-accent-transform);
  }

  .button {
    font-family: var(--font-body);
    font-weight: var(--type-button-weight);
    line-height: var(--type-button-line);
    letter-spacing: var(--type-button-tracking);
    text-transform: var(--type-button-transform);
  }

  .hero {
    min-height: min(900px, 100svh);
  }

  .hero-grid {
    min-height: min(900px, 100svh);
    height: min(900px, 100svh);
  }

  .hero-grid::after {
    background:
      linear-gradient(90deg, rgb(0 0 0 / 0.58), rgb(0 0 0 / 0.34) 48%, rgb(0 0 0 / 0.18)),
      linear-gradient(180deg, rgb(0 0 0 / 0.12), rgb(0 0 0 / 0.22));
  }

  .hero .prose {
    width: min(900px, 86vw);
    justify-items: start;
    text-align: left;
    margin-right: auto;
  }

  .hero .eyebrow {
    color: color-mix(in srgb, var(--color-bg) 88%, transparent);
    background:
      linear-gradient(90deg, var(--color-focus), color-mix(in srgb, #FFFFFF 34%, transparent) 78%, transparent) 0 100% / 100% 2px no-repeat;
  }

  .hero h1,
  .hero .text-lead {
    color: #FFFFFF;
    text-shadow: 0 2px 22px rgb(0 0 0 / 0.46);
  }

  .hero h1 {
    max-width: min(100%, 15.5ch);
    font-size: clamp(2.55rem, 5.05vw, 4.75rem);
    padding-bottom: 0.06em;
    text-wrap: balance;
  }

  .hero .text-lead {
    max-width: 41ch;
    color: color-mix(in srgb, #FFFFFF 88%, transparent);
  }

  .hero .actions {
    justify-content: start;
  }

  .hero-media,
  .image-text__media,
  .card {
    border-color: color-mix(in srgb, var(--color-line) 70%, transparent);
  }

  .section:not(.hero) {
    padding-block: var(--section);
  }

  .section > .container.prose {
    max-width: var(--container-narrow);
  }

  .section-text--editorial .container.prose {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: start;
    max-width: var(--container);
  }

  .section-text--editorial .eyebrow,
  .section-text--editorial h2 {
    grid-column: 1;
  }

  .section-text--editorial :is(.text-lead, p:not(.eyebrow)) {
    grid-column: 2;
  }

  .section-text--editorial h2,
  .cards__intro h2,
  .image-text__content h2,
  .steps__intro h2,
  .cta h2 {
    max-width: 16ch;
    font-size: clamp(2rem, 3.35vw, 3.65rem);
    overflow-wrap: normal;
    hyphens: none;
  }

  .image-text__content h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .steps__intro h2 {
    max-width: min(100%, 22ch);
  }

  .section-text--editorial .text-lead {
    font-size: clamp(1.25rem, 1.85vw, 2rem);
    line-height: 1.22;
  }

  .cards__intro,
  .steps__intro {
    max-width: min(820px, 100%);
    margin-bottom: clamp(28px, 4.8vw, 58px);
  }

  .section-cards .cards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
    gap: clamp(18px, 2.5vw, 30px);
  }

  .cards--compact {
    background: var(--color-bg-soft);
    padding-block: clamp(48px, 5.8vw, 78px);
  }

  .cards--compact > .container {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
    gap: clamp(36px, 6vw, 92px);
    align-items: center;
  }

  .cards--compact .cards__intro {
    max-width: 620px;
    margin-bottom: 0;
  }

  .cards--compact .cards__intro h2 {
    max-width: 14.5ch;
  }

  .cards--compact .cards__intro p:not(.eyebrow) {
    max-width: 48ch;
    color: var(--color-muted);
  }

  .cards--compact .cards__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-cards.cards--compact .card,
  .section-cards.cards--compact .card:nth-child(even) {
    background: color-mix(in srgb, var(--color-surface) 76%, transparent);
  }

  .section-cards.cards--compact .card__body {
    display: grid;
    grid-template-columns: minmax(132px, 0.42fr) minmax(0, 1fr);
    gap: 16px;
    align-items: baseline;
    padding: clamp(18px, 2vw, 24px);
  }

  .section-cards.cards--compact .card__body h3 {
    font-size: clamp(1.08rem, 1.24vw, 1.34rem);
  }

  .section-cards.cards--compact .card__body p {
    font-size: 0.98rem;
    line-height: 1.46;
  }

  .section-cards .card,
  .section-cards .card:nth-child(even) {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 0;
    border: 1px solid color-mix(in srgb, var(--color-line) 72%, transparent);
    background: color-mix(in srgb, var(--color-surface) 88%, transparent);
  }

  .section-cards .card:nth-child(even) picture,
  .section-cards .card:nth-child(even) .card__media {
    order: 0;
  }

  .section-cards .card picture,
  .section-cards .card__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    background: var(--color-surface-muted);
  }

  .section-cards .card:not(:has(picture)) {
    border-top: 3px solid var(--color-focus);
  }

  .section-cards .card__body {
    max-width: none;
    padding: clamp(22px, 3vw, 34px);
  }

  .section-cards .card__body h3 {
    font-size: clamp(1.28rem, 1.6vw, 1.82rem);
    line-height: 1.13;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .section-cards .card__body p {
    font-size: clamp(0.98rem, 1vw, 1.06rem);
    line-height: 1.58;
  }

  .image-text__grid {
    gap: clamp(34px, 6vw, 88px);
  }

  .image-text__media {
    min-height: clamp(340px, 46vw, 580px);
  }

  .image-text__content {
    max-width: 640px;
  }

  .stats--principles {
    background: var(--color-accent-strong);
    color: #FFFFFF;
  }

  .stats--principles .container {
    max-width: var(--container);
  }

  .stats--principles .stats__intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: end;
    max-width: none;
    margin-bottom: clamp(30px, 4vw, 56px);
  }

  .stats--principles .eyebrow {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    min-width: min(100%, 26rem);
    margin-bottom: clamp(14px, 1.8vw, 22px);
    color: color-mix(in srgb, #FFFFFF 62%, transparent);
    background:
      linear-gradient(90deg, var(--color-focus), color-mix(in srgb, #FFFFFF 28%, transparent) 78%, transparent) 0 100% / 100% 2px no-repeat;
  }

  .stats--principles .eyebrow::before {
    content: none;
    display: none;
  }

  .stats--principles .stats__intro h2 {
    grid-column: 1;
    grid-row: 2;
    max-width: 14ch;
    margin-bottom: 0;
    color: #FFFFFF;
    font-size: clamp(2rem, 3.35vw, 3.75rem);
  }

  .stats--principles .stats__intro p:not(.eyebrow) {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    max-width: 46ch;
    margin-bottom: 0.2em;
    color: color-mix(in srgb, #FFFFFF 72%, transparent);
    font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  }

  .stats--principles .stats__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid color-mix(in srgb, #FFFFFF 22%, transparent);
  }

  .stats--principles .stat {
    display: grid;
    grid-template-columns: 78px minmax(180px, 0.48fr) minmax(0, 1fr);
    gap: clamp(16px, 3vw, 42px);
    align-items: baseline;
    min-width: 0;
    padding: clamp(20px, 2.8vw, 34px) 0;
    border: 0;
    border-bottom: 1px solid color-mix(in srgb, #FFFFFF 18%, transparent);
    background: transparent;
  }

  .stats--principles .stat__value,
  .stats--principles .stat__label,
  .stats--principles .stat__text {
    margin: 0;
  }

  .stats--principles .stat__value {
    color: var(--color-focus);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
  }

  .stats--principles .stat__label {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: clamp(1.28rem, 1.75vw, 1.88rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.05;
    text-transform: none;
  }

  .stats--principles .stat__text {
    max-width: 58ch;
    color: color-mix(in srgb, #FFFFFF 72%, transparent);
    font-size: clamp(0.98rem, 1.05vw, 1.08rem);
    line-height: 1.54;
  }

  .steps__list {
    gap: clamp(18px, 2.2vw, 28px);
  }

  .quote__figure {
    text-align: center;
  }

  .quote__figure > .eyebrow {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .quote__figure blockquote {
    width: min(760px, 100%);
    max-width: 100%;
    margin-inline: auto;
  }

  .quote__figure blockquote p {
    font-size: clamp(1.85rem, 3.1vw, 3.35rem);
  }

  .section-text--editorial {
    background: var(--color-bg-soft);
  }

  .cta--band .cta-box {
    background: transparent;
    color: #FFFFFF;
  }

  .cta--band .prose h2 {
    color: #FFFFFF;
  }

  .cta--band .prose p {
    color: color-mix(in srgb, #FFFFFF 74%, transparent);
  }

  .card::before,
  .stat::before,
  .step__index {
    color: var(--color-focus);
  }

  .quote__figure blockquote p {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.12;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .site-footer {
    background: var(--color-accent-strong);
    color: #FFFFFF;
  }

  @media (max-width: 720px) {
    :root {
      --container: min(100% - 40px, 680px);
      --container-narrow: min(100% - 40px, 620px);
      --section: clamp(46px, 13vw, 72px);
    }

    .brand__logo {
      width: clamp(132px, 46vw, 174px);
      max-height: 42px;
    }

    .hero,
    .hero-grid {
      min-height: min(720px, calc(100svh - 72px));
      height: auto;
    }

    .hero-grid {
      align-items: end;
      padding-inline: 24px;
      padding-bottom: clamp(54px, 13vw, 78px);
    }

    .hero h1 {
      max-width: 100%;
      font-size: clamp(1.85rem, 7.6vw, 2.38rem);
      line-height: 1.02;
      overflow-wrap: normal;
      hyphens: none;
    }

    .hero .text-lead {
      font-size: clamp(1rem, 4.9vw, 1.18rem);
      line-height: 1.48;
      overflow-wrap: break-word;
    }

    .hero .actions {
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 12px;
    }

    .hero .button {
      width: 100%;
      justify-content: center;
    }

    .section-text--editorial .container.prose {
      display: block;
      max-width: var(--container);
    }

    .section-text--editorial h2,
    .cards__intro h2,
    .image-text__content h2,
    .steps__intro h2,
    .cta h2 {
      max-width: min(100%, 15ch);
      font-size: clamp(1.72rem, 8vw, 2.45rem);
      overflow-wrap: normal;
      hyphens: none;
    }

    .image-text__content h2 {
      max-width: 100%;
      overflow-wrap: normal;
      word-break: normal;
      hyphens: none;
    }

    .steps__intro h2 {
      max-width: 100%;
      font-size: clamp(1.62rem, 7vw, 2.16rem);
    }

    .section-text--editorial .text-lead {
      font-size: clamp(1.18rem, 6.2vw, 1.65rem);
    }

    .section-cards .card__body {
      padding: 22px;
    }

    .section-cards .card {
      overflow: hidden;
    }

    .cards--compact > .container,
    .section-cards.cards--compact .card__body {
      display: block;
    }

    .cards--compact .cards__intro {
      margin-bottom: 24px;
    }

    .section-cards .card__body h3 {
      font-size: clamp(1.22rem, 6.3vw, 1.62rem);
    }

    .image-text__media {
      min-height: 0;
      aspect-ratio: 4 / 3;
    }

    .stats--principles .stats__intro {
      display: block;
      margin-bottom: 22px;
    }

    .stats--principles .stats__intro h2 {
      max-width: 100%;
      font-size: clamp(1.7rem, 7.8vw, 2.35rem);
    }

    .stats--principles .stats__intro p:not(.eyebrow) {
      margin-top: 18px;
      font-size: 1rem;
    }

    .stats--principles .stat {
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 8px 16px;
      padding: 20px 0;
    }

    .stats--principles .stat__label {
      font-size: clamp(1.16rem, 6vw, 1.48rem);
    }

    .stats--principles .stat__text {
      grid-column: 2;
      font-size: 0.98rem;
    }

    .quote__figure blockquote p {
      font-size: clamp(1.58rem, 7vw, 2.1rem);
      overflow-wrap: break-word;
    }
  }
}


