.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--color-white);
    background: var(--color-black);
    overflow: hidden;
}

.hero-slider .hero-track {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-slider);
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.hero-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    z-index: 6;
    pointer-events: none;
    background: transparent;
}

.hero-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(147, 76, 0, 0.15);
    transform: scaleX(0);
    transform-origin: 0 50%;
}

.hero-slider.is-timing .hero-progress-bar {
    animation: hero-progress-run var(--slider-interval) linear forwards;
}

@keyframes hero-progress-run {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.hero-media,
.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media-empty {
    background: #111;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0, rgba(0, 0, 0, 0.08) 28%, rgba(0, 0, 0, 0.12) 100%);
    z-index: 2;
}

.hero-caption {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 1.5rem) 1.5rem 4rem;
    pointer-events: none;
}

.hero-caption-box {
    pointer-events: none;
    box-sizing: border-box;
    width: min(650px, calc(100vw - 2rem));
    height: 500px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 0 2.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    opacity: 0;
}

.hero-slide.is-active .hero-caption-box {
    pointer-events: auto;
    animation: hero-box-in 1.5s ease 0.15s forwards;
}

.hero-caption-box.is-intro {
    width: min(700px, calc(100vw - 2rem));
}

.hero-kicker,
.hero-caption-title,
.hero-caption-lead,
.hero-caption-cta {
    opacity: 0;
}

.hero-slide.is-active .hero-kicker {
    animation: hero-text-in 1.5s ease 1.51s forwards;
}

.hero-slide.is-active .hero-caption-title {
    animation: hero-text-in 1.5s ease 1.81s forwards;
}

.hero-slide.is-active .hero-caption-lead {
    animation: hero-text-in 1.5s ease 1.81s forwards;
}

.hero-slide.is-active .hero-caption-cta {
    animation: hero-text-in 1.5s ease 2.41s forwards;
}

.hero-caption-inner::before,
.hero-caption-inner::after {
    opacity: 0;
}

.hero-slide.is-active .hero-caption-inner::before {
    animation: hero-line-in 1.5s ease 0.75s forwards;
}

.hero-slide.is-active .hero-caption-inner::after {
    animation: hero-line-in 1.5s ease 2.16s forwards;
}

