﻿:root {
    --bg: #0a0e17;
    --bg-raised: #111827;
    --bg-card: #151c2c;
    --bg-glass: rgba(17, 24, 39, 0.72);
    --accent: #9d1818;
    --accent-soft: rgba(157, 24, 24, 0.14);
    --accent-glow: rgba(157, 24, 24, 0.22);
    --accent-2: #c42020;
    --text: #f0f2f5;
    --text-soft: #8b95a5;
    --text-dim: #4b5563;
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(157, 24, 24, 0.32);
    --shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    --shadow-glow: 0 0 20px var(--accent-soft);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 22px;
    --container: 1280px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font: 400 14px/1.65 Inter, system-ui, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
canvas {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin-top: 0;
}

[v-cloak] {
    display: none;
}

.ambient-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
}

.site-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.site-main {
    overflow: hidden;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.narrow {
    width: min(calc(100% - 32px), 880px);
}

.micro-label {
    display: inline-block;
    color: var(--accent);
    font: 600 0.68rem/1.3 "IBM Plex Mono", monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.micro-label--ink {
    color: var(--text-dim);
}

/* â”€â”€ BUTTONS â”€â”€ */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 38px;
    padding: 0 16px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.84rem;
    transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 6px 16px rgba(157, 24, 24, 0.2);
}

.button-primary:hover {
    box-shadow: 0 8px 20px rgba(157, 24, 24, 0.3);
}

.button-secondary {
    color: var(--text);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.button-secondary:hover {
    border-color: var(--border-accent);
}

.button-ghost {
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
}

.button-ghost:hover {
    border-color: var(--border-accent);
    background: rgba(157, 24, 24, 0.06);
}

.button-compact {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.8rem;
}

/* â”€â”€ HEADER â”€â”€ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(10, 14, 23, 0.94);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.site-header,
.site-header a,
.site-header .brand__text strong,
.site-header .desktop-nav a,
.site-header .menu-toggle,
.cookie-inline,
.cookie-inline .micro-label,
.cookie-inline__copy strong,
.mobile-panel,
.mobile-panel a,
.mobile-panel p {
    color: var(--text);
}

.site-header .brand__text small,
.mobile-panel p {
    color: var(--text-soft);
}

.header-bar {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 80px;
    height: 40px;
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.brand__mark img {
    width: 100%;
    height: auto;
}

.brand__mark--footer {
    width: 90px;
    height: 44px;
}

.brand__text strong {
    display: block;
    font: 700 0.98rem/1.1 Sora, sans-serif;
}

.brand__text small {
    display: block;
    margin-top: 4px;
    font-size: 0.68rem;
    line-height: 1.3;
}

.header-contact {
    color: var(--text-soft);
    font-size: 0.8rem;
    font-weight: 600;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-soft);
    transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.desktop-nav a::after {
    display: none;
}

.mobile-header-clock {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-actions__cta {
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    font-weight: 700;
    color: var(--text);
}

.mobile-panel {
    display: none;
    background: rgba(10, 14, 23, 0.98);
    border-top: 1px solid var(--border);
}

.mobile-bottom-nav {
    display: none;
    transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-bottom-nav__inner {
    display: grid;
}

.site-body.is-scroll-down .site-header {
    transform: translateY(calc(-100% - 6px));
}

.site-body.is-scroll-up .site-header {
    transform: translateY(0);
}

.mobile-panel__inner {
    padding: 12px 0 16px;
}

.mobile-panel__head p {
    margin: 4px 0 0;
}

.mobile-nav,
.mobile-panel__actions {
    display: grid;
    gap: 6px;
}

.mobile-nav {
    margin: 12px 0 14px;
}

.mobile-nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-inline {
    background: var(--bg-raised);
    border-bottom: 1px solid var(--border);
}

.cookie-inline__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 40px;
}

.cookie-inline__copy {
    display: grid;
    gap: 2px;
}
/* â”€â”€ HERO / PAGE HERO â”€â”€ */
.hero-landing,
.page-hero {
    padding: 28px 0 14px;
}

.breadcrumbs {
    margin-bottom: 18px;
}

.breadcrumbs ol {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.76rem;
}

.breadcrumbs li + li::before {
    content: "/";
    color: var(--text-dim);
}

.breadcrumbs a {
    color: var(--text-soft);
    transition: color 140ms ease;
}

.breadcrumbs a:hover,
.breadcrumbs .is-current span {
    color: var(--text);
}

.hero-landing__grid,
.page-hero__grid,
.project-spotlight,
.feature-article,
.article-hero,
.form-layout,
.atelier-grid {
    display: grid;
    gap: 24px;
    align-items: start;
}

.page-hero__grid,
.article-hero {
    align-items: center;
}

.hero-landing__grid,
.page-hero__grid,
.project-spotlight,
.feature-article,
.article-hero,
.form-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
}

.form-layout {
    align-items: stretch;
}

.atelier-grid {
    grid-template-columns: 1fr;
}

.atelier-grid__primary,
.atelier-grid__aside {
    display: grid;
    gap: 12px;
}

.hero-copy,
.page-hero__copy,
.project-spotlight__copy,
.feature-article__copy,
.article-hero__copy {
    max-width: 680px;
}

.hero-copy h1,
.page-hero__copy h1,
.project-spotlight__copy h2,
.feature-article__copy h2,
.article-hero__copy h1,
.cta-block__copy h2,
.footer-callout__copy h2,
.center-card h1,
.section-intro h2 {
    margin: 6px 0 10px;
    color: var(--text);
    font: 700 clamp(1.4rem, 3vw, 2.6rem)/1.08 Sora, sans-serif;
    letter-spacing: -0.04em;
}

.page-hero__copy h1,
.project-spotlight__copy h2,
.feature-article__copy h2,
.article-hero__copy h1,
.center-card h1,
.section-intro h2 {
    font-size: clamp(1.55rem, 2.8vw, 2.5rem);
}

.hero-copy__lead,
.page-hero__copy p,
.project-spotlight__copy p,
.feature-article__copy p,
.article-hero__copy p,
.cta-block__copy p,
.footer-callout__copy p,
.center-card p,
.section-intro p,
.capability-card p,
.project-card p,
.info-panel p,
.article-section p,
.field small,
.footer-brand p {
    color: var(--text-soft);
    font-size: 0.86rem;
}

.page-hero__copy p,
.article-hero__copy p,
.feature-article__copy p,
.project-spotlight__copy p {
    max-width: 58ch;
}

.page-hero-visual {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-self: stretch;
    align-self: stretch;
    min-height: 0;
    aspect-ratio: 21 / 9;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.page-hero-visual::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 14px;
    z-index: 2;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 16px 0 0 rgba(255, 255, 255, 0.78), 32px 0 0 rgba(255, 255, 255, 0.36);
}

.page-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 23, 0.08), rgba(10, 14, 23, 0.22)),
        linear-gradient(135deg, rgba(157, 24, 24, 0.08), transparent 34%);
    pointer-events: none;
}

