:root,
:root[data-theme="dark"] {
    --bg: oklch(0.16 0.01 60);
    --bg-deep: oklch(0.12 0.008 60);
    --bg-card: oklch(0.2 0.012 58);
    --ink: oklch(0.95 0.01 85);
    --ink-2: oklch(0.84 0.012 80);
    --ink-mute: oklch(0.68 0.01 75);
    --line: oklch(0.34 0.01 65);
    --line-soft: oklch(0.28 0.01 62);
    --accent: oklch(0.72 0.12 60);
    --display: "Archivo", "Geist", "Helvetica Neue", sans-serif;
    --sans: "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    --mono: "Geist Mono", ui-monospace, monospace;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

:root[data-theme="light"] {
    --bg: oklch(0.945 0.012 80);
    --bg-deep: oklch(0.91 0.014 75);
    --bg-card: oklch(0.97 0.008 85);
    --ink: oklch(0.18 0.012 60);
    --ink-2: oklch(0.32 0.012 60);
    --ink-mute: oklch(0.55 0.010 65);
    --line: oklch(0.82 0.012 70);
    --line-soft: oklch(0.88 0.010 75);
    --accent: oklch(0.58 0.13 40);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
html { background: var(--bg); color-scheme: dark; }
:root[data-theme="light"] { color-scheme: light; }
body { line-height: 1.5; overflow-x: hidden; transition: background 320ms var(--ease), color 320ms var(--ease); }
body.is-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
body.is-transitioning { overflow: hidden; }

.shell { width: min(100%, 100% - 40px); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.it { color: var(--accent); }

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background 420ms var(--ease), padding 420ms var(--ease), border-color 420ms var(--ease);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    padding: 12px 0;
    background: color-mix(in oklab, var(--bg) 82%, transparent);
    backdrop-filter: blur(14px) saturate(1.2);
    border-bottom-color: var(--line-soft);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.site-header__left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.site-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-width: 0;
}

.site-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    justify-self: center;
}

.site-brand__mark {
    width: 22px;
    height: 22px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-family: var(--display);
    font-size: 13px;
    transform: translateY(2px);
}

.site-brand img {
    max-height: 88px;
    width: auto;
}

.site-brand__logo {
    display: none;
}

:root[data-theme="light"] .site-brand__logo--light {
    display: block;
}

:root[data-theme="dark"] .site-brand__logo--dark,
:root:not([data-theme]) .site-brand__logo--dark {
    display: block;
}

.site-header__nav-wrap {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-header__mobile-actions {
    display: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    position: relative;
    font-size: 14px;
    padding: 8px 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 380ms var(--ease);
}

.site-nav__item:hover > .site-nav__link::after,
.site-nav__item.is-open > .site-nav__link::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav__chevron {
    width: 8px;
    height: 8px;
    border-right: 1.2px solid currentColor;
    border-bottom: 1.2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 280ms var(--ease);
}

.site-nav__item.is-open .site-nav__chevron {
    transform: rotate(-135deg) translateY(0);
}

.site-nav__panel {
    position: absolute;
    left: 0;
    top: calc(100% + 16px);
    min-width: 280px;
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--line-soft);
    box-shadow: 0 20px 50px oklch(0.18 0.012 60 / 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 320ms var(--ease), transform 320ms var(--ease), visibility 320ms;
}

.site-nav__item.is-open > .site-nav__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-nav__panel--mega {
    left: 50%;
    top: calc(100% + 22px);
    transform: translate(-50%, 16px);
    width: min(calc(100vw - 64px), 1940px);
    min-width: 1180px;
    padding: 34px 34px 42px;
}

.site-nav__item.is-open > .site-nav__panel--mega {
    transform: translate(-50%, 0);
}

.site-nav__mega-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.7fr 1.15fr;
    gap: 34px;
    align-items: start;
}

.site-nav__mega-eyebrow {
    margin-bottom: 24px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.site-nav__mega-list {
    min-width: 0;
}

.site-nav__mega-row {
    display: grid;
    grid-template-columns: 40px 1fr 170px;
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
    transition: padding-left 320ms var(--ease), color 320ms var(--ease);
}

.site-nav__mega-row:hover {
    padding-left: 10px;
}

.site-nav__mega-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--ink-mute);
}

.site-nav__mega-name {
    font-family: var(--display);
    font-size: clamp(28px, 2vw, 34px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--ink);
}

.site-nav__mega-meta {
    color: var(--ink-mute);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-transform: none;
}

.site-nav__mega-preview {
    min-width: 0;
}

.site-nav__mega-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.site-nav__mega-card,
.site-nav__mega-promo-card {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    padding: 20px;
    color: oklch(0.98 0.01 80 / 0.88);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
}

.site-nav__mega-card::before,
.site-nav__mega-promo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, transparent 0, transparent 48%, oklch(1 0 0 / 0.22) 49%, transparent 50%, transparent 100%);
    background-size: 20px 20px;
    opacity: 0.85;
    pointer-events: none;
}

.site-nav__mega-card:hover {
    transform: translateY(-4px);
}

.site-nav__mega-card-top,
.site-nav__mega-promo-card span {
    position: relative;
    z-index: 1;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav__mega-card-bottom,
.site-nav__mega-promo-card strong {
    position: relative;
    z-index: 1;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-nav__mega-promo {
    min-width: 0;
}

.site-nav__mega-promo-copy {
    margin-top: 18px;
}

.site-nav__mega-promo-copy p {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.site-nav__mega-promo-copy p::first-line {
    color: var(--accent);
}

.site-nav__mega-promo-copy a {
    display: inline-block;
    margin-top: 22px;
    font-family: var(--display);
    font-size: clamp(28px, 2vw, 36px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.tone-3 {
    background: linear-gradient(180deg, oklch(0.28 0.02 40), oklch(0.22 0.015 40));
}

.tone-4 {
    background: linear-gradient(180deg, oklch(0.38 0.03 28), oklch(0.31 0.025 26));
}

.tone-6 {
    background: linear-gradient(180deg, oklch(0.56 0.11 38), oklch(0.48 0.09 34));
}

.site-nav__children {
    display: grid;
    gap: 10px;
}

.site-nav__child {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
}

.site-nav__child span {
    display: block;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.site-nav__child small {
    display: block;
    margin-top: 6px;
    color: var(--ink-mute);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-header__cta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 11px 18px;
    border: 1px solid currentColor;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 280ms var(--ease), color 280ms var(--ease);
}

.site-header__cta:hover {
    background: var(--ink);
    color: var(--bg);
}

.site-header__cta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.site-header__toggle {
    display: none;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: transparent;
}

.site-header__toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: background 280ms var(--ease), border-color 280ms var(--ease), color 280ms var(--ease);
}

.theme-toggle:hover {
    background: var(--bg-card);
    border-color: var(--ink-mute);
}

.theme-toggle__track {
    position: relative;
    width: 42px;
    height: 24px;
    border-radius: 999px;
    background: var(--line);
    transition: background 280ms var(--ease);
}

.theme-toggle__thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--ink);
    transition: transform 280ms var(--ease), background 280ms var(--ease);
}

:root[data-theme="light"] .theme-toggle__thumb {
    transform: translateX(18px);
}

.theme-toggle__label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.floating-contact-actions {
    position: fixed;
    right: clamp(0.9rem, 2vw, 1.6rem);
    bottom: clamp(0.9rem, 2vw, 1.6rem);
    z-index: 70;
    display: flex;
    flex-direction: column;
}

.floating-contact-actions__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 50%;
    color: #f7f3ec;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(16px);
    animation: floatingPhonePulse 2.8s var(--ease) infinite;
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), opacity 180ms var(--ease);
}

.floating-contact-actions__item:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
    animation-play-state: paused;
}