@keyframes hero-box-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes hero-text-in {
    from {
        opacity: 0;
        filter: blur(14px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes hero-line-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-slider.is-static .hero-caption-box,
.hero-slider.is-static .hero-kicker,
.hero-slider.is-static .hero-caption-title,
.hero-slider.is-static .hero-caption-lead,
.hero-slider.is-static .hero-caption-cta,
.hero-slider.is-static .hero-caption-inner::before,
.hero-slider.is-static .hero-caption-inner::after {
    opacity: 1;
    filter: none;
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-progress-bar,
    .hero-caption-box,
    .hero-kicker,
    .hero-caption-title,
    .hero-caption-lead,
    .hero-caption-cta,
    .hero-caption-inner::before,
    .hero-caption-inner::after {
        animation: none !important;
        opacity: 1;
        filter: none;
        transform: none;
    }
}

.hero-caption-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
}

.hero-caption-inner::before,
.hero-caption-inner::after {
    content: "";
    display: block;
    width: 1px;
    height: 60px;
    background: var(--color-header-ghost);
    flex: 0 0 60px;
    opacity: 0;
}

.hero-caption-box::before,
.hero-caption-box::after {
    content: none;
}

.hero-kicker {
    margin: 1.15rem 0 0.35rem;
    color: var(--color-header-ghost);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-caption-title {
    margin: 0;
    color: var(--color-white);
    font-weight: var(--font-weight-light);
    font-size: clamp(2.1rem, 5vw, 64px);
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-caption-box.is-intro .hero-caption-title {
    font-size: clamp(1.6rem, 3.6vw, 45px);
    line-height: 1.15;
    letter-spacing: 0.08em;
}

.hero-caption-lead {
    margin: 1.5rem 0 0;
    max-width: 22rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-caption-cta {
    margin: 1.25rem 0 0;
}

.hero-caption-cta .btn {
    min-height: auto;
    padding: 12px 35px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-3xl);
}

.hero-copy > * {
    max-width: 44rem;
}

.hero-copy h1 {
    font-size: var(--text-hero);
    text-transform: uppercase;
    letter-spacing: var(--tracking-hero);
    color: var(--color-white);
}

.hero-copy p {
    font-weight: var(--font-weight-light);
    font-size: var(--text-lg);
    max-width: 36rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.hero-nav {
    display: none;
}

.hero-arrow {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    color: var(--color-white);
    transform: translateY(-50%);
}

.hero-arrow::before {
    content: "";
    display: block;
    width: 0.65rem;
    height: 0.65rem;
    margin: 0 auto;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.hero-arrow.is-next {
    right: var(--gutter);
}

.hero-arrow.is-next::before {
    transform: rotate(-135deg);
}

.hero-arrow:not(.is-next) {
    left: var(--gutter);
}

.hero-arrow:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.hero-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 1.75rem;
    display: flex;
    gap: 0.5rem;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: transparent;
}

.hero-dots button[aria-selected="true"] {
    background: var(--color-white);
    border-color: var(--color-white);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.split-media {
    position: relative;
    background: var(--color-bg-soft);
    min-height: 18rem;
}

body:not(.page-home) .split-media {
    background: #141414;
}

.split-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 22rem;
}

.process-band {
    background: var(--color-band);
}

.section-dark .split-media {
    background: #1a1a1a;
}

.cta-band {
    background: var(--color-band);
    color: var(--color-band-text);
    text-align: center;
}

.cta-band h2,
.cta-band .section-title {
    color: var(--color-white);
}

.product-detail {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-2xl);
    align-items: start;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
    list-style: none;
    margin: 0 0 3rem;
    padding: 0;
    text-align: center;
}

.product-spec-icon {
    display: block;
    width: 28px;
    height: 28px;
    margin: 0 auto 0.65rem;
    background: var(--color-accent);
    -webkit-mask: center / contain no-repeat;
    mask: center / contain no-repeat;
}

.product-spec-icon.is-price {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.5 3h-3C7 3 5 5.4 5 8.2 5 11 7 13 10.5 13H12v2H7v2h5v3h2v-3h1.2c3.4 0 5.8-2.3 5.8-5.4 0-2.6-1.7-4.6-4.5-5.2V3zm-1.3 8.2C9.4 11.2 7 10 7 8.2 7 6.5 8.8 5 10.5 5h1.7z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.5 3h-3C7 3 5 5.4 5 8.2 5 11 7 13 10.5 13H12v2H7v2h5v3h2v-3h1.2c3.4 0 5.8-2.3 5.8-5.4 0-2.6-1.7-4.6-4.5-5.2V3zm-1.3 8.2C9.4 11.2 7 10 7 8.2 7 6.5 8.8 5 10.5 5h1.7z'/%3E%3C/svg%3E");
}

.product-spec-icon.is-thickness {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16v2H4zm0 5h16v2H4zm0 5h16v2H4z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16v2H4zm0 5h16v2H4zm0 5h16v2H4z'/%3E%3C/svg%3E");
}

.product-spec-icon.is-type {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 5h6v6H5zm8 0h6v6h-6zM5 13h6v6H5zm8 0h6v6h-6z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 5h6v6H5zm8 0h6v6h-6zM5 13h6v6H5zm8 0h6v6h-6z'/%3E%3C/svg%3E");
}

.product-spec-icon.is-collection {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 7h10v13H7zm2 2v9h6V9zM9 3h6l1 3H8z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 7h10v13H7zm2 2v9h6V9zM9 3h6l1 3H8z'/%3E%3C/svg%3E");
}

.product-spec-icon.is-finish {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 5h2v14H6zm4-2h2v18h-2zm4 5h2v13h-2zm4-3h2v16h-2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 5h2v14H6zm4-2h2v18h-2zm4 5h2v13h-2zm4-3h2v16h-2z'/%3E%3C/svg%3E");
}

.product-spec-label {
    margin: 0 0 0.45rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
}

.product-spec-value {
    margin: 0;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-spec-action {
    min-height: 34px;
    padding: 6px 14px;
    font-size: 11px;
}

.product-portrait {
    display: flex;
    justify-content: center;
    margin: 0 0 2rem;
}

.product-portrait-media {
    position: relative;
    width: min(520px, 88vw);
    aspect-ratio: 1 / 1;
    border-radius: 5%;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.product-portrait-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-copy {
    margin: 0 auto 1.5rem;
}

.product-contact-line {
    text-align: center;
    color: var(--color-accent);
    margin: 0 0 1.5rem;
}

.product-contact-line a {
    color: inherit;
}

.product-actions {
    margin-top: var(--space-xl);
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-solid {
    background: var(--color-accent);
    color: #111;
    border-color: var(--color-accent);
}

.btn-solid:hover {
    background: transparent;
    color: var(--color-accent);
}

.btn.is-static {
    cursor: default;
}

.related-grid {
    margin-top: var(--space-3xl);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-2xl);
}

.about-block,
.process-block {
    display: grid;
    gap: var(--space-lg);
}

.static-page .split .section-header {
    text-align: left;
    margin-bottom: 1.35rem;
}

body.page-static {
    background: var(--color-band);
    color: var(--color-band-text);
}

.static-copy {
    max-width: 40rem;
    text-align: left;
}

.static-copy h2,
.static-page .section-title {
    letter-spacing: 0.12em;
}

.static-copy h2,
.static-copy h3 {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: var(--font-weight-regular);
}

.static-copy h2 {
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    margin: 0 0 1.1rem;
}

.static-copy h2::after {
    content: "";
    display: block;
    width: 4.5rem;
    height: 1px;
    margin: 1rem 0 0;
    background: var(--color-accent);
}

.static-copy h3 {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    margin: 1.85rem 0 0.55rem;
}

.static-copy p,
.static-page .split p,
.team-bio,
.nine-t-card p,
.process-steps p {
    color: rgba(255, 255, 255, 0.78);
    font-weight: var(--font-weight-light);
    line-height: 1.85;
    letter-spacing: 0.015em;
}

.static-lead {
    max-width: 38rem;
    margin: -1.5rem auto 2.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-weight: var(--font-weight-light);
    line-height: 1.8;
}

.team-section .section-header {
    margin-bottom: 0.85rem;
}

.team-lead {
    max-width: 34rem;
    margin: 0 auto 2.75rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    font-weight: var(--font-weight-light);
    line-height: 1.75;
    letter-spacing: 0.02em;
}

.team-lead::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 1px;
    margin: 1.35rem auto 0;
    background: var(--color-accent);
}

.nine-t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem 1.5rem;
}

.nine-t-card {
    padding: 1.35rem 1.15rem 1.2rem;
    border-top: 1px solid var(--color-accent);
    background: #1a1a1a;
}

.nine-t-card h3 {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    margin-bottom: 0.65rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 22rem));
    justify-content: center;
    align-items: start;
    gap: clamp(2rem, 4vw, 3.5rem);
    max-width: 52rem;
    margin: 0 auto;
}

.team-card {
    display: grid;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
}

.team-photo {
    position: relative;
    margin: 0 0 1.35rem;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 5%;
    background: #1a1714;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.team-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(215, 136, 102, 0.18);
    background:
        linear-gradient(180deg, rgba(26, 23, 20, 0.12) 0%, transparent 22%, transparent 70%, rgba(0, 0, 0, 0.28) 100%),
        radial-gradient(ellipse at 50% 18%, transparent 45%, rgba(20, 18, 16, 0.18) 100%);
}

.team-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 16%;
    filter: contrast(1.03) saturate(0.9) brightness(0.97);
    opacity: 1;
}

.team-photo.is-media-wait img {
    opacity: 1;
    filter: contrast(1.03) saturate(0.9) brightness(0.97);
    transform: none;
}

.team-identity {
    margin: 0 0 1.15rem;
}

.team-card h3 {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin: 0 0 0.45rem;
    color: var(--color-white);
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    font-weight: var(--font-weight-regular);
}

.team-card .card-meta {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    margin: 0;
}

.team-card .card-meta::after {
    content: "";
    display: block;
    width: 2rem;
    height: 1px;
    margin: 0.85rem auto 0;
    background: rgba(215, 136, 102, 0.55);
}

.team-bio {
    margin: 0;
    max-width: none;
    color: rgba(255, 255, 255, 0.74);
    font-weight: var(--font-weight-light);
    font-size: 0.9rem;
    line-height: 1.85;
    letter-spacing: 0.015em;
    text-align: left;
}

.archive-list {
    list-style: none;
    display: grid;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
}

.archive-list h3 {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: var(--text-sm);
    margin-bottom: 0.5rem;
}

.archive-list p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 46rem;
    margin: 0;
}

.process-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    margin-top: 2rem;
}

.process-shot {
    position: relative;
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #141414;
}

.process-shot img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-steps {
    list-style: none;
    display: grid;
    gap: 1.75rem;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0;
}

.process-steps li {
    display: grid;
    grid-template-columns: 3rem 1fr;
    column-gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step-n {
    grid-column: 1;
    grid-row: 1 / span 2;
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    color: var(--color-accent);
}

.process-steps h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.95rem;
    color: var(--color-white);
}

.process-steps p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
}

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.error-page h1 {
    font-size: var(--text-hero);
}

.catalogue-intro {
    max-width: var(--container-narrow);
    margin: 0 auto var(--space-2xl);
    text-align: center;
}