.page-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-actions,
.cta-block__actions,
.footer-callout__actions,
.hero-actions--center,
.reference-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.signal-chip,
.tag-row span,
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.76rem;
}

.signal-chip__dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--accent);
}

/* â”€â”€ GRIDS â”€â”€ */
.hero-briefs,
.atelier-method-grid,
.capability-grid,
.project-grid,
.panel-grid--three,
.reference-atlas,
.two-column,
.process-grid,
.form-grid,
.group-grid,
.hero-band,
.hero-band--compact {
    display: grid;
    gap: 12px;
}

.hero-briefs,
.atelier-method-grid,
.hero-band,
.capability-grid,
.project-grid,
.panel-grid--three,
.group-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-band,
.hero-band--compact,
.atelier-method-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-band--simple {
    gap: 10px;
    margin-top: 18px;
}

.reference-atlas,
.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capability-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* â”€â”€ CARDS â”€â”€ */
.micro-panel,
.hero-band__item,
.capability-card,
.info-panel,
.project-card,
.process-card,
.feature-article,
.project-spotlight,
.cta-block,
.center-card,
.form-shell,
.reference-card,
.article-section {
    position: relative;
    overflow: hidden;
    padding: 36px 16px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    box-shadow: var(--shadow);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.micro-panel:hover,
.capability-card:hover,
.project-card:hover,
.info-panel:hover,
.reference-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow), var(--shadow-glow);
    transform: translateY(-1px);
}

.feature-article,
.project-spotlight,
.cta-block {
    padding: 40px 20px 20px;
}

.micro-panel::before,
.hero-band__item::before,
.capability-card::before,
.info-panel::before,
.project-card::before,
.process-card::before,
.center-card::before,
.form-shell::before,
.project-spotlight::before,
.feature-article::before,
.article-hero::before,
.cta-block::before,
.reference-card::before,
.article-section::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 12px 0 0 var(--text-soft), 24px 0 0 var(--text-dim);
}

.micro-panel strong,
.hero-band__item strong,
.info-panel h2,
.info-panel h3,
.project-card h2,
.project-card h3,
.capability-card h2,
.capability-card h3 {
    display: block;
    margin: 6px 0 8px;
    color: var(--text);
    font: 700 clamp(0.92rem, 1.2vw, 1.15rem)/1.2 Sora, sans-serif;
}

.hero-band--simple .hero-band__item {
    padding: 18px 14px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: none;
}

.hero-band--simple .hero-band__item::before {
    top: 9px;
}

.hero-band--simple .hero-band__item strong {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.about-summary-grid,
.about-detail-grid {
    display: grid;
    gap: 12px;
}

.about-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
}

.about-summary-card,
.about-detail-card {
    position: relative;
    overflow: hidden;
    padding: 28px 18px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%), var(--bg-card);
    box-shadow: var(--shadow);
}

.about-summary-card::before,
.about-detail-card::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 12px 0 0 var(--text-soft), 24px 0 0 var(--text-dim);
}

.about-summary-card p,
.about-detail-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.about-summary-card .micro-label {
    margin-bottom: 10px;
}

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

.about-detail-card h3 {
    margin: 6px 0 10px;
    color: var(--text);
    font: 700 1.08rem/1.18 Sora, sans-serif;
    letter-spacing: -0.03em;
}

.about-detail-card p + p,
.about-summary-card p + p {
    margin-top: 10px;
}

.site-body:not(.route-home) .info-panel,
.site-body:not(.route-home) .capability-card,
.site-body:not(.route-home) .project-card,
.site-body:not(.route-home) .reference-card,
.site-body:not(.route-home) .feature-article,
.site-body:not(.route-home) .project-spotlight,
.site-body:not(.route-home) .form-shell,
.site-body:not(.route-home) .article-section,
.site-body:not(.route-home) .micro-panel {
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 42%), var(--bg-card);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.site-body:not(.route-home) .feature-article,
.site-body:not(.route-home) .project-spotlight,
.site-body:not(.route-home) .form-shell {
    padding: 34px 18px 18px;
}

.site-body:not(.route-home) .section-intro {
    gap: 12px;
    margin-bottom: 16px;
}

.site-body:not(.route-home) .reference-stage,
.site-body:not(.route-home) .reference-stage--full {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

/* â”€â”€ SECTIONS â”€â”€ */
.section {
    padding: 40px 0;
}

.section-contrast {
    background: var(--bg-raised);
}

.section-dark {
    background: var(--bg);
}

.section-group {
    background: var(--bg);
    color: var(--text);
}

.section-group .micro-label,
.micro-label--ink {
    color: var(--accent);
}

.group-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 14px;
    margin-bottom: 14px;
}

.group-shell__lead,
.group-shell__note,
.group-card {
    position: relative;
    overflow: hidden;
    padding: 34px 16px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.group-shell__lead::before,
.group-shell__note::before,
.group-card::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 12px 0 0 var(--text-soft), 24px 0 0 var(--text-dim);
}

.group-shell__lead h2,
.group-shell__note strong,
.group-card h3 {
    margin: 6px 0 8px;
    color: var(--text);
    font: 700 clamp(1.1rem, 1.8vw, 1.8rem)/1.12 Sora, sans-serif;
}

.group-shell__lead p,
.group-shell__note p,
.group-card p,
.group-list li {
    color: var(--text-soft);
}

.group-card--soft {
    background: var(--bg-raised);
}

.group-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.group-list li,
.detail-list li,
.footer-links li,
.toc-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 5px;
    font-size: 0.84rem;
}

.group-list li::before,
.detail-list li::before,
.footer-links li::before,
.toc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--accent);
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 16px;
    align-items: end;
    margin-bottom: 18px;
}

.section-intro--single {
    grid-template-columns: 1fr;
    max-width: 720px;
}

.section-intro p {
    max-width: 44ch;
}

.reference-card__image {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.reference-card__image img,
.reference-stage img {
    width: 100%;
    height: auto;
}

.reference-card__meta {
    display: grid;
    gap: 4px;
    padding: 12px 14px 14px;
}

.reference-stage {
    overflow: hidden;
}

.reference-stage--full {
    padding: 0;
}

.tile-link,
.tile-link--ink {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.82rem;
    transition: gap 140ms ease;
}

.tile-link:hover {
    gap: 8px;
}

.tile-link::after,
.tile-link--ink::after {
    content: "\2197";
}

.brand-highlight__suffix {
    color: #fb7608;
}

.project-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    color: var(--text-dim);
    font-size: 0.82rem;
}

.tag-row,
.tag-row--filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.tag-row--filters {
    margin-top: 14px;
}

.tag-pill.is-active {
    color: #fff;
    background: var(--accent);
    border-color: transparent;
}
/* â”€â”€ SCENE CARDS â”€â”€ */
.scene-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--bg-raised);
    box-shadow: var(--shadow);
}

.scene-card::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 12px 0 0 var(--text), 24px 0 0 var(--text-soft);
    z-index: 2;
}