.floating-contact-actions__item--phone {
    background: linear-gradient(135deg, rgba(168, 107, 53, 0.96), rgba(104, 65, 26, 0.96));
}

.floating-contact-actions__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    flex: 0 0 1.35rem;
    overflow: hidden;
}

.floating-contact-actions__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@media (max-width: 640px) {
    .floating-contact-actions {
        right: 0.8rem;
        bottom: 0.8rem;
    }

    .floating-contact-actions__item {
        width: 3rem;
        height: 3rem;
    }
}

@keyframes floatingPhonePulse {
    0%, 100% {
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26), 0 0 0 0 rgba(168, 107, 53, 0.34);
    }
    50% {
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3), 0 0 0 12px rgba(168, 107, 53, 0);
    }
}

.hero {
    padding: 120px clamp(20px, 4vw, 56px) 42px;
    border-bottom: 1px solid var(--line-soft);
}

.hero-statement {
    padding: 52px 0 28px;
    min-height: min(100vh, 1100px);
}

.hero-statement__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.hero-statement__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: oklch(0.65 0.18 145);
}

.hero-statement__meta {
    margin-top: 34px;
    max-width: 660px;
}

.hero-statement__code {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-statement__section {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    align-items: baseline;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.hero-statement__section strong {
    color: var(--ink);
    font-weight: 500;
}

.hero-statement__headline {
    margin-top: clamp(48px, 8vw, 88px);
    max-width: 1660px;
    font-family: var(--display);
    font-size: clamp(72px, 11vw, 188px);
    line-height: 0.9;
    letter-spacing: -0.06em;
    font-weight: 400;
}

.hero-statement__headline .accent,
.hero-statement__headline .it {
    color: var(--accent);
}

.hero-statement__tags {
    margin-top: clamp(44px, 8vw, 120px);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-statement__tag {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
}

.hero h1 {
    margin: 0 0 14px;
    font-family: var(--display);
    font-size: clamp(56px, 10vw, 120px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-weight: 400;
}

.hero p {
    max-width: 760px;
    margin: 0;
    color: var(--ink-2);
    font-size: 18px;
}

.content {
    padding: 46px 0 96px;
}

.content--after-widget {
    padding-top: 12px;
}

.service-marquee {
    padding: 56px 0 0;
}

.service-marquee__top {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 36px;
    align-items: end;
}

.service-marquee__lede {
    max-width: 880px;
    font-family: var(--display);
    font-size: clamp(28px, 2.55vw, 48px);
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--ink-2);
}

.service-marquee__lede strong,
.service-marquee__lede em {
    color: var(--ink);
    font-style: normal;
    font-weight: 600;
}

.service-marquee__actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.service-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 26px;
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 420ms var(--ease), background 420ms var(--ease), color 420ms var(--ease), border-color 420ms var(--ease);
    overflow: hidden;
}

.service-cta--primary {
    background: var(--ink);
    color: var(--bg);
    padding-right: 8px;
}

.service-cta--primary:hover {
    background: oklch(0.24 0.02 35);
    transform: translateY(-2px);
}

.service-cta__label {
    position: relative;
    display: inline-block;
    height: 14px;
    overflow: hidden;
}

.service-cta__line {
    display: block;
    transition: transform 420ms var(--ease);
}

.service-cta__line--shadow {
    position: absolute;
    top: 100%;
    left: 0;
}

.service-cta--primary:hover .service-cta__line {
    transform: translateY(-100%);
}

.service-cta__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: 22px;
    line-height: 1;
    transition: transform 420ms var(--ease);
}

.service-cta--primary:hover .service-cta__arrow {
    transform: rotate(-45deg);
}

.service-cta--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.service-cta--ghost:hover {
    border-color: var(--ink);
    background: var(--bg-card);
}

.service-cta__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    transition: transform 420ms var(--ease);
}

.service-cta--ghost:hover .service-cta__dot {
    transform: scale(1.6);
}

.service-marquee__scroll {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-marquee__scroll-label {
    color: var(--ink-mute);
}

.service-marquee__scroll-line {
    position: relative;
    width: 56px;
    height: 1px;
    background: var(--line);
    overflow: hidden;
}

.service-marquee__scroll-line span {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: var(--ink);
    animation: scrollSweep 2.4s var(--ease) infinite;
}

.service-marquee__band {
    margin-top: 24px;
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-marquee__motion {
    display: flex;
    align-items: center;
    animation: serviceMarqueeScroll var(--marquee-duration, 38s) linear infinite;
    width: max-content;
    will-change: transform;
}

.service-marquee__track {
    display: flex;
    align-items: center;
    gap: 56px;
    white-space: nowrap;
    flex: 0 0 auto;
    padding-right: 56px;
}

.service-marquee__band:hover .service-marquee__motion {
    animation-play-state: paused;
}

@keyframes serviceMarqueeScroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-1 * var(--marquee-distance, 0px)), 0, 0);
    }
}

.service-marquee__item,
.service-marquee__separator {
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 56px);
    color: var(--ink-2);
    transition: color 240ms var(--ease), transform 240ms var(--ease);
}