.scene-card--hero {
    min-height: 340px;
}

.scene-card--mast,
.scene-card--project {
    min-height: 240px;
}

.scene-shell {
    position: absolute;
    inset: 0;
}

.scene-shell canvas {
    width: 100%;
    height: 100%;
}

.scene-card__overlay {
    position: absolute;
    inset: 36px 14px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.overlay-panel,
.overlay-metrics>div,
.cookie-inline,
.mobile-panel,
.site-footer,
.footer-callout,
.floating-whatsapp {
    color: var(--text);
}

.overlay-panel,
.overlay-metrics>div {
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
}

.overlay-panel {
    align-self: flex-start;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

.overlay-panel span,
.overlay-metrics small {
    color: var(--text-dim);
    font-size: 0.76rem;
}

.overlay-panel strong {
    display: block;
    margin: 4px 0 2px;
    color: var(--text);
    font-size: 0.9rem;
}

.overlay-metrics {
    display: flex;
    gap: 8px;
    align-self: flex-end;
}

.overlay-metrics>div {
    min-width: 72px;
    padding: 8px 10px;
    border-radius: 10px;
}

.overlay-metrics strong {
    display: block;
    margin-top: 2px;
}

.scene-stack {
    position: absolute;
    inset: 0;
    perspective: 1200px;
    pointer-events: none;
}

.scene-stack__panel {
    position: absolute;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.scene-stack__panel span {
    position: absolute;
    left: 16%;
    right: 16%;
    height: 6px;
    border-radius: 999px;
}

.scene-stack__panel span:nth-child(1) {
    top: 24%;
}

.scene-stack__panel span:nth-child(2) {
    top: 42%;
}

.scene-stack__panel span:nth-child(3) {
    top: 60%;
    right: 34%;
}

.scene-stack__panel--light {
    width: 26%;
    height: 24%;
    top: 16%;
    left: 12%;
    background: rgba(255, 255, 255, 0.06);
    transform: rotateY(18deg) rotateX(-8deg) translateZ(50px);
}

.scene-stack__panel--light span {
    background: var(--text-soft);
}

.scene-stack__panel--light span:nth-child(3) {
    background: var(--accent);
}

.scene-stack__panel--dark,
.scene-stack__panel--accent,
.scene-stack--project .scene-stack__panel--accent,
.scene-stack--blog .scene-stack__panel--accent,
.scene-stack--contact .scene-stack__panel--accent,
.scene-stack--quote .scene-stack__panel--accent {
    background: var(--bg-raised);
}

.scene-stack__panel--dark {
    width: 42%;
    height: 24%;
    top: 40%;
    left: 16%;
    transform: rotateY(-14deg) rotateX(8deg) translateZ(30px);
}

.scene-stack__panel--dark span:nth-child(1),
.scene-stack__panel--accent span:nth-child(1) {
    background: var(--text);
}

.scene-stack__panel--dark span:nth-child(2),
.scene-stack__panel--accent span:nth-child(2) {
    background: var(--accent);
}

.scene-stack__panel--dark span:nth-child(3) {
    background: var(--text-soft);
}

.scene-stack__panel--accent {
    width: 32%;
    height: 18%;
    top: 20%;
    right: 12%;
    transform: rotateY(-18deg) rotateX(8deg) translateZ(80px);
}

.scene-stack__node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 999px;
}

.scene-stack__node--a {
    left: 42%;
    bottom: 22%;
    background: var(--accent);
}

.scene-stack__node--b {
    right: 20%;
    bottom: 28%;
    background: var(--text);
}

/* â”€â”€ FAQ â”€â”€ */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.faq-item p {
    padding: 0 14px 12px;
    color: var(--text-soft);
    font-size: 0.86rem;
}

/* â”€â”€ FORMS â”€â”€ */
.form-layout__aside {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 12px;
    align-content: start;
    min-height: 100%;
}

.field,
.checkbox {
    display: grid;
    gap: 4px;
    margin-bottom: 12px;
}

.field span {
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--text);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 10px 12px;
    color: var(--text);
    font-size: 0.88rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-raised);
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--border-accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.checkbox span {
    color: var(--text-soft);
    font-size: 0.84rem;
}

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

.checkbox input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
}

.checkbox span a {
    color: var(--accent);
}

.form-error {
    color: #ef4444;
    font-size: 0.8rem;
}

.stepper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 14px;
}

.step {
    min-height: 36px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--bg-card);
    font-weight: 700;
    font-size: 0.84rem;
    cursor: pointer;
}

.step.is-active {
    color: #fff;
    background: var(--accent);
    border-color: transparent;
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.center-card {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.hero-actions--center {
    justify-content: center;
}

.section-cta {
    padding-top: 10px;
}

.cta-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 22px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--border);
    box-shadow: none;
}

.cta-block::before {
    display: none;
}

.cta-block__copy h2 {
    margin: 4px 0 8px;
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
}

.cta-block__copy p {
    max-width: 60ch;
}

/* â”€â”€ FOOTER â”€â”€ */
.site-footer {
    margin-top: 24px;
    padding: 12px 0 20px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 18px 0 20px;
}

.footer-grid--four {
    grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
}

.footer-column h4 {
    margin: 8px 0 6px;
    font: 700 0.94rem/1.2 Sora, sans-serif;
    color: var(--text);
}

.footer-contact,
.footer-bottom,
.footer-links a,
.footer-brand p {
    color: var(--text-soft);
    font-size: 0.82rem;
}

.footer-brand p {
    max-width: 34ch;
    line-height: 1.8;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    margin-bottom: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* â”€â”€ FLASH â”€â”€ */
.flash {
    padding-top: 8px;
}

.flash-inner {
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.86rem;
}

.flash-success .flash-inner {
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.16);
}

.flash-error .flash-inner {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.14);
}

/* â”€â”€ FLOATING WHATSAPP â”€â”€ */
.floating-whatsapp {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 20;
    display: inline-grid;
    gap: 1px;
    min-height: 44px;
    padding: 8px 14px;
    border-radius: 14px;
    color: #fff;
    background: var(--accent);
    box-shadow: 0 8px 20px rgba(157, 24, 24, 0.22);
}

.floating-whatsapp span {
    font-size: 0.7rem;
    opacity: 0.72;
}

.floating-whatsapp strong {
    font-size: 0.82rem;
}
/* â”€â”€ HOME CINEMA â”€â”€ */
.route-home {
    --cinema-bg: #06070b;
    --cinema-panel: rgba(14, 15, 22, 0.82);
    --cinema-text: #f0f2f5;
    --cinema-text-soft: rgba(240, 242, 245, 0.68);
    --cinema-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    background: var(--cinema-bg);
}

.route-home .ambient-canvas {
    opacity: 0;
}

.route-home .site-main {
    background:
        radial-gradient(circle at top right, rgba(157, 24, 24, 0.14), transparent 30%),
        radial-gradient(circle at left center, rgba(255, 255, 255, 0.03), transparent 22%),
        linear-gradient(180deg, #06070b 0%, #0b0d14 30%, #0d1018 60%, #08090d 100%);
}

.route-home .section {
    background: transparent;
}

.route-home .micro-label {
    color: rgba(240, 242, 245, 0.55);
}

.route-home .site-header,
.route-home .utility-rail {
    background: rgba(10, 14, 23, 0.92);
    border-color: var(--border);
}

.route-home .site-header {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.route-home .brand__mark {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.route-home.is-home-header-compact .site-header,
.route-home.is-home-header-compact .utility-rail {
    background: rgba(10, 14, 23, 0.96);
    backdrop-filter: blur(16px);
}

.home-cinema {
    position: relative;
    overflow: clip;
    padding: 0 0 32px;
}

.home-cinema::before,
.home-cinema::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(20px);
}

.home-cinema::before {
    left: -6%;
    top: 60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
}

.home-cinema::after {
    right: -8%;
    top: 40px;
    width: 260px;
    height: 260px;
    background: rgba(157, 24, 24, 0.08);
}

.home-cinema__track {
    position: relative;
    padding-top: 80px;
}

.home-cinema__intro {
    padding: 10px 0 18px;
}

.home-cinema__intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 18px;
    align-items: end;
}

.home-cinema__intro-copy {
    max-width: 780px;
}

.home-cinema__intro-copy h1 {
    margin: 6px 0 10px;
    color: var(--cinema-text);
    font: 800 clamp(1.8rem, 4vw, 3.6rem)/0.96 Sora, sans-serif;
    letter-spacing: -0.05em;
    max-width: 12ch;
}

.home-cinema__lead {
    max-width: 56ch;
    color: var(--cinema-text-soft);
    font-size: 0.92rem;
}

.home-cinema__intro-panel {
    display: grid;
    gap: 8px;
    padding: 18px 16px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%), var(--bg-glass);
    box-shadow: var(--cinema-shadow);
    backdrop-filter: blur(10px);
}

.home-cinema__intro-panel strong {
    color: var(--cinema-text);
    font: 700 1.1rem/1.12 Sora, sans-serif;
    letter-spacing: -0.03em;
}

.home-cinema__intro-panel p {
    color: var(--cinema-text-soft);
    font-size: 0.84rem;
}

.home-cinema__intro-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 4px;
}

.home-cinema__intro-meta>div {
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.home-cinema__intro-meta small {
    display: block;
    color: var(--text-dim);
    font-size: 0.66rem;
}

.home-cinema__intro-meta strong {
    display: block;
    margin-top: 3px;
    font-size: 0.84rem;
    color: var(--cinema-text);
}

.home-cinema__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1fr);
    gap: 18px;
    align-items: start;
}

.home-cinema__story {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 4px 0 0;
}

.cinema-step {
    position: relative;
    padding: 26px 18px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%), var(--bg-glass);
    box-shadow: var(--cinema-shadow);
    opacity: 0.48;
    transition: opacity 200ms ease, border-color 200ms ease;
}

.cinema-step.is-active {
    opacity: 1;
    border-color: rgba(157, 24, 24, 0.28);
}

.cinema-step::before,
.manifesto-card::before,
.group-ribbon__card::before,
.capability-wall__card::before,
.reference-gallery__item::before,
.reference-gallery__quote::before,
.delivery-step::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 12px 0 0 rgba(255, 255, 255, 0.65), 24px 0 0 rgba(255, 255, 255, 0.28);
}

.cinema-step__marker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--text-dim);
    font: 600 0.66rem/1.3 "IBM Plex Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cinema-step__marker::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--text-dim);
}

.cinema-step h2,
.home-section-head h2,
.manifesto-card strong,
.manifesto-card h3,
.group-ribbon__card h3,
.capability-wall__card h3,
.reference-gallery__body h3,
.reference-gallery__quote strong,
.delivery-shell__intro h2,
.delivery-step h3 {
    color: var(--cinema-text);
    font-family: Sora, sans-serif;
    letter-spacing: -0.04em;
}

.cinema-step h2 {
    margin: 6px 0 8px;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    line-height: 1.06;
}

.cinema-step__lead,
.home-cinema__intro-panel p,
.home-section-head p,
.manifesto-card p,
.group-ribbon__card p,
.capability-wall__card p,
.reference-gallery__body p,
.reference-gallery__quote p,
.delivery-shell__intro p {
    color: var(--cinema-text-soft);
    font-size: 0.86rem;
}

.home-cinema__signals .signal-chip {
    color: var(--cinema-text);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.cinema-step__list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: grid;
    gap: 4px;
}

.cinema-step__list li {
    position: relative;
    padding-left: 14px;
    color: var(--cinema-text-soft);
    font-size: 0.82rem;
}

.cinema-step__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--accent);
}

.cinema-step__metrics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.cinema-step__metrics-list span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--cinema-text-soft);
    font-size: 0.72rem;
}

.home-cinema__visual {
    position: relative;
}

.cinema-stage {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 8px;
}

.cinema-stage__window {
    --cinema-progress: 0;
    position: relative;
    min-height: min(56vh, 440px);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(18, 19, 26, 0.96), rgba(8, 9, 14, 0.98));
    box-shadow: var(--cinema-shadow);
    transform: perspective(1400px) rotateY(calc((var(--cinema-progress) - 0.5) * -3deg));
    transition: transform 200ms ease;
}

.cinema-stage__canvas,
.cinema-stage__veil {
    position: absolute;
    inset: 0;
}

.cinema-stage__canvas {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cinema-stage__veil {
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(6, 7, 11, 0.08) 0%, rgba(6, 7, 11, 0.12) 20%, rgba(6, 7, 11, 0.28) 60%, rgba(6, 7, 11, 0.66) 100%),
        radial-gradient(circle at top right, rgba(157, 24, 24, 0.08), transparent 30%);
}

.cinema-stage__chrome {
    position: absolute;
    left: 14px;
    top: 12px;
    z-index: 7;
    display: flex;
    gap: 6px;
}

.cinema-stage__chrome span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
}

.cinema-stage__chrome span:first-child {
    background: var(--accent);
}

.cinema-chapter {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 4;
    pointer-events: none;
    transition: opacity 360ms ease, transform 360ms ease;
    transform: scale(1.02);
}

.cinema-chapter.is-active {
    opacity: 1;
    transform: scale(1);
}