.service-marquee__separator {
    color: var(--accent);
}

.service-marquee__item.is-highlight {
    color: var(--ink);
}

.service-marquee__item:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.breadcrumb-hero {
    padding: 84px 0 54px;
}

.breadcrumb-hero__code {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
}

.breadcrumb-hero__headline {
    margin-top: 30px;
    max-width: 1380px;
    font-family: var(--display);
    font-size: clamp(64px, 11vw, 190px);
    line-height: 0.88;
    letter-spacing: -0.055em;
    font-weight: 400;
}

.breadcrumb-hero__headline .it,
.breadcrumb-hero__headline .accent {
    color: var(--accent);
}

.breadcrumb-hero__description {
    margin-top: 34px;
    max-width: 860px;
    font-family: var(--display);
    font-size: clamp(24px, 2.2vw, 40px);
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: var(--ink-2);
}

.projects-showcase {
    padding: clamp(72px, 10vw, 50px) 0;
}

.projects-showcase__head {
    display: grid;
    grid-template-columns: 0.8fr 1.25fr 0.8fr;
    gap: 40px;
    align-items: end;
}

.projects-showcase__code {
    font-family: var(--mono);
    font-size: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.projects-showcase__headline {
    font-family: var(--display);
    font-size: clamp(54px, 7vw, 122px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-weight: 400;
}

.projects-showcase__headline .it,
.projects-showcase__headline .accent {
    color: var(--accent);
}

.projects-showcase__desc {
    font-family: var(--display);
    font-size: clamp(20px, 1.75vw, 34px);
    line-height: 1.32;
    letter-spacing: -0.02em;
    color: var(--ink-2);
    max-width: 420px;
}

.projects-showcase__grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 24px;
}

.project-card {
    display: block;
    color: inherit;
    text-decoration: none;
    position: relative;
}

.project-card__collection {
    margin: 0 0 14px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.project-card__media {
    position: relative;
    overflow: hidden;
    background: oklch(0.9 0.015 80);
}

.project-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, transparent 0, transparent 48%, oklch(1 0 0 / 0.22) 49%, transparent 50%, transparent 100%);
    background-size: 18px 18px;
    opacity: 0;
    transition: opacity 360ms var(--ease);
    pointer-events: none;
}

.project-card:hover .project-card__media::after {
    opacity: 1;
}

.project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 680ms var(--ease), filter 360ms var(--ease);
}

.project-card:hover .project-card__media img {
    transform: scale(1.03);
    filter: contrast(1.02) saturate(1.02);
}

.project-card .project-card__media {
    aspect-ratio: 4 / 5.15;
}

.project-card__meta-top,
.project-card__meta-bottom {
    position: absolute;
    z-index: 2;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: oklch(0.98 0.01 80 / 0.82);
    text-shadow: 0 1px 2px oklch(0.18 0.012 60 / 0.3);
}

.project-card__meta-top {
    top: 18px;
    right: 18px;
}

.project-card__meta-bottom {
    left: 18px;
    bottom: 14px;
}

.project-card__detail-hover {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 320ms var(--ease), transform 420ms var(--ease), visibility 320ms;
    z-index: 3;
    pointer-events: none;
}

.project-card:hover .project-card__detail-hover {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.project-card__detail-hover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, oklch(0.18 0.012 60 / 0.38), transparent 40%);
}

.project-card__detail-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card__detail-hover span {
    position: absolute;
    left: 22px;
    bottom: 18px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: oklch(0.98 0.01 80 / 0.86);
    z-index: 2;
}

.project-card__footer {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
}

.project-card__footer h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(30px, 2.4vw, 50px);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 400;
}

.project-card__footer span {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    white-space: nowrap;
}

.project-detail {
    padding: clamp(64px, 8vw, 112px) 0 clamp(88px, 10vw, 144px);
}

.project-detail__head {
    display: grid;
    gap: 24px;
    padding-bottom: 32px;
}

.project-detail__eyebrow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.project-detail__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
    gap: 28px;
    align-items: end;
}

.project-detail__intro h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(54px, 8vw, 118px);
    line-height: 0.92;
    letter-spacing: -0.05em;
    font-weight: 400;
}

.project-detail__summary {
    margin: 22px 0 0;
    max-width: 44rem;
    font-size: 24px;
    line-height: 1.42;
    color: var(--ink-soft);
}

.project-detail__meta {
    display: grid;
    gap: 14px;
}

.project-detail__meta span {
    display: block;
    margin-bottom: 5px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.project-detail__meta strong {
    font-size: 18px;
    font-weight: 500;
}

.project-detail__hero {
    margin-top: 28px;
    overflow: hidden;
    background: oklch(0.9 0.015 80);
}

.project-detail__hero img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.project-detail__gallery-trigger--hero {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.project-detail__body {
    max-width: 58rem;
    padding-top: 34px;
    font-size: 18px;
    line-height: 1.85;
    color: var(--ink-soft);
}

.project-detail__body > *:first-child {
    margin-top: 0;
}

.project-detail__gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    padding-top: 34px;
}

.project-detail__gallery-item {
    margin: 0;
    overflow: hidden;
    background: oklch(0.9 0.015 80);
}

.project-detail__gallery-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.project-detail__gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 320ms var(--ease), filter 320ms var(--ease);
}

.project-detail__gallery-trigger:hover img {
    transform: scale(1.03);
    filter: contrast(1.03);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms var(--ease), visibility 220ms;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: oklch(0.16 0.01 40 / 0.82);
}

.lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 1240px);
    margin: 4vh auto;
}

.lightbox__image {
    display: block;
    width: 100%;
    max-height: 92vh;
    object-fit: contain;
    background: oklch(0.12 0.01 40);
}

.lightbox__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgb(244 238 229 / 0.94);
    color: #171311;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgb(23 19 17 / 0.56);
    color: #f4eee5;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}

.lightbox__nav--prev {
    left: 16px;
}

.lightbox__nav--next {
    right: 16px;
}

.lightbox__counter {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 3;
    transform: translateX(-50%);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgb(23 19 17 / 0.62);
    color: #f4eee5;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
}