.cinema-chapter__glass {
    position: absolute;
    left: 16px;
    bottom: 18px;
    z-index: 6;
    max-width: 260px;
    padding: 12px 12px 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.cinema-chapter__glass strong {
    display: block;
    margin: 6px 0 4px;
    color: var(--cinema-text);
    font: 700 0.92rem/1.12 Sora, sans-serif;
}

.cinema-chapter__glass span,
.cinema-metrics__item small,
.cinema-stage__caption span {
    color: var(--text-dim);
    font-size: 0.74rem;
}

.cinema-stage__frames {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.cinema-stage__frame {
    position: absolute;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(12, 13, 18, 0.36);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(3px);
}

.cinema-stage__frame span {
    position: absolute;
    left: 14%;
    right: 14%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
}

.cinema-stage__frame span:nth-child(1) {
    top: 24%;
}

.cinema-stage__frame span:nth-child(2) {
    top: 44%;
    background: var(--accent);
}

.cinema-stage__frame span:nth-child(3) {
    top: 62%;
    right: 32%;
    background: rgba(255, 255, 255, 0.3);
}

.cinema-stage__frame--a {
    top: 60px;
    right: 30px;
    width: 140px;
    height: 90px;
    transform: translateY(calc(var(--cinema-progress) * -8px)) rotate(4deg);
}

.cinema-stage__frame--b {
    left: 34px;
    top: 94px;
    width: 160px;
    height: 116px;
    transform: translateY(calc(var(--cinema-progress) * 12px)) rotate(-7deg);
}

.cinema-stage__frame--c {
    right: 56px;
    bottom: 110px;
    width: 180px;
    height: 100px;
    transform: translateY(calc(var(--cinema-progress) * -12px)) rotate(-8deg);
}

.cinema-stage__frame--c span:nth-child(2) {
    right: 22%;
}

.cinema-stage__pulse {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    box-shadow: 0 0 0 6px rgba(157, 24, 24, 0.06);
}

.cinema-stage__pulse--a {
    right: 190px;
    top: 86px;
    background: var(--accent);
}

.cinema-stage__pulse--b {
    left: 220px;
    bottom: 140px;
    background: var(--text);
}

.cinema-stage__metrics {
    position: absolute;
    right: 16px;
    bottom: 18px;
    z-index: 6;
    width: min(48%, 300px);
    min-height: 80px;
}

.cinema-metrics {
    position: absolute;
    inset: auto 0 0 auto;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.cinema-metrics.is-active {
    opacity: 1;
    transform: translateY(0);
}

.cinema-metrics__item {
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(6px);
}

.cinema-metrics__item strong,
.cinema-stage__caption strong {
    display: block;
    margin-top: 2px;
    color: var(--cinema-text);
    font-size: 0.86rem;
}

.cinema-stage__caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 6px 0 0;
    color: var(--cinema-text);
    font-size: 0.72rem;
}
/* â”€â”€ HOME SECTIONS â”€â”€ */
.home-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 16px;
    align-items: end;
    margin-bottom: 16px;
}

.home-section-head h2 {
    margin: 4px 0 0;
    font-size: clamp(1.4rem, 2.4vw, 2.2rem);
    line-height: 1.06;
}

.home-manifesto,
.home-capabilities,
.home-references,
.home-delivery {
    padding-top: 36px;
    padding-bottom: 36px;
}

.manifesto-layout,
.delivery-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
    gap: 14px;
}

.manifesto-card,
.group-ribbon__card,
.capability-wall__card,
.reference-gallery__item,
.reference-gallery__quote,
.delivery-step {
    position: relative;
    overflow: hidden;
    padding: 36px 16px 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%), var(--bg-glass);
    box-shadow: var(--cinema-shadow);
    transition: border-color 180ms ease, transform 180ms ease;
}

.manifesto-card:hover,
.group-ribbon__card:hover,
.capability-wall__card:hover,
.reference-gallery__item:hover,
.delivery-step:hover {
    border-color: var(--border-accent);
    transform: translateY(-1px);
}

.manifesto-card strong,
.manifesto-card h3,
.group-ribbon__card h3,
.capability-wall__card h3,
.reference-gallery__body h3,
.reference-gallery__quote strong,
.delivery-step h3 {
    margin: 4px 0 6px;
}

.manifesto-card strong {
    display: block;
    font-size: clamp(1.1rem, 1.6vw, 1.6rem);
    line-height: 1.1;
}

.manifesto-stack {
    display: grid;
    gap: 10px;
}

.tag-row span {
    color: var(--cinema-text);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.group-ribbon {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.group-ribbon__card p,
.group-list li,
.detail-list li,
.reference-gallery__body p {
    color: var(--cinema-text-soft);
}

.capability-wall,
.reference-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 10px;
}

.capability-wall__card {
    grid-column: span 4;
}

.capability-wall__card--1,
.capability-wall__card--4 {
    grid-column: span 5;
}

.capability-wall__card--2,
.capability-wall__card--5 {
    grid-column: span 3;
}

.capability-wall__card--3,
.capability-wall__card--6 {
    grid-column: span 4;
}

.reference-gallery__item {
    grid-column: span 6;
    padding: 0;
}

.reference-gallery__item--2,
.reference-gallery__item--3 {
    grid-column: span 4;
}

.reference-gallery__item--1 {
    grid-column: span 8;
}

.reference-gallery__item--4 {
    grid-column: span 5;
}

.reference-gallery__quote {
    grid-column: span 3;
    display: grid;
    align-content: start;
    gap: 6px;
}

.reference-gallery__visual {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.reference-gallery__visual img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform 200ms ease;
}

.reference-gallery__item:hover .reference-gallery__visual img {
    transform: scale(1.02);
}

.reference-gallery__body {
    display: grid;
    gap: 4px;
    padding: 12px 14px 14px;
}

.delivery-shell__intro {
    padding: 10px 6px 0 0;
}

.delivery-shell__intro h2 {
    margin: 4px 0 8px;
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    line-height: 1.06;
}

.delivery-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.delivery-step {
    min-height: 120px;
}

.delivery-step__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    color: #fff;
    border: 1px solid var(--border-accent);
    background: var(--accent-soft);
    font: 700 0.82rem/1 Sora, sans-serif;
}

.delivery-step h3 {
    font-size: 0.92rem;
    line-height: 1.2;
}

/* HOME REFRESH */
.home-refresh-hero {
    position: relative;
    padding: 64px 0 30px;
}

.home-refresh-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 480px;
    background:
        radial-gradient(circle at top left, rgba(157, 24, 24, 0.18), transparent 42%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 34%);
    pointer-events: none;
}

.home-refresh-hero__grid,
.home-refresh-heading,
.home-refresh-process {
    position: relative;
    display: grid;
    gap: 18px;
}

.home-refresh-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
}

.home-refresh-hero__copy {
    max-width: 640px;
}

.home-refresh-hero__copy h1,
.home-refresh-heading h2,
.home-refresh-process__intro h2,
.home-refresh-card h3,
.home-refresh-service-card h3,
.home-refresh-reference-card__body h3,
.home-refresh-timeline h3 {
    color: var(--text);
    font-family: Sora, sans-serif;
    letter-spacing: -0.04em;
}

.home-refresh-hero__copy h1 {
    margin: 8px 0 14px;
    font-size: clamp(2rem, 4.2vw, 3.7rem);
    line-height: 1.02;
}

.home-refresh-hero__copy p,
.home-refresh-heading p,
.home-refresh-card p,
.home-refresh-service-card p,
.home-refresh-process__intro p,
.home-refresh-reference-card__body p,
.home-refresh-timeline p {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.home-refresh-hero__copy p {
    max-width: 58ch;
}

.home-refresh-hero__list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 8px;
    max-width: 58ch;
}

.home-refresh-hero__list li {
    position: relative;
    padding-left: 18px;
    color: var(--text);
    font-size: 0.84rem;
}

.home-refresh-hero__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
}

.home-refresh-hero__panel {
    display: grid;
    gap: 12px;
}

.home-refresh-hero__media {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid var(--border-accent);
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 55%), var(--bg-card);
    box-shadow: var(--shadow);
}

.home-refresh-hero__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 23, 0.08), rgba(10, 14, 23, 0.62)),
        linear-gradient(135deg, rgba(157, 24, 24, 0.16), transparent 45%);
    z-index: 1;
    pointer-events: none;
}

.home-refresh-hero__media::after {
    content: "";
    position: absolute;
    right: 10%;
    bottom: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(157, 24, 24, 0.26), transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}

.home-refresh-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.8;
}

.home-refresh-hero__floating {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    max-width: 290px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.home-refresh-hero__floating strong {
    display: block;
    margin: 8px 0 6px;
    color: var(--text);
    font: 700 1rem/1.2 Sora, sans-serif;
}

.home-refresh-hero__floating span {
    color: var(--text-soft);
    font-size: 0.82rem;
}

.home-refresh-hero__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.home-refresh-hero__meta-item,
.home-refresh-card,
.home-refresh-service-card,
.home-refresh-process__intro,
.home-refresh-timeline li {
    position: relative;
    overflow: hidden;
    padding: 34px 16px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%), var(--bg-card);
    box-shadow: var(--shadow);
}

.home-refresh-hero__meta-item::before,
.home-refresh-card::before,
.home-refresh-service-card::before,
.home-refresh-process__intro::before,
.home-refresh-timeline li::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 12px 0 0 var(--text-soft), 24px 0 0 var(--text-dim);
}

.home-refresh-hero__meta-item small {
    display: block;
    margin-bottom: 6px;
    color: var(--text-dim);
    font: 600 0.68rem/1.2 "IBM Plex Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-refresh-hero__meta-item strong,
.home-refresh-hero__meta-item a {
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 700;
}

.home-refresh-section {
    padding-top: 24px;
    padding-bottom: 24px;
}

.home-refresh-heading {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    align-items: end;
    margin-bottom: 16px;
}

.home-refresh-heading h2,
.home-refresh-process__intro h2 {
    margin: 6px 0 0;
    font-size: clamp(1.5rem, 2.6vw, 2.4rem);
    line-height: 1.05;
}

.home-refresh-card-grid,
.home-refresh-service-grid,
.home-refresh-reference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.home-refresh-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
    gap: 14px;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--border-accent);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(157, 24, 24, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%),
        var(--bg-card);
    box-shadow: var(--shadow);
}

.home-refresh-spotlight__copy {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 10px 4px 10px 0;
}

.home-refresh-spotlight__copy h2 {
    margin: 0;
    color: var(--text);
    font: 700 clamp(1.55rem, 2.8vw, 2.6rem)/1.04 Sora, sans-serif;
    letter-spacing: -0.04em;
}

.home-refresh-spotlight__copy p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.home-refresh-spotlight__brand {
    color: var(--text);
}

.home-refresh-spotlight__brand-suffix {
    color: #fb7608;
}

.home-refresh-spotlight__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.home-refresh-spotlight__metrics article {
    position: relative;
    overflow: hidden;
    min-height: 126px;
    padding: 16px 14px 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
}

.home-refresh-spotlight__metrics article small {
    display: block;
    margin-bottom: 6px;
    color: var(--text-dim);
    font: 600 0.68rem/1.2 "IBM Plex Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-refresh-spotlight__metrics article strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font: 700 1rem/1.2 Sora, sans-serif;
}

.home-refresh-spotlight__metrics article span {
    color: var(--text-soft);
    font-size: 0.82rem;
}

.home-refresh-spotlight__visual {
    display: grid;
    align-content: start;
    gap: 12px;
}

.home-refresh-spotlight__media {
    display: block;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--bg-raised);
    min-height: 100%;
    padding: 10px;
}

.home-refresh-spotlight__media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: contain;
    object-position: center;
    transition: transform 220ms ease;
}

.home-refresh-spotlight:hover .home-refresh-spotlight__media img {
    transform: scale(1.02);
}

.home-refresh-spotlight__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.home-refresh-card h3,
.home-refresh-service-card h3,
.home-refresh-reference-card__body h3,
.home-refresh-timeline h3 {
    margin: 6px 0 8px;
    font: 700 clamp(0.98rem, 1.4vw, 1.26rem)/1.18 Sora, sans-serif;
}

.home-refresh-service-card__list {
    margin-top: 10px;
}

.home-refresh-service-card__list li {
    color: var(--text-soft);
}

.home-refresh-card,
.home-refresh-service-card,
.home-refresh-reference-card,
.home-refresh-timeline li {
    transition: border-color 180ms ease, transform 180ms ease;
}

.home-refresh-card:hover,
.home-refresh-service-card:hover,
.home-refresh-reference-card:hover,
.home-refresh-timeline li:hover {
    border-color: var(--border-accent);
    transform: translateY(-1px);
}

.home-refresh-process {
    grid-template-columns: 1fr;
    align-items: start;
}

.home-refresh-process__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.blog-search {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.blog-search input {
    width: min(100%, 320px);
    padding: 10px 12px;
    color: var(--text);
    font-size: 0.88rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-raised);
}

.home-refresh-process__signals span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(157, 24, 24, 0.08);
    color: var(--text);
    font-size: 0.78rem;
}

.home-refresh-timeline {
    list-style: none;
    counter-reset: process;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
}

.home-refresh-timeline li {
    min-height: 132px;
    padding-left: 72px;
}

.home-refresh-timeline li::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    position: absolute;
    left: 18px;
    top: 18px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-accent);
    border-radius: 999px;
    background: var(--accent-soft);
    color: #fff;
    font: 700 0.78rem/1 "IBM Plex Mono", monospace;
}

.home-refresh-reference-card {
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%), var(--bg-card);
    box-shadow: var(--shadow);
}

.home-refresh-reference-card__media {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--bg-raised);
}

.home-refresh-reference-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 200ms ease;
}

.home-refresh-reference-card:hover .home-refresh-reference-card__media img {
    transform: scale(1.03);
}

.home-refresh-reference-card__body {
    display: grid;
    gap: 4px;
    padding: 14px 14px 16px;
}