@media (max-width: 720px) {
    .lightbox__dialog {
        width: min(96vw, 1240px);
        margin: 8vh auto;
    }

    .lightbox__close {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .lightbox__nav {
        width: 44px;
        height: 44px;
        font-size: 30px;
    }

    .lightbox__nav--prev {
        left: 10px;
    }

    .lightbox__nav--next {
        right: 10px;
    }

    .lightbox__counter {
        bottom: 12px;
        font-size: 9px;
    }
}

.services-grid {
    padding: clamp(72px, 10vw, 90px) 0;
}

.services-grid__head {
    display: grid;
    grid-template-columns: 0.8fr 1.1fr 0.9fr;
    gap: 40px;
    align-items: end;
}

.services-grid__code {
    font-family: var(--mono);
    font-size: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.services-grid__headline {
    font-family: var(--display);
    font-size: clamp(54px, 7vw, 118px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-weight: 400;
}

.services-grid__headline .it,
.services-grid__headline .accent {
    color: var(--accent);
}

.services-grid__desc {
    font-family: var(--display);
    font-size: clamp(18px, 1.45vw, 28px);
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--ink-2);
}

.services-grid__cards {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-panel {
    display: flex;
    min-height: 100%;
    padding: 28px 24px 26px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top right, color-mix(in oklab, var(--accent) 10%, transparent) 0, transparent 42%),
        linear-gradient(180deg, color-mix(in oklab, var(--bg-card) 82%, transparent), color-mix(in oklab, var(--bg) 92%, transparent));
    transition: transform 320ms var(--ease), border-color 320ms var(--ease), background 320ms var(--ease);
}

.service-panel:hover {
    transform: translateY(-4px);
    border-color: color-mix(in oklab, var(--accent) 42%, var(--line));
}

.service-panel__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
}

.service-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
}

.service-panel__eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.service-panel__icon-wrap {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    margin: 0 0 24px;
    border: 1px solid var(--line-soft);
    background: color-mix(in oklab, var(--bg) 78%, transparent);
}