@media (max-width: 1180px) {
    .home-refresh-hero__grid,
    .home-refresh-heading,
    .home-refresh-process,
    .home-refresh-spotlight {
        grid-template-columns: 1fr;
    }

    .home-refresh-card-grid,
    .home-refresh-service-grid,
    .home-refresh-reference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .home-refresh-hero {
        padding-top: 92px;
    }

    .home-refresh-hero__media {
        min-height: 360px;
    }

    .home-refresh-hero__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .home-refresh-hero {
        padding-top: 72px;
        padding-bottom: 20px;
    }

    .home-refresh-hero__copy h1 {
        font-size: clamp(1.7rem, 10vw, 2.8rem);
    }

    .home-refresh-card-grid,
    .home-refresh-service-grid,
    .home-refresh-reference-grid,
    .home-refresh-hero__meta {
        grid-template-columns: 1fr;
    }

    .home-refresh-spotlight {
        padding: 12px;
        border-radius: 20px;
    }

    .home-refresh-spotlight__copy h2 {
        font-size: clamp(1.35rem, 7vw, 2rem);
    }

    .home-refresh-spotlight__metrics {
        grid-template-columns: 1fr;
    }

    .home-refresh-spotlight__media {
        border-radius: 16px;
    }

    .home-refresh-spotlight__media img {
        min-height: 240px;
    }

    .home-refresh-spotlight__actions {
        flex-direction: column;
    }

    .home-refresh-spotlight__actions .button {
        width: 100%;
    }

    .home-refresh-hero__media {
        min-height: 280px;
        border-radius: 20px;
    }

    .home-refresh-hero__floating {
        position: static;
        max-width: none;
        margin: 12px;
    }

    .home-refresh-hero__meta-item,
    .home-refresh-card,
    .home-refresh-service-card,
    .home-refresh-process__intro,
    .home-refresh-timeline li {
        padding: 32px 12px 12px;
        border-radius: 16px;
    }

    .home-refresh-heading h2,
    .home-refresh-process__intro h2 {
        font-size: clamp(1.35rem, 7vw, 2rem);
    }

    .home-refresh-timeline li {
        min-height: auto;
        padding-left: 66px;
    }

    .home-refresh-process__signals span {
        width: 100%;
        justify-content: center;
    }

    .home-refresh-timeline {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-refresh-card,
    .home-refresh-service-card,
    .home-refresh-reference-card,
    .home-refresh-timeline li,
    .home-refresh-reference-card__media img,
    .home-refresh-spotlight__media img {
        transition: none;
    }
}

.route-home .section-cta {
    padding-top: 6px;
    padding-bottom: 48px;
}

.route-home .cta-block {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: none;
}

.route-home .cta-block__copy h2 {
    color: var(--text);
}

.route-home .cta-block__copy p {
    color: var(--text-soft);
}

.route-home .cta-block .button-ghost {
    color: var(--text);
    background: transparent;
    border-color: var(--border);
}

.route-home .site-footer {
    margin-top: 12px;
}

/* â”€â”€ ADMIN â”€â”€ */
.admin-body {
    background: var(--bg);
}

.admin-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    width: min(calc(100% - 32px), 1280px);
    margin: 0 auto;
    padding: 20px 0;
}

.admin-login-shell {
    grid-template-columns: minmax(0, 440px);
    min-height: 100vh;
    place-content: center;
}

.admin-card,
.admin-section,
.admin-table-wrap {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    box-shadow: var(--shadow);
    padding: 18px;
}

.admin-sidebar {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-raised);
    color: var(--text);
    box-shadow: var(--shadow);
}

.admin-sidebar nav {
    display: grid;
    gap: 6px;
    margin-top: 14px;
}

.admin-sidebar nav a {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.86rem;
}

.admin-sidebar nav a.is-active {
    color: #fff;
    background: var(--accent);
}

.admin-content {
    display: grid;
    gap: 14px;
}

.admin-topbar--between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-topbar p {
    color: var(--text-soft);
}

.card-grid {
    display: grid;
    gap: 14px;
}

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

.card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.admin-card h1,
.admin-topbar h1 {
    margin: 6px 0 8px;
}

.admin-card .lead {
    color: var(--text-soft);
    margin-bottom: 14px;
}

.form-card {
    display: grid;
    gap: 12px;
}

.form-card.compact {
    max-width: 100%;
}

.form-card label {
    display: grid;
    gap: 4px;
}

.form-card label span {
    color: var(--text);
    font-weight: 700;
    font-size: 0.86rem;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    padding: 10px 12px;
    color: var(--text);
    font-size: 0.88rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-raised);
}

.card-kicker {
    margin: 0 0 8px;
    color: var(--text-dim);
    font: 600 0.72rem/1.3 "IBM Plex Mono", monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card h2 {
    margin: 0;
}

.admin-form-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-settings-stack {
    display: grid;
    gap: 14px;
}

.admin-repeater {
    display: grid;
    gap: 10px;
}

.admin-repeater__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-repeater__list {
    display: grid;
    gap: 10px;
}

.admin-repeater__row {
    display: grid;
    gap: 10px;
    align-items: end;
}

.admin-repeater__row--single {
    grid-template-columns: minmax(0, 1fr) auto;
}

.admin-repeater__row--pair {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}

.admin-repeater__row--textarea-pair {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr) auto;
}

.field--full {
    grid-column: 1 / -1;
}

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

.admin-actions form {
    margin: 0;
}

.admin-actions--form {
    grid-column: 1 / -1;
    justify-content: flex-end;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.admin-detail-grid > div {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.admin-detail-grid strong {
    color: var(--text);
    font-size: 0.82rem;
}

.admin-detail-grid span {
    color: var(--text-soft);
    font-size: 0.84rem;
    line-height: 1.7;
}

.admin-detail-grid__full {
    grid-column: 1 / -1;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 10px 8px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
    font-size: 0.86rem;
}

.admin-table th {
    color: var(--text-dim);
    font-size: 0.82rem;
}

.hide-mobile {
    display: inline-flex;
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1180px) {

    .hero-landing__grid,
    .page-hero__grid,
    .project-spotlight,
    .feature-article,
    .article-hero,
    .form-layout,
    .atelier-grid,
    .about-detail-grid,
    .section-intro,
    .group-shell,
    .footer-grid,
    .admin-shell,
    .home-cinema__intro-grid,
    .home-cinema__grid,
    .manifesto-layout,
    .delivery-shell,
    .footer-callout,
    .home-section-head {
        grid-template-columns: 1fr;
    }

    .hero-band,
    .hero-band--compact,
    .atelier-method-grid,
    .capability-grid,
    .capability-grid--compact,
    .project-grid,
    .reference-atlas,
    .panel-grid--three,
    .two-column,
    .process-grid,
    .process-grid--compact,
    .group-grid,
    .form-grid,
    .group-ribbon,
    .delivery-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .capability-wall,
    .reference-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .capability-wall__card,
    .capability-wall__card--1,
    .capability-wall__card--2,
    .capability-wall__card--3,
    .capability-wall__card--4,
    .capability-wall__card--5,
    .capability-wall__card--6,
    .reference-gallery__item,
    .reference-gallery__item--1,
    .reference-gallery__item--2,
    .reference-gallery__item--3,
    .reference-gallery__item--4,
    .reference-gallery__quote {
        grid-column: span 1;
    }

    .card-grid-2,
    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-topbar--between {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-repeater__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-repeater__row--single,
    .admin-repeater__row--pair,
    .admin-repeater__row--textarea-pair {
        grid-template-columns: 1fr;
    }

    .admin-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {

    .utility-rail,
    .desktop-nav,
    .hide-mobile {
        display: none;
    }

    .menu-toggle,
    .mobile-panel {
        display: none !important;
    }

    .header-bar {
        grid-template-columns: auto 1fr auto;
        justify-content: space-between;
        min-height: 64px;
        gap: 12px;
    }

    .brand {
        gap: 0;
    }

    .brand__text {
        display: none;
    }

    .brand__mark {
        width: 72px;
        height: 38px;
        padding: 6px 8px;
    }

    .mobile-header-clock {
        display: grid;
        justify-items: center;
        gap: 0;
        min-width: 0;
        color: var(--text-soft);
        text-align: center;
    }

    .mobile-header-clock span {
        font-size: 0.66rem;
        line-height: 1.1;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .mobile-header-clock strong {
        color: var(--text);
        font: 700 0.86rem/1.1 "IBM Plex Mono", monospace;
    }

    .header-actions__cta {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.82rem;
    }

    .site-shell {
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .mobile-bottom-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 29;
        display: block;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--border);
        background: rgba(10, 14, 23, 0.96);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .site-body.is-scroll-down .mobile-bottom-nav {
        transform: translateY(calc(100% + env(safe-area-inset-bottom) + 12px));
        opacity: 0;
        pointer-events: none;
    }

    .site-body.is-scroll-up .mobile-bottom-nav {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-bottom-nav__inner {
        width: min(calc(100% - 8px), var(--container));
        margin: 0 auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .mobile-bottom-nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        padding: 0 8px;
        border: 1px solid var(--border);
        border-radius: 14px;
        color: var(--text-soft);
        background: rgba(255, 255, 255, 0.02);
        font-size: 0.78rem;
        font-weight: 600;
        text-align: center;
    }

    .mobile-bottom-nav a.is-active {
        color: var(--text);
        border-color: var(--border-accent);
        background: rgba(157, 24, 24, 0.14);
    }

    .floating-whatsapp {
        right: 12px;
        bottom: calc(96px + env(safe-area-inset-bottom));
        transition: bottom 220ms ease, transform 220ms ease;
    }

    .site-body.is-scroll-down .floating-whatsapp {
        bottom: 14px;
    }

    .site-body.is-scroll-up .floating-whatsapp {
        bottom: calc(96px + env(safe-area-inset-bottom));
    }

    .breadcrumbs ol {
        width: 100%;
        border-radius: 16px;
    }

    .home-cinema__track {
        padding-top: 72px;
    }

    .page-hero-visual {
        min-height: 280px;
    }

    .map-frame {
        min-height: 420px;
    }

    .home-cinema__intro {
        padding: 4px 0 14px;
    }

    .home-cinema__intro-copy h1 {
        max-width: none;
    }

    .home-cinema__story {
        gap: 10px;
        padding: 10px 0 0;
    }

    .cinema-step {
        opacity: 1;
        transform: none;
    }

    .cinema-stage {
        position: relative;
        top: 0;
    }

    .cinema-stage__window {
        min-height: clamp(260px, 50vw, 380px);
        transform: none;
    }

    .cinema-stage__caption {
        padding-left: 0;
    }
}

@media (max-width: 720px) {

    .container,
    .narrow {
        width: min(calc(100% - 20px), var(--container));
    }

    .brand__mark {
        width: 64px;
        height: 34px;
        border-radius: 8px;
    }

    .header-actions__cta {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.8rem;
    }

    .mobile-header-clock span {
        font-size: 0.62rem;
    }

    .mobile-header-clock strong {
        font-size: 0.8rem;
    }

    .mobile-bottom-nav {
        padding-right: 8px;
        padding-left: 8px;
    }

    .mobile-bottom-nav__inner {
        gap: 6px;
    }

    .mobile-bottom-nav a {
        min-height: 38px;
        padding: 0 6px;
        font-size: 0.74rem;
        border-radius: 12px;
    }

    .hero-copy h1,
    .page-hero__copy h1,
    .project-spotlight__copy h2,
    .feature-article__copy h2,
    .article-hero__copy h1,
    .cta-block__copy h2,
    .footer-callout__copy h2,
    .center-card h1,
    .section-intro h2 {
        font-size: clamp(1.3rem, 7vw, 2.2rem);
    }

    .hero-briefs,
    .hero-band,
    .hero-band--compact,
    .atelier-method-grid,
    .capability-grid,
    .capability-grid--compact,
    .project-grid,
    .reference-atlas,
    .panel-grid--three,
    .two-column,
    .process-grid,
    .process-grid--compact,
    .group-grid,
    .form-grid,
    .group-ribbon,
    .delivery-strip {
        grid-template-columns: 1fr;
    }

    .capability-wall,
    .reference-gallery {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .cta-block__actions,
    .footer-callout__actions,
    .hero-actions--center,
    .reference-card__actions {
        flex-direction: column;
    }

    .hero-actions .button,
    .cta-block__actions .button,
    .footer-callout__actions .button,
    .hero-actions--center .button,
    .mobile-panel__actions .button,
    .stepper-actions .button {
        width: 100%;
    }

    .scene-card--hero {
        min-height: 240px;
    }

    .scene-card--mast,
    .scene-card--project {
        min-height: 200px;
    }

    .home-cinema__track {
        padding-top: 64px;
    }

    .home-cinema__intro-meta {
        grid-template-columns: 1fr;
    }

    .cinema-step,
    .manifesto-card,
    .group-ribbon__card,
    .capability-wall__card,
    .reference-gallery__quote,
    .delivery-step {
        padding: 32px 12px 12px;
        border-radius: 14px;
    }

    .cinema-step h1,
    .cinema-step h2,
    .home-cinema__intro-copy h1,
    .home-section-head h2,
    .delivery-shell__intro h2 {
        font-size: clamp(1.3rem, 7vw, 2rem);
    }

    .cinema-stage__window {
        min-height: 220px;
        border-radius: 16px;
    }

    .cinema-chapter__glass {
        max-width: 80%;
        left: 10px;
        bottom: 10px;
        padding: 8px 10px;
        border-radius: 10px;
    }

    .cinema-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .cinema-metrics__item {
        padding: 6px 8px;
    }

    .cinema-stage__frames {
        display: none;
    }

    .footer-callout {
        transform: translateY(-20px);
        padding: 16px;
        border-radius: 16px;
    }

    .cta-block {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .page-hero-visual {
        min-height: 220px;
        border-radius: 18px;
    }

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

    .map-frame {
        min-height: 280px;
    }

    .about-summary-grid,
    .about-detail-grid {
        grid-template-columns: 1fr;
    }

    .about-summary-card,
    .about-detail-card {
        padding: 32px 12px 12px;
        border-radius: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 28px 0;
    }

    .home-manifesto,
    .home-capabilities,
    .home-references,
    .home-delivery {
        padding-top: 24px;
        padding-bottom: 24px;
    }

}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}