.service-panel__icon {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: color-mix(in oklab, var(--accent) 72%, var(--ink));
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-panel__number {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}

.service-panel__content h3 {
    margin: 0 0 12px;
    font-family: var(--display);
    font-size: clamp(30px, 2vw, 42px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.service-panel__content p {
    margin: 0;
    color: var(--ink-2);
    line-height: 1.55;
    font-size: 14px;
}

.contact-strip {
    padding: 34px 0 28px;
}

.contact-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px;
}

.contact-strip__item {
    padding: 42px 0 52px;
}

.contact-strip__code {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.contact-strip__item h3 {
    margin: 22px 0 16px;
    font-family: var(--display);
    font-size: clamp(34px, 2.6vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 500;
}

.contact-strip__item p {
    margin: 0;
    max-width: 420px;
    color: var(--ink-2);
    font-size: clamp(18px, 1.5vw, 28px);
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.widget-block--contact-area {
    padding-top: clamp(40px, 6vw, 84px);
}

.contact-area {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
}

.contact-area__left {
    min-width: 0;
    max-width: min(1200px, 100%);
}

.contact-area__headline {
    margin: 22px 0 24px;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(68px, 10vw, 150px);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.contact-area__headline .it,
.contact-area__row-title .it,
.contact-area__confirmation .it {
    color: var(--accent);
}

.contact-area__intro {
    margin: 0;
    max-width: 620px;
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.42;
    color: var(--ink-2);
}

.contact-area__list {
    margin-top: clamp(44px, 5vw, 72px);
    border-top: 1px solid var(--line);
}

.contact-area__row {
    display: grid;
    grid-template-columns: minmax(110px, 130px) minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    color: inherit;
    text-decoration: none;
    transition: padding-left 240ms var(--ease), color 240ms var(--ease);
}

.contact-area__row:hover {
    padding-left: 8px;
}

.contact-area__row-label {
    font-family: var(--mono);
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.contact-area__row-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(26px, 2.35vw, 42px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.contact-area__row-action {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--ink-soft);
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    padding: 32px;
}

.content-card .excerpt {
    margin-bottom: 24px;
    font-size: 20px;
    color: var(--ink-2);
}

.content-card .body {
    color: var(--ink);
    line-height: 1.8;
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 300;
    pointer-events: none;
    background: var(--ink);
    transform: translateY(100%);
}

.page-transition.in {
    animation: pageInOut 1100ms var(--ease) forwards;
}

@keyframes pageInOut {
    0% { transform: translateY(100%); }
    45% { transform: translateY(0); }
    55% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

.page-transition .label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(90vw, 880px);
    text-align: center;
    font-family: var(--display);
    font-size: clamp(42px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: var(--bg);
}

.logo-carousel-widget {
    padding: 44px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.logo-carousel-widget__head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: baseline;
    margin-bottom: 26px;
}

.logo-carousel-widget__code {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.logo-carousel-widget__head h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 500;
}

.logo-carousel-widget__viewport {
    overflow: hidden;
}

.logo-carousel-widget__motion {
    display: flex;
    align-items: center;
    width: max-content;
    animation: logoCarouselScroll var(--logo-carousel-duration, 34s) linear infinite;
    will-change: transform;
}

.logo-carousel-widget__viewport:hover .logo-carousel-widget__motion {
    animation-play-state: paused;
}

.logo-carousel-widget__track {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-right: 22px;
    flex: 0 0 auto;
}

.logo-carousel-widget__item {
    min-width: clamp(150px, 16vw, 220px);
    height: clamp(84px, 8vw, 110px);
    border: 1px solid var(--line);
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    color: var(--ink-mute);
    transition: border-color 280ms var(--ease), transform 280ms var(--ease), color 280ms var(--ease);
}

.logo-carousel-widget__item:hover {
    border-color: var(--ink);
    transform: translateY(-4px);
    color: var(--ink);
}

.logo-carousel-widget__item img {
    max-width: 132px;
    max-height: 34px;
    width: auto;
    height: auto;
    filter: grayscale(1) contrast(0.9);
    opacity: 0.72;
    transition: filter 280ms var(--ease), opacity 280ms var(--ease);
}

.logo-carousel-widget__item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.logo-carousel-widget__item span {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@keyframes logoCarouselScroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(-1 * var(--logo-carousel-distance, 0px)), 0, 0); }
}


.reference-logos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 18vw, 270px), 1fr));
    min-height: clamp(104px, 14vw, 170px);
}

.reference-logos__item {
    min-height: clamp(104px, 14vw, 170px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(22px, 4vw, 52px);
}

.reference-logos__item img {
    width: auto;
    max-width: min(72%, 210px);
    max-height: clamp(28px, 5vw, 62px);
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.28;
}

:root[data-theme="light"] .reference-logos__item img {
    filter: brightness(0);
    opacity: 0.36;
}

.rich-text-widget {
    padding: clamp(72px, 9vw, 120px) 0;
}

.rich-text-widget__inner {
    max-width: 860px;
}

.rich-text-widget__code {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.rich-text-widget__inner h2 {
    margin: 18px 0 20px;
    font-family: var(--display);
    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 400;
}

.rich-text-widget__body {
    color: var(--ink-2);
    font-size: clamp(20px, 1.8vw, 31px);
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.widget-block {
    padding: clamp(56px, 8vw, 104px) 0;
}

.widget-kicker {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

.widget-hero-title,
.widget-editorial__copy h2,
.widget-featured-posts h2,
.widget-quote blockquote {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

.widget-hero-title {
    font-size: clamp(48px, 8vw, 112px);
}

.widget-paragraph {
    margin-top: 18px;
    max-width: 46rem;
    font-size: 20px;
    line-height: 1.55;
    color: var(--ink-soft);
}

.widget-editorial,
.widget-contact-hero,
.widget-featured-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.widget-editorial__visuals,
.widget-showroom-grid,
.widget-post-grid,
.widget-about-strip,
.widget-process-grid,
.widget-appointment-grid {
    display: grid;
    gap: 20px;
}

.widget-editorial__visuals {
    grid-template-columns: 1fr 1fr;
}

.widget-editorial__visuals img,
.widget-featured-posts__image,
.widget-showroom-card__media img,
.widget-post-card img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.widget-editorial__visuals img {
    aspect-ratio: 4 / 5;
}

.widget-headline {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.widget-headline h2,
.widget-featured-posts h2,
.widget-post-card h3,
.widget-showroom-card__label strong {
    font-family: var(--display);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
}

.widget-process-grid,
.widget-about-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.widget-block--process {
    padding-top: clamp(48px, 7vw, 110px);
}

.widget-headline--process {
    grid-template-columns: minmax(120px, 180px) minmax(0, 1.25fr) minmax(280px, 0.9fr);
    gap: clamp(20px, 3vw, 44px);
    align-items: start;
    margin-bottom: clamp(40px, 6vw, 84px);
}

.widget-headline--process .widget-kicker {
    padding-top: 10px;
}

.widget-headline__main,
.widget-headline__aside {
    min-width: 0;
}

.widget-headline--process h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(48px, 7vw, 118px);
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.widget-headline--process h2 .it {
    color: var(--accent);
}

.widget-headline__aside p {
    margin: 0;
    max-width: 420px;
    font-size: clamp(16px, 1.55vw, 22px);
    line-height: 1.45;
    color: var(--ink-2);
}

.widget-process-grid {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.widget-process-card,
.widget-about-strip article,
.widget-post-card,
.widget-form-card {
    border: 1px solid var(--line);
    background: var(--bg-card);
    padding: 24px;
}

.widget-process-card {
    min-height: clamp(340px, 36vw, 570px);
    padding: clamp(28px, 3vw, 44px);
    border-top: 0;
    border-right: 0;
    border-left: 1px solid var(--line);
    border-bottom: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    transition:
        background-color 320ms var(--ease),
        color 320ms var(--ease),
        border-color 320ms var(--ease),
        transform 320ms var(--ease);
}

.widget-process-card:first-child {
    background: var(--ink);
    color: var(--bg);
    border-left-color: transparent;
}

.widget-process-card:first-child .widget-kicker,
.widget-process-card:first-child p {
    color: color-mix(in srgb, var(--bg) 74%, transparent);
}

.widget-process-grid:hover .widget-process-card:first-child {
    background: transparent;
    color: var(--ink);
    border-left-color: var(--line);
}

.widget-process-grid:hover .widget-process-card:first-child .widget-kicker,
.widget-process-grid:hover .widget-process-card:first-child p {
    color: var(--ink-soft);
}

.widget-process-card:hover {
    background: var(--ink);
    color: var(--bg);
    border-left-color: transparent;
    transform: translateY(-6px);
}

.widget-process-card:hover .widget-kicker,
.widget-process-card:hover p {
    color: color-mix(in srgb, var(--bg) 74%, transparent);
}

.widget-process-card:hover h3 .it {
    color: var(--accent-2);
}

.widget-process-card h3 {
    margin: auto 0 0;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(34px, 4vw, 62px);
    line-height: 0.96;
    letter-spacing: -0.05em;
    max-width: 4.6ch;
}

.widget-process-card h3 .it {
    color: var(--accent);
    transition: color 320ms var(--ease);
}

.widget-process-card p {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(14px, 1.15vw, 18px);
    line-height: 1.55;
    transition: color 320ms var(--ease);
}

.widget-meta-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.widget-meta-grid strong {
    display: block;
    margin-top: 8px;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
}

.widget-chip-bar {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.widget-chip-bar__inner {
    padding: 22px 0;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}

.widget-chip-bar__chips,
.widget-slot-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.widget-chip,
.widget-slot {
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.widget-chip.is-active,
.widget-slot.is-active {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.widget-showroom-grid,
.widget-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.widget-showroom-card,
.widget-contact-list__item {
    color: inherit;
    text-decoration: none;
}

.widget-showroom-card__media img,
.widget-post-card img {
    aspect-ratio: 4 / 5;
}

.widget-showroom-card__label,
.widget-contact-list,
.widget-featured-posts__side {
    display: grid;
    gap: 12px;
}

.widget-showroom-card__label span,
.widget-post-card p,
.widget-process-card p,
.widget-about-strip p {
    color: var(--ink-soft);
}

.widget-form-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.widget-form-field {
    display: grid;
    gap: 8px;
}

.widget-form-field input,
.widget-form-field textarea,
.widget-form-field select {
    width: 100%;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
}

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

.widget-featured-posts__image {
    margin-bottom: 18px;
    aspect-ratio: 16 / 10;
}

.widget-featured-posts__side {
    border-left: 1px solid var(--line);
    padding-left: 24px;
}

.widget-block--testimonial {
    padding: clamp(42px, 6vw, 72px) 0;
}

.testimonial-carousel {
    position: relative;
    background: #1c140f;
    color: #f3ede3;
    padding: clamp(32px, 4vw, 48px);
    min-height: min(78vh, 920px);
    display: grid;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-carousel__kicker {
    color: color-mix(in srgb, #f3ede3 72%, transparent);
}

.testimonial-carousel__viewport {
    position: relative;
    min-height: 100%;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 36px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(20px);
    transition:
        opacity 420ms var(--ease),
        transform 420ms var(--ease),
        visibility 420ms var(--ease);
}

.testimonial-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.testimonial-slide__quote {
    margin: 0;
    padding-top: clamp(8px, 1vw, 14px);
    font-family: var(--display);
    font-size: clamp(48px, 5.6vw, 112px);
    line-height: 0.94;
    letter-spacing: -0.055em;
    font-weight: 400;
}

.testimonial-slide__quote .it,
.testimonial-slide__quote mark {
    color: var(--accent-2);
    background: none;
}

.testimonial-slide__quote-mark {
    color: var(--accent-2);
}

.testimonial-slide__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-slide__author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-slide__avatar {
    --testimonial-avatar: #c86439;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--testimonial-avatar);
    flex: 0 0 auto;
}

.testimonial-slide__meta {
    display: grid;
    gap: 8px;
}

.testimonial-slide__meta strong {
    font-family: var(--display);
    font-size: clamp(26px, 2.4vw, 42px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
}

.testimonial-slide__meta span {
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: color-mix(in srgb, #f3ede3 58%, transparent);
}

.testimonial-carousel__controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-carousel__control {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #f3ede3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        border-color 240ms var(--ease),
        background-color 240ms var(--ease),
        color 240ms var(--ease),
        transform 240ms var(--ease);
}

.testimonial-carousel__control:hover {
    border-color: var(--accent-2);
    background: var(--accent-2);
    color: #1c140f;
    transform: translateY(-2px);
}

.testimonial-carousel__control span {
    font-size: 30px;
    line-height: 1;
}

.blog-index,
.blog-post-detail {
    padding: clamp(60px, 8vw, 110px) 0 clamp(90px, 10vw, 140px);
}

.blog-index__hero h1,
.blog-post-detail__head h1 {
    margin: 12px 0 0;
    font-family: var(--display);
    font-size: clamp(56px, 10vw, 140px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    font-weight: 400;
}

.blog-index__hero h1 .it {
    color: var(--accent);
}

.blog-index__hero p,
.blog-post-detail__excerpt {
    margin-top: 22px;
    max-width: 48rem;
    font-size: 22px;
    line-height: 1.55;
    color: var(--ink-soft);
}

.blog-index__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.blog-featured-card {
    margin-top: 42px;
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: 28px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 40px;
}

.blog-featured-card__media img,
.blog-post-card img,
.blog-post-detail__hero img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.blog-featured-card__media img {
    aspect-ratio: 16 / 10;
}

.blog-featured-card__copy h2 {
    margin: 14px 0 0;
    font-family: var(--display);
    font-size: clamp(34px, 4vw, 62px);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.blog-featured-card__copy p {
    margin-top: 18px;
    color: var(--ink-soft);
    line-height: 1.65;
}

.blog-post-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 22px;
}

.blog-post-card {
    color: inherit;
    text-decoration: none;
    display: grid;
    gap: 12px;
}

.blog-post-card img {
    aspect-ratio: 4 / 5;
}

.blog-post-card h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 30px;
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.blog-post-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.65;
}

.blog-pagination {
    margin-top: 40px;
}

.blog-post-detail__hero {
    margin-top: 34px;
}

.blog-post-detail__hero img {
    aspect-ratio: 16 / 9;
}

.blog-post-detail__body {
    max-width: 58rem;
    padding-top: 34px;
    font-size: 18px;
    line-height: 1.85;
    color: var(--ink-soft);
}

.blog-post-detail__body > *:first-child {
    margin-top: 0;
}

.blog-post-detail__related {
    margin-top: 60px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.team-catalog {
    padding: clamp(22px, 4vw, 48px) 0 clamp(72px, 9vw, 126px);
}

.team-catalog__tabs {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto clamp(34px, 5vw, 68px);
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
}

.team-catalog__tabs::-webkit-scrollbar {
    display: none;
}

.team-catalog__tab {
    position: relative;
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: var(--ink-2);
    padding: 0 0 18px;
    font-family: var(--display);
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 220ms var(--ease);
}

.team-catalog__tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 260ms var(--ease);
}

.team-catalog__tab:hover,
.team-catalog__tab.is-active {
    color: var(--ink);
}

.team-catalog__tab.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.team-catalog__panel[hidden] {
    display: none;
}

.team-catalog__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
}

.team-card {
    position: relative;
    border: 0;
    background: var(--bg-card);
    padding: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: zoom-in;
    color: var(--ink);
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 420ms var(--ease), filter 420ms var(--ease);
}

.team-card:hover img {
    transform: scale(1.055);
    filter: saturate(1.04) contrast(1.03);
}

.team-catalog__empty {
    margin: 0;
    color: var(--ink-mute);
}

.site-footer {
    background:
        linear-gradient(135deg, color-mix(in oklab, var(--bg-deep) 92%, black) 0%, var(--bg) 100%);
    color: var(--ink);
    border-top: 1px solid var(--line-soft);
}

.site-footer .shell {
    width: min(100%, 100% - 40px);
    padding: clamp(64px, 8vw, 118px) clamp(20px, 4vw, 56px);
    background-color: transparent;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(360px, 1.18fr) minmax(230px, 0.72fr) minmax(300px, 0.88fr);
    gap: clamp(36px, 5.8vw, 92px);
    align-items: stretch;
    min-height: clamp(330px, 34vw, 460px);
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(30px, 3.8vw, 58px);
    padding: 0;
    border: 0;
}

.site-footer__contact-row {
    display: grid;
    gap: 10px;
}

.site-footer__contact-row span {
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.2;
    color: color-mix(in oklab, var(--accent) 64%, var(--ink-mute));
}

.site-footer__contact-row a,
.site-footer__contact-row p {
    margin: 0;
    max-width: 54rem;
    font-size: clamp(19px, 1.45vw, 26px);
    line-height: 1.5;
    color: var(--ink-2);
    transition: color 240ms var(--ease);
}

.site-footer__contact-row a:hover {
    color: var(--ink);
}

.site-footer__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(22px, 2.8vw, 38px);
}

.site-footer__menu-row {
    display: grid;
    gap: 8px;
}

.site-footer__menu-row span {
    font-size: 16px;
    line-height: 1.2;
    color: color-mix(in oklab, var(--accent) 64%, var(--ink-mute));
}

.site-footer__brand-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding: clamp(28px, 4vw, 54px);
}

.site-footer__brand {
    display: inline-flex;
}

.site-footer__brand img {
    display: block;
    max-width: min(260px, 54vw);
    max-height: 84px;
    object-fit: contain;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer__social a {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line-soft);
    background: color-mix(in oklab, var(--bg) 72%, transparent);
    color: var(--ink-mute);
    transition: color 240ms var(--ease), border-color 240ms var(--ease), transform 240ms var(--ease), background 240ms var(--ease);
}

.site-footer__social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.site-footer__menu-row a {
    font-size: clamp(16px, 1.1vw, 20px);
    line-height: 1.35;
    color: var(--ink-2);
    transition: color 240ms var(--ease);
}

.site-footer__menu-row a:hover,
.site-footer__social a:hover {
    color: var(--ink);
}

.site-footer__social a:hover {
    border-color: color-mix(in oklab, var(--accent) 48%, var(--line));
    background: color-mix(in oklab, var(--bg-card) 92%, transparent);
    transform: translateY(-2px);
}

.site-footer__copyright {
    margin: 0;
    font-size: 13px;
    color: var(--ink-mute);
}

@media (max-width: 1180px) {
    .site-footer__grid {
        grid-template-columns: minmax(330px, 1.15fr) minmax(210px, 0.7fr) minmax(270px, 0.85fr);
        gap: clamp(30px, 4.5vw, 58px);
    }
}

@media (max-width: 980px) {
    .site-header__toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .site-header__inner {
        grid-template-columns: auto 1fr auto;
        gap: 14px;
        position: relative;
        min-height: 72px;
    }

    .site-header__left {
        position: static;
        min-width: auto;
        z-index: 2;
    }

    .site-header__right {
        gap: 8px;
        position: relative;
        z-index: 2;
    }

    .site-brand {
        min-width: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        pointer-events: auto;
    }

    .site-brand img {
        max-height: 56px;
        max-width: min(42vw, 210px) !important;
    }

    .site-header__nav-wrap {
        position: fixed;
        top: 88px;
        left: 16px;
        right: 16px;
        bottom: 16px;
        background: var(--bg);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 24px 18px 18px;
        gap: 20px;
        overflow-y: auto;
        border: 1px solid var(--line-soft);
        border-radius: 24px;
        box-shadow: 0 24px 50px color-mix(in oklab, var(--bg-deep) 84%, transparent);
        z-index: 140;
    }

    .site-header__mobile-actions {
        display: none;
    }

    .site-header.menu-open .site-header__nav-wrap {
        display: flex;
        height:100vh;
    }

    .site-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        width: 100%;
    }

    .site-nav__item {
        width: 100%;
        border-bottom: 1px solid var(--line-soft);
    }

    .site-nav__link {
        font-size: 22px;
        font-family: var(--display);
        width: 100%;
        justify-content: space-between;
        padding: 0 0 16px;
    }

    .site-nav__panel,
    .site-nav__panel--mega {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 0;
        padding: 0 0 14px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        left: auto;
        grid-template-columns: 1fr;
        border: 0;
        background: transparent;
    }

    .site-nav__item.is-open > .site-nav__panel {
        display: block;
    }

    .site-nav__item.is-open > .site-nav__panel--mega {
        display: grid;
    }

    .site-nav__mega-copy {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--line-soft);
        padding-bottom: 16px;
    }

    .site-nav__mega-layout,
    .site-nav__mega-cards {
        grid-template-columns: 1fr;
    }

    .site-nav__mega-row {
        grid-template-columns: 32px 1fr;
    }

    .site-nav__mega-meta {
        grid-column: 2;
    }

    .site-nav__mega-card,
    .site-nav__mega-promo-card {
        min-height: 240px;
    }

    .site-nav__child {
        padding: 12px 0;
    }

    .site-header__cta {
        padding: 9px 12px;
        font-size: 9px;
        letter-spacing: 0.11em;
        white-space: nowrap;
    }

    .theme-toggle {
        padding: 8px 9px;
    }

    .theme-toggle__label {
        display: none;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: 0;
    }

    .site-footer__contact {
        border: 0;
    }

    .hero-statement__headline {
        font-size: clamp(56px, 13vw, 124px);
    }

    .service-marquee__top {
        grid-template-columns: 1fr;
    }

    .service-marquee__actions {
        justify-content: flex-start;
    }

    .projects-showcase__head,
    .projects-showcase__grid,
    .services-grid__head,
    .services-grid__cards,
    .contact-strip__grid {
        grid-template-columns: 1fr;
    }

    .projects-showcase__desc {
        max-width: none;
    }

    .projects-showcase__grid {
        gap: 24px;
    }

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

    .project-detail__intro {
        grid-template-columns: 1fr;
    }

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

    .services-grid__cards {
        gap: 28px;
    }

    .contact-strip__grid {
        gap: 10px;
    }

    .logo-carousel-widget__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .widget-editorial,
    .widget-contact-hero,
    .widget-featured-posts,
    .widget-process-grid,
    .widget-about-strip,
    .widget-showroom-grid,
    .widget-post-grid,
    .widget-form-grid,
    .widget-appointment-grid,
    .widget-meta-grid {
        grid-template-columns: 1fr;
    }

    .widget-featured-posts__side {
        border-left: 0;
        padding-left: 0;
        border-top: 1px solid var(--line);
        padding-top: 18px;
    }

    .widget-headline--process {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 32px;
    }

    .widget-headline--process .widget-kicker {
        padding-top: 0;
    }

    .widget-headline--process h2 {
        font-size: clamp(42px, 10vw, 84px);
    }

    .widget-headline__aside p {
        max-width: 100%;
    }

    .widget-process-grid {
        border-top: 1px solid var(--line);
    }

    .widget-process-card {
        min-height: auto;
        border-left: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        transform: none;
    }

    .widget-process-card:first-child,
    .widget-process-grid:hover .widget-process-card:first-child,
    .widget-process-card:hover {
        border-left-color: transparent;
    }

    .widget-chip-bar__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .testimonial-carousel {
        min-height: auto;
        padding: 26px 20px;
    }

    .testimonial-slide {
        position: relative;
        inset: auto;
        display: none;
        gap: 28px;
    }

    .testimonial-slide.is-active {
        display: grid;
    }

    .testimonial-slide__quote {
        font-size: clamp(34px, 8vw, 58px);
    }

    .testimonial-slide__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-slide__author {
        align-items: flex-start;
    }

    .testimonial-slide__avatar {
        width: 58px;
        height: 58px;
    }

    .testimonial-carousel__controls {
        width: 100%;
        justify-content: flex-end;
    }

    .testimonial-carousel__control {
        width: 58px;
        height: 58px;
    }

    .contact-area {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-area__headline {
        font-size: clamp(54px, 15vw, 110px);
    }

    .contact-area__row {
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: start;
    }

}

@media (max-width: 820px) {
    .hero-statement {
        min-height: auto;
        padding-top: 28px;
    }

    .hero-statement__meta {
        margin-top: 24px;
    }

    .hero-statement__headline {
        margin-top: 36px;
        font-size: clamp(44px, 15vw, 88px);
    }

    .hero-statement__tags {
        gap: 10px;
        margin-top: 36px;
    }

    .service-marquee {
        padding-top: 34px;
    }

    .service-marquee__lede {
        font-size: 24px;
    }

    .service-marquee__actions {
        gap: 10px;
    }

    .service-cta {
        width: 100%;
        justify-content: center;
    }

    .service-marquee__track {
        gap: 30px;
    }

    .breadcrumb-hero {
        padding: 48px 0 34px;
    }

    .breadcrumb-hero__headline {
        margin-top: 20px;
        font-size: clamp(46px, 15vw, 92px);
    }

    .breadcrumb-hero__description {
        margin-top: 24px;
        font-size: 22px;
    }

    .projects-showcase__headline {
        font-size: clamp(42px, 14vw, 84px);
    }

    .project-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .project-card__footer h3 {
        font-size: 30px;
    }

    .project-detail__summary,
    .project-detail__body {
        font-size: 18px;
    }

    .project-detail__gallery {
        grid-template-columns: 1fr;
    }

    .team-catalog__tabs {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        justify-content: flex-start;
    }

    .team-catalog__grid {
        grid-template-columns: 1fr;
    }

    .services-grid__headline {
        font-size: clamp(42px, 14vw, 84px);
    }

.service-panel__content h3 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .shell.site-header__inner {
        width: min(100%, 100% - 24px);
        padding: 0 12px;
    }

    .site-header {
        padding: 12px 0;
    }

    .site-header.is-scrolled {
        padding: 10px 0;
    }

    .site-header__inner {
        min-height: 64px;
        grid-template-columns: 44px 1fr auto;
        gap: 8px;
    }

    .site-header__right {
        gap: 6px;
        padding-left: 10px;
    }

    .site-brand img {
        max-height: 48px;
        max-width: min(38vw, 170px) !important;
    }

    .site-header__toggle {
        width: 34px;
        height: 34px;
    }

    .site-header__toggle span {
        width: 18px;
    }

    .site-header__cta--desktop {
        display: none;
    }

    .site-header__mobile-actions {
        display: flex;
        width: 100%;
        padding-top: 6px;
        border-top: 1px solid var(--line-soft);
    }

    .site-header__cta,
    .site-header__cta--mobile {
        padding: 8px 10px;
        font-size: 8px;
        gap: 6px;
    }

    .site-header__cta--mobile {
        width: 100%;
        justify-content: center;
        min-height: 44px;
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .site-header__cta-dot {
        width: 5px;
        height: 5px;
    }

    .theme-toggle {
        padding: 6px 8px;
    }

    .theme-toggle__track {
        width: 38px;
        height: 22px;
    }

    .theme-toggle__thumb {
        width: 16px;
        height: 16px;
    }

    :root[data-theme="light"] .theme-toggle__thumb {
        transform: translateX(16px);
    }

    .site-header__nav-wrap {
        top: 76px;
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 20px 16px 16px;
        border-radius: 20px;
    }

    .site-footer__grid {
        gap: 28px;
    }

    .site-footer__contact,
    .site-footer__menu,
    .site-footer__brand-panel {
        padding: 34px 0;
    }

    .site-footer__brand-panel {
        padding: 28px;
    }

    .site-footer__contact-row a,
    .site-footer__contact-row p {
        font-size: 16px;
    }

    .site-footer__menu,
    .site-footer__social {
        gap: 12px 18px;
    }
}

.video-hero {
    padding: 0;
}

.video-hero__media-wrap {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    max-height: 70vh;
    background: #0b0b0b;
}

.video-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.video-hero__media::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none;
}

.video-hero__media::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

.video-hero__youtube-shell {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.video-hero__youtube-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100vw, 177.78svh);
    height: max(100svh, 56.25vw);
    border: 0;
    transform: translate(-50%, -50%) scale(1.24);
    pointer-events: none;
}

.video-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgb(9 10 12 / 0.16) 0%, rgb(9 10 12 / 0.38) 56%, rgb(9 10 12 / 0.74) 100%),
        linear-gradient(90deg, rgb(9 10 12 / 0.48) 0%, rgb(9 10 12 / 0.12) 42%, rgb(9 10 12 / 0.54) 100%);
    pointer-events: none;
}

.video-hero__overlay {
    position: relative;
    z-index: 1;
    min-height: 90vh;
    max-height: 90vh;
    display: flex;
    align-items: flex-end;
    padding-top: 128px;
    padding-bottom: clamp(36px, 6vw, 72px);
}

.video-hero__content {
    max-width: min(720px, 100%);
    color: white;
}

.video-hero__eyebrow {
    margin-bottom: 18px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.74);
}

.video-hero__content h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(42px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.video-hero__content p {
    max-width: 56ch;
    margin: 18px 0 0;
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.6;
    color: rgb(255 255 255 / 0.82);
}

@media (max-width: 720px) {
    .video-hero {
        padding-top: 0;
    }

    .video-hero__media-wrap,
    .video-hero__overlay {
        min-height: 68vh;
        max-height: 68vh;
    }

    .video-hero__overlay {
        align-items: flex-end;
        padding-top: 92px;
        padding-bottom: 28px;
    }

    .video-hero__media {
        object-position: center center;
    }

    .video-hero__content h2 {
        font-size: clamp(34px, 12vw, 58px);
    }

    .video-hero__content p {
        max-width: 28ch;
        font-size: 14px;
        line-height: 1.75;
    }

    .video-hero__youtube-frame {
        width: max(100vw, 170svh);
        height: max(68vh, 60vw);
        transform: translate(-50%, -50%) scale(1.48);
    }
}
